

:root {
  --default-font: "Montserrat", system-ui, -apple-system, "Segoe UI", "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Montserrat", sans-serif;
  --nav-font: "Montserrat", 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: #000000;
  /* 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: #FFDF00;
  /* 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: #FFDF00;
  /* 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: #5cb874;
  /* 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: #f9fcf9;
  --surface-color: #ffffff;
}

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

.accent-background {
  --background-color: #000000;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #80c792;
}

/* 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);
} */
.cscontainer {
  max-width: 1200px;
  /* Maximum width of the container */
  margin: 0 auto;
  /* Center the container */
  padding: 0 15px;/
}

@media (min-width: 700px) {
  .cscontainer {
    width: 100%;
  }
/*   .haveaq{
    font-size: 17px !important;
  } */
}

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



/* 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;
}

.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 {
  color: var(--default-color);
  transition: all 0.5s;
  z-index: 997;
  background-color: var(--background-color);
}

.header .topbar {
  background-color: var(--background-color);
  height: 120px;
  padding: 0;
  font-size: 14px;
  transition: all 0.5s;
}

.header .topbar .contact-info i {
  font-style: normal;
  color: var(--contrast-color);
}

.header .topbar .contact-info i a,
.header .topbar .contact-info i span {
  padding-left: 5px;
  color: var(--contrast-color);
}

@media (max-width: 575px) {

  .header .topbar .contact-info i a,
  .header .topbar .contact-info i span {
    font-size: 13px;
  }
}

.header .topbar .contact-info i a {
  line-height: 0;
  transition: 0.3s;
}

.header .topbar .contact-info i a:hover {
  color: var(--contrast-color);
  text-decoration: underline;
}

.header .topbar .social-links a {
  color: color-mix(in srgb, var(--contrast-color), transparent 40%);
  line-height: 0;
  transition: 0.3s;
  margin-left: 50px;
}

.header .topbar .social-links a:hover {
  color: var(--contrast-color);
}

.header .branding {
  min-height: 50px;
/*   padding: 0px 0; */
}

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

.header .logo img {
  max-height: 120px;
  margin-left: 90px;
}

.header .logo h1 {
  font-size: 38px;
  margin: 0;
  font-weight: 700;
  /* color: var(--accent-color); */
  text-transform: uppercase;
}

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

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
.navmenu .dropdown ul {
  border-radius: 0 !important;
  margin: 0 !important;
 
  font-family: Arial, Helvetica, sans-serif !important;
}
.navmenu .dropdown ul li {
 
  font-family: Arial, Helvetica, sans-serif !important;
}

@media (min-width: 700px) {
  .navmenu {
    padding: 0;
  }

  .navmenu {
  /*   padding: 0;
    height: 60px;  */
  }

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

  .navmenu li {
    position: relative;
    text-decoration: none;
 
  }

  .navmenu a,
  .navmenu a:focus {
    color: black !important;
    padding: 18px 14px;
    font-size: 13px;
    font-weight: 700;
    font-family: var(--nav-font);

    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
    text-decoration: none;
  }

  .navmenu a:hover,
  .navmenu a:focus:hover {
    background-color: #FFDF00;
    /* Hover background color */
  }

  .navmenu ul {
    padding: 0px !important;


  }

  .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 {
    color: var(--nav-hover-color);
    background-color: #FFDF00;
    /* Active state background color */
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 0;
    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: 100%;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 13px;
    font-weight: lighter;
    text-transform: none;
    color: var(--nav-dropdown-color);
    transition: 0.3s;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: black;
    background-color: #FFDF00;
    /* Dropdown link hover background 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;
  }
}

@media (max-width: 1200) {}

/* Navmenu - Mobile */
@media (max-width: 768px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
    display: block;
    /* Ensure it's shown on smaller screens */
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
    transition: ease-in;
    transition: 0.3s;
  }

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

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

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: black;
    background-color: #FFDF00;
    /* Mobile nav link hover background color */
  }

  .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 .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;
  margin: 0 !important;
  padding: 0;
  margin-bottom: 20px;
  /* Add bottom margin for spacing */
}

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

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

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

.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 50%);
  margin-right: 10px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.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 20%);
  display: inline-block;
  line-height: 1;
}

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

.footer .footer-contact p {
  margin-bottom: 5px;
}

.footer .copyright {
  padding-top: 25px;
  padding-bottom: 25px;
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
}

.footer .copyright p {
  margin-bottom: 0;
}

.footer .credits {
  margin-top: 6px;
  font-size: 13px;
}

/* Responsive adjustments */
@media (max-width: 768px) {

  .footer .footer-about,
  .footer .footer-links,
  .footer .footer-contact {
    text-align: center;
    /* Center content on smaller screens */
  }
}


/*--------------------------------------------------------------
# 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: var(--accent-color);
  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: color-mix(in srgb, var(--accent-color), transparent 20%);
  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);
  position: relative;
}

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

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

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

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: 'Montserrat', sans-serif !important;
  /* padding: 60px 0; */
  scroll-margin-top: 120px;
  overflow: clip;
}

@media (max-width: 1199px) {

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

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

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.section-title h2:before {
  content: "";
  position: absolute;
  display: block;
  width: 160px;
  height: 1px;
  background: color-mix(in srgb, var(--default-color), transparent 60%);
  left: 0;
  right: 0;
  bottom: 1px;
  margin: auto;
}

.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 60px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  padding: 0;
}

.hero .carousel {
  width: 100%;
  min-height: 70vh;
  padding: 0;
  margin: 0;
  background-color: var(--background-color);
  position: relative;
}

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

