
/* Fonts */
:root {
  --default-font: "Roboto",  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Raleway",  sans-serif;
  --nav-font: "Poppins",  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; /* Background color for the entire website, including individual sections */
  --default-color: #555555; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #222222; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #01b1d7; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* 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: #555555;  /* The default color of the main navmenu links */
  --nav-hover-color: #01b1d7; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #555555; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #01b1d7; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* 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: #F9FAF1;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #6b1603;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #252525;
  --contrast-color: #ffffff;
}

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

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

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

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

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

/* Pulsating Play Button
------------------------------*/
.pulsating-play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(#6b1603 50%, color-mix(in srgb, #6b1603, transparent 75%) 52%);
  border-radius: 50%;
  display: block;
  position: relative;
  overflow: hidden;
}

.pulsating-play-btn:before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  animation-delay: 0s;
  animation: pulsate-play-btn 2s;
  animation-direction: forwards;
  animation-iteration-count: infinite;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid color-mix(in srgb, #6b1603, transparent 30%);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}

.pulsating-play-btn:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.pulsating-play-btn:hover:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 200;
  animation: none;
  border-radius: 0;
}

.pulsating-play-btn:hover:after {
  border-left: 15px solid #a87a20;
  transform: scale(20);
}

@keyframes pulsate-play-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

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



/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 15px 0;
  transition: all 0.5s;
  z-index: 997;
}

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

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

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

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

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

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

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: #6b1603;
    padding: 18px 15px;
    font-size: 13px;
    font-family: var(--nav-font);
    font-weight: 500;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

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

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

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: #a87a20;
  }

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

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

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

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

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

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

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

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

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

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

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px color-mix(in srgb, var(--default-color), transparent 90%);
  }

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

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

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

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: #4d0e00;
  }

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

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

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

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

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

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

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/

.footer {
  color: var(--default-color);
/*  background-color: var(--background-color);*/
  font-size: 14px;
  position: relative;
  background-image: url("../img/footer_bg.webp");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

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

.footer .footer-about .logo {
  line-height: 1;
  margin-bottom: 25px;
}

.footer .footer-about .logo img {
  max-height: 60px;
  margin-right: 6px;
}

.footer .footer-about .logo span {
  color: var(--heading-color);
  font-family: var(--heading-font);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 1px;
}

.footer .footer-about p {
  font-size: 14px;
  font-family: var(--heading-font);
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-right: 10px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: #e6b554;
  border-color: #e6b554;
}

.footer h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
}

.footer .footer-links {
  margin-bottom: 30px;
}

.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-links ul i {
  padding-right: 2px;
  font-size: 12px;
  line-height: 0;
}

.footer .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  display: inline-block;
  line-height: 1;
}

.footer .footer-links ul a:hover {
  color: #e6b554;
}

.footer .footer-contact p {
  margin-bottom: 5px;
  width:280px;
  text-align:justify;

}

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

.footer .copyright p {
  margin-bottom: 0;
  text-align: left;
}
.footer .credits a{
  color:#f1c366;
}
.footer .credits p {
/*  margin-top: 8px;*/
  font-size: 13px;
  float:right;
  
}

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

/*#preloader:before {*/
/*  content: "";*/
/*  position: fixed;*/
/*  top: calc(50% - 30px);*/
/*  left: calc(50% - 30px);*/
/*  border: 6px solid #ffffff;*/
/*  border-color: var(--accent-color) transparent var(--accent-color) transparent;*/
/*  border-radius: 50%;*/
/*  width: 60px;*/
/*  height: 60px;*/
/*  animation: animate-preloader 1.5s linear infinite;*/
/*}*/

/*@keyframes animate-preloader {*/
/*  0% {*/
/*    transform: rotate(0deg);*/
/*  }*/

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

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: #4d0e00;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

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

.scroll-top:hover {
  background-color: #a87a20;
  color: var(--contrast-color);
}

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

