
/* Fonts */
:root {
  --default-font: "Lato",  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: 'Rajdhani',  sans-serif;
  --nav-font: "Poppins",  sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root { 
  --background-color: #ffffff; /* Background color for the entire website, including individual sections */
  --default-color: #4B5563; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #36343a; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #2563EB; /* 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: #444444;  /* The default color of the main navmenu links */
  --nav-hover-color: #2563EB; /* 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: #444444; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #2563EB; /* 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: #f9f9f9;
  --surface-color: #ffffff;
}

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

.accent-background {
  --background-color: #2563EB;
  --default-color: #4B5563;
  --heading-color: #111827;
  --accent-color: #2563EB;
  --surface-color: #00cc95;
}

/* 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);
}
.main-color{
  color: var(--accent-color);
}
a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

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

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

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

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

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

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

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

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

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



/* -------common css--------- */
.button {
	pointer-events: auto;
	cursor: pointer;
	background: #ffffff;
	border: none;
	padding: 15px 30px;
	font-family: var(--nav-font);
	font-size: 17px;
	position: relative;
	display: inline-block;
  border-radius: 10px;
  color: var(--contrast-color);
}

.button::before,
.button::after {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
  color: red;
}

.button--hyperion {
	font-family: var(--nav-font);
	font-weight: 500;
	padding: 15px 30px;
	border: 1px solid var(--accent-color);
	overflow: hidden;
	color: var(--heading-color);
  
}

.button--hyperion span {
	display: block;
	position: relative;
}

.button--hyperion > span {
	overflow: hidden;
}

.button--hyperion > span > span {
	overflow: hidden;
	color: white;
}

.button--hyperion:hover > span > span {
	animation: MoveUpInitial 0.2s forwards, MoveUpEnd 0.2s forwards 0.2s;
  color: var(--accent-color);
}

@keyframes MoveUpInitial {
	to {
		transform: translate3d(0,-105%,0);
	}
}

@keyframes MoveUpEnd {
	from {
		transform: translate3d(0,100%,0);
	}
	to {
		transform: translate3d(0,0,0);
	}
}

.button--hyperion::before {
	content: '';
	background: var(--accent-color);
	transition: transform 0.3s cubic-bezier(0.7, 0, 0.2, 1);
	transform-origin: 100% 50%;
}

.button--hyperion:hover::before {
	transform: scale3d(0,1,1);
	transform-origin: 0% 50%;
}



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

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

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

.contact-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: contact-email-form-loading 1s linear infinite;
}

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

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

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

.header .header-container {
  background-color: var(--background-color);
  transition: all 0.5s;
  position: relative;
  padding-top: 5px;
  padding-bottom: 5px;
  border-radius: 10px;
  border: 1px solid #D9E1E5;
}

.header .logo {
  /* position: absolute; */
  inset: 0 auto 0 0;
  padding: 0 20px;
}
.header .logo .navbar-logo{
  max-height: 70px;
}

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

.header .logo h1 {
  font-size: 26px;
  margin: 0;
  font-weight: 500;
  color: var(--contrast-color);
}

