/* Fonts */
:root {
  --default-font: 'Outfit', sans-serif;
  --heading-font: 'Urbanist', sans-serif;
  --nav-font: 'Outfit', sans-serif;
}



/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root {
  --background-color: #ffffff;
  --default-color: #444444;
  --heading-color: #2a2c39;
  --accent-color: slategrey;
  --surface-color: #ffffff;
  --contrast-color: #ffffff;
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #ffffff;
  --nav-hover-color: #0c52b6;
  --nav-mobile-background-color: #ffffff;
  --nav-dropdown-background-color: #ffffff;
  --nav-dropdown-color: #060606;
  --nav-dropdown-hover-color: slategrey;
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
  --background-color: #f9f9f9;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #2a2c39;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #404356;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
html {
  margin: 0px;
  padding: 0px;
}

body {
  box-sizing: border-box;
  /* line-height: 25px !important; */

}


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

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

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


p {
  font-family: var(--heading-font);
  font-size: 16px;
  display: block;
  margin-block-start: 1em;
  margin-block-end: 1em;
  margin-inline-start: 0px;
  margin-inline-end: 0px;
  unicode-bidi: isolate;
  position: relative;
  z-index: 9;
}

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.green {
  color: rgb(0 81 159);
}

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  --background-color: rgba(255, 255, 255, 0.137);
  --heading-color: #ffffff;
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 10px 0;
  transition: all 0.5s;
  z-index: 997;
}

.header2 {
  --background-color: rgba(255, 255, 255, 0.137);
  --heading-color: #ffffff;
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 20px 0;
  transition: all 0.5s;
  z-index: 997;
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  width: 250px;
  /* max-height: 55px; */
  margin-right: 8px;
  /* border-radius: 3px; */
}

.header .logo h1 {
  color: var(--heading-color);
}

.scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

/* Global Header on Scroll
------------------------------*/
.scrolled .header {
  --background-color: rgb(0, 0, 0);
}

.color1 {
  color: #A53F2B;

}

.black {
  background-color: #000000;
}


.feature-box {
  background: #ffffff;
  /* padding: 30px; */
  border-radius: 16px;
  transition: all 0.3s ease-in-out;
}



.feature-heading {
  font-size: 4rem;
  color: #708090;
  margin-bottom: 15px;
  font-weight: 600;
}

.feature-quote {
  font-style: italic;
  color: #6c757d;
  margin-bottom: 20px;
}

.feature-list {
  list-style: none;
  padding-left: 0;
}

.feature-list li {
  font-size: 16px;
  margin-bottom: 10px;
  color: #343a40;
  display: flex;
  align-items: center;
}

.feature-list .icon {
  margin-right: 10px;
  font-size: 18px;
}

.icon.yellow {
  color: #f1c40f;
}

.icon.green {
  color: #28a745;
}

.icon.red {
  color: #dc3545;
}

.icon.blue {
  color: #007bff;
}

.feature-note {
  margin-top: 20px;
  font-size: 15px;
  color: #6c757d;
}

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

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

  .navmenu li {
    position: relative;
    margin-left: 5px;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    padding: 8px 20px;
    font-size: 14px;
    font-family: var(--nav-font);
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
    border-radius: 50px;
  }

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

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

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    /* background: var(--nav-dropdown-background-color); */
    background-color: #292c31;
    display: block;
    position: absolute;
    visibility: hidden;
    left: 0;
    top: 130%;
    opacity: 0;
    transition: 0.3s;

    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

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

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

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

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

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

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

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

/* Navmenu - Mobile */
@media (max-width: 1199px) {

  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 2;
    margin-right: 20px;
    cursor: pointer;
    transition: color 0.3s;
  }

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

  /* Main UL - hidden by default */
  .navmenu ul {
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 8px;
    background-color: var(--nav-mobile-background-color);
    overflow-y: auto;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);

    /* Animation */
    display: block;
    opacity: 0;
    transform: translateY(-20px);
    visibility: hidden;
    transition: opacity 0.4s ease, transform 0.4s ease;
  }

  /* Show menu when active */
  .mobile-nav-active .navmenu>ul {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 14px 24px;
    font-family: var(--nav-font);
    font-size: 18px;
    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;
    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:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  /* Dropdown smooth animation */
  .navmenu .dropdown ul {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    margin: 0 20px;
    padding: 0;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    transition: all 0.4s ease-in-out;
  }

  .navmenu .dropdown>.dropdown-active {
    max-height: 500px;
    opacity: 1;
    padding: 10px 0;
  }

  /* Body lock when menu active */
  .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;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    backdrop-filter: blur(8px);
    /* blur background */
    transition: 0.3s;
  }
}



/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background-color: var(--background-color);
  font-size: 14px;
  text-align: center;
  padding: 30px 0;
  position: relative;
}

.footer h3 {
  font-size: 36px;
  font-weight: 700;
  position: relative;
  padding: 0;
  margin: 0 0 15px 0;
}

.footer p {
  font-size: 15;
  font-style: italic;
  padding: 0;
  margin: 0 0 30px 0;
}

.footer .social-links {
  margin: 0 0 30px 0;

}

.footer .social-links a {
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-color);
  color: var(--contrast-color);
  line-height: 1;
  margin: 0 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
  text-decoration: none;
}

.footer .copyright {
  padding-top: 25px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .credits {
  font-size: 13px;
  padding-top: 5px;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  background-color: var(--background-color);
  transition: all 0.6s ease-out;
  width: 100%;
  height: 100vh;
}

#preloader:before,
#preloader:after {
  content: "";
  position: absolute;
  border: 4px solid var(--accent-color);
  border-radius: 50%;
  animation: animate-preloader 2s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}

#preloader:after {
  animation-delay: -0.5s;
}

@keyframes animate-preloader {
  0% {
    width: 10px;
    height: 10px;
    top: calc(50% - 5px);
    left: calc(50% - 5px);
    opacity: 1;
  }

  100% {
    width: 72px;
    height: 72px;
    top: calc(50% - 36px);
    left: calc(50% - 36px);
    opacity: 0;
  }
}

/*--------------------------------------------------------------
# Scrollbor Top 
--------------------------------------------------------------*/

/* Main Slider Container */
/* .slider {
  position: relative;
  width: 100%;
  overflow: hidden;
} */

.section-dark {
  background: rgb(1 3 2);

}

.section-darkslateblue {
  background: rgb(78 55 104);
}

.get-height p {
  color: rgb(209 209 209) !important;
}



/* Individual Slide */
.slide {
  min-width: 100%;
  position: relative;
  overflow: hidden;
}

/* Overlay directly on .slide */
.slide::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(20, 20, 54, 0.356);
  z-index: 1;
  pointer-events: none;
  transition: all 0.3s ease-in-out;
}


/* Slider Images */
.slide img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
  object-position: center;
  display: block;
  z-index: 0;
}

/* Slide Content (Text & Button) */
.slide-content {
  position: absolute;
  /*bottom: 25%;*/
  top: 30%;
  left: 10%;
  color: white;
  padding: 20px;
  border-radius: 5px;
  z-index: 3;
}

.slide-content h2 {
  font-size: 5rem;
  color: white;
  font-weight: bold;

}

.slide-content p {
  font-size: 2.5rem;
}

/* Button Styling */
.btn {
  box-sizing: border-box;
  display: inline-block;
  padding: 10px 25px;
  border: 2px solid #e2e3e4;
  /* border-radius: 25px; */
  color: white;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s ease-out;
  white-space: nowrap;
  line-height: 22px;
  z-index: 4;
}


/* 
.btn:hover {
  background: #7ac6f8;
  border: 2px solid white;
  color: white;
} 
  */

/* Navigation Arrows */
.prev,
.next {
  position: absolute;
  bottom: 5%;
  /* top: 25%; */
  transform: translateY(-50%);
  background: rgb(255, 255, 255);
  color: rgb(84, 71, 199);
  width: 30px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 5;
}


.prev {
  left: 30px;
}

.next {
  left: 80px;
}



.prev:hover,
.next:hover {
  background: rgba(84, 71, 199, 0.8);
  /* darker on hover */
  color: #fff;
  /* icon turns white */
  transform: translateY(-50%) scale(1.1);
  /* slightly bigger */
  box-shadow: 0 0 10px rgba(84, 71, 199, 0.6);
}
.animate-title {
  display: inline-block;
  opacity: 0;
  animation: wordFade 3s forwards;
}

@keyframes wordFade {
  0% { 
    opacity: 0; 
    transform: translateY(30px) rotateX(90deg) skewX(15deg); 
    filter: blur(10px);
  }
  60% { 
    opacity: 1; 
    transform: translateY(0) rotateX(0) skewX(0); 
    filter: blur(0);
  }
  100% { 
    opacity: 1; 
  }
}


/* Responsive Design */
@media (max-width: 768px) {
  .slide-content {
    /* left: 5%; */
    padding: 15px;
  }

  .slide-content h2 {
    font-size: 3rem;
  }

  .slide-content p {
    font-size: 1.2rem;
  }

  .container,
  .container-md,
  .container-sm {
    max-width: 760px;
    /* width: 100%; */
    overflow: hidden;
  }
}

/* Responsive Design */


.title-slider-large {
  font-size: 44px !important;
  line-height: 44px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 1px;
}

.mb20 {
  margin-bottom: 20px !important;
}

.title-slider-small {
  font-size: 15px;
  line-height: 26px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #ffffff;
}


.bg16 {
  /* background-image: url('../../assets/img/vi.jpg'); */
  background-position: center;
  background-size: cover;
  object-fit: cover;
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 20px;
  bottom: -15px;
  z-index: 9;
  background-color: var(--accent-color);
  width: 44px;
  height: 44px;
  /* border-radius: 50px; */
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  box-shadow: inset 2px 1px 8px rgba(17, 22, 22, 0.692);
  /* background: rgb(83 159 195); */
  -webkit-transition: all .4s ease-in;
  transition: all .4s ease-in;
}