/*--------------------------------------------------------------
# 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: 80px 0;
  text-align: left;
  position: relative;
  background-image: url("../img/page-title-bg.webp")!important;
}

/*.page-title:before {
  content: "";
  background-color: color-mix(in srgb, var(--background-color), transparent 50%);
  position: absolute;
  inset: 0;
}*/
.page-title h1{
  color:#6b1603;
}
.page-title .heading {
  padding: 80px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.page-title .heading h1 {
  font-size: 38px;
  font-weight: 700;
 
}

.page-title nav {
  /*background-color: color-mix(in srgb, var(--default-color), transparent 95%);*/
  padding: 20px 0;
}

.page-title nav ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  color:#6b1603;
}

.page-title nav ol li+li {
  padding-left: 10px;
  color:#6b1603;
}

.page-title nav ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: #6b1603!important;
}
.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;
  text-align: left;
}
.page-title .breadcrumbs a{
  color: #8c5e03;
}
.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: 60px 0;
  scroll-margin-top: 85px;
  overflow: clip;
}
.section-title .image-divider{
  width:15%;
  text-align: center;
  }
  @media (max-width: 768px) {
    .section-title .image-divider{
  width:40%;
  }
  }

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 66px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding: 30px 0;
  margin-bottom: 30px;
  position: relative;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 0;
  position: relative;
  z-index: 2;
}

.section-title span {
  position: absolute;
  top: 4px;
  color: color-mix(in srgb, var(--heading-color), transparent 95%);
  left: 0;
  right: 0;
  z-index: 1;
  font-weight: 700;
  font-size: 52px;
  text-transform: uppercase;
  line-height: 1;
}

.section-title p {
  margin-bottom: 0;
  position: relative;
  z-index: 2;
}

@media (max-width: 575px) {
  .section-title h2 {
    font-size: 28px;
    margin-bottom: 15px;
  }

  .section-title span {
    font-size: 38px;
  }
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
/* 
---------------------------------------------
banner
--------------------------------------------- 
*/

#top .container-fluid {
  padding-top: 0px;
  padding-right:0px;
  padding-left: 0px;
}

.banner {
      display: flex;
      flex-direction: row;
      height: 750px; /* Set a fixed height for desktop */
      width: 100%;
    }

    /* Image on the left and slider on the right (Desktop view) */
    .banner-image {
      flex: 1;
      background-image: url('../img/banner2.webp');
      background-size: cover;
      background-position: center;
      height: 100%;

    }

    .slider-container {
      flex: 1;
      padding: 15px;
      background-image:url('../img/pattern.webp') ;
      background-size: cover;
      background-position: center;
      height: 100%;
    }

    .carousel-item img {
      width: 100%;
      height: 100%;
    object-fit: none;
    margin-top: 0;
    }

    /* Styles for mobile devices */
    @media (max-width: 768px) {
      /* Stack the image and slider vertically on mobile */
      .banner {
        flex-direction: column;
        height: auto; /* Allow the height to adjust based on content */
      }

      /* Adjust image for mobile */
      .banner-image {
        height: 200px; /* Set a fixed height for the image on mobile */
        min-height: 400px; /* Ensure that the image has a minimum height */
        background-position: center;
        background-size: cover;
        background-repeat: no-repeat; /* Prevent the image from repeating */
      }

      .slider-container {
        padding: 10px;
      }

      .carousel-item img {
        height: 400px; /* Set smaller height for carousel images on mobile */
        margin-top:0px;
      }
    }
/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about{
  background-image: url("../img/image 5.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.about  img{
  border-radius: 10px;
  }
.about ul {
  list-style: none;
  padding: 0;
}
.about p{
  line-height: 2.2;
  text-align:justify;
}
.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);
}

