
:root {
  scroll-behavior: smooth;
  --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;
  --nav-color: rgba(255, 255, 255, 0.5);
  --nav-hover-color: #0e9aff;
  --nav-mobile-background-color: #ffffff;
  --nav-dropdown-background-color: #ffffff;
  --nav-dropdown-color: #212529;
  --nav-dropdown-hover-color: #559bcc;
  --background-color: #ffffff;
  --default-color: #212529;
  --heading-color: #2d465e;
  --accent-color: #00acef;
  --surface-color: #ffffff;
  --contrast-color: #ffffff;
}


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

.dark-background {
  --background-color: #142e6c;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #1c4097;
  --contrast-color: #ffffff;
}

body {
  color: var(--default-color);
  background-color: #fff;
  font-family: var(--default-font);
}

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

p {
  font-family: "Poppins", sans-serif;
  ;
  font-size: clamp(14px, 2vw, 16px);
}

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

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

.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);
  background-color: var(--background-color);
  transition: all 0.5s;
  z-index: 997;
  padding-top: 50px;
}
.header .logo {
  line-height: 1;
}

.header .logo img {
  height: 55px;
  object-fit: cover;
  width: 100%;
}


/* Global Header on Scroll
------------------------------*/
.scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
  --background-color: var(var(--background-color));
  padding-top: 0;
}

/*--------------------------------------------------------------
# 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;
    gap:10px;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--default-color);
    font-size: 16px;
    border-radius: 4px;
    font-family: var(--nav-font);
    font-weight: 400;
    align-items: center;
    display: flex;
    gap: 8px;
    padding: 8px 13px;
    transition: 0.3s;
  }

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

.navmenu li:hover > a {
  color: #006bb4;
  background-color: #f1f5f9;
  border: 1px solid #006bb4;
}

.navmenu li:hover > a svg {
  fill: #006bb4;
}

.navmenu .active:hover > a svg {
  fill: #fff;
}
.navmenu li a.active:hover {
    color:#fff;
    svg{
    fill:#fff;
}
}
.navmenu .active,
.navmenu .active:focus {
  color: #fff;
  background-color: #006bb4 !important;
  border-radius: 4px;
}

.navmenu .active svg,
.navmenu .active:focus svg {
  fill: #fff;
}


  .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(--accent-color);
    font-size: 35px;
    line-height: 0;
    cursor: pointer;
    transition: color 0.3s;
  }

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

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    padding: 10px 0;
    margin: 0;
    background-color: var(--nav-mobile-background-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
    width: 75%;
    height: 100%;
  }

  .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;
    gap:10px;
    justify-content: start;
    white-space: nowrap;
    transition: 0.3s;
  }

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

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

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

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

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    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: rgba(34, 34, 34, 1);
  font-size: 14px;
  text-align: center;
  padding: 30px 0;
  position: relative;
  border-top: 8px solid #00adef;
}

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

.footer p {
  font-size: clamp(14px, 2vw, 16px);
}

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

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

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

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

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

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 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:#0077a5;
  width: 46px;
  height: 46px;
  bottom: 75px !important;
  border-radius: 10px;
  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: 600px) {
     .highlights li {
  font-size:15px  ;
  }
  p{
    font-size:14px  !important;   
  }
  .markaa-btn {
      padding:10px  !important ;
      font-size: 13px !important ;
  }
}

@media screen and (max-width: 480px) {
  .header{
      padding: 15px !important;
  }

}

@media screen and (max-width: 768px) {
  .header{
      padding: 15px !important;
  }
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
  .btn-mrk {
    column-gap: 6px !important;}
  .markaa-controls {

  bottom: inherit !important;
  }
.markaa-controls button{
      padding: 5px 15px !important;
}
  .header .logo img {
    height: 45px;
    width: auto;
    object-fit: contain;

  }
.barcode-section p{
padding:15px !important;
}

  .markaa-parallax-slide,
  .markaa-parallax-banner {
    height: 250px !important;
    
  }

  .markaa-products img {
    height: 150px !important;
  }

  .markaa-items {
        padding: 25px 15px !important;
    & img {
    width: auto;
    height: 150px;
    object-fit: scale-down;
    }
  }

  .ed-top {
    display: none !important;
    z-index: 0;
    background: none;
  }
  .barcode-section p{
    font-size: 15px !important;
    padding: 15px;
  }

  #scroll-top,
  .chat-button,
  .chat-button a img{
  width: 45px !important;
  height: 45px !important;
  }
  .brick{
      height:auto !important;
  }
}


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

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

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

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

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

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

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

@media (max-width: 1199px) {

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

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

.section-title h2 {
font-size: clamp(24px, 3vw, 32px);
  font-weight: 700;
  margin-bottom: 15px;
}

.section-title p {
  margin-bottom: 0;
  text-align: justify;
  line-height: 30px;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  background: url(https://markaa.in/images/Banner_2.jpg) no-repeat center center;
  /* background-size: cover; */
  width: 100%;
  height: 100vh;
  /* Full viewport height */
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
}

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

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