.header .btn-getstarted,
.header .btn-getstarted:focus {
  color: var(--contrast-color);
  background-image: linear-gradient(to right, #2563EB 0%, #12D8FA  51%, #2563EB  100%);
  font-size: 17px;
  padding: 10px 20px;
  margin: 0 5px 0 30px;
  background-size: 200% auto;
            color: white;            
            box-shadow: 0 0 20px #eee;
            border-radius: 10px;
            display: block;

  border-radius: 10px;
  transition: 0.3s;
  font-family: var(--nav-font);
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  color: var(--contrast-color);
    background-position: right center; /* change the direction of the change here */
            color: #fff;
            text-decoration: none;
            box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;

}

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

.scrolled .header .header-container {
border: 0;
}

@media (max-width: 1200px) {
  .header {
    padding: 0;
  }

  .header .header-container {
    padding: 10px 0;
  }

  .header .logo {
    order: 1;
  }

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

  .header .navmenu {
    order: 3;
  }
}

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

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

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    padding: 18px 15px;
    font-size: 17px;
    font-family: var(--nav-font);
    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;
    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: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

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

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

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

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

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

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

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

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px 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;
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background: url(../img/footer.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  font-size: 14px;
  padding-bottom: 50px;
  position: relative;
  padding-top: 50px;
}

.footer form .btn-subscribe {
  background-image: linear-gradient(to right, #2563EB 0%, #12D8FA  51%, #2563EB  100%);
  background-size: 200% auto;
  color: white;            
  box-shadow: 0 0 20px #eee;
text-transform: uppercase;
  border: none;
  padding: 15 20px;
  border-radius: 10px;
  font-family: var(--nav-font);
  font-size: 17px;
  transition: background 0.2s;
  width: 40%;
  transition: 0.3s ease;
}

.footer form .btn-subscribe:hover{
  background-color: #14526c56;
  border: var(--background-color);
}


.btn-subscribe:hover {
     background-position: right center; /* change the direction of the change here */
            color: #fff;
            text-decoration: none;
            box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;

  color: #fff;
}

.footer form input{
  border-radius: 10px;
  border: 1px solid #999595;
  padding: 10px 15px;
  width: 100%;
  font-size: 17px;
   padding: 15px 20px;
   background: transparent;
   border: 1px solid #999595;
   font-size: 17px;
}

.footer form input:focus {
  outline: none;
  box-shadow: none;
  border: 1px solid var(--accent-color);
}
.form-control::placeholder {
  color: #9CA3AF !important;
  opacity: 1;
}

.footer form {
  width: 100%;
}

.footer-contents{
  border: 1px solid #999595;
  border-radius: 10px;
  margin: 0 auto;
  width: fit-content;
  padding: 15px;
  
}

.footer .footer-top {
  padding-top: 15px;
}

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

.footer .footer-about .logo img {
  max-height: 70px;
  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: 17px;
  font-family: var(--default-font);
  color:#5b5b5b;
}

.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: 17px;
  font-weight: 600;
  position: relative;
  padding-bottom: 12px;
  color: #363636;
  font-family: var(--nav-font);
}

.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: #5b5b5b;
  display: inline-block;
  line-height: 1;
  font-size: 17px;
}

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

.footer .footer-contact p {
  margin-bottom: 5px;
  color: #5b5b5b;
  font-size: 17px;
}

.footer .copyright {
  padding-top: 25px;
  padding-bottom: 15px;
  border-top: 1px solid #5b5b5b;
}

.footer .copyright p {
  margin-bottom: 0;
  color: #5b5b5b;
  font-size: 17px;
}

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



/*--------------------------------------------------------------
# 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-image: linear-gradient(to right, #2563EB 0%, #12D8FA  51%, #2563EB  100%);
   background-size: 200% auto;
  color: white;   
  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: white;
  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);
  padding: 150px 0 60px 0;
  text-align: center;
  position: relative;
}

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

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

@media (max-width: 1199px) {

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

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

.section-title h2 {
  font-size: 4rem;
  font-weight: 900;
  /* margin-bottom: 30px;
  padding-bottom: 20px; */
  position: relative;
  text-transform: uppercase;
}

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

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  min-height: 100vh;
  position: relative;
  padding: 150px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.hero:before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
}

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

.hero h2 {
  margin: 0;
  font-size: 120px;
  font-weight: 700;
  text-transform: uppercase;
  font-weight: bold;
}

.hero p {
  margin: 10px 0 0 0;
  font-size: 24px;
  color: var(--default-color);
}

.hero .btn-explore-products {
  color: var(--contrast-color);
  font-weight: 600;
  font-family: var(--nav-font);
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  background-color: var(--accent-color);
  padding: 15px 30px;
  margin: 30px 0 0 0;
  border-radius: 10px;
  transition: 0.5s;
  border: 2px solid color-mix(in srgb, var(--nav-hover-color), transparent 50%);
  position: relative;
  overflow: hidden;
  z-index: 1;
  margin-right: 10px;
}
.btn-bordered{
  pointer-events: auto;
	cursor: pointer;
	border: none;
	padding: 15px 30px;
	font-family: var(--nav-font);
	font-size: 17px;
	position: relative;
	display: inline-block;
  border-radius: 10px;
  color: var(--heading-color);
  border: 2px solid var(--accent-color);
  transition: 0.3s ease; color: var(--accent-color);
}