/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features{
 background-image:url("../img/cinema_bg.webp");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.features h3 {
  color: var(--heading-color);
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 15px;
}
.features p{
  line-height: 2.2;
  text-align: justify;
}

.features .icon-box {
  margin-top: 50px;
}

.features .icon-box i {
  color: var(--accent-color);
  background-color: var(--surface-color);
  border: 2px solid color-mix(in srgb, var(--accent-color), transparent 60%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 25px;
  font-size: 32px;
  width: 64px;
  height: 64px;
  border-radius: 50px;
  transition: 0.5s;
  line-height: 0;
}

.features .icon-box:hover i {
  background: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
}

.features .icon-box .title {
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 18px;
}

.features .icon-box .title a {
  color: var(--heading-color);
  transition: 0.3s;
}

.features .icon-box .title a:hover {
  color: var(--accent-color);
}

.features .icon-box .description {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.features .video-box {
  min-height: 400px;
}

.features .video-box img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  border-radius: 30px;
  }

.features .pulsating-play-btn {
  position: absolute;
  left: calc(50% - 47px);
  top: calc(50% - 47px);
  z-index: 1;
}

/*--------------------------------------------------------------
# Stats Section
--------------------------------------------------------------*/
.stats{
  background-image: url("../img/walkthrough_back.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.stats .stats-item {
  padding: 30px;
  width: 100%;
}

.stats .pulsating-play-btn {
  position: absolute;
  left: calc(50% - 47px);
  top: calc(50% - 47px);
  z-index: 1;
}
.stats .stats-item span {
  font-size: 48px;
  display: block;
  color: var(--accent-color);
  font-weight: 700;
}

.stats .stats-item p {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  padding: 0;
  margin: 0;
  font-family: var(--heading-font);
  font-size: 15px;
  font-weight: 600;
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .service-item {
  background-color: var(--surface-color);
  padding: 20px;
  border:1px solid #6b1603;
/*  border: 1px solid color-mix(in srgb, #6b1603, transparent 85%);*/
  transition: 0.3s;
  border-radius:10px;
}
.services p{
  text-align: justify;
  line-height: 2.2;
}

.services .service-item .icon {
  font-size: 30px;
  line-height: 0;
  margin-right: 30px;
  color: #6b1603;
}
.services .service-item img{
  width:100px;height: 100px;margin-top:-20px;
  margin-right: 20px;
}
.services .workimg{
  height:400px;
  border-radius: 10px;
  width: 100%;
}

.services .service-item .title {
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 18px;
}

.services .service-item .title a {
  color: #6b1603;
}

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

.services .service-item:hover {
  border-color: #a87a20;
}

.services .service-item:hover .title a {
  color: #a87a20;
}


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

.portfolio .portfolio-filters li {
  cursor: pointer;
  display: inline-block;
  padding: 0;
  font-size: 18px;
  font-weight: 500;
  margin: 0 10px;
  line-height: 1;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
}

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

.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 5px;
  }
}
.portfolio .portfolio-item{
  margin-bottom: 25px;
}
.portfolio .portfolio-content {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
 }

.portfolio .portfolio-content img {
  transition: 0.3s;
}

.portfolio .portfolio-content .portfolio-info {
  opacity: 0;
  position: absolute;
  inset: 0;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  background: rgba(0, 0, 0, 0.6);
  padding: 15px;
}

.portfolio .portfolio-content .portfolio-info h4 {
  font-size: 14px;
  padding: 5px 10px;
  font-weight: 400;
  color: #ffffff;
  display: inline-block;
  background-color: #6b1603;
}

.portfolio .portfolio-content .portfolio-info p {
  position: absolute;
  bottom: 10px;
  text-align: center;
  display: inline-block;
  left: 0;
  right: 0;
  font-size: 16px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
}

.portfolio .portfolio-content .portfolio-info .preview-link,
.portfolio .portfolio-content .portfolio-info .details-link {
  position: absolute;
  left: calc(50% - 40px);
  font-size: 26px;
  top: calc(50% - 14px);
  color: #fff;
  transition: 0.3s;
  line-height: 1.2;
}

.portfolio .portfolio-content .portfolio-info .preview-link:hover,
.portfolio .portfolio-content .portfolio-info .details-link:hover {
  color: #a87a20;
}

.portfolio .portfolio-content .portfolio-info .details-link {
  left: 50%;
  font-size: 34px;
  line-height: 0;
}

.portfolio .portfolio-content:hover .portfolio-info {
  opacity: 1;
}

.portfolio .portfolio-content:hover img {
  transform: scale(1.1);
}
.portfolio .nav-link {
    display: block;
    padding: var(--bs-nav-link-padding-y) var(--bs-nav-link-padding-x);
    font-size: var(--bs-nav-link-font-size);
    font-weight: var(--bs-nav-link-font-weight);
    color: #6a1c0f;
    text-decoration: none;
    background: 0 0;
    border: 0;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out;
}
.portfolio .nav-pills .nav-link.active, .nav-pills .show>.nav-link {
    color: #fff;
    background-color: #a87a20!important;
}


/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
.team .member {
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  text-align: center;
  margin-bottom: 20px;
}

.team .member img {
  margin: -1px -1px 30px -1px;
}

.team .member .member-content {
  padding: 0 20px 30px 20px;
}

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

.team .member span {
  font-style: italic;
  display: block;
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.team .member p {
  padding-top: 10px;
  font-size: 14px;
  font-style: italic;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.team .member .social {
  margin-top: 15px;
}

.team .member .social a {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
  transition: 0.3s;
}

.team .member .social a:hover {
  color: var(--accent-color);
}

.team .member .social i {
  font-size: 18px;
  margin: 0 2px;
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials {
  padding: 80px 0;
  position: relative;
}

.testimonials:before {
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 30%);
  position: absolute;
  inset: 0;
  z-index: 2;
}

.testimonials .testimonials-bg {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.testimonials .container {
  position: relative;
  z-index: 3;
}

.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .testimonial-item {
  text-align: center;
}

.testimonials .testimonial-item .testimonial-img {
  width: 100px;
  border-radius: 50%;
  border: 6px solid color-mix(in srgb, var(--default-color), transparent 85%);
  margin: 0 auto;
}

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

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

.testimonials .testimonial-item .stars {
  margin-bottom: 15px;
}

.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(--default-color), transparent 40%);
  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: 0 auto 15px auto;
}

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

.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 50%);
  opacity: 0.5;
}

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

@media (min-width: 992px) {
  .testimonials .testimonial-item p {
    width: 80%;
  }
}

/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq .faq-container {
  margin-top: 15px;
}

.faq .faq-container .faq-item {
  background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  position: relative;
  padding: 20px;
  margin-bottom: 20px;
  overflow: hidden;
  transition: 0.3s;
}

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

.faq .faq-container .faq-item h3 {
  font-weight: 600;
  font-size: 18px;
  line-height: 24px;
  margin: 0 30px 0 32px;
  transition: 0.3s;
  cursor: pointer;
}

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

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

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

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

.faq .faq-container .faq-item .faq-icon {
  position: absolute;
  top: 22px;
  left: 20px;
  font-size: 20px;
  line-height: 0;
  transition: 0.3s;
  color: var(--accent-color);
}

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

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

.faq .faq-container .faq-active {
  background-color: var(--accent-color);
  transition: 0.3s;
}

.faq .faq-container .faq-active h3,
.faq .faq-container .faq-active h3:hover,
.faq .faq-container .faq-active .faq-toggle,
.faq .faq-container .faq-active .faq-icon,
.faq .faq-container .faq-active .faq-content {
  color: var(--contrast-color);
}

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

.faq .faq-container .faq-active .faq-toggle {
  transform: rotate(90deg);
}
/* Styling for the accordion */

.faq .accordion .accordion-item {
    border-radius: 10px; /* Rounded corners */
    border: 1px solid #6b1603; /* Border color and thickness */
    margin-bottom: 10px; /* Space between accordion items */
}

/* Styling for the accordion header */
.accordion-header {
    background-color: #f8f9fa; /* Background color */
    border-radius: 10px; /* Rounded corners */
}

/* Styling for the accordion button */
.accordion-button {
    border: none; /* Remove default border */
    background-color: #f8f9fa; /* Background color for the button */
    color: #6b1603; /* Text color */
    font-weight: bold; /* Button text bold */
    border-radius: 10px; /* Rounded corners for the button */
    transition: background-color 0.3s ease-in-out; /* Smooth transition effect */
}

/* Styling for the collapsed accordion button */
.accordion-button.collapsed {
    background-color: #f1f1f1; /* Lighter background when collapsed */
}

/* Adding border-radius and hover effects */
.accordion-button:hover {
    background-color: #f1f1f1; /* Lighter background on hover */
}

/* Styling for the accordion collapse area */
.accordion-collapse {
    border-top: 1px solid #6b1603; /* Add border on the top of the expanded section */
/*    border-bottom: 2px solid #6b1603; */
}

/* Styling for the accordion body */
.accordion-body {
    background-color: #fff; /* Set background color for the body */
    border-radius: 10px; /* Rounded corners */
    padding: 15px; /* Padding inside the body */
}

/* Styling for icons (optional, to adjust margins and color) */
.accordion-body i {
    color: #6b1603; /* Set icon color to match the border */
    margin-right: 8px; /* Space between icon and text */
}
.faq .accordion-flush>.accordion-item>.accordion-header .accordion-button, .accordion-flush>.accordion-item>.accordion-header  {
    border-radius: 10px;
}
.faq .accordion-button:not(.collapsed) {
    color: #6b1603;
    background-color: #F9FAF1;
    box-shadow: none;
}
.faq .accordion-button:focus {
    z-index: 3;
    outline: 0;
 box-shadow: none; 
}


/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/
.pricing .pricing-item {
  background-color: #fff;
  padding: 20px 10px;
  /*box-shadow: 0 3px 20px -2px rgba(0, 0, 0, 0.1);
  height: 100%;*/
  position: relative;
  text-align: center;
  border-radius: 10px;
}
.pricing p{
  font-size:20px;
  font-weight: 400;
  line-height: 2.2;
  color:#555555;
}
.pricing h3 {
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 20px;
}

.pricing h4 {
  font-size: 28px;
  color: #a87a20;
  font-family: var(--heading-font);
  font-weight: 400;
}

.pricing h4 sup {
  font-size: 28px;
}

.pricing h4 span {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
  font-size: 18px;
}

.pricing ul {
  padding: 20px 0;
  list-style: none;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  text-align: left;
  line-height: 20px;
}

.pricing ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.pricing ul i {
  color: #059652;
  font-size: 24px;
  padding-right: 3px;
}

.pricing ul .na {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.pricing ul .na i {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.pricing ul .na span {
  text-decoration: line-through;
}

.pricing .buy-btn {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  background-color:#6b1603;
  display: inline-block;
  padding: 10px;
  border-radius: 5px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 60%);
  transition: none;
  font-size: 12px;
  font-weight: 300;
  font-family: var(--heading-font);
  transition: 0.3s;
}

.pricing .buy-btn:hover {
  background: #a87a20;
  border-color: #a87a20;
  color: #fff;
}

.pricing .featured {
  z-index: 10;
}

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

@media (min-width: 992px) {
  .pricing .featured .pricing-item {
    transform: scale(1.02, 1.1);
  }
}

.pricing .featured h3,
.pricing .featured h4,
.pricing .featured h4 span,
.pricing .featured ul,
.pricing .featured ul .na,
.pricing .featured ul i,
.pricing .featured ul .na i {
  color: var(--contrast-color);
}

.pricing .featured .buy-btn {
  background: var(--accent-color);
  color: var(--contrast-color);
  border-color: var(--contrast-color);
}

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

.pricing .nav-link:focus, .nav-link:hover {
    color: #fff!important;
    background:#a87a20;
}
.pricing .nav-pills .nav-link.active, .nav-pills .show>.nav-link {
    color: #fff;
    background-color: #a87a20!important;
}
.pricing .nav-link{
  color:#fff;
}

/*--------------------------------------------------------------
# Why Us Section
--------------------------------------------------------------*/
.why-us {
  padding: 30px 0;
}

.why-us .content h3 {
  font-weight: 400;
  font-size: 34px;
}

.why-us .content p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.why-us .faq-container .faq-item {
  background-color: var(--surface-color);
  position: relative;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0px 5px 25px 0px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

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

.why-us .faq-container .faq-item h3 {
  font-weight: 500;
  font-size: 17px;
  line-height: 24px;
  margin: 0 30px 0 0;
  transition: 0.3s;
  cursor: pointer;
}

.why-us .faq-container .faq-item h3 span {
  color: #511507;
  padding-right: 5px;
  font-weight: 600;
}

.why-us .faq-container .faq-item h3:hover {
  color: #9b6f17;
}

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

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

.why-us .faq-container .faq-item .faq-icon {
  position: absolute;
  top: 22px;
  left: 20px;
  font-size: 22px;
  line-height: 0;
  transition: 0.3s;
  color: #511507;
}

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

.why-us .faq-container .faq-item .faq-toggle:hover {
  color: #511507;
}

.why-us .faq-container .faq-active h3 {
  color: #511507;
}

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

.why-us .faq-container .faq-active .faq-toggle {
  transform: rotate(90deg);
  color: #511507;
}

.why-us .why-us-img {
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-us .why-us-img img {
  max-height: 70%;
}

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

.contact  .info-item i {
  color: var(--contrast-color);
  background: #6b1603;
  font-size: 20px;
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  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 a {
  padding: 0;
  margin-bottom: 0;
  font-size: 16px;
  color:#555555;
}
.contact h4{
    margin-bottom:15px;
    text-transform: none;
}
/* Override Bootstrap's default focus and active styles */
.contact .form-control {
  border: 1px solid #6b1603 !important; /* Custom border color */
  border-radius: 0 !important; /* No border-radius */
  background-color: color-mix(in srgb, #ffffff, transparent 50%) !important; /* Custom background */
  color: var(--default-color); /* Default text color */
  transition: .15s ease-in-out, box-shadow .15s ease-in-out;
}

/* Focus styles for form-control elements */
.contact .form-control:focus {
  border-color: #9c7018 !important; /* Custom border color on focus */
  box-shadow: 0 0 0 0.25rem rgba(156, 112, 24, 0.25) !important; /* Remove blue, add custom shadow */
  background-color: rgba(255, 255, 255, 0.8) !important; /* Slightly transparent background */
}

/* Remove default blue color for select dropdown */
.contact .form-control select {
  border: 1px solid #6b1603 !important; /* Custom border color */
  border-radius: 0 !important; /* No border-radius */
  background-color: color-mix(in srgb, #ffffff, transparent 50%) !important; /* Custom background */
  color: var(--default-color); /* Default text color */
  transition: .15s ease-in-out, box-shadow .15s ease-in-out;
}

/* Focus state for select dropdown */
select.form-control:focus {
  background-color: rgba(255, 255, 255, 0.8) !important; /* Transparent background */
  color: #6b1603; /* Custom text color */
  border-color: #9c7018 !important; /* Custom border color */
  box-shadow: 0 0 0 0.25rem rgba(156, 112, 24, 0.25) !important; /* Custom box shadow */
}

/* Styling for options inside select */
select.form-control option {
  background-color: #ffffff !important; /* White background for options */
  color: #6b1603; /* Text color */
}

/* Hover effect for options */
select.form-control option:hover {
  background-color: rgba(176, 134, 53, 0.8) !important; /* Custom hover background */
  color: #ffffff; /* White text on hover */
}

/* When an option is selected (active state), change the background */
select.form-control:active {
  background-color: rgba(176, 134, 53, 0.8) !important; /* Change background when active */
  color: #ffffff; /* Text color when active */
}

/* Prevent default blue background when an option is selected */
select.form-control option:checked {
  background-color: rgba(176, 134, 53, 0.8) !important; /* Change background when selected */
  color: #ffffff; /* Text color when selected */
}

/* Button styles */
.contact .form-control button[type=submit] {
  color: var(--contrast-color);
  background: rgba(107, 22, 3, 0.8); /* Semi-transparent background */
  border: 0;
  padding: 10px 30px;
  transition: 0.4s;
  border-radius: 4px;
}

/* Hover state for the button */
.contact .form-control button[type=submit]:hover {
  background: rgba(156, 112, 24, 0.8); /* Change background on hover */
}

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

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

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

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

.portfolio-details .portfolio-info {
  background-color: var(--surface-color);
  padding: 30px;
  box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
}

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

.portfolio-details .portfolio-info ul li+li {
  margin-top: 10px;
}

.portfolio-details .portfolio-description {
  padding-top: 30px;
}

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

.portfolio-details .portfolio-description p {
  padding: 0;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}


.portfolio .nav-tabs {
  border: 0;
  background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  padding: 6px;
  width: auto;
}

.portfolio .nav-item {
  margin: 0;
  padding: 0 5px 0 0;
}

.portfolio .nav-item:last-child {
  padding-right: 0;
}

.portfolio .nav-link {
  background-color: none;
  color: var(--heading-color);
  padding: 10px 30px;
  transition: 0.3s;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  height: 100%;
  border: 0;
  margin: 0;
}

@media (max-width: 468px) {
  .portfolio .nav-link {
    padding: 8px 20px;
  }
}

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

.portfolio .nav-link h4 {
  font-size: 14px;
  font-weight: 500;
  margin: 0;
}

.portfolio .nav-link:hover {
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.portfolio .nav-link:hover h4 {
  color: #ffffff;
}

.portfolio .nav-link.active {
  background-color: #6b1603;
  border-color: #6b1603;
}

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

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

.portfolio .tab-pane h3 {
  color: var(--heading-color);
  font-weight: 700;
  font-size: 32px;
  position: relative;
  margin-bottom: 20px;
  padding-bottom: 20px;
}

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


/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .services-list {
  background-color: var(--surface-color);
  padding: 10px 30px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  margin-bottom: 20px;
}

.service-details .services-list a {
  display: block;
  line-height: 1;
  padding: 8px 0 8px 15px;
  border-left: 3px solid color-mix(in srgb, var(--default-color), transparent 70%);
  margin: 20px 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  transition: 0.3s;
}

.service-details .services-list a.active {
  color: var(--heading-color);
  font-weight: 700;
  border-color: var(--accent-color);
}

.service-details .services-list a:hover {
  border-color: var(--accent-color);
}

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

.service-details h3 {
  font-size: 26px;
  font-weight: 700;
}

.service-details h4 {
  font-size: 20px;
  font-weight: 700;
}

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

.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);
}


/*--------------------------------------------------------------
# Cards Section
--------------------------------------------------------------*/
.cards .card-item {
  background: color-mix(in srgb, var(--default-color), transparent 97%);
  padding: 40px 30px;
  transition: all ease-in-out 0.3s;
  height: 100%;
  position: relative;
}

.cards .card-item span {
  color: var(--accent-color);
  display: block;
  font-size: 28px;
  font-weight: 700;
}
.cards .card-item .img-fluid {
  border-radius: 10px;
}
.cards .card-item h4 {
  font-size: 24px;
  font-weight: 600;
  padding: 0;
  margin: 10px 0;
}

.cards .card-item h4 a {
  color: var(--heading-color);
}

.cards .card-item p {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin: 0;
  padding: 0;
}

.cards .card-item:hover {
  background: #ae822c;
  padding: 10px 10px 10px 10px;
}

.cards .card-item:hover span,
.cards .card-item:hover h4 a,
.cards .card-item:hover p {
  color: var(--contrast-color);
}
/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/
.starter-section {
  /* Add your styles here */
}
 .card {
    transition: transform 0.3s ease;
    height:150px;margin-bottom:80px;

}

.card:hover {
    transform: translateY(-10px);
}

.card-img-top {
    border-radius: 10px;
    max-height: 200px;
    object-fit: cover;
}

.card-body {
    padding: 15px;
}

.card-title {
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

/*---ACTION BUTTONS---*/
/* Styles for desktop view */
@media (min-width: 768px) {
    .btn-container {
        position: fixed;
        top: 60%;
        right: -155px; /* Adjust as necessary */
        transform: translateY(-50%) rotate(90deg); /* Center vertically and rotate */
        z-index: 999;
      }
      .btn-container a{
        font-size: 14px;
      }
    .btn-success {
    color: #ffffff;
    background-color: #4d0e00;
    border-color:#4d0e00;
    font-size: 14px;
    }
    .btn-success:hover {
      color: #050505;
    background-color: #e6b554;;
    border-color:#e6b554;;
    }
    .btn-success:active{
     color: #ffffff;
    background-color: #4d0e00!important;
    border-color:#4d0e00!important;
    }
    .btn-success:focus{
     color: #ffffff;
    background-color: #4d0e00;
    border-color:#4d0e00;
    }
}

/* Styles for mobile view */
@media (max-width: 767px) {
  .btn-container {
/*        position: fixed;*/
        bottom: 0px; /* Fix at the bottom */
        left: 0; /* Align to the left */
        right: 0; /* Align to the right */
        display: flex;
        flex-direction: column; /* Stack buttons vertically */
        gap: 0px; /* Space between buttons */
        padding: 0px; /* Space from edges */
        background:transparent; /* Semi-transparent background */
    }
    .btn-success {
    color: #fff;
    background-color: #f58220 ;
    border-color:#f58220 ;
    width: 100% !important;
}
.btn-success:active{
     color: #050507;
    background-color: #f58220!important;
    border-color:#f58220!important;
    }
    .btn-success:focus{
     color: #050507;
    background-color: #f58220;
    border-color:#f58220;
    }
}
/*--END ACTION BUTTON ---*/

.message {
    text-align: center;
    padding: 20px;
}

.message h2 {
    font-size: 24px;
    margin-bottom: 10px;
}

.message p {
    font-size: 18px;
    margin-bottom: 20px;
}

.message .btn {
    padding: 10px 20px;
    background-color: #007bff;
    color: #fff;
    border: none;
    text-decoration: none;
    border-radius: 5px;
    font-size: 16px;
}

.swiper-pagination-bullet {
    background-color: #888; /* Adjust bullet color */
    opacity: 1;
    transition: background-color 0.3s ease;
  }

  /* Active bullet color */
  .swiper-pagination-bullet-active {
    background-color: #4d0e00; /* Active bullet color */
  }

  /* Optional: Bullet hover effect */
  .swiper-pagination-bullet:hover {
    background-color: #ff4500; /* Bullet hover color */
  }
  
  /* For mobile view (default) */
#staticBackdrop2 .modal-dialog {
  margin: 0 auto;  /* Center the modal horizontally */
  max-width: 100%;  /* Ensure it doesn't overflow the screen */
  width: 90%;  /* Adjust width to 90% on smaller screens */
}

/* For large screens (desktop view) */
@media (min-width: 992px) {
  #staticBackdrop2 .modal-dialog {
    margin: 80px;  /* No margin, modal will align with the left */
    max-width: 600px;  /* Optional: control the max width on larger screens */
    width: auto;  /* Allow modal to adjust size automatically */
  }
}

/* You can also add some custom styles to the modal content if needed */
.modal-content {
  padding: 20px;
}

/* Optional: Control header size on smaller screens */
@media (max-width: 576px) {
  .modal-header h1 {
    font-size: 1.2rem;  /* Make the title smaller on mobile */
  }
}

/* Adjust select dropdown and textarea size */
.select, .form-control {
/*  width: 100%;*/
/*  border: 1px solid #6b1603!important;*/
/*  border-radius: none!important;*/
/* transition:  .15s ease-in-out, box-shadow .15s ease-in-out;*/
 
/*}*/
  

/*   select.form-control:focus {*/
/*            background-color:#ffffff !important;*/
/*            color:#6b1603 ;*/
/*        }*/

/*        select.form-control option {*/
/*            background-color: #ffffff!important;*/
/*            color: #6b1603;*/
/*        }*/
/*  select.form-control option:hover {*/
/*            background-color: #b08635!important;*/
/*            color: #ffffff;*/
/*        }*/
  
  
  
  
  
