/* Fonts */
:root {
  --default-font: "Roboto", 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";
}

/* 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;
  --light-background:#f8f9fa;
  --default-color: #212529;
  --heading-color: #001973;
  --accent-color: #0055B8;
  --surface-color: #ffffff;
  --contrast-color: #ffffff;
}

:root {
  --nav-color: rgba(255, 255, 255, 0.6);
  --nav-hover-color: #ffffff;
  --nav-mobile-background-color: #ffffff;
  --nav-dropdown-background-color: #ffffff;
  --nav-dropdown-color: #212529;
  --nav-dropdown-hover-color: #0055B8;
}


.dark-background {
  --background-color: #0e1d34;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #19335c;
  --contrast-color: #ffffff;
}


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

p {
  line-height: 30px;
  text-align: justify;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
img {
  max-width: 100%;
  height: auto;
}
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
  font-size: 18px;
}

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

.bg-dark {
  background-color: var(--accent-color);
}

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



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

*:focus,
*:active {
  outline: none;
  box-shadow: none;
}

ul {
  list-style: none;
  padding: 0;
}

.section-title {
  padding: 30px 0;
  position: relative;
  padding-top: 0;
}

.section-title h3 {
  font-size: clamp(18px, 5vw, 28px);
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}



.section-title h3::before,
.section-title h3::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  display: block;
  bottom: 0;
}

.section-title h3::before {
  width: 160px;
  height: 1px;
  background: color-mix(in srgb, var(--default-color), transparent 60%);
  bottom: 1px;
}

.section-title h3::after {
  width: 60px;
  height: 3px;
  background: var(--accent-color);
}

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


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

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

.header .logo img {
 max-width: 114px;
 height: auto;
filter: invert(100%) sepia(0%) saturate(0%) brightness(1000%);
}

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

.header .btn-getstarted,
.header .btn-getstarted:focus {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-size: 14px;
  padding: 8px 25px;
  margin: 0 0 0 30px;
  border-radius: 4px;
  transition: 0.3s;
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
}


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

/* Global Header on Scroll
------------------------------*/
.scrolled .header {
  --background-color: rgba(14, 29, 52, 0.9);
}

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

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

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

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

.footer .logo img {
 max-width: 110px;
 height: auto;
}

.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: 16px; 
  color: color-mix(in srgb, var(--default-color), transparent 40%); 
}

.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: 18px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  margin-right: 10px;
  transition: 0.3s;

}

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

.footer h4 {
  font-size: 18px;
  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 li {
  padding: 10px 0;
  display: flex;
  align-items: center;
  transition: 0.3s;
}

.footer .footer-links ul li:hover {
  transform: translateX(5px);
}

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

.footer .footer-links ul a {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  display: inline-block;
  line-height: 1;
  position: relative;
  padding-left: 18px;
  font-size: 16px;
}

.footer .footer-links ul a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0px;
  width: 16px;
  height: 16px;
  background-repeat: no-repeat;
  background-size: 16px;
  background-position: center;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23dddddd' viewBox='0 0 16 16'><path fill-rule='evenodd' d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708'/></svg>");
  
}


.footer .footer-links ul a:hover,
.footer .footer-links ul a:hover::before {
  color: var(--contrast-color);
}

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

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

.footer .copyright p {
  margin-bottom: 0;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}


.footer .copyright a {
  color: var(--default-color); 
}

.footer .copyright a:hover {
  text-decoration: underline;
}



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

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

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

.scroll-top svg {
 width: 26px;
 height: 26px;
  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;
}


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


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

 .hero {
  width: 100%;
  height: 500px; 
  max-height: 500px;
  position: relative;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: #001973;
}

.hero-skeleton {
  width: 100%;
  height: 100%;
  background: linear-gradient(-90deg, #f0f0f0 0%, #e0e0e0 50%, #f0f0f0 100%);
  background-size: 400% 400%;
  animation: shimmer 1.5s ease-in-out infinite;
}

@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

.hero .info {
  position: relative;
  z-index: 3;
  padding: 20px 0; 
  height: 100%;
}

.hero .info .hero-title {
  margin-bottom: 2rem;
  font-size: 36px;
  font-weight: 700;
  position: relative;
  padding-bottom: 1rem;
}

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

.hero .info p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 18px;
}

.hero .info .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: 12px 40px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
}

.hero .info .btn-get-started:hover {
  background: var(--default-color);
  color: var(--accent-color);
}

.hero .carousel {
  inset: 0;
  position: absolute;
  overflow: hidden;
}

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

.hero .carousel-item img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  transition: transform 2s ease;
  /* transform: scale(1); */
}

/* Zoom-in animation for all slides */
@keyframes zoomIn {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.1);
  }
}

.hero .carousel-item.active img {
  animation: zoomIn 5s ease forwards;
}

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