.hero .carousel-item {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.hero .carousel-item:before {
  content: "";

  position: absolute;
  inset: 0;
  z-index: 2;
}

.hero .carousel-container {
  position: absolute;
  inset: 90px 64px 64px 64px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  z-index: 3;
}

.hero h2 {
  margin-bottom: 30px;
  font-size: 48px;
  font-weight: 700;
  animation: fadeInDown 1s both;
}

@media (max-width: 768px) {
  .hero h2 {
    font-size: 30px;
  }

  .mremov {
    margin: 0 !important;
    padding: 10px 10px !important;
  }
}

.hero p {
  animation: fadeInDown 1s both 0.2s;
}

@media (min-width: 1024px) {

  .hero h2,
  .hero p {
    max-width: 60%;
  }
}

.hero .btn-get-started {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 32px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
  animation: fadeInUp 1s both 0.4s;
}

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

.hero .carousel-control-prev,
.hero .carousel-control-next {
  width: 10%;
  transition: 0.3s;
  opacity: 0.5;
}

.hero .carousel-control-prev:focus,
.hero .carousel-control-next:focus {
  opacity: 0.5;
}

.hero .carousel-control-prev:hover,
.hero .carousel-control-next:hover {
  opacity: 0.9;
}

@media (min-width: 1024px) {

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

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

.hero .carousel-indicators {
  list-style: none;
}

.hero .carousel-indicators li {
  cursor: pointer;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

/*--------------------------------------------------------------
# Featured Services Section
--------------------------------------------------------------*/
.featured-services {
  padding: 30px 0;
}

.featured-services .service-item {
  padding: 50px 30px;
  transition: all ease-in-out 0.4s;
  height: 100%;
}

.featured-services .service-item .icon {
  margin-bottom: 10px;
}

.featured-services .service-item .icon i {
  color: var(--accent-color);
  font-size: 36px;
  transition: 0.3s;
}

.featured-services .service-item h4 {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 20px;
}

.featured-services .service-item h4 a {
  color: var(--heading-color);
  transition: ease-in-out 0.3s;
}

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

.featured-services .service-item:hover {
  transform: translateY(-10px);
}

.featured-services .service-item:hover h4 a {
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .content h3 {
  font-size: 1.75rem;
  font-weight: 700;
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  padding: 10px 0 0 0;
  display: flex;
}

.about .content ul i {
  color: var(--accent-color);
  margin-right: 0.5rem;
  line-height: 1.2;
  font-size: 1.25rem;
}

.about .content p:last-child {
  margin-bottom: 0;
}

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

/*--------------------------------------------------------------
# Why Us Section
--------------------------------------------------------------*/
.why-us .card {
  background-color: var(--surface-color);
  color: var(--default-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  padding: 40px;
  margin: -1px;
  border-radius: 0;
}

.why-us .card span {
  display: block;
  font-size: 24px;
  font-weight: 400;
  color: var(--accent-color);
}

.why-us .card h4 {
  color: color-mix(in srgb, var(--heading-color), transparent 20%);
  font-size: 24px;
  font-weight: 600;
  padding: 0;
  margin: 20px 0;
}

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

/*--------------------------------------------------------------
# Clients Section
--------------------------------------------------------------*/
.clients .swiper-slide img {
  opacity: 0.5;
  transition: 0.3s;
  filter: grayscale(100);
}

.clients .swiper-slide img:hover {
  filter: none;
  opacity: 1;
}

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

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

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

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

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .service-item {
  background-color: var(--surface-color);
  box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
  height: 100%;
  padding: 40px 30px;
  text-align: center;
  transition: 0.3s;
  border-radius: 5px;
}

.services .service-item .icon {
  font-size: 32px;
  border-radius: 50%;
  position: relative;
  margin-bottom: 25px;
  display: inline-block;
  line-height: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
}

.services .service-item h3 a {
  color: color-mix(in srgb, var(--heading-color), transparent 25%);
  font-weight: 700;
  font-size: 22px;
  transition: 0.3s;
}

.services .service-item p {
  margin-bottom: 0;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  transition: 0.3s;
}

.services .service-item.item-cyan .icon {
  color: #0dcaf0;
  background: rgba(13, 202, 240, 0.1);
}

.services .service-item.item-orange .icon {
  color: #fd7e14;
  background: rgba(253, 126, 20, 0.1);
}

.services .service-item.item-teal .icon {
  color: #20c997;
  background: rgba(32, 201, 151, 0.1);
}

.services .service-item.item-red .icon {
  color: #df1529;
  background: rgba(223, 21, 4, 0.1);
}

.services .service-item.item-indigo .icon {
  color: #6610f2;
  background: rgba(102, 16, 242, 0.1);
}

.services .service-item.item-pink .icon {
  color: #f3268c;
  background: rgba(243, 38, 140, 0.1);
}

.services .service-item:hover {
  transform: scale(1.06);
}

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

.services .service-item:hover p {
  color: color-mix(in srgb, var(--default-color), transparent 10%);
}

/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
.call-to-action {
  padding: 120px 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;
  border: 2px solid var(--contrast-color);
  color: var(--contrast-color);
}

.call-to-action .cta-btn:hover {
  background: var(--accent-color);
  border: 2px solid var(--accent-color);
}

/*--------------------------------------------------------------
# Portfolio Section
--------------------------------------------------------------*/
.portfolio .portfolio-filters {
  padding: 0 0 20px 0;
  margin: 0 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;
  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-content {
  background-color: var(--surface-color);
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
  height: 100%;
  overflow: hidden;
}

.portfolio .portfolio-content img {
  transition: 0.3s;
  position: relative;
  z-index: 1;
}

.portfolio .portfolio-content .portfolio-info {
  background-color: var(--background-color);
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  padding: 25px 20px;
  position: relative;
  z-index: 2;
}

.portfolio .portfolio-content .portfolio-info h4 {
  font-size: 18px;
  font-weight: 600;
  padding-right: 50px;
}

.portfolio .portfolio-content .portfolio-info h4 a {
  color: var(--heading-color);
  transition: 0.3s;
}

.portfolio .portfolio-content .portfolio-info h4 a:hover {
  color: var(--accent-color);
}

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

.portfolio .portfolio-content:hover img {
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# 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;
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-wrap {
  background-color: var(--surface-color);
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  padding: 30px;
}

@media (max-width: 575px) {
  .contact .info-wrap {
    padding: 20px;
  }
}

.contact .info-item {
  margin-bottom: 40px;
}

.contact .info-item i {
  font-size: 20px;
  color: var(--accent-color);
  background: color-mix(in srgb, var(--accent-color), transparent 92%);
  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 {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.contact .php-email-form {
  background-color: var(--surface-color);
  height: 100%;
  padding: 30px;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
}

@media (max-width: 575px) {
  .contact .php-email-form {
    padding: 20px;
  }
}

.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: var(--surface-color);
  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: var(--accent-color);
  border: 0;
  padding: 10px 30px;
  transition: 0.4s;
  border-radius: 50px;
}

.contact .php-email-form button[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 25%);
}

/*--------------------------------------------------------------
# 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;
}

.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: var(--contrast-color);
  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;
}

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

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

.specialsec{
  background-color: black; padding: 20px 0;
}

.specialsec{
  background-color: black; padding: 20px 0;
}
.specialh2{
  font-size: 1.8em; margin-bottom: 20px;font-weight: 800;
}




#SpecialCoro {
  padding-bottom: 50px !important;
}

#SpecialCoro .owl-nav {
  left: 30% !important;
  padding-top: 20px;


  margin-bottom: -43px;
}

#SpecialCoro .owl-nav :hover {
  background-color: transparent;
  border: 1px solid;
  color: #FCDC00 !important;
  outline: none;


}

#SpecialCoro .owl-prev span {
  
  border: none;
}


#SpecialCoro .owl-prev {
  width: 40px;
  height: 50px;

  margin-right: 40px;

  align-items: center;
  justify-content: center;

  font-size: 30px !important;
  right: -30px !important;
  color: #aaa !important;
  font-weight: bolder;
}



#SpecialCoro .card {
  border-radius: 0;
}
#SpecialCoro .owl-next span ::after{
  border: 4px !important;

}

#SpecialCoro .owl-next {


  margin-left: 40px;
  width: 40px;
  height: 50px;
  align-items: center;
  justify-content: center;

  font-size: 30px !important;
  font-weight: bolder;

  color: #aaa !important;
}

/* #SpecialCoro .owl-prev #SpecialCoro .owl-next i span:hover{
  border: 0;
} */

#SpecialCoro .owl-prev #SpecialCoro .owl-next ::after {

  border: 1px solid #FCDC00 !important;
  background-color: transparent !important;
  color: #FCDC00 !important;
  border-radius: 0;

}

.ribbon {
  position: absolute;
  top: 80px;
  font-size: 12px !important;
  font-weight: 600;
  text-transform: uppercase;
  left: 0px;
  width: 150px;
  height: 30px;
  background-color: #FAB637;
  color: white;
  text-align: center;
  line-height: 30px;
  transform: rotate(-50deg);
  transform-origin: left bottom;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  z-index: 1;

}

@media (max-width: 775px) {

  .bg-vid {
      object-fit: cover;

  }

  .full-screen-section {
      height: 100vh;
  }

  #SpecialCoro .owl-prev {
      margin-right: 60px;
  }

  #SpecialCoro .owl-next {
      margin-left: 60px;
  }
}

/* Pop Up Dialog */


.dialog {
  position: fixed;
  display: none;

  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 630px;
  max-height: 90vh;
  width: 100%;
  background-color: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  overflow-y: auto;

  z-index: 1000;

}


.dialog::-webkit-scrollbar {
  width: 0;
  background: transparent;

}


.dialog {
  scrollbar-width: none;
  /
}


.overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 999;

}

.close-button {
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 30px;
  color: white;
  cursor: pointer;
  background: none;
  border: none;
  font-weight: bold;
}

.submitbtn {
  background-color: #FAD900;
  text-align: center;
  align-items: center;
  justify-content: center;

  text-transform: uppercase;
  color: black;
  border: none;
  padding: 15px 15px;
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  transition: background-color 0.3s ease-in-out;
  width: 100%;


}





.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
  color: white;
  font-size: 30px;
  /* Adjust the icon size as needed */
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

/* about us section */
.abouthero {
  background-image: url(https://skmotorsdubai.com/wp-content/uploads/2023/02/title-box-default-bg.jpg);
  justify-content: center;
  align-items: center;
  text-align: center;
  max-width: 100%;
  height: 222px;
  opacity: 1.5;
  background-color: rgba(0, 0, 0, 0.5);


}

.abouthero h1{
  color: white !important;text-transform: uppercase;font-weight: 700;

}



.stockhero {
  background-image: url(https://skmotorsdubai.com/wp-content/uploads/2023/02/title-box-default-bg.jpg);
  justify-content: center;
  align-items: center;
  text-align: left;
  height: 222px;
  opacity: 1.5;
  background-color: rgba(0, 0, 0, 0.5);
width: 100%;

}

.stockhero h1{
  color: white !important;text-transform: uppercase;font-weight: 700;

}

.Breadcrumbsect {
  display: flex;
  list-style: none;
  font-size: 11px !important;
  padding-top: 10px;
  font-weight: 500;
  color: #AAAAAA !important;
  text-transform: uppercase;
}

.Breadcrumbsect li a{

  text-decoration: none;

}

.fcent {
  justify-content: center;
  align-items: center;
  text-align: center;
}

.upcaser {
  text-transform: uppercase;
}

.abotpara p {
  font-family: Arial, Helvetica, sans-serif;
}

.responsive-heading {
  font-size: clamp(24px, 5vw, 56px);
}


.secbanhead {
  color: white !important;
  text-transform: uppercase;
  font-weight: 700 !important;
}




.timeline {
  list-style: none;
  padding: 20px 0 20px;
  position: relative;
}
.timeline-heading{

}
.timeline:before {
  top: 0;
  bottom: 0;
  position: absolute;
  content: " ";
  width: 3px;
  background-color: #eeeeee;
  left: 50%;
  margin-left: -1.5px;
}
.timeline > li {
  margin-bottom: 20px;
  position: relative;
}
.timeline > li:before,
.timeline > li:after {
  content: " ";
  display: table;
}
.timeline > li:after {
  clear: both;
}
.timeline > li:before,
.timeline > li:after {
  content: " ";
  display: table;
}
.timeline > li:after {
  clear: both;
}
.timeline > li > .timeline-panel {
  width: 46%;
  float: left;
  border: 1px solid #d4d4d4;
  border-radius: 2px;
  padding: 20px;
  position: relative;
  -webkit-box-shadow: 0 1px 6px rgba(0, 0, 0, 0.175);
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.175);
}
.timeline > li > .timeline-panel:before {
  position: absolute;
  top: 26px;
  right: -15px;
  display: inline-block;
  border-top: 15px solid transparent;
  border-left: 15px solid #ccc;
  border-right: 0 solid #ccc;
  border-bottom: 15px solid transparent;
  content: " ";
}
.timeline > li > .timeline-panel:after {
  position: absolute;
  top: 27px;
  right: -14px;
  display: inline-block;
  border-top: 14px solid transparent;
  border-left: 14px solid #fff;
  border-right: 0 solid #fff;
  border-bottom: 14px solid transparent;
  content: " ";
}
.timeline > li > .timeline-badge {
  color: black;
  border: 2px solid #d4d4d4;
  width: 50px;
  height: 50px;
  line-height: 50px;
  font-size: 1.4em;
  text-align: center;
  position: absolute;
  top: 16px;
  left: 50%;
  margin-left: -25px;
  background-color: #FAD900;
  z-index: 100;
  border-top-right-radius: 50%;
  border-top-left-radius: 50%;
  border-bottom-right-radius: 50%;
  border-bottom-left-radius: 50%;
}
.timeline > li.timeline-inverted > .timeline-panel {
  float: right;
}
.timeline > li.timeline-inverted > .timeline-panel:before {
  border-left-width: 0;
  border-right-width: 15px;
  left: -15px;
  right: auto;
}
.timeline > li.timeline-inverted > .timeline-panel:after {
  border-left-width: 0;
  border-right-width: 14px;
  left: -14px;
  right: auto;
}
.timeline-badge.primary {
  background-color: #FAD900 !important;
}

.timeline-title {
  margin-top: 0;
  color: black;
  font-size: 25px;
  font-weight: bolder !important;
}
.timeline-body > p,
.timeline-body > ul {
  margin-bottom: 0;
}
.timeline-body > p + p {
  margin-top: 5px;
}


.timeline-body img {
  width: 100%; /* Make the image responsive */
  height: auto; /* Maintain aspect ratio */
  max-width: 550px; /* Set a maximum width */
  max-height: 450px; /* Set a maximum height */
}


/* Responsive adjustments for smaller screens */
@media (max-width: 767px) {
  .timeline:before {
    left: 20px; /* Shift the line to the left */
  }

  .timeline > li > .timeline-panel {
    width: calc(100% - 50px); /* Make the panel take full width */
    float: right;
    margin-left: 70px; /* Add some space from the left side */
  }

  .timeline > li.timeline-inverted > .timeline-panel {
    float: right;
  }

  .timeline > li > .timeline-badge {
    left: 20px; /* Keep the badge in line with the line */
  }

  .timeline > li > .timeline-panel:before,
  .timeline > li > .timeline-panel:after {
    display: none; /* Hide the arrows on smaller screens */
  }
}




/* Listing Section  */


.bluebuttonlisting {
  background-color: #7CBFC9;
  clip-path: polygon(10% 0%, 100% 0%, 100% 100%, 0% 100%);
  border: none;
  padding: 10px 27px;
  font-weight: 700;
  font-size: 17px;
  cursor: pointer;
  color: white !important;
  margin-top: 10px;
}
.listheading {
  font-size: 23px;
  font-weight: bold;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2; /* Limit to 2 lines */
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  line-height: 1.2; /* Adjust line height as needed */
  max-height: calc(1.2em * 2); /* Match line height for 2 lines */
}


.car-image {
    width: 100%;
    position: relative;
}

.responsive-btn {
    position: absolute;
    bottom: 15px;
    right: 15px;
    display: none;
}

@media (max-width: 768px) {
    .responsive-btn {
        display: block;
    }
    .bluebuttonlisting.d-none {
        display: none;
    }
}

.attributes-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.attribute-item {
    width: 17%; /* Six items per row */
    display: flex;
    align-items: center;
    padding: 0px 0;
    border-right: 1px solid lightgrey !important;
}

.attribute-item:nth-child(6n) {
    border-right: none;
}

.icon {
    font-size: 15px;
    color: #888888;
    margin-right: 5px; /* Minimal left space */
}

.text-content {
    display: flex;
    flex-direction: column;
    padding-left: 3px;
}

.label {
    font-size: 10px;
    color: #888888;
    margin: 0;
    text-transform: uppercase;
}

.value {
    font-size: 14px;
    color: #000000;
    font-weight: bold;
}

@media (max-width: 768px) {
    .attribute-item {
        width: 100%;
        border-right: none !important;
        border-bottom: 1px solid lightgrey;
    }
}


/* Select Style */

  .stock-view-type.active {
        color: #0056b3;
        font-weight: bold;
    }

    .custom-select {
        position: relative;
        width: 240px; /* Default width */
        max-width: 100%; /* Ensure it doesn't overflow the container */
    }

    .select-selected {
        background-color: #ECEFF3;
        padding: 10px;
        border: none;
        color: grey;
        font-size: 14px;
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    /* Arrow with smooth rotation */
    .arrow {
        transition: transform 0.3s ease;
    }

    .rotate {
        transform: rotate(180deg);
    }

    /* Dropdown styling */
    .select-items {
      font-size: 13px !important;
        display: none;
        position: absolute;
        background-color: white;
        border: 1px solid #ccc;
        border-radius: 4px;
        z-index: 99;
        width: 100%; /* Ensure the dropdown takes the full width of the select */
        max-width: 100%; /* Make sure dropdown doesn't expand too wide */
        max-height: 200px;
        overflow-y: auto;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }

    /* Slim, fadeable scrollbar for dropdown */
    .select-items::-webkit-scrollbar {
        width: 8px;
    }
    .select-items::-webkit-scrollbar-track {
        background: #f1f1f1;
    }
    .select-items::-webkit-scrollbar-thumb {
        background: #888;
        border-radius: 8px;
    }

    .select-items div {
        padding: 10px;
        cursor: pointer;
        color: #000;
        border-bottom: 1px solid #aaa;
    }

    .select-items div:hover {
        background-color: #f1f1f1;
    }

    .search-input {
      font-size: 13px !important;
        width: 100%;
        padding: 8px;
        border: none;
        border-bottom: 1px solid #ccc;
        box-sizing: border-box;
        color: #000;
        outline: none;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
        .custom-select {
            width: 100%; /* Full width on smaller screens */
        }

        .select-items {
            max-width: 100%; /* Keep dropdown within container width */
        }
    }

    /* Small screen adjustments */
    @media (max-width: 480px) {
        .select-selected {
            font-size: 12px; /* Smaller font size for very small screens */
        }

        .select-items {
            max-height: 150px; /* Reduce the dropdown height */
        }
    }




      /* CAr Tab Styling */

     

  /* Bank Details Section */ 
.bandetailhead{
  font-size: 20px;
  font-weight: 600;
}
.TitleinBDP{
  font-size: 12px;
  color: #AAAAAA;
  margin:  10px 10px;
}
.vaueinBDP{
  font-size: 12px;
  color: black;
  font-weight: bold;
  margin:  10px 10px;
}
.dttable tr{
  border-bottom: 1px solid #AAAAAA !important;
}







.car-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.car-card {
  text-align: left;
  white-space: normal;
  text-align: left;
  line-height: 1.2;
  border-radius: 8px;
  font-size: 14px !important;
}

.car-card img {
  width: 100%;
  height: auto;
}

.yellow-btn {
  background-color: #549FB5;
  clip-path: polygon(10% 0%, 100% 0%, 100% 100%, 0% 100%);
  border: none;
  padding: 10px 15px;
  font-weight: bold;
  font-size: 11px;
  cursor: pointer;
  color: white !important;
  margin-top: 10px;
}

.mdpdnone{
  padding: 0 !important;
}




.data-value{
  font-size: 14px;
  font-weight: bold !important;
  font-family: "Montserrat", sans-serif;
}

.pagination {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 20px 0;
  justify-content: center;
}
.pagination li {
  margin: 0 5px;
}
.pagination a, .pagination span {
  background-color: #7CBFC9;
  color: white;
  text-decoration: none;
  padding: 8px 12px;
  border: 1px solid #7CBFC9;
  border-radius: 4px;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pagination a:hover {
  background-color: #888;
  border-color: #bbb;
}
.pagination .current {
  background-color: #6C98E1;
  color: white;
  font-weight: bold;
  border-color: #6C98E1;
}
.pagination .dots {
  pointer-events: none;
  color: #888;
}
.pagination .prev, .pagination .next {
  /* margin-right: auto; */
  margin-left: auto;
}
@media (max-width: 768px) {
  .cxc {
      background-color: #191C26;

  }

  .nxt {
      display: none;
  }

}


/* Why Choose US */


.wcu{
  padding: 100px 0;
}
@media (max-width: 700px) {
.wcu{
  padding: 30px 50px !important;
}
}

/* Testimonials */

  /* Target the previous button */
  #client-testimonials .owl-prev {
    position: absolute; /* Allows positioning relative to the carousel container */
    left: -10px; /* Adjust based on your layout to move it to the left */
    top: 30%; /* Centers the button vertically */
    transform: translateY(-50%); /* Ensures vertical centering */
    width: 35px; /* Custom width */
    height: 40px; /* Custom height */
    background-color: #0085CD !important; /* Example color */
    border-radius: 0%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff !important;
    font-size: 30px !important;
    font-weight: 900; /* Adjust font size for icons */
}

/* Optional: Customize the next button as well */
#client-testimonials .owl-next {
    position: absolute;
    right: -10px; /* Adjust based on your layout */
    top: 30%;
    transform: translateY(-50%);
    width: 35px; /* Custom width */
    height: 40px;
    background-color: #0085CD !important;
    border-radius: 0%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff !important;
    font-size: 30px !important;
    font-weight: 900;
}

#client-testimonials .owl-dots{
    display: none;
}
    .stars {
        color: #FFBD0C;
        font-size: 30px;
    }



    /* VideoSection */


    .full-screen-section {
      background: transparent !important;
      width: 100% !important;
      height: 120vh;
      position: relative;
      display: flex;

      justify-content: center;
      overflow: hidden;
      /* Ensures the content does not spill out */
  }

  .video-container {
      position: relative;
      width: 100%;
      height: 100%;
  }

  .bg-vid {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: fill;
      z-index: -2
          /* Keeps the video behind the content */
  }

  @media (max-width: 775px) {

      .bg-vid {
          object-fit: cover;

      }

      .full-screen-section {
          height: 100vh;
      }


  }
  .smothtrans{
      transition: transform 0.5s ease-in-out, opacity 0.5s ease; /* Smooth transitions */

  }


.video-container {
    position: relative;
    padding-top: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    max-width: 100%;
}

.video-responsive {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.white-image {
  filter: invert(100%) brightness(2);
}
/* .fontadjust{
  font-size: 13px;
} */





/* Hero Section */
#hero {
  position: relative;
  width: 100%;
  height: 70vh; /* Adjust based on design needs */
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

#hero img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  transition: transform 5s ease-in-out; /* Slow zoom effect */
  will-change: transform; /* Optimize animation performance */
}


#hero:hover img {
  transform: scale(1.05); 
}
#hero img.loaded {
  filter: blur(0);
}
@media (max-width: 768px) {
  #hero {
      height: 50vh;
  }

  #hero img {
      object-position: center center; 
  }
}