.scroll-top.active {
  visibility: visible;
  opacity: 1;
  bottom: 15px;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 160px 0 80px 0;
  text-align: center;
  position: relative;
}

.page-title:before {
  content: "";
  background-color: color-mix(in srgb, var(--background-color), transparent 50%);
  position: absolute;
  inset: 0;
}

.page-title h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 10px;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  justify-content: center;
  padding: 0;
  margin: 0;
  font-size: 16px;
  font-weight: 400;
}

.page-title .breadcrumbs ol li+li {
  padding-left: 10px;
}

.page-title .breadcrumbs ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  /* color: var(--default-color); */
  /* background-color: var(--background-color); */
  padding: 50px 0;
  /* scroll-margin-top: 77px; */
  overflow: clip;
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  padding-bottom: 10px;
  position: relative;
}

.section-title h2 {
  position: relative;
  display: inline-block;
  font-size: 2.5rem;
  padding-bottom: 8px;
  font-weight: 600;
  color: #0e0d0d;
}

.section-title h2::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%) scaleX(1);
  transform-origin: center;
  width: 120px;
  height: 10px;
  background-image: url("../img/herro/our-project.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 6px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  pointer-events: none;

  /* fade-in on load */
  opacity: 0;
  animation: fadeInUnderline 0.8s ease-out forwards;

  /* smooth, slow hover in/out */
  transition: transform 0.8s cubic-bezier(.25, .8, .25, 1), filter 0.8s ease;
}

@keyframes fadeInUnderline {
  to {
    opacity: 1;
  }
}

.section-title h2:hover::after {
  transform: translateX(-50%) scaleX(1.15);
  filter: brightness(1.15);
}


.section-title p {
  color: var(--heading-color);
  margin: 0;
  font-size: 28px;
  font-weight: 700;
  text-transform: uppercase;
  font-family: var(--heading-font);
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  overflow: hidden;
  position: relative;
  background: linear-gradient(0deg, var(--background-color) 0%, color-mix(in srgb, var(--background-color) 90%, white 10%) 100%);
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: end;
  align-items: center;
}

.hero .carousel-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  position: relative;
  min-height: 75vh;
  padding-top: 60px;
}

.hero h2 {
  margin-bottom: 30px;
  font-size: 48px;
  font-weight: 700;
}

.hero h2 span {
  text-decoration: underline;
}

.hero p {
  max-width: 80%;
  animation-delay: 0.4s;
  margin: 0 auto 30px auto;
}

.hero .carousel-control-prev,
.hero .carousel-control-next {
  width: 10%;
}

.hero .carousel-control-next-icon,
.hero .carousel-control-prev-icon {
  background: none;
  font-size: 48px;
  line-height: 1;
  width: auto;
  height: auto;
}

.hero .btn-get-started {
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 32px;
  border-radius: 50px;
  transition: 0.5s;
  line-height: 1;
  margin: 10px;
  animation-delay: 0.8s;
  color: var(--default-color);
  border: 2px solid var(--accent-color);
}

.hero .btn-get-started:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  text-decoration: none;
}

@media (min-width: 1024px) {
  .hero p {
    max-width: 60%;
  }

  .hero .carousel-control-prev,
  .hero .carousel-control-next {
    width: 5%;
  }
}

@media (max-width: 768px) {
  .hero .carousel-container {
    min-height: 90vh;
  }

  .hero h2 {
    font-size: 28px;
  }
}

.hero .hero-waves {
  display: block;
  width: 100%;
  height: 60px;
  position: relative;
}

.hero .wave1 use {
  animation: move-forever1 10s linear infinite;
  animation-delay: -2s;
  fill: var(--default-color);
  opacity: 0.6;
}

.hero .wave2 use {
  animation: move-forever2 8s linear infinite;
  animation-delay: -2s;
  fill: var(--default-color);
  opacity: 0.4;
}

.hero .wave3 use {
  animation: move-forever3 6s linear infinite;
  animation-delay: -2s;
  fill: var(--default-color);
}

@keyframes move-forever1 {
  0% {
    transform: translate(85px, 0%);
  }

  100% {
    transform: translate(-90px, 0%);
  }
}

@keyframes move-forever2 {
  0% {
    transform: translate(-90px, 0%);
  }

  100% {
    transform: translate(85px, 0%);
  }
}

@keyframes move-forever3 {
  0% {
    transform: translate(-90px, 0%);
  }

  100% {
    transform: translate(85px, 0%);
  }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about ul {
  list-style: none;
  padding: 0;
}

.about ul li {
  padding-bottom: 5px;
  display: flex;
  align-items: center;
}

.about ul i {
  font-size: 20px;
  padding-right: 4px;
  color: var(--accent-color);
}

.about .read-more {
  background: var(--accent-color);
  color: var(--contrast-color);
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  padding: 10px 28px;
  border-radius: 5px;
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.about .read-more i {
  font-size: 18px;
  margin-left: 5px;
  line-height: 0;
  transition: 0.3s;
}

.about .read-more:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.about .read-more:hover i {
  transform: translate(5px, 0);
}

#why-choose {
  max-width: 1200px;
  margin: 60px auto;
  padding: 20px;
  font-family: 'Segoe UI', sans-serif;
  /* text-align: center; */
  text-align: justify;

}

.title-h2 {
  text-align: left;
  /* color: #708090 !important; */
  font-size: 28px;
  font-weight: 700;
  text-transform: uppercase;
  font-family: var(--heading-font);

}

.tagline {
  font-size: 20px;
  color: rgb(97, 95, 94);
  font-weight: 600;
  margin-bottom: 10px;
  /* font-style: italic; */
}

.intro {
  font-size: 16px;
  color: #555;
  margin-bottom: 40px;
  line-height: 30px !important;
}

.accordion {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.accordion-item {
  background: rgba(255, 255, 255, 0.8);
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: all 0.4s ease;
}

.accordion-header {
  display: flex;
  /* justify-content: space-between; */
  align-items: center;
  width: 100%;
  background: none;
  border: none;
  padding: 20px;
  font-size: 1.1rem;
  font-weight: 600;
  color: #222;
  text-align: left;
  cursor: pointer;
  transition: background 0.3s;
}

.accordion-header i {
  font-size: 1.4rem;
  color: #539fc3;
  margin-right: 20px;

}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  transition: max-height 0.4s ease, padding 0.3s ease;
  background: #fafafa;
  font-size: 0.95rem;
  color: #444;
  position: relative;

}

.accordion-item.active .accordion-body {
  text-align: justify;
  max-height: 500px;
  padding: 15px 20px 20px;
}

.accordion-item.active .arrow {
  transform: rotate(180deg);

}

.arrow {
  position: absolute;
  right: 150px
}


/* Chhota box overlay */
.smxl-box {
  border-radius: 12px;
}

.image-wrapper {
  position: relative;

}

.sml-box {
  position: absolute;
  bottom: -50px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.32);
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;

}

.mb-10 {
  margin-bottom: 50px;
}

.sml-box .small-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
}

/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features .nav-tabs {
  border: 0;
}