.btn-bordered:hover{
  color: var(--accent-color);
  border: 2px solid var(--accent-color);
  box-shadow: rgba(0, 0, 0, 0.25) 0px 25px 50px -12px;
}

.hero .btn-explore-products::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  /* Mask shine effect */
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(255,255,255,0.7) 50%,
    transparent 100%
  );
  /* Start off left */
  transform: translateX(-75%);
  /* Mask for smooth shine */
  -webkit-mask-image: linear-gradient(120deg, transparent 0%, #fff 50%, transparent 100%);
  mask-image: linear-gradient(120deg, transparent 0%, #fff 50%, transparent 100%);
  opacity: 0.8;
  transition: transform 0.7s cubic-bezier(.4,2,.6,1);
}

.hero .btn-explore-products:hover::after {
  transform: translateX(120%);
}

.hero .btn-explore-products:hover {
  color: var(--contrast-color);
  background: var(--accent-color);
  border-color: var(--accent-color);
  box-shadow: 0 0 32px 8px color-mix(in srgb, var(--accent-color), transparent 40%), 0 4px 24px 0 color-mix(in srgb, var(--accent-color), transparent 80%);
  transform: scale(1.06) translateY(-2px);
  transition: 
    background 0.3s,
    color 0.3s,
    border-color 0.3s,
    box-shadow 0.3s,
    transform 0.2s cubic-bezier(.4,2,.6,1);
}

#animated-word-2::after {
  content: '|';
  animation: blink 1s steps(1) infinite;
  color: var(--accent-color);
  margin-left: 2px;
}