.hero h2 {
  margin: 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
}

.hero p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 5px 0 10px 0;
  font-size: 20px;
  font-weight: 400;
}

.hero .download-btn {
  color: var(--contrast-default);
  background: color-mix(in srgb, var(--default-color), transparent 90%);
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 15px;
  padding: 8px 30px 10px 30px;
  border-radius: 3px;
  transition: 0.5s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero .download-btn+.download-btn {
  margin-left: 20px;
}

.hero .download-btn:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.hero .download-btn i {
  font-size: 16px;
  line-height: 0;
  margin-right: 8px;
}

.hero .hero-img {
  position: relative;
  min-height: 600px;
}

.hero .hero-img .phone-1 {
  margin-top: 20px;
  position: absolute;
  left: 0;
  box-shadow: 0 15px 50px 0 rgba(0, 0, 0, 0.5);
  border-radius: 30px;
  width: 250px;
}

.hero .hero-img .phone-2 {
  position: absolute;
  left: 0;
  box-shadow: 0 15px 50px 0 rgba(0, 0, 0, 0.5);
  border-radius: 30px;
  width: 250px;
  margin-top: 70px;
  margin-left: 100px;
}

@media screen and (max-width: 992px) {
  .hero .hero-img {
    text-align: center;
    overflow: hidden;
    min-height: 600px;
  }

  .hero .hero-img .phone-1,
  .hero .hero-img .phone-2 {
    left: 50%;
    transform: translateX(-50%);
  }
}

@media (max-width: 768px) {
  .hero h2 {
    font-size: 28px;
    line-height: 36px;
  }

  .hero p {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }

  .hero .download-btn {
    font-size: 14px;
    padding: 8px 20px 10px 20px;
  }
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials {
  background-image: url('https://www.markaa.in/img/review-banner.png'); 
  background-size: cover;
  background-position: center center; 
  background-repeat: no-repeat; 
}

.testimonials .section-header {
  margin-bottom: 40px;
}

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

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

.testimonials .testimonial-item .testimonial-img {
  width: 120px;
  border-radius: 50%;
  border: 4px solid var(--background-color);
  margin: 0 auto;
}

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

.testimonials .testimonial-item h4 {
  font-size: clamp(16px, 2vw, 24px);
  padding: 10px 0px;
  margin-bottom: 0;
  color: var(--default-color);}

.testimonials .testimonial-item .stars {
    margin-bottom: 15px;
    display: flex;
    justify-content: center;
    gap: 10px;
}


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

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

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

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

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 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;
  opacity: 1;
  background-color: color-mix(in srgb, var(--default-color), transparent 85%);
}

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

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


/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq .faq-container .faq-item {
  background-color: var(--surface-color);
  position: relative;
  padding: 20px;
  margin-bottom: 15px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-radius: 5px;
  overflow: hidden;
}

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

.faq .faq-container .faq-item h3 {
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  margin: 0 30px 0 0;
  transition: 0.3s;
  cursor: pointer;
  display: flex;
  align-items: center;
}

.faq .faq-container .faq-item h3 .num {
  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-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: color-mix(in srgb, var(--accent-color), transparent 97%);
  border-color: color-mix(in srgb, var(--accent-color), transparent 80%);
}

.faq .faq-container .faq-active h3 {
  color: var(--accent-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);
  color: var(--accent-color);
}

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

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

.footer-logo img {
  border-radius: 24px;
  height: 35px;
}

.contact-info {
  gap: 12px;
}

.client {
  font-size: 36px !important;
  display: inline-block;
  padding: 15px;
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 50px;
  align-content: center;
  color: #fff;
}

.cl-1  { background: #768948; } 
.cl-2  { background: #D7263D; } 
.cl-3  { background: #077B8A; } 
.cl-4  { background: #5C5470; } 
.cl-5  { background: #F4A261; } 
.cl-6  { background: #2A9D8F; } 
.cl-7  { background: #E76F51; } 
.cl-8  { background: #264653; } 
.cl-9  { background: #E9C46A; } 
.cl-10 { background: #8D99AE; } 
.cl-11 { background: #EF476F; } 
.cl-12 { background: #06D6A0; } 
.cl-13 { background: #118AB2; } 
.cl-14 { background: #FFD166; } 
.cl-15 { background: #8338EC; } 
.cl-16 { background: #FF006E; } 

.marquee-wrapper {
  overflow: hidden;
  position: relative;
  width: 100%;
  background: #fff;
  padding: 10px 0;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: scroll-marquee 30s linear infinite;
}

.client-single-items {
  flex: 0 0 auto;
  align-content: center;
  margin: 0 30px;
}

.client-single-items img {
  height: auto;
  width: 150px;
  object-fit: cover;
}

.marquee-track:hover {
  animation-play-state: paused; /* Optional: pauses on hover */
}

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

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


.h-m {
  font-size: 3.5rem;
}

.text-justify {
  text-align: justify;
}

.markaa-products {
  img {
    width: auto;
    height: 150px;
    object-fit: cover;
  }
}

.markaa-btn {
  padding: 10px 20px;
  font-size: 16px;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.markaa-btn.outline {
  background-color: transparent;
  color: #d11d1d;
  border: 2px solid #d11d1d;
  border-radius: 30px;
  font-weight: 500;
  flex:1;

  & a {
    color: #d11d1d;
  }
}

.markaa-btn.filled {
  background-color: #d11d1d;
  color: #fff;
  border: none;
  border-radius: 30px;
  flex:1;
  font-weight: 500;


  & a {
    color: #fff;
  }
}

.markaa-btn.outline:hover {
  background-color: #ff0404;

  a {
    color: #fff;
  }
}

.markaa-btn.filled:hover {
  background-color: #000000ba;
}

.btn-mrk {
gap: 15px;
margin-bottom: 0px !important;
}

.bg {
  background: #f9f9f9;
}

.markaa-parallax-banner {
  position: relative;
  width: 100%;
  margin-top:60px;
  height: 600px;
  overflow: hidden;
}

.markaa-parallax-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 600px;
  background-size: cover;
  background-position: 0 0;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.markaa-parallax-slide.active {
  opacity: 1;
}

.markaa-controls {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

.markaa-controls button {
  background-color: rgb(0 118 158);
  color: var(--background-color);
  border: none;
  padding: 10px 20px;
  margin: 0 5px;
  font-size: 20px;
  cursor: pointer;
  border-radius: 50px;
}

.markaa-controls button:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

form label {
  margin-bottom: 15px;
  font-weight: 500;
}

input,
select,
textarea {
  width: 100%;
  box-sizing: border-box;
  margin-bottom: 10px;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  background: #F0F0F0;
}

.features {
  display: block;
  background: #f3f3e7;
  background-image: url('../../img/icon/dot.jpg');
  background-repeat: repeat;
  background-position: left top;
  border-style: none;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0px;
  border-radius: 0px;
  width: 100%;
  height: auto;
  position: relative;
}

.color-overlay {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  height: auto;
  width: 100%;
}

.markaa-banner-text h1 {
  font-size: clamp(1.5rem, 2vw + 1rem, 3rem);
  color: #23699e;
  font-family: var(--heading-font)
}

.brick {
  border: 2px solid #ccc;
  border-radius: 15px;
  background-color: #fff;
  padding: 15px;

  h3 {
    font-family: var(--default-font);
    color: #000;
    font-size: clamp(16px, 5vw, 24px);
  }

  p {
    font-size: 15px;
    line-height: 27px;
  }

  &:hover {
    border: 2px solid var(--accent-color);
  }
}

.markaa-items {
  position: relative;
  border: 2px dashed #0077a5;
  border-radius: 22px;
  background: #f6f6f6;
  padding: 50px 25px 25px 25px;


  h4 {
    position: absolute;
    top: 0;
    left: 0;
    transform: translate(20px, -20px);
    background: #0077a5;
    padding: 7px 13px;
    border-radius: 8px;
    color: #fff;
    font-size: clamp(16px, 2vw, 19px);
  }

  h3 {
    font-family: var(--default-font);
    color: #000;
    text-align: start;
    font-size: clamp(16px, 5vw, 21px);
    border-bottom: 1px dashed #585858;
    padding-bottom: 15px;
  }


  & img {
    width: auto;
    height: 150px;
    object-fit: scale-down;
    }
  }
}

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

.highlights li {
  text-align: start;
  background-image: url('https://www.markaa.in/img/icon/check.png');
  background-repeat: no-repeat;
  background-position: 0 0px;
  padding-left: 30px;
  margin-bottom: 9px;
}

.col-md-4 .card {
  padding: 15px;
  border-radius: 20px;
  justify-content: space-between;
}


.ed-top {
  background: #0077a5;
  z-index: 99999;
  position: relative;
  padding: 5px 0;
}

.ed-com-t1-left ul {
  margin-bottom: 0;
  padding-left: 0;
  list-style: none;
}

.ed-com-t1-left ul li {
  float: left;
  display: inline-block;
  color: #c3c3c3;
  padding: 0 14px;
  line-height: 30px;
  border-right: 1px solid #424242;
  font-size: 12px;
}

.ed-com-t1-left ul li:last-child {
  border-right: none;
}

.ed-com-t1-left ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.ed-com-t1-social {
  overflow: hidden;
  margin-top: -5px;
}

.ed-com-t1-social ul {
padding-left: 0;
margin-bottom: 0;
list-style: none;
display: flex;
justify-content: end;
align-items: center;
}

.ed-com-t1-social ul li {
  margin-left: 10px;
}

.ed-com-t1-social ul li a {
  color: #fff;
  display: inline-block;
  padding: 10px;
}
.barcode-section p{
  border: 1px solid #000;
  padding: 25px;
  text-align: justify;
  border-radius: 15px;
  line-height: 1.9;
  font-size: 20px;
  margin-bottom: 0;
}
#barcodeHighlights{
color: #ff0d0d;
font-weight: 500;
}
#Error_Message {
  display: none; /* Initially hidden */
  text-align: center;
  padding: 10px 15px;
  border: 1px dashed #204508;
  background: #d7ffd7;
  border-radius: 6px;
  margin-top: 10px;
  color: #007500;
}

.chat-button {
  position: fixed;
  right: 1em;
  bottom: 1em;
  z-index: 9999;
  width: 46px;
  height: 46px;
  object-fit: cover;
  opacity: 1;
  transition: all 0.3s;
  text-align: center;
  cursor: pointer;}
  ::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-thumb {
  background-color: #0077a5; 
  border-radius: 5px;
}

::-webkit-scrollbar-track {
  background-color: #f1f1f1;
}