@media (min-width: 768px) and (max-width: 1024px) {
  #hero {
      height: 60vh; 
  }
}


@media (min-width: 1024px) {
  #hero {
      height: 80vh;
  }
  .gridimg{
    max-height: 230px;
  }
}



.themefont{
  color: #FAD900 !important;
}


.headercontainer{
  padding-top: 10px;padding-bottom: 10px;font-family: 'Montserrat', sans-serif !important;
}

.logoimag{
    height: auto;
    width: 100px;
}

.headicsize{
  font-size: 25px;
}

.headlinkco{
  color: #FAD900;font-size: 12px;padding-top: 10px;font-weight: 700;
}
.headsocialic{
  color: #fff !important; 
  background-color: #3B3D3F;
   width: 30px; height: 30px;
    border-radius: 50%;
    padding:4px;
    margin: 0 4px;
}

.headicodetailphone{
  color: white !important; margin: 0;font-size: 12px;
}

.headicodetailphonehead{
  color: #FAD900;font-size: 14px;
}


/* WhatsApp Float Button */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 40px;
  right: 40px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  z-index: 100;
}

/* Address Section */
.address-text {
  color: white;
  margin: 0;
  font-size: 12px;
}

.view-map-link {
  color: #FAD900;
  text-decoration: underline;
  font-weight: 800;
  font-size: 12px;
}