.features .nav-link {
  background-color: var(--surface-color);
  color: var(--heading-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  padding: 15px 20px;
  transition: 0.3s;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  height: 100%;
}

.features .nav-link i {
  padding-right: 15px;
  font-size: 48px;
}

.features .nav-link h4 {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
}

.features .nav-link:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.features .nav-link.active {
  background: var(--accent-color);
  color: var(--contrast-color);
  border-color: var(--accent-color);
}

.features .nav-link.active h4 {
  color: var(--contrast-color);
}

@media (max-width: 768px) {
  .features .nav-link i {
    padding: 0;
    line-height: 1;
    font-size: 36px;
  }
}

@media (max-width: 575px) {
  .features .nav-link {
    padding: 15px;
  }

  .features .nav-link i {
    font-size: 24px;
  }
}

.features .tab-content {
  margin-top: 30px;
}

.features .tab-pane h3 {
  color: var(--heading-color);
  font-weight: 700;
  font-size: 26px;
}

.features .tab-pane ul {
  list-style: none;
  padding: 0;
}

.features .tab-pane ul li {
  padding-bottom: 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;
}

/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
.call-to-action {
  padding: 80px 0;
  position: relative;
  clip-path: inset(0);
}

.call-to-action .container {
  position: relative;
  z-index: 3;
}

.call-to-action h3 {
  color: var(--default-color);
  font-size: 28px;
  font-weight: 700;
}

.call-to-action p {
  color: var(--default-color);
}

.call-to-action .cta-btn {
  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;
  background: var(--accent-color);
  color: var(--contrast-color);
}

.call-to-action .cta-btn:hover {
  background: color-mix(in srgb, var(--accent-color) 90%, white 15%);
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .service-item {
  background-color: var(--surface-color);
  box-shadow: 0 5px 30px 0 rgba(0, 0, 0, 0.1);
  padding: 60px 30px 60px 70px;
  transition: all ease-in-out 0.3s;
  border-radius: 18px;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.services .service-item .icon {
  position: absolute;
  left: -20px;
  top: calc(50% - 30px);
}

.services .service-item .icon i {
  font-size: 64px;
  line-height: 1;
  transition: 0.5s;
}

.services .service-item h3 {
  font-weight: 700;
  margin: 10px 0 15px 0;
  font-size: 22px;
  transition: ease-in-out 0.3s;
}

.services .service-item p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

@media (min-width: 1365px) {
  .services .service-item:hover {
    transform: translateY(-10px);
  }

  .services .service-item:hover h3 {
    color: var(--accent-color);
  }
}

/*--------------------------------------------------------------
# Portfolio Section
--------------------------------------------------------------*/
.portfolio .portfolio-filters {
  padding: 0;
  /* margin: 0 auto 20px auto; */
  list-style: none;
  text-align: center;
}

.portfolio .portfolio-filters li {
    color: #000000;
  cursor: pointer;
  display: inline-block;
  padding: 8px 20px 10px 20px;
  margin: 0;
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 5px;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
  font-family: var(--heading-font);
}


.portfolio .portfolio-filters li:hover,
.portfolio .portfolio-filters li.filter-active {
  color: var(--accent-color);
  background-color: rgb(5, 5, 5);
}

.portfolio .portfolio-filters li:first-child {
  margin-left: 0;
}

.portfolio .portfolio-filters li:last-child {
  margin-right: 0;
}

@media (max-width: 575px) {
  .portfolio .portfolio-filters li {
    font-size: 14px;
    margin: 0 0 10px 0;
  }
}

.portfolio .portfolio-item {
  position: relative;
  overflow: hidden;

}

.portfolio .portfolio-item .portfolio-info {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: -100%;
  height: 100%;
  opacity: 0;
  z-index: 3;
  transition: all ease-in-out 0.5s;
  border-top: silver 40px solid;
  background-color: rgba(0, 0, 0, 0.664);
  padding: 15px;
  cursor: pointer !important;
  overflow: hidden;
}




.portfolio .portfolio-item .portfolio-info h4 {
  font-size: 18px;
  font-weight: 600;
  padding-right: 50px;
  color: rgb(255, 255, 255);
}

.portfolio .portfolio-item .portfolio-info p {
  /* color: color-mix(in srgb, var(--default-color), transparent 30%); */
  color: rgb(255, 255, 255);
  font-size: 14px;
  margin-bottom: 0;
  padding-right: 50px;
}

.portfolio .portfolio-item .portfolio-info .preview-link,
.portfolio .portfolio-item .portfolio-info .details-link {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 24px;
  color: silver;
  transition: 0.3s;
  line-height: 0;
}

.portfolio .portfolio-item .portfolio-info .preview-link:hover,
.portfolio .portfolio-item .portfolio-info .details-link:hover {
  color: var(--accent-color);
}

.portfolio .portfolio-item .portfolio-info .details-link {
  right: 14px;
  font-size: 28px;
}

.portfolio .portfolio-item:hover .portfolio-info {
  opacity: 1;
  bottom: 0;
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .testimonial-item {
  background-color: var(--surface-color);
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  box-sizing: content-box;
  padding: 30px;
  margin: 30px 15px;
  position: relative;
  height: 100%;
}

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50px;
  margin-right: 15px;
}

.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 0;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin: 0;
}

.testimonials .testimonial-item .stars {
  margin: 10px 0;
}

.testimonials .testimonial-item .stars i {
  color: #ffc107;
  margin: 0 1px;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: color-mix(in srgb, var(--accent-color), transparent 50%);
  font-size: 26px;
  line-height: 0;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
  transform: scale(-1, -1);
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 15px auto 15px auto;
}

.testimonials .swiper-wrapper {
  height: auto;
}

.swiper-slide {
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}


.swiper-wrapper {
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: color-mix(in srgb, var(--default-color), transparent 85%);
  opacity: 1;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

@media (max-width: 767px) {
  .testimonials .testimonial-wrap {
    padding-left: 0;
  }

  .testimonials .testimonial-item {
    padding: 30px;
    margin: 15px;
  }

  .testimonials .testimonial-item .testimonial-img {
    position: static;
    left: auto;
  }
}

/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/
.pricing .pricing-item {
  background-color: var(--surface-color);
  box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.1);
  padding: 20px;
  text-align: center;
  border-radius: 5px;
  position: relative;
  overflow: hidden;
}

.pricing .pricing-item h3 {
  font-weight: 400;
  margin: -20px -20px 20px -20px;
  padding: 20px 15px;
  font-size: 16px;
  font-weight: 600;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  background: color-mix(in srgb, var(--default-color), transparent 95%);
}

.pricing .pricing-item h4 {
  font-size: 36px;
  font-weight: 600;
  font-family: var(--heading-font);
}

.pricing .pricing-item h4 sup {
  font-size: 20px;
  top: -15px;
  left: -3px;
}

.pricing .pricing-item h4 span {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 16px;
  font-weight: 300;
}

.pricing .pricing-item ul {
  padding: 15px 0;
  list-style: none;
  text-align: center;
  line-height: 20px;
  font-size: 14px;
}

.pricing .pricing-item ul li {
  padding-bottom: 16px;
}

.pricing .pricing-item ul i {
  color: var(--accent-color);
  font-size: 18px;
  padding-right: 4px;
}

.pricing .pricing-item ul .na {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  text-decoration: line-through;
}

.pricing .btn-wrap {
  background: color-mix(in srgb, var(--default-color), transparent 95%);
  margin: 0 -20px -20px -20px;
  padding: 20px 15px;
  text-align: center;
}

.pricing .btn-buy {
  background: var(--accent-color);
  color: var(--contrast-color);
  display: inline-block;
  padding: 8px 35px 10px 35px;
  border-radius: 4px;
  transition: none;
  font-size: 14px;
  font-weight: 400;
  font-family: var(--heading-font);
  font-weight: 600;
  transition: 0.3s;
}

.pricing .btn-buy:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.pricing .featured h3 {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.pricing .advanced {
  background: var(--accent-color);
  color: var(--contrast-color);
  width: 200px;
  position: absolute;
  top: 18px;
  right: -68px;
  transform: rotate(45deg);
  z-index: 1;
  font-size: 14px;
  padding: 1px 0 3px 0;
}

/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq .content-subtitle {
  font-size: 15px;
  margin-bottom: 10px;
  display: block;
  color: var(--default-color);
}

.faq .content-title {
  color: var(--heading-color);
  font-size: 22px;
  margin-bottom: 30px;
}

.faq p {
  line-height: 1.7;
  color: var(--default-color);
}

.faq .custom-accordion .accordion-item {
  background-color: var(--surface-color);
  margin-bottom: 0px;
  position: relative;
  border-radius: 0px;
  overflow: hidden;
}

.faq .custom-accordion .accordion-item .btn-link {
  display: block;
  width: 100%;
  padding: 15px 0;
  text-decoration: none;
  text-align: left;
  color: var(--default-color);
  border: none;
  padding-left: 40px;
  border-radius: 0;
  position: relative;
  background-color: color-mix(in srgb, var(--default-color), transparent 94%);
}

.faq .custom-accordion .accordion-item .btn-link:before {
  content: "\f282";
  display: inline-block;
  font-family: "bootstrap-icons" !important;
  font-style: normal;
  font-weight: normal !important;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  vertical-align: -0.125em;
  -webkit-font-smoothing: antialiased;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 15px;
}

.faq .custom-accordion .accordion-item .btn-link[aria-expanded=true] {
  color: var(--accent-color);
}

.faq .custom-accordion .accordion-item .btn-link[aria-expanded=true]:before {
  font-family: "bootstrap-icons" !important;
  content: "\f286";
  position: absolute;
  color: var(--accent-color);
  top: 50%;
  transform: translateY(-50%);
}

.faq .custom-accordion .accordion-item .accordion-body {
  padding: 20px 20px 20px 20px;
  color: var(--default-color);
}

/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
.team .team-member {
  background-color: var(--surface-color);
  overflow: hidden;
  /* border-radius: 5px; */
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  height: 100%;
}

.team .team-member .member-img {
  position: relative;
  overflow: hidden;
  border: 2px solid #ffffff;
}

.team .team-member .social {
  position: absolute;
  left: 0;
  bottom: 30px;
  right: 0;
  opacity: 0;
  transition: ease-in-out 0.3s;
  text-align: center;
}

.team .team-member .social a {
  /* background: color-mix(in srgb, var(--contrast-color), transparent 25%); */

  /* color: color-mix(in srgb, var(--default-color), transparent 20%); */
  color: #c2c1c1;
  margin: 0 3px;
  border-radius: 4px;
  /* width: 36px; */
  /* height: 36px; */
  padding: 5px;
  transition: ease-in-out 0.3s;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.team .team-member .social a:hover {
  color: var(--accent-color);
  /* background: ; */

}

.team .team-member .social i {
  font-size: 12px;
  line-height: 0;
}

.team .team-member .member-info {
  padding: 25px 15px;
}

.team .team-member .member-info h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 18px;
}

.team .team-member .member-info span {
  display: block;
  font-size: 13px;
  font-weight: 400;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.team .team-member:hover .social {
  opacity: 1;
  bottom: 15px;
}

/*--------------------------------------------------------------
# Recent Posts Section
--------------------------------------------------------------*/
.recent-posts article {
  background: var(--surface-color);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  padding: 30px;
  height: 100%;
  border-radius: 10px;
  overflow: hidden;
}

.recent-posts .post-img {
  max-height: 240px;
  margin: -30px -30px 15px -30px;
  overflow: hidden;
}

.recent-posts .post-category {
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  margin-bottom: 10px;
}

.recent-posts .title {
  font-size: 20px;
  font-weight: 700;
  padding: 0;
  margin: 0 0 20px 0;
}

.recent-posts .title a {
  color: var(--heading-color);
  transition: 0.3s;
}

.recent-posts .title a:hover {
  color: var(--accent-color);
}

.recent-posts .post-author-img {
  width: 50px;
  border-radius: 50%;
  margin-right: 15px;
}

.recent-posts .post-author {
  font-weight: 600;
  margin-bottom: 5px;
}

.recent-posts .post-date {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-item+.info-item {
  margin-top: 40px;
}

.contact .info-item i {
  color: var(--accent-color);
  background: color-mix(in srgb, var(--accent-color), transparent 92%);
  font-size: 20px;
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
  margin-right: 15px;
}

.contact .info-item h3 {
  padding: 0;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
}

.contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
}

.contact .info-item:hover i {

  box-shadow: inset 2px 1px 8px rgba(0, 0, 0, .6);
  background: rgb(181, 67, 33);
  -webkit-transition: all .4s ease-in;
  transition: all .4s ease-in;
  color: #fff;
}


.contact .php-email-form {
  height: 100%;
}

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email],
.contact .php-email-form textarea {
  font-size: 14px;
  padding: 10px 15px;
  box-shadow: none;
  border-radius: 0;
  color: var(--default-color);
  background-color: color-mix(in srgb, var(--background-color), transparent 50%);
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.contact .php-email-form input[type=text]:focus,
.contact .php-email-form input[type=email]:focus,
.contact .php-email-form textarea:focus {
  border-color: var(--accent-color);
}

.contact .php-email-form input[type=text]::placeholder,
.contact .php-email-form input[type=email]::placeholder,
.contact .php-email-form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.contact .php-email-form button[type=submit] {
  color: var(--contrast-color);
  background: slategrey;
  border: 0;
  padding: 10px 30px;
  transition: 0.4s;
  /* border-radius: 50px; */
}

.contact .php-email-form button[type=submit]:hover {

  box-shadow: inset 2px 1px 8px rgba(0, 0, 0, .6);
  /* background: rgb(77, 81, 83); */
  -webkit-transition: all .4s ease-in;
  transition: all .4s ease-in;
}


/*--------------------------------------------------------------
# Portfolio Details Section
--------------------------------------------------------------*/
.portfolio-details .portfolio-details-slider img {
  width: 100%;
}

.portfolio-details .swiper-wrapper {
  height: auto;
}

.portfolio-details .swiper-button-prev,
.portfolio-details .swiper-button-next {
  width: 48px;
  height: 48px;
}

.portfolio-details .swiper-button-prev:after,
.portfolio-details .swiper-button-next:after {
  color: rgba(255, 255, 255, 0.8);
  background-color: rgba(0, 0, 0, 0.15);
  font-size: 24px;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

.portfolio-details .swiper-button-prev:hover:after,
.portfolio-details .swiper-button-next:hover:after {
  background-color: rgba(0, 0, 0, 0.3);
}

@media (max-width: 575px) {

  .portfolio-details .swiper-button-prev,
  .portfolio-details .swiper-button-next {
    display: none;
  }
}

.portfolio-details .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.mt-5 {
    margin-top: 1rem!important;
}

.portfolio-details .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: color-mix(in srgb, var(--default-color), transparent 85%);
  opacity: 1;
}

.portfolio-details .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.portfolio-details .portfolio-info h3:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  bottom: 0;
}

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.portfolio-details .portfolio-info ul li {
  display: flex;
  flex-direction: column;
  padding-bottom: 15px;
}

.portfolio-details .portfolio-info ul strong {
  text-transform: uppercase;
  font-weight: 400;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 14px;
}

.portfolio-details .portfolio-info .btn-visit {
  padding: 8px 40px;
  background: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 50px;
  transition: 0.3s;
}

.portfolio-details .portfolio-info .btn-visit:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
  padding: 0;
}

.portfolio-details .portfolio-description .testimonial-item {
  padding: 30px 30px 0 30px;
  position: relative;
  background: color-mix(in srgb, var(--default-color), transparent 97%);
  margin-bottom: 50px;
}

.portfolio-details .portfolio-description .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50px;
  border: 6px solid var(--background-color);
  float: left;
  margin: 0 10px 0 0;
}

.portfolio-details .portfolio-description .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 15px 0 5px 0;
  padding-top: 20px;
}