.hero .carousel-control-prev {
  justify-content: start;
  left: 10px;
}

.hero .carousel-control-next {
  justify-content: flex-end;
  right: 10px;
}

.hero .carousel-control-prev,
.hero .carousel-control-next {
  height: 100%;
}

.hero .carousel-control-prev-icon,
.hero .carousel-control-next-icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  background: rgba(33, 37, 41, 0.2);
  color: rgba(33, 37, 41, 0.6);
  line-height: 0;
}

.hero .carousel-control-prev,
.hero .carousel-control-next {
  z-index: 3;
  transition: 0.3s;
}

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

.carousel-control-prev-icon,
.carousel-control-next-icon {
  filter: invert(1);  
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
h1 {
  font-size: clamp(18px, 5vw, 35px); 
  font-weight: bold;
}
.about .content h3 {
  color: var(--heading-color);
  font-weight: 700;
}

.color-dark {
  color: var(--heading-color);
}

.about img {
  border-radius: 10px;
  transition: transform 0.5s;
}

.about img:hover {
  transform: scale(1.03);
}

.image-section {
  overflow: hidden;
  border-radius: 10px;  
}

.image-section img{
  width: 100%;
  height: auto;
  transition: transform 0.3s ease-in-out;
  display: block  ;
}

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

.services .card .card-img img {
  max-width: 100%;
  height: auto;
  transition: 0.3s ease-in-out;
}


.about .content ul li {
  display: flex;
  align-items: flex-start;
  margin-top: 40px;
}

.about .content ul svg {
  flex-shrink: 0; 
  color: var(--accent-color);
  margin-right: 20px;
  line-height: 0;
  width: 45px;
  height: 45px;
}


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


/* Industrial Tool */
.product-sec {
  position: relative;
  padding-top: 50px;
}

.product-sec .card {
  min-height: 400px;
  background: #fff;
  border-radius: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
  padding: 20px;
  position: relative;
  z-index: 1;  
}

.product-sec .card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}


.product-sec .card .card-body {
  padding-top: 0;
}

.product-sec .card .card-body .card-title {
  margin-bottom: 2rem;
}

.product-sec .card .card-img img{
  max-height: 230px;
  width: auto;
  object-fit: contain;
  margin-bottom: 15px;
  position: relative;
  transition: transform 0.3s ease;
}

.product-sec .card .card-img img:hover{
  transform: scale(1.1);
}

.light-bg {
   background-color: var(--light-background);
}


/* Carousel Cards */
.pro-design { 
  background: #fff;
  border-radius: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
  padding: 20px;
  position: relative; /* needed for z-index lift */
  z-index: 1;
  
}

.products-slider .swiper-wrapper {
  padding-bottom: 20px;
}

.pro-design:hover {
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  z-index: 2;
}

/* Card Images */
.pro-design img {
  max-height: 230px;
  width: auto;
  object-fit: contain;
  margin-bottom: 15px;
  position: relative;
  transition: transform 0.3s ease;
}

.pro-design img:hover {
  transform: scale(1.1);
}

/* Card Titles */
.pro-design h5 {
  font-size: 1rem;
  font-weight: 500;
  margin: 0;
}

.pro-design h5 a {
  color: #241d1f;
  text-decoration: none;
}

.pro-design h5 a:hover {
  text-decoration: underline;
}

/* Position container relative */
.swiper {
  position: relative;
}

/* Left & Right edge buttons */
.product-nav .swiper-button-prev,
.product-nav .swiper-button-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: all 0.3s ease;
  z-index: 10;
}


.product-nav .swiper-button-next svg, .product-nav .swiper-button-prev svg {
  width: 28px;
  height: 28px;
}


/* Remove default Swiper arrows */
.swiper-button-prev::after,
.swiper-button-next::after {
  display: none;
}

/* Hover effect */
.product-nav .swiper-button-prev:hover,
.product-nav .swiper-button-next:hover {
  background: rgba(0, 0, 0, 0.9);
  color: #fff;
}