/* Phone Section */
.phone-heading {
  font-size: 16px;
}

.phone-number {
  font-size: 14px;
}

/* Branding Section */
.branding-section {
  padding: 0 !important;
}

.mobile-logo {
  height: 100px;
  width: auto;
}







/* Apply styles for the specific tab section */
.tabs-section .header1 {
  background-color: #111;
  padding: 20px;
}

.tabs-section .h1 {
  color: #FFDF00;
  text-align: left;
  text-transform: uppercase;
  font-weight: 800;
}

.tabs-section .tabs {
  display: flex;
  justify-content: start;
  background-color: #111;
}

.tabs-section .tab-button {
  padding: 10px 20px;
  color: #FFDF00;
  background-color: #222;
  border: none;
  cursor: pointer;
  font-size: 16px;
  font-weight: bold;
}

.tabs-section .tab-button.active,
.tabs-section .tab-button:hover {
  background-color: #fff;
  color: #000;
}

.tabs-section .tab-content {
  display: none;
  padding: 20px;
}

.tabs-section .tab-content.active {
  display: block;
}

.tabs-section .show-all-btn {
  background-color: #FAD900;
  border: none;
  padding: 10px 20px;
  font-weight: bold;
  cursor: pointer;
  margin: 20px auto;
  display: block;
  text-align: center;
  width: 150px;
}