@keyframes blink {
  0%, 50% { opacity: 1; }
  51%, 100% { opacity: 0; }
}

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

 .hero {
    padding: 110px 0;

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



/*--------------------------------------------------------------
# Clients Section
--------------------------------------------------------------*/
.clients {
  padding: 10px 0;
}

.clients .client-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.clients .client-logo img {
  padding: 20px 40px;
  max-width: 90%;
  transition: 0.3s;
  opacity: 0.5;
  filter: grayscale(100);
}

.clients .client-logo img:hover {
  filter: none;
  opacity: 1;
}

@media (max-width: 640px) {
  .clients .client-logo img {
    padding: 20px;
  }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .content h3 {
  font-size: 4rem;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 30px;
}


.about .content p:last-child {
  margin-bottom: 0;
}
.about .content p{
  font-size: 17px;
}

.about .pulsating-play-btn {
  position: absolute;
  left: calc(50% - 47px);
  top: calc(50% - 47px);
}
.float-animate {
  animation: floatY 3s ease-in-out infinite;
}

@keyframes floatY {
  0%   { transform: translateY(0); }
  50%  { transform: translateY(-20px); }
  100% { transform: translateY(0); }
}
.btn-about{
  color: var(--contrast-color);
  font-weight: 600;
  font-family: var(--nav-font);
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  background-color: var(--accent-color);
  padding: 15px 30px;
  margin: 30px 0 0 0;
  border-radius: 10px;
  transition: 0.5s;
  border: 2px solid color-mix(in srgb, var(--nav-hover-color), transparent 50%);
  position: relative;
  overflow: hidden;
  z-index: 1;
  margin-right: 10px;
}


         .btn-grad {background-image: linear-gradient(to right, #2563EB 0%, #12D8FA  51%, #2563EB  100%)}
         .btn-grad {
            margin: 10px;
            padding: 15px 30px;
            text-align: center;
            text-transform: uppercase;
            transition: 0.5s;
            background-size: 200% auto;
            color: white;            
            box-shadow: 0 0 20px #eee;
            border-radius: 10px;
            display: block;
          }

          .btn-grad:hover {
            background-position: right center; /* change the direction of the change here */
            color: #fff;
            text-decoration: none;
            box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
          }
         



@media (max-width: 768px) {
  .about .content h3{
    font-size: 3rem;
  }
  .footer .footer-about .logo img, .header .logo .navbar-logo {
    max-height: 65px;
    margin-right: 6px;
  }
  .footer .footer-about .logo span {
    font-size: 24px;
}
}


/*--------------------------------------------------------------
# about sub page
--------------------------------------------------------------*/
.about-sub-page .about-sub{
  padding-top: 150px;
}
.about-sub-page .about-our-expertise{
  background-color: #F2F2FD;
  padding-bottom: 100px;
}
.about-sub-page .why-us{
  margin-top: 0;
}
.about-img-2{
  width: 80%;
}

/*--------------------------------------------------------------
# Stats Section
--------------------------------------------------------------*/
.stats {
  padding: 25px 0;
}

.stats .stats-item {
  padding: 30px;
  width: 100%;
  /* border: 1px solid var(--accent-color); */
  border-radius: 10px;
  /* background: linear-gradient(90deg, rgb(74 148 183) 0%, rgb(103 158 231) 50%, rgb(101 194 255) 100%); */
}

.stats-1{
  background-color: #bfd2fa;
}
.stats-2{
  background-color: #d2e4f3;
}
.stats-3{
  background-color: #e1e7e9;
}
.stats-4{
  background-color: #bac0f2;
}
.stats .stats-item span {
  font-size: 48px;
  display: block;
  color: var(--heading-color);
  font-weight: 700;
}
.stats .stats-item p {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  padding: 0;
  margin: 0;
  font-family: var(--default-font);
  font-size: 17px;
  font-weight: 600;
}

/*--------------------------------------------------------------
# Why Us Section
--------------------------------------------------------------*/
/* .why-us .why-box {
  color: var(--contrast-color);
  background: var(--accent-color);
  padding: 30px;
} */

.why-us .why-box h3 {
  color: var(--contrast-color);
  font-weight: 700;
  font-size: 4rem;
  margin-bottom: 30px;
  text-transform: uppercase;
}
.why-us .why-box b{
  color: var(--accent-color);
}
.why-us {
  background: url('../img/why-us-bg.jpg') no-repeat center center;
  background-size: cover;
  margin-top: 120px;
}
.top-head h5{
  margin-bottom: 0;
  margin-left: 5px;
  font-family: 'Poppins';
  color: #4B5563;
  font-size: 14px;
}
.why-us .top-head h5{
  margin-bottom: 0;
  margin-left: 5px;
  font-family: 'Poppins';
  color: #fbfbfb;
  font-size: 14px;
}
.why-us .top-head{
  display: inline-block;
  width: fit-content;
  padding: 5px 10px;
  border: 1px solid #ffffff;
  border-radius: 10px;
  object-fit: contain;
  margin: 0 auto;
  margin-bottom: 10px;
}
.why-us  .top-head  i{
  color: #ffffff;
  font-size: 17px;
}
.top-head{
  display: inline-block;
  width: fit-content;
  padding: 5px 10px;
  border: 1px solid #D9E1E5;
  border-radius: 10px;
  object-fit: contain;
  margin: 0 auto;
  margin-bottom: 10px;
}
.top-head  i{
  color: #4B5563;
  font-size: 17px;
}
/* .why-us .why-box p {
  margin-bottom: 30px;
} */

/* .why-us .why-box .more-btn {
  display: inline-block;
  background: color-mix(in srgb, var(--contrast-color), transparent 85%);
  padding: 8px 40px 10px 40px;
  color: var(--contrast-color);
  transition: all ease-in-out 0.4s;
  border-radius: 50px;
} */


.why-us .why-box .more-btn:hover {
  color: var(--accent-color);
  background: var(--surface-color);
}

.why-us .icon-box {
  text-align: center;
  padding: 40px 30px;
  padding-top: 0;
  width: 100%;
  height: 100%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.why-us .why-img-box{
  background: #63686B;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 100px;
  transition: 0.3s;
  margin-bottom: 20px;
}
.why-us .why-img-box img{
  width: 80px;
  height: 80px;
  object-fit: contain;
}
.why-us .icon-box:hover .why-img-box{
  background: rgb(160, 196, 235);
}
.why-us .icon-box h4 {
  font-size: 25px;
  font-weight: 600px;
  margin: 0 0 15px 0;
  font-family: var(--nav-font);
  color: var(--contrast-color);
}

.why-us .icon-box p {
  font-size: 17px;
  color: #D9E1E5;
}

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

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

.call-to-action img {
  position: fixed;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

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

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

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services{
  background-color: #F3F3F3;
}
.services .service-item {
  background-color: var(--surface-color);
  box-shadow: 0px 5px 90px 0px rgba(0, 0, 0, 0.1);
  padding: 30px;
  transition: all ease-in-out 0.3s;
  border-radius: 18px;
  border-bottom: 5px solid var(--surface-color);
  height: 100%;
}
.services .service-item i {
  font-size: 20px;
  transition: all ease-in-out 0.3s;
}
.services .service-item h3 {
  font-weight: 500;
  margin: 10px 0 15px 0;
  font-size: 25px;
  transition: ease-in-out 0.3s;
  font-family: var(--nav-font);
}
.service-item .btn-service{
  margin: 0 auto;
  display: block;
  text-align: center;
  width: fit-content;
  margin-top: 20px;
  transition: 0.3s ease;
  color: var(--heading-color);
  pointer-events: auto;
	cursor: pointer;
	border: none;
	padding: 15px 30px;
	font-family: var(--nav-font);
	font-size: 17px;
	/* position: relative;
	display: inline-block; */
  border-radius: 10px;
  color: var(--heading-color);
  border: 2px solid var(--accent-color);
}
.service-item .btn-service:hover{
  background-color: red!important;
  color: red!important;
}
.services .service-item p {
  line-height: 24px;
  font-size: 17px;
  margin-bottom: 0;
}
.services .service-item .icon {
  margin: 0 auto 20px auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  transition: all ease-in-out 0.3s;
}
.services .service-item:hover {
    transform: translateY(-10px);
    border-color: var(--accent-color);
  }

  .services .service-item:hover h3 {
    color: var(--accent-color);
  }
.services .service-item:hover .btn-service {
    color: var(--accent-color);
  }
  .testimonial-item{
    background-color: var(--contrast-color);
    padding: 24px;
    border-radius: 10px;
}
.services-sub{
  padding-top: 150px;
  background-color: white;
}

.footer .social-icon-box{
  display: flex;
  gap: 4px;
}
.footer .social-icons{
  width: 40px;
  height: 40px;
  padding: 8px;
  border-radius: 10px;
  background-color: rgb(222, 222, 225);
  display: flex;justify-content: center;align-items: center;
  transition: 0.2s ease all;
}
.footer .social-icons img{
  width: 24px;height: 24px;object-fit: contain;
}

.footer .social-icons:hover{
  transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    background-color: var(--accent-color);
}
.footer .social-icons:hover img{
  filter: brightness(0) invert(1);
}

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

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

@media (max-width: 768px) {
  .services .services-heading{
    font-size: 3rem;
  }
  .responsive-heading{
    font-size: 3rem!important;
  }
  .section-title{
    padding-bottom: 10px;
  }
  .footer {
    padding: 10px;
  }
  .footer .footer-about p{
    margin-bottom: 0;
  }
  .footer-about{
    margin-top: 10px;
  }
  .why-us .why-box h3{
    font-size: 3rem;
  }
  .testimonials{
    padding: 65px 0;
  }
}

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

.our-products .our-products-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;
  font-family: var(--nav-font);
}

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

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

.our-products .our-products-filters li:last-child {
  margin-right: 0;
}
.our-products-sub{
  padding-top: 150px;
}

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

.our-products-content {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%; /* Ensure parent has a height */
}

.our-products-info {
  text-align: center;
}

.our-products .our-products-content img {
  transition: 0.3s;
  position: relative;
  z-index: 1;
   max-height: 180px;
  width: 100%;
  object-fit: cover;
}

.our-products .our-products-content .our-products-info {
  padding: 25px 20px;
  position: relative;
  z-index: 2;
  height: 70vh;
  justify-content: center;
  border: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.our-products .our-products-content .our-products-info h4 {
  font-size: 25px;
  font-weight: 600;
  font-family: var(--nav-font);
  color: var(--contrast-color);
}

.our-products .our-products-content .our-products-info h4 a {
  color: var(--heading-color);
  transition: 0.3s;
  font-family: var(--nav-font);
}

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

.our-products .our-products-content .our-products-info p {
  color: #F2F7FA;
  font-size: 17px;
  margin-bottom: 0;
}

.our-products .our-products-content:hover img {
  transform: scale(1.1);
}
.our-products-content .btn-primary,
.btn-primary:focus {
  border: none;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  box-shadow: none;
  margin: 0 auto;
  width: fit-content;
  margin-top: 20px;
  border: 1px solid var(--accent-color);
}

.our-products-content .btn-primary:hover{
  background-color: #14526c56;
  border: 1px solid var(--contrast-color);
}


.our-products-content {
  position: relative;
  overflow: hidden;
  min-height: 320px; /* or your preferred height */
  border-radius: 16px;
  z-index: 1;
}

.our-products-content::before {
  content: "";
  position: absolute;
  inset: 0;
  background: inherit;
  background-image: inherit;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  transition: transform 0.6s cubic-bezier(.4,2,.6,1);
  z-index: 0;
  will-change: transform;
  /* fallback for inline background */
  pointer-events: none;
}

.our-products-content[style*="background"]::before {
  background: none;
  background-image: inherit;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.our-products-content:hover::before {
  transform: scale(1.08);
}

.our-products-content .overlay,
.our-products-content .our-products-info {
  position: relative;
  z-index: 1;
}

.our-products-content .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.63); /* dark overlay, adjust opacity as needed */
  z-index: 1;
}


.btn-primary,
.btn-primary:focus {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-size: 17px;
  padding: 10px 20px;
  border-radius: 10px;
  transition: 0.3s;
  font-family: var(--nav-font);
   display: inline-block; /* or block */
  margin-top: 12px; 
  text-align: center;
}

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

.our-products-content {
  border-radius: 8px;
  background: #fff;
  overflow: hidden;
}

.our-products-info {
  display: flex;
  flex-direction: column;
}

.our-products-info p {
  flex-grow: 1; /* pushes button to the bottom */
}

.our-products-info .btn {
  align-self: flex-start;
}



/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}
.testimonials{
  background-color: #f1f4ff;
}
.testimonials .testimonial-item .testimonial-content {
  border-left: 3px solid var(--accent-color);
  padding-left: 30px;
}

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

.testimonials .testimonial-item h3 {
  font-size: 20px;
  font-weight: 700;
  margin: 10px 0 5px 0;
  font-family: var(--nav-font);
}

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

.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-size: 17px;
}

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

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

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

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

/* /arrow */
/* Swiper navigation arrows */
.testimonials .swiper-button-next,
.testimonials .swiper-button-prev {
  color: var(--accent-color);
  background: #fff;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  box-shadow: 0 2px 8px rgb(0 0 0 / 5%);
}

.testimonials .swiper-button-next::after,
.testimonials .swiper-button-prev::after {
  font-size: 18px;
  font-weight: bold;
}

.testimonials .swiper-button-next:hover,
.testimonials .swiper-button-prev:hover {
  background-image: linear-gradient(to right, #2563EB 0%, #12D8FA  51%, #2563EB  100%);
   background-size: 200% auto;
            color: white;            
            box-shadow: 0 0 20px #eee;

}



/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
.team .member {
  background-color: var(--surface-color);
  box-shadow: 0px 2px 25px rgba(0, 0, 0, 0.1);
  text-align: center;
  border-radius: 15px;
  padding: 15px;
  overflow: hidden;
}

.team .member img {
  border-radius: 15px;
  overflow: hidden;
}

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

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

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

.team .member .social {
  margin-top: 15px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: space-around;
}

.team .member .social a {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
  transition: 0.3s;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 60%);
}

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

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

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-wrap {
  background-color: var(--surface-color);
  padding: 44px 28px;
  border: 1px solid #D9E1E5;
  border-radius: 10px;
}
.contact .info-wrap-heading h3{
  font-size: 35px;
  font-weight: 500;
  padding-bottom: 10px;
  position: relative;
  font-family: var(--nav-font);
}
.contact .info-wrap-heading{
  margin-bottom: 32px;
}
@media (max-width: 575px) {
  .contact .info-wrap {
    padding: 20px;
  }
}


.contact .info-item .icon-img-box {
  background: color-mix(in srgb, var(--accent-color), transparent 92%);
  width: 71px !important;
  height: 71px !important;
  min-width: 71px !important;
  min-height: 71px !important;
  max-width: 71px !important;
  max-height: 71px !important;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  transition: all 0.3s ease-in-out;
  margin-right: 15px;
  box-sizing: border-box;
}
.contact .info-item .icon-img-box img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  display: block;
}

.contact .info-item h3 {
  padding: 0;
  font-size: 20px;
  font-weight: normal;
  margin-bottom: 5px;
  font-family: var(--nav-font);
}

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

.contact .info-item:hover .icon-img-box {
  background: var(--accent-color);
}
.contact .info-item:hover .icon-img-box img {
  filter: brightness(0) invert(1);
}
.contact .contact-email-form {
  background-color: #f5f9fa;
  padding: 30px;
  /* box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1); */
  border-radius: 10px;
}

.contact .contact-email-form input[type=text], .contact .contact-email-form input[type=email], .contact .contact-email-form textarea{
  font-size: 17px!important;
}
.contact .form-description{
    margin-bottom: 30px;
}

.captcha-section {
    display: flex;
  }

  .captcha-box {
    background-color: #000;
    color: #fff;
    font-weight: bold;
    letter-spacing: 3px;
    padding: 8px 16px;
    border-radius: 5px;
    font-size: 1.1rem;
  }
.captcha-copntainer{
  align-items: center;
    display: flex;
    align-content: center;
    flex-wrap: wrap;
}
  #reloadCaptcha {
    background: transparent;
    border: none;
    margin-top: 0;
    padding: 0;
  }
    #reloadCaptcha i{
      font-size: 30px;
      color: var(--heading-color);
    }

  #reloadCaptcha:hover i{
    color: var(--accent-color);
  }

  input#captchaInput {
    border: none;
    border-bottom: 1px solid #ccc;
    border-radius: 0;
    background: transparent;
  }


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