.portfolio-details .portfolio-description .testimonial-item h4 {
  font-size: 14px;
  color: #6c757d;
  margin: 0;
}

.portfolio-details .portfolio-description .testimonial-item .quote-icon-left,
.portfolio-details .portfolio-description .testimonial-item .quote-icon-right {
  color: color-mix(in srgb, var(--accent-color), transparent 50%);
  font-size: 26px;
  line-height: 0;
}

.portfolio-details .portfolio-description .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.portfolio-details .portfolio-description .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
  transform: scale(-1, -1);
}

.portfolio-details .portfolio-description .testimonial-item p {
  font-style: italic;
  margin: 0 0 15px 0 0 0;
  padding: 0;
}

/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .service-box {
  background-color: var(--surface-color);
  padding: 20px;
  box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.1);
}

.service-details .service-box+.service-box {
  margin-top: 30px;
}

.service-details .service-box h4 {
  font-size: 20px;
  font-weight: 700;
  border-bottom: 2px solid color-mix(in srgb, var(--default-color), transparent 92%);
  padding-bottom: 15px;
  margin-bottom: 15px;
}

.service-details .services-list {
  background-color: var(--surface-color);
}

.service-details .services-list a {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  display: flex;
  align-items: center;
  padding: 12px 15px;
  margin-top: 15px;
  transition: 0.3s;
}

.service-details .services-list a:first-child {
  margin-top: 0;
}

.service-details .services-list a i {
  font-size: 16px;
  margin-right: 8px;
  color: var(--accent-color);
}

.service-details .services-list a.active {
  color: white;
  background-color: var(--accent-color);
}

.service-details .services-list a.active i {
  color: var(--contrast-color);
}

.service-details .services-list a:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  color: var(--accent-color);
}

.service-details .download-catalog a {
  color: var(--default-color);
  display: flex;
  align-items: center;
  padding: 10px 0;
  transition: 0.3s;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.service-details .download-catalog a:first-child {
  border-top: 0;
  padding-top: 0;
}

.service-details .download-catalog a:last-child {
  padding-bottom: 0;
}

.service-details .download-catalog a i {
  font-size: 24px;
  margin-right: 8px;
  color: var(--accent-color);
}

.service-details .download-catalog a:hover {
  color: var(--accent-color);
}

.service-details .help-box {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  margin-top: 30px;
  padding: 30px 15px;
}

.service-details .help-box .help-icon {
  font-size: 48px;
}

.service-details .help-box h4,
.service-details .help-box a {
  color: var(--contrast-color);
}

.service-details .services-img {
  margin-bottom: 20px;
}

.service-details h3 {
  font-size: 26px;
  font-weight: 700;
  /* color: #7ac6f8; */
}

.service-details p {
  font-size: 15px;
  text-align: justify;
}

.service-details ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.service-details ul li {
  padding: 5px 0;
  display: flex;
  align-items: center;
}

.service-details ul i {
  font-size: 20px;
  margin-right: 8px;
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/
.starter-section {
  /* Add your styles here */
}

/*--------------------------------------------------------------
# Blog Posts Section
--------------------------------------------------------------*/
.blog-posts article {
  background-color: var(--surface-color);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  padding: 30px;
  height: 100%;
  border-radius: 10px;
  overflow: hidden;
}

#BGI {
  background-image: url('../img/herro/about-style-bg.png');
  background-repeat: no-repeat;

}

#BGI-1 {
  background-image: url('../img/herro/service-style.png');
  background-repeat: no-repeat;

}

#BGI-2 {
  background-image: url('../img/herro/form-style.png');
  background-repeat: no-repeat;

}

.bgi-w {
  background: #ffffffad;

}

.blog-posts .post-img {
  /* max-height: 240px; */
  margin: -30px -30px 15px -30px;
  overflow: hidden;
}

.blog-posts .post-category {
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 10px;
}

.blog-posts .title {
  font-size: 20px;
  font-weight: 700;
  padding: 0;
  margin: 0 0 20px 0;
}

.blog-posts .title a {
  color: var(--heading-color);
  transition: 0.3s;
}

.blog-posts .title a:hover {
  color: var(--accent-color);
}

.blog-posts .post-author-img {
  width: 50px;
  border-radius: 50%;
  margin-right: 15px;
}

.blog-posts .post-author {
  font-weight: 600;
  margin-bottom: 5px;
}