.tabs-section .car-title {
  font-weight: 700;
  padding-top: 10px;
  display: block;
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.tabs-section .top-section {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}

.tabs-section .button-section {
  text-align: right;
  flex-shrink: 0;
}

.tabs-section .yellow-btn {
  background-color: #549FB5;
  clip-path: polygon(10% 0%, 100% 0%, 100% 100%, 0% 100%);
  border: none;
  padding: 10px 15px;
  font-weight: bold;
  font-size: 11px;
  cursor: pointer;
  color: white !important;
  margin-top: 10px;
}

.tabs-section .search-button {
  background-color: #FAD900;
  text-align: center;
  font-weight: 900;
  text-transform: uppercase;
  color: black;
  border: none;
  padding: 15px 15px;
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  transition: background-color 0.3s ease-in-out;
  width: 100%;
}

.tabs-section .search-button i {
  margin-right: 8px;
}

.tabs-section .search-button:hover {
  background-color: #4a9da0;
  color: white;
}

.tabs-section .reset-button {
  background-color: transparent;
  color: #AAAAAA;
  border: 2px solid #AAAAAA;
  border-radius: 5px;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  padding: 15px 15px;
  transition: color 0.3s ease-in-out;
}

.tabs-section .reset-button i {
  transform: rotate(0deg);
  transition: transform 0.3s ease-in-out;
}

.tabs-section .reset-button:hover {
  color: #4a9da0;
  border: 2px solid #4a9da0;
}

.tabs-section .reset-button:active i {
  transform: rotate(360deg);
}

.tabs-section .fontadjust {
  font-size: 14px !important;
  font-family: Arial, Helvetica, sans-serif;
  color: #888888 !important;
}

.tabs-section .select-selected {
  background-color: #ECEFF3;
  padding: 15px;
  border: none;
  color: #888888;
  font-size: 14px;
  cursor: pointer;
  border-radius: 4px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.tabs-section .select-items {
  display: none;
  position: absolute;
  background-color: white;
  border: 1px solid #ccc;
  border-radius: 4px;
  z-index: 99;
  max-height: 200px;
  overflow-y: auto;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.tabs-section .select-items div {
  padding: 10px;
  cursor: pointer;
  color: #888888;
}

.tabs-section .select-items div:hover {
  background-color: #f1f1f1;
}

.tabs-section .search-input {
  width: 100%;
  padding: 8px;
  border: none;
  border-bottom: 1px solid #ccc;
  box-sizing: border-box;
  color: #888888;
  outline: none;
}

.tabs-section .arrow {
  font-size: 12px;
  transition: transform 0.3s ease;
}

.tabs-section .arrow.rotate {
  transform: rotate(180deg);
}

.tabs-section .custom-select {}

.tabs-section .pt-10 {
  padding-top: 10px;
}

.tabs-section .color-change {
  filter: brightness(0) saturate(100%) invert(90%) sepia(100%) saturate(600%) hue-rotate(0deg) brightness(95%) contrast(100%);

  width: 50px;height: 50px;padding-right: 10px;
}

@media (max-width: 768px) {
  .tabs-section .tabs {
      display: block; /* Stack the tabs vertically */
  }

  .tabs-section .tab-button {
      width: 100%;
      text-align: left !important;
  }
}


.greytheme{
  color: #AAAAAA !important;
}








.selected-image {
  text-align: center;
  margin-bottom: 20px;
}

.selected-image img {
  max-width: 100%;
  max-height: 466px;
  width: 100%;
  height: auto;
}

/* Owl Carousel navigation arrows */
#detailcaro .owl-carousel .owl-nav button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  padding: 10px;
  font-size: 20px;
  display: none;
  /* Initially hidden */
}

#detailcaro .owl-carousel .owl-nav button.owl-prev {
  left: -30px;
}

#detailcaro .owl-carousel .owl-nav button.owl-next {
  right: -30px;
}