/* Manufacturer */
.services .card {
  background-color: var(--surface-color);
  color: var(--default-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  position: relative;
  border-radius: 0;

  height: 100%;
}

.services .card h4 {
  margin: 1rem 0;
}

.services .card .card-img {
  overflow: hidden;
  border-radius: 0;
}

.services .card .card-img img {
  transition: 0.3s ease-in-out;
  width: 100%;
  height: auto;
}

.services .card:hover .card-img img {
  transform: scale(1.1);
}

.card button {
  display: inline-block;
  width: auto;
}

/* Salient features  */

.inner-box {
  position: relative;
}

.inner-box .inner {
  position: relative;
  border-top: 3px solid var(--accent-color);
  background: #fff;
  padding: 30px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.grid-col-2 {
  display: grid;
  grid-template-columns: repeat(2,1fr);
}

.list-item li {
  position: relative;
  display: block;
  font-size: 18px;
  line-height: 28px;
  font-weight: 500;
  color: #333; 
  padding-left: 30px;
  margin: 5px 0px;
}

.list-item li:last-child {
  border: 0;
  padding-bottom: 0;
}

.list-item li:before {
  content: "";
  position: absolute;
  left: 0px;
  top: 14px;
  transform: translateY(-50%);
  width: 25px;
  height: 25px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23003e6f' viewBox='0 0 16 16'%3E%3Cpath d='M10.97 4.97a.75.75 0 0 1 1.07 1.05l-3.99 4.99a.75.75 0 0 1-1.08.02L4.324 8.384a.75.75 0 1 1 1.06-1.06l2.094 2.093 3.473-4.425z'/%3E%3C/svg%3E");
}


/* Salient features  */

/* Features  */

.featured-services .feature-card {
  text-align: center;
  position: relative;
  background: var(--surface-color);
  padding: 2rem;
  border-radius: 20px;
  border: 1px solid
  color-mix(in srgb, var(--default-color), transparent 92%);
  transition: 0.3s;
  overflow: hidden;
  cursor: pointer;

}

.featured-services .feature-card:hover {
  box-shadow: 0 20px 40px  color-mix(in srgb, var(--default-color), transparent 88%);
  border-color:   color-mix(in srgb, var(--accent-color), transparent 80%);
  background-color: var(--light-background);
}


.featured-services .feature-card .icon-wrapper {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-color);
  font-size: 1.5rem;
  position: relative;
  z-index: 1;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 18px;
  margin: 0px auto 1.5rem;
  transition: 0.3s;
}

.featured-services .feature-card .icon-wrapper svg {
  width: 25px;
  height: 25px;
}

.featured-services .feature-card:hover .icon-wrapper {
  transform: scale(1.1);
  color: var(--contrast-color);
  background: linear-gradient(135deg, var(--accent-color),color-mix(in srgb, var(--accent-color), #6a11cb 30%));
}
/* Features  */

/* Contact */
.contact {
  background-color: var(--light-background);
}

.contact iframe {
  width: 100%;
  border-radius: 10px;
}

.contact .contact-text p {
  margin-bottom: 5px;
  white-space: normal;
  word-break: break-word;
}

.contact .contact-content {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact .contact-cards-container {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 15px;
}

.contact .contact-card {
  background-color: var(--surface-color);
  padding: 20px;
  border-radius: 12px;
  display: flex;
  align-items: flex-start;
  gap: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact .contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.contact .contact-card .icon-box {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact .contact-card .icon-box svg {
  width: 20px;
  height: 20px;
  color: var(--accent-color);
}


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


/* About Page */
.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 30%);
  position: absolute;
  inset: 0;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  justify-content: center;
  padding: 0;
  margin: 0;
  font-size: 18px;
  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%);
}

.page-title .breadcrumbs ol a {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}


.card-box {
  text-align: center;
  position: relative;
  background: var(--surface-color);
  padding: 2rem;
  border-radius: 20px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
  transition: 0.3s;
  overflow: hidden;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.card-box:hover {
  box-shadow: 0 20px 40px color-mix(in srgb, var(--default-color), transparent 88%);
  border-color: color-mix(in srgb, var(--accent-color), transparent 80%);
  background-color: var(--light-background);
}

.buy-btn {
  color: var(--accent-color);
  display: inline-block;
  padding: 0.375rem 0.75rem;
  border-radius: 0.375rem;
  transition: 0.3s;
  border: 1px solid var(--accent-color);
}

.buy-btn.fill-button {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.buy-btn.fill-button:hover {
  background: var(--contrast-color);
  color: var(--accent-color);
  transform: scale(1);
}

.info-item .icon {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-size: 20px;
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  transition: all 0.3s ease-in-out;
  margin-right: 15px;
  flex-shrink: 0;
}

select.form-control {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%236c757d'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E")
              no-repeat right 0.75rem center/1rem auto;
  padding-right: 2rem;
}

.btn-primary { 
  background: var(--accent-color);
  color: var(--contrast-color);
}

/* Hover & Focus Hover */
.btn-primary:hover
 {
  background: var(--contrast-color);
  color: var(--accent-color);
  transform: scale(1);
}

.btn-primary:focus,
.btn-primary:focus:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}


.contact .info-item+.info-item {
  margin-top: 20px;
}

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

.error {
  color: red;  
}

select.error {
  color: var(--default-color);
}

#refreshCaptchaBtn img.rotate {
  transform: rotate(360deg);
  transition: transform 0.5s ease;
}

#chatBtn {
  position: fixed;
  bottom: 10px;
  right: 10px;
  background-color: black;
  color: white;
  padding: 10px 20px;
  border: none;
  cursor: pointer;
  border-radius: 30px;
  z-index: 9999;
  }

  .toggle-dropdown {
    width: 13px;
    height: 13px;
    margin-left: 5px;
    font-weight: 700;
}


.inq-btn-home {
  position: fixed;
  top: 256px;
  left: 10px;
  width: 45px;
  height: 50px;
  z-index: 11
}

.inq-btn-home img {
  width: 40px ;
  height: auto;
}


.pop-img {
  max-width: 100%;
  height: auto;
}

.form-group {
  margin: 10px 0;
}


.error-icon {
  font-size: 5rem;
  color: var(--heading-color)
}

.error-code {
  font-size: clamp(6rem, 15vw, 12rem);
  font-weight: 800;
  color: color-mix(in srgb, var(--heading-color), transparent 10%);
  font-family: var(--heading-font);
  line-height: 1;
}


.modal-header {
  position: relative;
  background-color: var(--nav-dropdown-hover-color);
}

.modal-title {
  color: var(--contrast-color);
}

/* Custom color close button */
button.btn-close {
  background: var(--default-color);
  opacity: 1;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  position: absolute;
  top: 20px;
  right: 20px;
  background-image: none; /* remove default × icon */
  color: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}


button.btn-close::before {
  content: "×";
  color: var(--background-color);
  font-weight: bold;
  font-size: 20px;
  line-height: 1;
}

/* Hover effect */
button.btn-close:hover {
  background-color: var(--nav-dropdown-color);  
  transition: all 0.2s ease;
}

/* Responsive */

@media (min-width: 640px) {
  .hero .carousel-control-prev {
    padding-left: 15px;
  }
  .hero .carousel-control-next {
    padding-right: 15px;
  }
 
}

.hero .carousel-control-next {
  justify-content: end;
}

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

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

  .navmenu li {
    position: relative;
  }

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

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

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

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

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

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

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 16px;
    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;
  }
}