.blog-posts .post-date {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Blog Pagination Section
--------------------------------------------------------------*/
.blog-pagination {
  padding-top: 0;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-pagination ul {
  display: flex;
  padding: 0;
  margin: 0;
  list-style: none;
}

.blog-pagination li {
  margin: 0 5px;
  transition: 0.3s;
}

.blog-pagination li a {
  color: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--accent-color);
}

.blog-pagination li a.active,
.blog-pagination li a:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.blog-pagination li a.active a,
.blog-pagination li a:hover a {
  color: var(--contrast-color);
}

/*--------------------------------------------------------------
# Blog Details Section
--------------------------------------------------------------*/
.blog-details {
  padding-bottom: 30px;
}

.blog-details .article {
  background-color: var(--surface-color);
  padding: 30px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog-details .post-img {
  margin: -30px -30px 20px -30px;
  overflow: hidden;
}

.blog-details .title {
  color: var(--heading-color);
  font-size: 28px;
  font-weight: 700;
  padding: 0;
  margin: 30px 0;
}

.blog-details .content {
  margin-top: 20px;
}

.blog-details .content h3 {
  font-size: 22px;
  margin-top: 30px;
  font-weight: bold;
}

.blog-details .content blockquote {
  overflow: hidden;
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
  padding: 60px;
  position: relative;
  text-align: center;
  margin: 20px 0;
}

.blog-details .content blockquote p {
  color: var(--default-color);
  line-height: 1.6;
  margin-bottom: 0;
  font-style: italic;
  font-weight: 500;
  font-size: 22px;
}

.blog-details .content blockquote:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background-color: var(--accent-color);
  margin-top: 20px;
  margin-bottom: 20px;
}

.blog-details .meta-top {
  margin-top: 20px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-details .meta-top ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  align-items: center;
  padding: 0;
  margin: 0;
}

.blog-details .meta-top ul li+li {
  padding-left: 20px;
}

.blog-details .meta-top i {
  font-size: 16px;
  margin-right: 8px;
  line-height: 0;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-details .meta-top a {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 14px;
  display: inline-block;
  line-height: 1;
}

.blog-details .meta-bottom {
  padding-top: 10px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.blog-details .meta-bottom i {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  display: inline;
}

.blog-details .meta-bottom a {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  transition: 0.3s;
}

.blog-details .meta-bottom a:hover {
  color: var(--accent-color);
}

.blog-details .meta-bottom .cats {
  list-style: none;
  display: inline;
  padding: 0 20px 0 0;
  font-size: 14px;
}

.blog-details .meta-bottom .cats li {
  display: inline-block;
}

.blog-details .meta-bottom .tags {
  list-style: none;
  display: inline;
  padding: 0;
  font-size: 14px;
}

.blog-details .meta-bottom .tags li {
  display: inline-block;
}

.blog-details .meta-bottom .tags li+li::before {
  padding-right: 6px;
  color: var(--default-color);
  content: ",";
}

.blog-details .meta-bottom .share {
  font-size: 16px;
}

.blog-details .meta-bottom .share i {
  padding-left: 5px;
}

/*--------------------------------------------------------------
# Blog Comments Section
--------------------------------------------------------------*/
.blog-comments {
  padding: 10px 0;
}

.blog-comments .comments-count {
  font-weight: bold;
}

.blog-comments .comment {
  margin-top: 30px;
  position: relative;
}

.blog-comments .comment .comment-img {
  margin-right: 14px;
}

.blog-comments .comment .comment-img img {
  width: 60px;
}

.blog-comments .comment h5 {
  font-size: 16px;
  margin-bottom: 2px;
}

.blog-comments .comment h5 a {
  font-weight: bold;
  color: var(--default-color);
  transition: 0.3s;
}

.blog-comments .comment h5 a:hover {
  color: var(--accent-color);
}

.blog-comments .comment h5 .reply {
  padding-left: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.blog-comments .comment h5 .reply i {
  font-size: 20px;
}

.blog-comments .comment time {
  display: block;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 5px;
}

.blog-comments .comment.comment-reply {
  padding-left: 40px;
}

/*--------------------------------------------------------------
# Comment Form Section
--------------------------------------------------------------*/
.comment-form {
  padding-top: 10px;
}

.comment-form form {
  background-color: var(--surface-color);
  margin-top: 30px;
  padding: 30px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.comment-form form h4 {
  font-weight: bold;
  font-size: 22px;
}

.comment-form form p {
  font-size: 14px;
}

.comment-form form input {
  background-color: var(--surface-color);
  color: var(--default-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 70%);
  font-size: 14px;
  border-radius: 4px;
  padding: 10px 10px;
}

.comment-form form input:focus {
  color: var(--default-color);
  background-color: var(--surface-color);
  box-shadow: none;
  border-color: var(--accent-color);
}

.comment-form form input::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.comment-form form textarea {
  background-color: var(--surface-color);
  color: var(--default-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 70%);
  border-radius: 4px;
  padding: 10px 10px;
  font-size: 14px;
  height: 120px;
}

.comment-form form textarea:focus {
  color: var(--default-color);
  box-shadow: none;
  border-color: var(--accent-color);
  background-color: var(--surface-color);
}

.comment-form form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.comment-form form .form-group {
  margin-bottom: 25px;
}

.comment-form form .btn-primary {
  border-radius: 4px;
  padding: 10px 20px;
  border: 0;
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.comment-form form .btn-primary:hover {
  color: var(--contrast-color);
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
}

/*--------------------------------------------------------------
# Widgets
--------------------------------------------------------------*/
.widgets-container {
  margin: 60px 0 30px 0;
}

.widget-title {
  color: var(--heading-color);
  font-size: 20px;
  font-weight: 600;
  padding: 0 0 0 10px;
  margin: 0 0 20px 0;
  border-left: 4px solid var(--accent-color);
}

.widget-item {
  margin-bottom: 30px;
  background-color: color-mix(in srgb, var(--default-color), transparent 98%);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  padding: 30px;
  border-radius: 5px;
}

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

.blog-author-widget img {
  max-width: 160px;
}

.blog-author-widget h4 {
  font-weight: 600;
  font-size: 24px;
  margin: 15px 0 0 0;
  padding: 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.blog-author-widget .social-links {
  margin: 5px 0;
}

.blog-author-widget .social-links a {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
  margin: 0 3px;
  font-size: 18px;
}

.blog-author-widget .social-links a:hover {
  color: var(--accent-color);
}

.blog-author-widget p {
  font-style: italic;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 10px 0 0 0;
}

.search-widget form {
  background: var(--background-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 75%);
  padding: 3px 10px;
  position: relative;
  border-radius: 50px;
  transition: 0.3s;
}

.search-widget form input[type=text] {
  border: 0;
  padding: 4px 10px;
  border-radius: 4px;
  width: calc(100% - 40px);
  background-color: var(--background-color);
  color: var(--default-color);
}

.search-widget form input[type=text]:focus {
  outline: none;
}

.search-widget form button {
  background: none;
  color: var(--default-color);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  font-size: 16px;
  padding: 0 16px;
  transition: 0.3s;
  line-height: 0;
}

.search-widget form button i {
  line-height: 0;
}

.search-widget form button:hover {
  color: var(--accent-color);
}

.search-widget form:is(:focus-within) {
  border-color: var(--accent-color);
}

.categories-widget ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.categories-widget ul li {
  padding-bottom: 10px;
}

.categories-widget ul li:last-child {
  padding-bottom: 0;
}

.categories-widget ul a {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  transition: 0.3s;
}

.categories-widget ul a:hover {
  color: var(--accent-color);
}

.categories-widget ul a span {
  padding-left: 5px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 14px;
}

.recent-posts-widget .post-item {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

.recent-posts-widget .post-item:last-child {
  margin-bottom: 0;
}

.recent-posts-widget .post-item h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 5px;
}

.recent-posts-widget .post-item h4 a {
  color: var(--default-color);
  transition: 0.3s;
}

.recent-posts-widget .post-item h4 a:hover {
  color: var(--accent-color);
}

.recent-posts-widget .post-item time {
  display: block;
  font-style: italic;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.tags-widget ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tags-widget ul li {
  display: inline-block;
}

.tags-widget ul a {
  background-color: color-mix(in srgb, var(--default-color), transparent 94%);
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  border-radius: 50px;
  font-size: 14px;
  padding: 5px 15px;
  margin: 0 6px 8px 0;
  display: inline-block;
  transition: 0.3s;
}

.tags-widget ul a:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.tags-widget ul a span {
  padding-left: 5px;
  color: color-mix(in srgb, var(--default-color), transparent 60%);
  font-size: 14px;
}


/* Footer Styling */
.footer {
  background: #000000;
  /* Dark Background */
  color: #fff;
  padding: 40px 0;
  text-align: left;
}

/* Footer Container */
.footer .container {
  margin: auto;
}

/* Footer Sections */
.footer-sections {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  text-align: left;
  padding-bottom: 20px;
}

/* Footer Columns */
.footer-widget {
  flex: 1;
  padding: 10px;
  /* min-width: 280px;
   */
}

/* Footer Titles */
.footer-title {
  font-size: 16px !important;
  margin-bottom: 30px;
  color: #d8dade;
  letter-spacing: 1px;
}

/* Footer Links */
.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  display: inline-block;
  margin-right: 15px;
}

.footer-links>li {
  margin: 0 20px 15px 0;
  display: inline-block;
  list-style: none;
}

.footer-links a {
  color: #ddd;
  text-decoration: none;
  transition: 0.3s;
  font-size: 14px;
}

.footer-links a:hover {
  color: #0c52b6;
}

/* Social Media Icons */
.social-icons {
  display: flex;
  /* justify-content: center; */
  gap: 10px;

  padding: 0;
  margin: 0;
  font-size: 0;
  height: 30px;
  list-style: none;
  z-index: 999;

}


.social-icons a {
  color: white;
  font-size: 18px;
  transition: 0.3s;
}

.social-icons a:hover {
  color: #A53F2B;
}

/* Subscribe Box */
.subscribe-box input {
  width: 100%;
  padding: 10px;
  border: 1px solid #A53F2B;
  background: transparent;
  color: white;
  text-align: center;
}

/* Tweet Section */
.tweet {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-social {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
}

.footer-social a i {
  /* color: wheat !important; */
  font-size: 20px;
  /* margin-left: 20px; */
  margin: 0 20px 15px 0;
  display: inline-block;
  list-style: none
}


.tweet a i {
  color: #A53F2B;
  text-decoration: none !important;
  font-weight: bold;
}

.tweet small {
  display: block;
  font-size: 12px;
  color: #ccc;
}

/* Footer Bottom */
.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #444;
  font-size: 14px;
}

/* ✅ Subscribe Box Styling */
.footer-subscribe {
  position: relative;
  width: 100%;
  max-width: 350px;
  padding: 10px;
  text-align: center;
}

/* ✅ Email Input Field */
.footer-subscribe input {
  width: 100%;
  background: transparent;
  color: white;
  outline: none;
  transition: 0.3s;
  border: 1px solid transparent;
}

.footer-subscribe input::placeholder {
  color: #d8dade;
  opacity: 0.7;
}

/* ✅ Subscribe Button */
.footer-subscribe button {
  width: 100%;
  /* padding: 12px; */
  border: none;
  background: #708090;
  color: white;
  font-size: 14px;
  font-weight: bold;
  border-radius: 25px;
  cursor: pointer;
  transition: 0.3s;
  margin-top: 10px;
}

.footer-subscribe button:hover {
  background: #4C230A;
}

.title-small {
  /* font-family: 'Pacifico', cursive; */
  margin: 0 0 15px;
  font-size: 24px;
  color: rgb(98, 98, 109);
}

.box-services-c {
  /* margin-bottom: 20px !important; */
  font-size: 4em;
  font-weight: 300;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.box-services-c:hover i {
  /* color: #A53F2B; */
  color: #b9c2c9;
}

.title-medium {
  font-size: 3rem;
  color: rgb(255, 255, 255);
  margin: 0 0 20px;
  letter-spacing: 1px;
  position: relative;

  z-index: 99;
}

.color-on-dark {
  color: #ffffff !important;
}

.color-on-white {
  color: #ffffff !important;
}

.mg-2 {
  margin-left: 20px;

}

.mb50 {
  margin-bottom: 50px !important;
}

.mg-5 {
  margin-left: 50px;

}

.mb30 {
  margin-bottom: 30px !important;
}

.mt30 {
  margin-bottom: 30px !important;
}

.row.col-p0 [class*="col-"] {
  padding: 0px;
}

.row.col-p0 {
  margin-left: 0;
  margin-right: 0;
}

.box-services-e.green {
  background-color: rgb(234, 228, 213);
}

.box-services-d {
  position: relative;
  padding: 60px 40px;
  color: #fdfdff !important;
}

.box-services-e.dark {
  background-color: rgb(182, 176, 159);
}

.box-services-e.orange {
  background-color: rgb(247, 235, 206);
}


a {
  color: rgb(168, 167, 166);
  text-decoration: none;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

.box-services-e .fa {
  font-size: 100px;
  opacity: 0.25;
  position: absolute;
  bottom: 10px;
  right: 10px;
  color: #ffffff !important;
}

.fa {
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}


.pull-right {
  float: right !important;
}

.portfolio-filter.pf2 {
  background-color: transparent;
  padding: 5px 0px 0px;
}

.portfolio-filter {
  width: auto;
  border-top-left-radius: 2px;
  border-top-right-radius: 2px;
  background-color: rgb(245, 245, 245);
  padding: 9px 12px 6px;
}

.img-fluid {
  /* border-radius: 12px; */
  width: 100%;
 

}

.img-fluid img {
  background-position: center;
  object-fit: cover;
}


.col-sm-offset-1 {
  margin-left: 8.33333333%;
}

.br-bottom-center::after {
  content: "";
  display: block;
  height: 1px;
  width: 35px;
  border-top: 2px solid #d35400;
  margin: 8px auto 10px;
}


:before,
:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.owl-carousel {
  display: none;
  position: relative;
  width: 100%;
  -ms-touch-action: pan-y;
}

.col-3 {

  padding: 0px !important;
}

.box-left {
  display: block;
  float: left;
  text-align: center;
  margin-top: 10px;
}

.box-right {
  margin-left: 85px;

}

/* Style for the icons */

.box-services-b .box-left i {
  margin-bottom: 20px;
  font-size: 2em;
  font-weight: 300;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  background-color: #42424a;
  color: #fff;
  padding: 10px;

}

/* Hover effect for icons inside box-services-b */
.box-services-b:hover .box-left i {
  color: #fff;
  box-shadow: inset 2px 1px 8px rgba(0, 0, 0, .6);
  background-color: rgb(0, 0, 0);
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;

}

/* Initially hide the "read more" link */
.link-read-more {
  font-size: 22px;
  margin-left: 20px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.3s ease-out, transform 0.3s ease-out;
}


.box-services-b:hover .link-read-more {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  color: silver;
  z-index: 18;
}

/* Show the "read more" link and change color on hover for .box-services-d */




.box-services-d .title-uppercased,
.box-services-d .title-medium {
  font-size: 30px;
  color: #ffffff;
  margin-bottom: 20px;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  z-index: 9;
  position: relative;
}

.p-4 {
  padding: 40px;
}

.box-services-e {
  background-color: rgb(0, 0, 0);
  position: relative;
  color: #ffffff;
}

.testimonial-section {
  display: flex;
  align-items: stretch;
  /* max-width: 100%; */

}

.testimonial-left {
  flex: 2;
  background-color: #fdf4f4;
  padding: 40px;
  text-align: center;
  font-style: italic;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.testimonial-right {
  font-size: 2rem;
  background-color: #52663b;
  color: #ffffff;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.testimonial-author {
  font-weight: bold;
  color: #333;
}

.testimonial-company {
  color: #d35400;
  font-weight: 600;
}

.quote-icon {
  color: rgba(255, 255, 255, 0.2);
  /* text-align: right; */
  position: relative;

}

.quote-icon i {
  position: absolute;
  font-size: 70px;
  color: rgba(255, 255, 255, 0.2);
  /* bottom: -50px; */
  right: 30px;
}


/* Responsive */

.row.col-p30 {
  margin-left: -30px;
  margin-right: -30px;
}

.title-uppercased {
  text-transform: uppercase;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 1px;
  color: rgb(88, 88, 92);
  margin-bottom: 15px;
}

.br-bottom::after {
  content: "";
  display: block;
  height: 1px;
  width: 35px;
  border-top: 2px solid rgb(181, 67, 33);
  margin: 6px 0px 10px;
}

.mt50 {
  margin-top: 50px !important;
}

.mb10 {
  margin-bottom: 10px !important;
}

:before,
:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

/* Customize the icon before content */
.icon_lifesaver:before {
  content: "\e028";
  /* Unicode for the lifebuoy icon */
}

p {
  margin: 0 0 20px;
}

.p0 {
  padding: 0 !important;
}


.br-bottom:after {
  content: "";
  display: block;
  height: 1px;
  width: 35px;
  border-top: 2px solid rgb(181, 67, 33);
  margin: 6px 0 10px;
}

.team .team-member {
  position: relative;
  /* Make sure the parent container has relative positioning */
}

.team .team-member .social {
  position: absolute;
  background-color: rgba(0, 0, 0, 0.568);
  /* Background color for the social section */
  padding: 50px;
  left: 0;
  bottom: 0;
  right: 0;
  top: 0;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  /* Transition effect for opacity */
  text-align: center;
  justify-content: center;
  /* Center items horizontally */
  align-items: center;
  /* Center items vertically */
  width: 100%;
  /* Take full width of the parent */
  height: 100%;
  /* Take full height of the parent */
}

/* On hover, make the social section visible */
.team .team-member:hover .social {
  opacity: 1;
  /* Make the social section visible on hover */
}

.social h4 {
  font-size: 15px;
  color: #cfc8c8;

}

.social span {
  color: #cfc8c8;
  font-size: 14px;

}

.row.col-p30 [class*="col-"] {
  padding: 0 30px;
}

.testimonial-right h3 {
  color: #ffffff;
  font-size: 2rem;
}

@media (max-width: 768px) {
  .page-clients .col-xs-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .box-services-d {
    padding: 10px 10px;
  }
}

@media (max-width: 576px) {
  .page-clients .col-xs-6 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .row.col-p30 [class*="col-"] {
    padding: 0 0px !important;
  }
}

.i-box {
  position: relative;

}

.i-box i {
  position: absolute;
  font-size: 80px;
  bottom: 40px;
  right: 10px;
}



.about-bg-img {
  height: 350px;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url('../img/services.jpg');
  position: relative;
  background-position: 50% -40.2px;
}

.about-bg-img::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(2, 2, 2, 0.5);
  z-index: 1;
}

.contact-bg-img {
  height: 350px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-image: url('../img/new img/home1.jpg');
  position: relative;
  background-position: 50% -40.2px;
}

.contact-bg-img::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(2, 2, 2, 0.5);
  z-index: 1;
}

.page-title .container {
  position: relative;
  z-index: 2;
  /* Ensure the text is above the overlay */
}

/* ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
about contact
 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;*/
.section-intro {
  position: relative;
  padding: 220px 0 160px;
}

/* ===========================
   Background Images - Responsive & SEO-Friendly
=========================== */
.bg01, .bg02, .bg03, .bg04, .bg05, .bg06, .bg07, .bg08, .bg09, .bg10, .bg11, .bg035 {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 60vh;
  position: relative;
  color: white;
}

/* Overlay Text */
.overlay-text {
  background: rgba(0,0,0,0.4); /* Semi-transparent */
  padding: 20px;
  border-radius: 10px;
  text-align: center;
}

/* Individual Background Images */
.bg01 { background-image: url('../img/herro/About -pt.jpg'); }
.bg02 { background-image: url('../img/herro/services.jpg'); }
.bg03 { background-image: url('../img/herro/gallery.jpg'); }
.bg04 { background-image: url('../img/herro/contact.jpg'); }
.bg05 { background-image: url('../img/herro/our-project.jpg'); }
.bg06 { background-image: url('../img/herro/service5.jpg'); }
.bg07 { background-image: url('../img/herro/blog.jpg'); }
.bg08 { background-image: url('../img/my-project/h4.jpg'); }
.bg035 { background-image: url('../img/my-project/bg1.jpg'); }
.bg09 { background-image: url('../img/my-project/project.jpg'); min-height: 100vh; background-attachment: fixed; }
.bg10 { background-image: url('../img/my-project/bg2.jpg'); min-height: 100vh; background-attachment: fixed; }
.bg11 { background-image: url('../img/my-project/11.jpg'); min-height: 100vh; background-attachment: fixed; }

/* ===========================
   SEO Image Hidden
=========================== */
.seo-img {
  display: block;
  width: 1px;
  height: 1px;
  opacity: 0;
  position: absolute;
  left: -9999px;
}

/* ===========================
   Media Queries - Mobile Friendly
=========================== */
@media (max-width: 1200px) {
  .bg01, .bg02, .bg03, .bg04, .bg05,
  .bg06, .bg07, .bg08, .bg09, .bg10, .bg11, .bg035 {
    min-height: 50vh;
  }
}

@media (max-width: 768px) {
  .bg01, .bg02, .bg03, .bg04, .bg05,
  .bg06, .bg07, .bg08, .bg09, .bg10, .bg11, .bg035 {
    min-height: 40vh;
    background-attachment: scroll; /* Fixed disable for mobile */
  }
}


.Projects-h3 {
  color: #222 !important;
}

.bg-w {
  background-color: rgb(255, 255, 255);
  padding: 10px;
  border-radius: 2px;
}



.op6 {
  opacity: 0.6 !important;
}

.bg-overlay {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  background: #14131369;
  opacity: .6;
}

.clearfix:before,
.clearfix:after,
.dl-horizontal dd:before,
.dl-horizontal dd:after,
.container:before,
.container:after,
.container-fluid:before,
.container-fluid:after,
.row:before,
.row:after,
.form-horizontal .form-group:before,
.form-horizontal .form-group:after,
.btn-toolbar:before,
.btn-toolbar:after,
.btn-group-vertical>.btn-group:before,
.btn-group-vertical>.btn-group:after,
.nav:before,
.nav:after,
.navbar:before,
.navbar:after,
.navbar-header:before,
.navbar-header:after,
.navbar-collapse:before,
.navbar-collapse:after,
.pager:before,
.pager:after,
.panel-body:before,
.panel-body:after,
.modal-footer:before,
.modal-footer:after {
  display: table;
  content: " ";
}

:before,
:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}


.set-height {
  height: 350px;
  position: relative;
}

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

/* Optional: For small screens */
@media (max-width: 767px) {
  .set-height {
    height: 200px;
  }
}

.intro-title {
  position: relative;
  font-size: 3rem;
  font-weight: 600;
  color: #ffffff !important;
  margin-bottom: 20px;
  /* line-height: 36px; */
  letter-spacing: 1px;
  /* opacity: 0.9; */
}

.intro-title::after {
  content: "";
  display: block;
  width: 102px;
  height: 3px;
  background-color: rgb(181, 67, 33);
  margin: 22px 0 24px;
}

.intro-p {
  color: #eaecf1 !important;
  font-size: 16px;
  margin-bottom: 0;
  opacity: 0.9;
}

.page-breadcrumbs-wrapper {
  position: relative;
  top: -34px;
  margin-bottom: -38px;
}

.pull-right {
  float: right;
}

.pull-right {
  float: right !important;
}

.page-breadcrumbs {
  width: auto;
  border-top-left-radius: 2px;
  border-top-right-radius: 2px;
  background-color: #ffffff;
  padding: 9px 17px;
  font-size: 11px;
  font-weight: 600;
  color: #889;
  text-transform: uppercase;
}

.page-breadcrumbs a {
  color: #889;
}

.page-breadcrumbs .separator {
  margin: 0 8px;
}

.page-breadcrumbs a:hover,
.page-breadcrumbs a:focus,
.page-breadcrumbs a:active,
.page-breadcrumbs a.active {
  color: #99a;
}

/* Social Media Icons */
ol,
ul {
  padding-left: 0rem;
}

.social-icon>li {
  display: inline-block;
  margin-right: 8px;
}

.social-icon>li>a {
  display: table;
  z-index: 999;

}

.intro-share>li i {
  font-size: 17px;
  color: #e8eaf4;
  opacity: 0.8;
  padding-top: 5px;
}

.contact-map-wrapper {
  position: relative;
  background-color: #f5f5f5;

}

.page-contact iframe.map {
  width: 100%;
  height: 300px;
  border: 1px solid #ddd;
  border-radius: 2px;
  margin-bottom: -78px;
}

iframe {
  border: 0;
  margin: 0;
  overflow: hidden;
  width: 100%;
  height: auto;
}

.btn-b {
  background-color: #e4e4e4;
  border: none;
  color: #555560;
}

.btn {
  border-radius: 2px;
  padding: 6px 10px;
  font-size: 12px;
}

.btn-b:hover {
  background: rgb(181, 67, 33);
  border: none;
  color: white;
}

.mr10 {
  margin-right: 10px !important;
}

.box-services-d.box-services-e .bg-overlay {
  opacity: 0.4;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.box-services-d .bg-overlay {
  opacity: 0.6;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.unstyled {
  list-style: none !important;
  padding: 0 0 10px 20px;
}

.unstyled i {
  color: var(--accent-color);

}

.header-wrapper .navbar-right {
  /* margin-right: 0 !important; */
}

.navbar-right {
  float: right !important;
  /* margin-right: -15px; */
}



/* whatsapp */

/* Floating WhatsApp Icon */
.whatsapp-button {
  position: fixed;
  bottom: 80px;
  right: 15px;
  z-index: 10;
  width: 60px;
  height: 60px;
  background-color: #ffffff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  cursor: pointer;
}

.whatsapp-button img {
  width: 32px;
  height: 32px;
}

/* Chat Box */
.whatsapp-chat-box {
  position: fixed;
  bottom: 90px;
  right: 80px;
  width: 260px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  font-family: 'Poppins', sans-serif;
  display: none;
  z-index: 9999;
}

.chat-header {
  background: #708090;
  color: white;
  padding: 10px;
  border-radius: 10px 10px 0 0;
  text-align: center;
}

.chat-body {
  padding: 15px;
  font-size: 14px;
  color: #444;
}

.start-chat {
  display: block;
  background: #708090;
  border: 2px solid #708090;
  color: white;
  text-align: center;
  padding: 7px;
  border-radius: 6px;
  text-decoration: none;
  margin-top: 10px;
  transition: background 0.3s;
}

.start-chat:hover {
  border: 2px solid #708090;
  background: white;
  color: #708090;
}


/* Floating Icon */
#ai-toggle {
  position: fixed;
  bottom: 150px;
  right: 15px;
  background-color: rgb(255, 255, 255);
  color: #708090;
  font-size: 26px;
  padding: 10px 16px;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  z-index: 10;
  transition: transform 0.3s;
}

#ai-toggle:hover {
  transform: scale(1.1);
}

  html, body { cursor: none; }

  /* Inner dot */
  .cursor-dot {
    position: fixed;
    top: 0; left: 0;
    width: 6px; height: 6px;
    background: #000;
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 99999;
  }

  /* Outer ring */
  .cursor-ring {
    position: fixed;
    top: 0; left: 0;
    width: 28px; height: 28px;
    border: 2px solid #000;
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 99998;
    transition: width 0.2s ease, height 0.2s ease, border 0.2s ease;
  }

  /* Hover effect (ring expands) */
  .cursor-ring.is-hover {
    width: 40px;
    height: 40px;
    border: 2.5px solid #111;
  }

  .cursor-ring.is-hidden,
  .cursor-dot.is-hidden { opacity: 0; transition: opacity 0.2s; }

/* Chat Box Container */
#ai-chat-container {
  position: fixed;
  bottom: 200px;
  right: 70px;
  width: 300px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  font-family: 'Segoe UI', sans-serif;
  z-index: 9999;
  display: none;
  /* Hide by default */
  flex-direction: column;
  overflow: hidden;
}

.ai-chat-header {
  background: #708090;
  color: white;
  padding: 10px;
  position: relative;
  text-align: center;
}

.ai-close {
  position: absolute;
  top: 8px;
  right: 12px;
  cursor: pointer;
  font-size: 18px;
}

.ai-chat-box {
  height: 260px;
  overflow-y: auto;
  padding: 10px;
  background: #f1f1f1;
  font-size: 14px;
  line-height: 1.4;
}

.ai-chat-input {
  display: flex;
  padding: 8px;
  border-top: 1px solid #ccc;
  background: #fafafa;
}

.ai-chat-input input {
  flex: 1;
  padding: 8px;
  border-radius: 4px;
  border: 1px solid #ccc;
}

.ai-chat-input button {
  padding: 8px 12px;
  background: #708090;
  color: white;
  border: none;
  border-radius: 4px;
  margin-left: 5px;
  cursor: pointer;
}


label {
  margin-bottom: 10px;
}

.form-check {
  margin-bottom: 1.125rem;
}

.image-hover-container {
  overflow: hidden;
  /* display: inline-block; */

}

.image-hover-container img {
  transition: transform 1.4s ease;
}

.image-hover-container:hover img {
  transform: scale(1.1);
}



@media (max-width: 768px) {
  .menu>.toggle-menu {
    display: block;
    float: right;
    width: 50px;
    height: 50px;
    position: relative;
    top: -60px;
    margin-bottom: -50px;
    cursor: pointer;
    color: #dadde2;
  }

  .row.col-p30 {
    margin-left: 0px !important;
    margin-right: 0px !important;
  }

  .intro-title::after {
    content: "";
    display: block;
    width: 102px;
    height: 3px;
    background-color: rgb(181, 67, 33);
    margin: 5px 0 7px;
  }

  .title-medium {
    font-size: 2rem;

  }

}



.menu li {
  display: inline-block;
  float: left;
}

.toggle-menu .ri {
  margin: 14px 0;
  float: right;
  font-size: 24px;
}

.admin-form {
  position: relative;
  z-index: 2;
}

.client-slider-wrap {
  overflow: hidden;
  background-color: #d2d5b773;
  padding: 20px 0;
}

.client-slider {
  width: 100%;
  position: relative;
}

.slide-track {
  display: flex;
  width: calc(220px * 16);
  animation: scroll 25s linear infinite;
}

.slide-track img {
  width: 400px;
  height: 70px;
  object-fit: contain;
  margin-right: 20px;
  border-radius: 8px;
  opacity: 0.8;
  transition: 0.3s;

}


.slide-track img:hover {
  opacity: 1;
  transform: scale(1.05);
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.btn-animated {
  font-weight: 800;
  position: relative;
  overflow: hidden;
  color: #ffffff;
  border: 2.5px solid #ffffff;
  background-color: transparent;
  z-index: 1;
  transition: color 0.3s ease, border-color 0.3s ease;
}

.btn-animated::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 0;
  background-color: #050708;
  z-index: -1;
  transition: width 0.4s ease;
}

.btn-animated2 {
  color: var(--contrast-color);
  background: slategrey;
  border: 0;
  padding: 10px 30px;
  transition: 0.4s;
}

.btn-animated2:hover {
  box-shadow: inset 2px 1px 8px rgba(0, 0, 0, .6);
  color: white;
  background: slategrey;
  -webkit-transition: all .4s ease-in;
  transition: all .4s ease-in;
}


.btn-animated:hover::before {
  width: 100%;
  left: 0;
  right: auto;
}

.btn-animated:hover {
  color: white;
}

.btn-animated:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}

/* Testimonial Section  */

.testimonial-section {
  text-align: center;
  padding: 50px 20px;
  background: #fff;
  position: relative;
  display: block;
}

.testimonial-section h3 {
  font-family: 'Pacifico', cursive;
  color: rgb(26 32 38);
  font-size: 26px;
  margin-bottom: 10px;
}

.testimonial-section h2 {
  font-size: 34px;
  font-weight: 700;
  color: silver;
  margin-bottom: 40px;
}

.map-container {
  position: relative;
  background-image: url("../img/herro/Map.png");
  background-size: cover;
  background-position: center;
  height: 500px;
  max-width: 1000px;
  margin: 0 auto;
}

.client {
  position: absolute;
  cursor: pointer;
  transition: transform 0.3s;
  z-index: 1;
}

.client img {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  border: 2px solid rgb(34 125 216);
  object-fit: cover;
  position: relative;
}


.testimonial-box {
  width: 500px;
  position: absolute;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  background: white;
  border: 2px solidrgb(95, 212, 0);
  border-radius: 12px;
  padding: 20px;
  max-width: 300px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.29);
  /* border: 1px solid rgb(199, 197, 197); */
  display: none;
  z-index: 10 !important;
  text-align: left;
}

.testimonial-box p {
  font-size: 15px;
  font-weight: 500;
  color: #333;
  margin-bottom: 12px;
  line-height: 1.5;
}

.stars {
  color: #ff9800;
  font-size: 16px;
  margin-bottom: 8px;
}

.client-name {
  font-weight: 600;
  font-size: 16px;
  color: #111;
}

.client-role {
  font-size: 14px;
  color: gray;
}

.client:hover .testimonial-box {
  display: block;
}

/* Accurate client placements */
.client1 {
  top: 60%;
  left: 35%;
}

.client2 {
  top: 60%;
  left: 82%;
}

.client3 {
  top: 49%;
  left: 60%;
}

.client4 {
  top: 55%;
  left: 15%;
}

@media (max-width: 768px) {

  /* Accurate client placements */
  .client1 {
    top: 67%;
    left: 33%;
  }

  .client2 {
    top: 59%;
    left: 72%;
  }

  .client3 {
    top: 58%;
    left: 60%;
  }

  .client4 {
    top: 62%;
    left: 25%;
  }


  .testimonial-box {
    padding: 10px;

  }

  .map-container {
    height: 400px;
    background-size: contain;
  }

  .client img {
    width: 50px;
    height: 50px;
  }
}

.mg-6 {
    margin-left: 50px;
   
  }

@media (max-width: 430px) {

.arrow {
  
  right: 50px

}

  .slide img {
    width: 100%;
    object-fit: cover;
    display: block;
    z-index: 0;
  }

  section,
  .section {
    padding: 20px 0 !important;
    overflow: clip;
  }


  .slide-content {

    left: 0%;
    padding: 15px;
  }

  .portfolio-filters {
    display: none;
  }


  .title-slider-small {
    font-size: 12px;
    line-height: 12px;
    font-weight: 400;
    letter-spacing: 1px;
    color: #e2e3e4;
  }

  .title-slider-large {
    /* font-size: 24px; */
    line-height: 32px;
    font-weight: 900;
    color: #e2e3e4;
    letter-spacing: 1px;
  }



  .set-height {
    height: 250px !important;
  }

  .box-services-d {
    position: relative;
    padding: 50px 25px;
    color: #dedee3;
    height: 250px !important;
  }

  .row.col-p30 {
    margin-left: 0px;
    margin-right: 0px;
  }



  .mg-5 {
    margin-left: 10px;
    padding: 10px !important;
  }
  
   .mg-6 {
    margin-left: 20px;
   
  }

  .box-right {
    margin-left: 75px;
  }

  .intro-title {
    margin-top: 50px;
  }

  .intro-p {
    color: #ffffff !important;
    font-size: 13px;
    margin-bottom: 50px;
    margin-top:20px;
    /* opacity: 0.9; */
  }

  .clearfix:before,
  .clearfix:after,
  .dl-horizontal dd:before,
  .dl-horizontal dd:after,
  .container:before,
  .container:after,
  .container-fluid:before,
  .container-fluid:after,
  .row:before,
  .row:after,
  .form-horizontal .form-group:before,
  .form-horizontal .form-group:after,
  .btn-toolbar:before,
  .btn-toolbar:after,
  .btn-group-vertical>.btn-group:before,
  .btn-group-vertical>.btn-group:after,
  .nav:before,
  .nav:after,
  .navbar:before,
  .navbar:after,
  .navbar-header:before,
  .navbar-header:after,
  .navbar-collapse:before,
  .navbar-collapse:after,
  .pager:before,
  .pager:after,
  .panel-body:before,
  .panel-body:after,
  .modal-footer:before,
  .modal-footer:after {
    display: none;
    content: none;
  }

  .col-sm-offset-1 {
    margin-left: 0%;
  }

  .i-box i {
    position: absolute;
    font-size: 100px;

    right: 10px;
  }


  .row.col-p30 [class*="col-"] {
    padding: 0 30px;
  }

  .testimonial-box {
    max-width: 70vw;

  }

  .map-container {
    height: 350px;
    background-size: contain;
  }

  .client img {
    width: 50px;
    height: 50px;
  }

  /* Accurate client placements */
  .client1 {
    top: 75%;
    left: 45%;
  }

  .client2 {
    top: 69%;
    left: 48%;
  }

  .client3 {
    top: 70%;
    left: 55%;
  }

  .client4 {
    top: 72%;
    left: 33%;
  }
}

.testimonial-box {
  display: none;
}

.client.active .testimonial-box {
  display: block;
}



.service-card {
  transition: transform 0.4s ease, box-shadow 0.4s ease, background 0.4s ease;
  border-radius: 12px;
  height: 350px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: #fff;
  padding: 20px;
  text-align: center;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(135deg, rgb(240, 231, 212), rgb(255, 255, 255));
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
}

.service-card:hover::before {
  opacity: 1;
}

.service-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.2);
  background-color: rgb(250, 248, 248);
}

.service-card .card-title {
  font-weight: 600;
  color: rgb(61 92 92);
  font-size: 1.2rem;
}

.service-card .card-text {
  font-size: 15px;
  margin-top: 10px;
  color: #555;
}

.service-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 60px;
  animation: floatIcon 2.5s ease-in-out infinite;
}

@keyframes floatIcon {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-6px);
  }
}