/* Show navigation buttons on hover */
#detailcaro .owl-carousel:hover .owl-nav button {
  display: block;
}

/* Gallery thumbnail images */
.thumbnail {
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color 0.3s;
}

.thumbnail:hover {
  border-color: #007bff;
  /* Change border color on hover */
}

/* Container styling */
.contact-links {
  display: flex;
  align-items: center;
  gap: 10px;
  /* Space between each contact item */
  font-size: 12px;
  /* Font size for the text */
}

/* Individual contact items */
.contact-item {
  display: flex;
  align-items: center;
  border: 1px solid #AAAA !important;
  color: #000000 !important;
  text-decoration: none;
  /* Remove underline from links */
  color: inherit;
  /* Inherit color from parent or style as needed */
  padding: 4px 8px;
  /* Padding for button-like appearance */
  border-radius: 15px;
  /* Rounded edges */
  transition: background-color 0.3s;
  /* Hover effect */
}

.custom-font-size {
  font-size: 14px !important;
}

.csblue{
  color: #0085cd;;
}
.contact-item i {
  
  font-size: 17px;padding: 3px;
}

/* Hover effect */
.contact-item:hover {
  background-color: #e0e0e0;
}

/* Icon styling */
.icon {
  width: 17px;
  height: 16.8px;
  margin-right: 5px;
  /* Space between icon and text */
  display: inline-block;
  vertical-align: middle;
}