@media (max-width: 1200px) {
  .header .logo {
    order: 1;
  }

  .header .btn-getstarted {
    order: 2;
    margin: 0 15px 0 0;
    padding: 6px 15px;
  }

  .header .navmenu {
    order: 3;
  }
}

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

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

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px 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: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

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

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

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

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

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    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;
  }

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


@media (max-width: 1024px) {
  .pro-design {
    min-height: 350px;
  }
  
.contact .contact-cards-container {

  grid-template-columns: repeat(1,1fr);

}
}

@media (max-width: 992px) {
  .hero .carousel-caption h2 {
    font-size: 36px;
  }

  .hero .carousel-caption p {
    font-size: 18px;
  }

  .hero .carousel-caption .btn-get-started {
    font-size: 14px;
    padding: 8px 25px;
  }
}

@media (max-width: 768px) {
  .hero .info h2 {
    font-size: 36px;
  }
  .pro-design {
    min-height: 300px;
  }

  .hero {
    height: 400px; 
    max-height: 400px;
  }
}


@media (max-width: 767px) {
  .hero .carousel-control-next-icon, .hero .carousel-control-prev-icon {
    width: 35px;
    height: 35px;  
  }

  .card-box {
    min-height: 200px;
  }

  .h1, h1 {
    font-size: calc(1.4rem + 0.9vw);
}

.page-title { 
  padding: 100px 0 40px 0; 
}

section,
.section {
  padding: 40px 0;
}

}

@media (max-width: 576px) {
  .hero .carousel-caption h2 {
    font-size: 28px;
  }

  .hero .carousel-caption p {
    font-size: 14px;
  }
  .hero {
    height: 280px; 
    max-height: 280px;
  }

  .hero .info .hero-title {
    margin-bottom: 10px;
    font-size: 22px;   
    padding-bottom: 10px;
    line-height: 25px;
}

.hero .info .btn-get-started { 
  font-size: 14px; 
  padding: 8px 30px;
}

  .hero .info p {
    font-size: 15px;
    line-height: normal;
  }

  .header .logo img {
    max-width: 90px;  
  }


  .pro-design {
    min-height: 250px;
  }

  .inner-box .inner .list-item{   
    grid-template-columns: repeat(1, 1fr);
  }

  .carousel-control-prev,
  .carousel-control-next {
    width: 35px;
    height: 35px;
  }
  .swiper-button-next:after, .swiper-button-prev:after{
    font-size:30px;
  }

  .contact .contact-card { 
    padding: 15px;
}
}


@media (max-width: 374px) {
  .contact .contact-text p {
   font-size: 15px;
  }
}


@media (max-width: 768px), (max-height: 480px) {
  .hero .info {
    padding: 100px 50px 46px 50px;
  }
}