.fade-in {
  animation: fadeIn 0.6s ease-in-out;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.intro-title {
  background: linear-gradient(90deg, #fbf4d0, #f6f6f6, #f8eacc);
  background-size: 300% 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientMove 6s ease infinite;
  font-weight: bold;
}

@keyframes gradientMove {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.inner-box {
  box-shadow: inset 0 0 20px rgba(180, 179, 179, 0.562);
}

.hover-spacing {
  transition: letter-spacing 0.7s ease;
  /* normal state me lagao */
}

.hover-spacing:hover {
  letter-spacing: 1px;
}

.sil {
  color: silver;
}

#cookie-popup {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: #fff;
  border: 1px solid #ccc;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  padding: 15px;
  z-index: 9999;
  border-radius: 8px;
  font-family: Arial, sans-serif;
}

/* Cookie box layout */
#cookie-popup .cookie-box {
  display: flex;
  flex-direction: column;
  /* vertical on small screens */
  justify-content: space-between;
  align-items: flex-start;
  gap: 10px;
  /* space between text and buttons */
}

#cookie-popup p {
  margin: 0;
  font-size: 14px;
  color: #333;
}

#cookie-popup a {
  color: #007BFF;
  text-decoration: none;
}

/* Buttons container */
#cookie-popup .cookie-buttons {
  display: flex;
  gap: 10px;
  /* space between buttons */
  flex-wrap: wrap;
  /* wrap on small screens */
}