/* Container styling */
.car-details-container {
  border: 1px solid #ddd;

  overflow: hidden;
  background-color: #fff;
  max-width: 600px;
  /*     margin: 20px auto;
*/
}

/* Yellow Header with Button */
.header-button {
  background-color: #FFD700;
  padding: 10px;
  text-align: center;
}

.btn-dialog {

  color: #fff;
  padding: 8px 12px;
  border: none;
  border-radius: 4px;
  text-decoration: none;
  transition: background-color 0.3s;

  font-size: 17px;font-weight: 800;
}


/* Car Info Table Styling */
.car-info {
  padding: 20px;
  background-color: #f9f9f9;
}

.car-info table {

  width: 100%;
  border-collapse: collapse;
}

.t-label {
  text-transform: uppercase;
  font-size: 12px;
  color: #555;
  padding: 10px 0;
  width: 40%;
}

.t-value {
  font-size: 14px;
  font-weight: bold;
  color: #333;
  padding: 10px 0;
  text-align: left;
}



.cstab {
  background-color: black;
}

.cstab .nav-tabs .nav-link {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  padding: 20px;
  font-weight: 700;
  font-size: 12px !important;
  color: white;
  border-radius: 0 !important;
  text-decoration: none;
}

/*  */
.cstab .nav-tabs .active {
  border-top: 4px solid #FFD700;
  margin-top: -4px;
  color: black;
  border-radius: 0 !important;
  text-decoration: none;
}


/* Style for the list */
.list-style {
  list-style-type: none;
  padding: 0;
}

.list-style li {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

/* Style for the check mark using Font Awesome */
.check-mark {
  color: #FFD700;
  /* Yellow color for the check mark */
  margin-right: 10px;
  font-size: 18px;
  /* Adjust size of check mark */
}

/* Border styles for the columns */
.border-left {
  border-left: 1px solid rgba(0, 0, 0, 0.1);
}

.border-right {
  border-right: 1px solid rgba(0, 0, 0, 0.1);
}

/* Ensure the rows and columns are properly spaced */


h3 {
  margin-bottom: 20px;
}



/* Custom container */
.custom-container {
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  border-top: 5px solid #FFD700;
  padding: 20px;
}

/* Icon list under each card */
.icon-list {
  color: grey;
  display: flex;
  justify-content: space-between;
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 15px;
}

.icon-list li {
  display: inline-block;
  margin-right: 10px;
  font-size: 13px;
  /* Adjusted icon size */
}

/* Title and item title styling */
.card-title,
.owl-carousel .card .card-body h5 {
  font-family: 'Montserrat', sans-serif;
  font-weight: bold;
  font-size: 14px;
  margin: 0;
}

/* Carousel item style */
.owl-carousel-unique .item {
  padding: 10px;
}

.owl-carousel-unique .card {
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.owl-carousel-unique .owl-nav button {
  background-color: rgba(0, 0, 0, 0.5);
  border: none;
  color: white;
  padding: 10px;
  border-radius: 50%;
  font-size: 18px;
}
.owl-carousel-unique .owl-nav{
  display: none !important;

}

.owl-carousel-unique .owl-dots, .owl-carousel-unique .owl-nav{
  display:none !important;
}

.owl-carousel-unique .owl-nav button:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

/* Add margin to nav buttons to separate them from carousel */
.owl-carousel-unique .owl-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  z-index: 10;
}

/* Adjust the styling of left and right navigation arrows */
.stm-isearch-prev,
.stm-isearch-next {
  font-size: 14px;
  font-weight: bolder;
 border: 0;
  width: 40px;
  /* Define width */
  height: 40px;
  /* Define height */
  border-radius: 50%;
  color: black !important;
  background: white !important;
  padding: 10px;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);

}