.contact .contact-email-form input[type=text],
.contact .contact-email-form input[type=email],
.contact .contact-email-form textarea {
  font-size: 14px;
  padding: 10px 15px;
  box-shadow: none;
  border-radius: 10px;
  color: var(--default-color);
  background-color: var(--surface-color);
  border-color: #D9E1E5;
}

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

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

.contact .contact-email-form button[type=submit] {
  color: var(--contrast-color);
  background-image: linear-gradient(to right, #2563EB 0%, #12D8FA  51%, #2563EB  100%);
 background-size: 200% auto;
            color: white;            
            box-shadow: 0 0 20px #eee;
            border-radius: 10px;
            display: block;
  font-size: 17px;
  border: 0;
  padding: 10px 20px;
  transition: 0.4s;
  border-radius: 10px;
  width: 100%;
}
.contact .contact-email-form label{
  font-size: 17px;
  font-weight: normal;
  display: inline-block;
  font-family: var(--heading-color);
}
.contact .contact-email-form button[type=submit]:hover {
    background-position: right center; /* change the direction of the change here */
            color: #fff;
            text-decoration: none;
            box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;

}
.contact-infocard{
  background-color: var(--contrast-color);
  padding: 20px;
  border: 1px solid #D9E1E5;
  border-radius: 10px;
}
.contact iframe{
  margin-top: 32px;
}
.contact-infocard a{
  color: var(--heading-color);
  font-size: 17px;
  transition: 0.3s;
}
.contact-infocard a:hover{
  color: var(--accent-color);
}
.contact-infocard  h4{
  font-size: 25px;
  margin-bottom: 10px;
  font-family: var(--nav-font);
  color: var(--heading-color);
  text-align: center;
}
a.link-box-hover:hover{
  border: 1px solid var(--accent-color);
  transition: 0.3s;
}
.contact-infocard img{
  width: 55px;
  height: 55px;
  object-fit: contain;
  display: block;
  margin: 0 auto;
  margin-bottom: 10px;
}
.link-box {
  display: block;
  margin-bottom: 5px; /* Adjust gap as needed */
}
.link-box:last-child {
  margin-bottom: 0;
}
.contact-infocard .link-box{
  background-color: var(--contrast-color);
  padding: 10px;
  border: 1px solid #D9E1E5;
  border-radius: 10px;
  width: 100%;
  text-align: center;
}

.contact-sub{
  padding-top: 150px;
}


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

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

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

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

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

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

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

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

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

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

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



/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/
.sub-page-heading{
  font-size: 4rem;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 40px;
}
.sub-page-heading b{
  color: var(--accent-color);
}
@media (max-width: 768px) {
  .sub-page-heading{
    font-size: 2.5rem;
    margin-bottom: 30px;
  }
  .responsive-heading{
    font-size: 3rem!important;
  }
  .page-title h1{
    font-size: 55px;
  }
}