/* General button styles */
#cookie-popup button {
  color: #fff;
  border: none;
  padding: 6px 14px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 14px;
}

/* Accept button */
#accept-cookies {
  background-color: #007BFF;
}

#accept-cookies:hover {
  background-color: #0056b3;
  /* dark blue on hover */
}

/* Reject All button */
#reject-cookies {
  background-color: silver;
}

#reject-cookies:hover {
  background-color: #868a87ff;
  /* dark grey on hover */
}

/* Responsive: larger screens row layout */
@media(min-width: 576px) {
  #cookie-popup .cookie-box {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.footer-logo a img {
  max-width: 100%;
  /* container ke andar fit ho jaye */
  height: auto;
  /* aspect ratio maintain rahe */
  display: block;
  /* extra space remove kare */
}

/* Optional: different max-width for different devices */
@media (max-width: 767px) {

  /* Mobile devices */
  .footer-logo a img {
    width: 150px;
  }
}

@media (min-width: 768px) and (max-width: 1199px) {

  /* Tablet */
  .footer-logo a img {
    width: 200px;
  }
}

@media (min-width: 1200px) {

  /* Desktop */
  .footer-logo a img {
    width: 250px;
  }
}

 .payment-icons {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 15px;
}
.payment-icons img {
  object-fit: contain;
}


.team-card {
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}
.team-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 32px rgba(0,0,0,0.12);
}
.team-img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
  margin: 0 auto;
  display: block;
}
.badge {
  font-size: 0.7rem;
  margin: 0 3px;
}

.bg-primary-subtle {
    background-color: #0a0b0c !important;
}
.text-primary {
    color: #f8f9fa !important;
    padding: 8px;
}