.owl-carousel-unique .owl-prev:hover,
.owl-carousel-unique .owl-next:hover {
  background: rgba(0, 0, 0, 0.8);
}




.Pdetailic{
  font-size: 17px;padding: 3px;
}



.fadex {
  opacity: 0; 
  transition: opacity 0.5s ease;
  color: #EFB84E; 
}
.fadex.in {
  opacity: 1; 
}

.goldcolor{
  color: goldenrod;
}


/* bg Section css */


.bg-picturesection{
  margin-top:10px; background-size: cover; background-position: center; padding: 60px 0;background-attachment: fixed;
}

.bg-texthead{
  background-color:#F2B43F;padding: 40px;font-size: 14px !important;text-align: left !important;
}

.bg-textpara{
  font-size: 24px !important;font-weight: 700;
}



/*vid List Section css */

.cslist{
  display: flex; background-color: #F7F6F7; padding: 20px;
}

.csul{
  list-style: none; padding-top: 40px;
}
.linfoot{
  align-items: center; justify-content: center;
}

.csrelative{
  position: relative; 
}
.nocursor{
  cursor: pointer;
}
.full-height {
  height: 400px;
}


/*Footer Style*/

.footdeco{
  
}







.custom-control {
  top: 50%;
  transform: translateY(-50%);
  width: 5%;
  margin: -50px;
}


.inventoryicon{

}



/*Contact Style*/


    /* Background color for the container */
    .container-bg {
      background-color: #D1D2D3;
      padding: 40px 0;
  }

  /* Card customization */
  .contact-card {
      font-family: 'Montserrat', sans-serif !important;
      background-color: #F7F6F7;
      padding: 25px;
      border-radius: 8px;
      height: 100%;
      display: flex;
      align-items: flex-start;
  }
  .contact-cardlw {
      color: #000 !important;
      font-family: 'Montserrat', sans-serif !important;
      background-color: #F7F6F7;
      padding: 5px;
      border-radius: 8px;
      height: 100%;
      display: flex;
      align-items: flex-start;
  }

  /* Icon section styling */
  .icon-section {
      flex: 0 0 30px;
      color: #FFDF00;
      font-size: 30px;
      display: flex;
      align-items: flex-start;
      margin-right: 15px;
  }

  /* Text section styling */
  .text-section h5 {
      font-size: 16px;
      font-weight: bold;
      margin: 0;
      color: #333;
  }

  .text-section p {
      padding-top: 10px;
      font-size: 12px;
      color: #666;
      margin: 0;
      word-wrap: break-word;
  }

  /* Ensure equal height for all cards */
  .row-equal .col {
      display: flex;
      align-items: stretch;
  }

  /* Adjusting input padding */
  .form-control {
      width: 100%;
      border: none;
      padding-left: 21px;
      padding-right: 21px;

      background-color: #ECEFF3;
      /* Adding the input background color */
  }


  .form-control:focus {
      border-radius: 0 !important;
      /* Remove border-radius when focused */
      box-shadow: none;
      /* Optional: Remove shadow on focus */
  }

  /* Ensuring all form sections have padding */
  .contact-card {
      padding: 25px;
      border-radius: 8px;
      background-color: #F7F6F7;
  }

  /* For better responsiveness */
  @media (max-width: 768px) {
      .col-md-6 {
          margin-bottom: 1rem;
      }
  }

  .txtarial {
      font-family: Arial, Helvetica, sans-serif !important;
      font-size: 14px !important;

  }

  .sublettxt {
      font-size: 13px;
      color: #888 !important;
  }

  /* General Style for the Checkbox */
  .form-check-input {
      border: none !important;
      /* Remove the border */
      background-color: #ECEFF3 !important;
      /* Light background color */
  }

  /* Focus State - Remove border and change background */
  .form-check-input:focus {
      border: none;
      /* Remove border on focus */
      outline: none;
      /* Remove focus outline */
      box-shadow: none;
      /* Remove shadow on focus */
      background-color: #ECEFF3 !important;
      /* Keep same background on focus */
  }

  /* Checked State - Customize Background */
  .form-check-input:checked {
      background-color: #6C98E1 !important;
      /* Blue background for checked state */
  }

  /* Custom Checkmark - Ensure it appears on checked */
  .form-check-input:checked::after {
      background-color: #ECEFF3 !important;
      /* Light background for checkmark inside */
  }

  /* Label Color stays the same */
  .form-check-label {
      color: #000;
      /* Keep label color as black (default) */
  }

  .btnsubmityel {
      /*         font-family: 'Montserrat', sans-serif !important;
*/
      color: #000;
      border: 0;
      font-weight: 600;
      font-size: 17px;
      background-color: #FFDF00;
      padding: 10px 30px;
  }










.ribbonsold {
  position: absolute;
  top: 80px;
  font-size: 12px !important;
  font-weight: 600;
  text-transform: uppercase;
  left: 0px;
  width: 150px;
  height: 30px;
  background-color: red;
  color: white;
  text-align: center;
  line-height: 30px;
  transform: rotate(-50deg);
  transform-origin: left bottom;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  z-index: 1;
 
}