@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
/* Fonts */
:root {
  --default-font: "Poppins", sans-serif;
  --heading-font: "Playfair Display", serif;
  --nav-font: "Poppins", sans-serif;
}

/* Global Colors */
:root {
  --background-color: #ffffff;
  --default-color: #000411;
  --heading-color: #001939;
  --accent-color: #006bb9;
  --primary-color: #369ce5;
  --contrast-color: #ffffff;
  --accent-lite-color: #ffefea;
}

/* Nav Menu Colors */
:root {
  --nav-color: #222222;
  --nav-hover-color: #900000;
  --nav-dropdown-background-color: #ffffff;
  --nav-dropdown-color: #222222;
  --nav-dropdown-hover-color: #900000;
}

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

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
  font-size: 16px;
}

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);
}
p {
  font-size: 18px;
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  color: var(--default-color);
  transition: all 0.5s;
  z-index: 997;
  position: -webkit-sticky;
  position: fixed;
  top: 0;
  z-index: 1020;
}

.header .topbar {
  height: 40px;
  padding: 0;
  font-size: 14px;
  transition: all 0.5s;
}

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

.header .topbar .contact-info i a,
.header .topbar .contact-info i span {
  padding-left: 5px;
  color: var(--heading-color);
}
.border-gradient {
  border: 4px solid;
  border-image-slice: 1;
  border-width: 4px;
  border-radius: 20px;
}
.border-gradient-gold {
  border-image-source: url("../img/blue.jpg");
}
.top-navbar img {
  width: 18px;
}
.top-navbar a {
  color: var(--contrast-color);
}
.top-section {
  border-bottom: 2px solid var(--primary-color);
  padding-bottom: 10px;
}

@media (max-width: 575px) {
  .header .topbar .contact-info i a,
  .header .topbar .contact-info i span {
    font-size: 13px;
  }
}

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

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

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

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

.header .branding {
  min-height: 70px;
  background: rgb(0 0 0);
  border-radius: 16px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}
.header .branding-another {
  background: rgb(0 0 0);
}

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

.header .logo img {
  max-height: 80px;
}

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

.header .logo span {
  color: var(--accent-color);
  font-size: 30px;
  font-weight: 700;
}

/*--------------------------------------------------------------
# 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;
    justify-content: flex-end;
  }

  .navmenu li {
    position: relative;
  }

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

  .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(--primary-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
      color-mix(in srgb, var(--default-color), transparent 85%);
  }

  .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) {
  .navmenu {
    padding: 0;
    z-index: 9997;
    text-align: end;
  }

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

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

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

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

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: 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 .navmenu {
    display: none;
  }

  .mobile-nav-active .navmenu > ul {
    display: none;
  }
  .mobile-nav-toggle {
    color: var(--accent-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
    display: block;
    display: none;
  }
  i.nav-mobile {
    color: var(--accent-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    display: block;
    transition: color 0.3s;
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: black;
  background-color: white;
  font-size: 14px;
  position: relative;
  padding-top: 50px;
}

.footer .footer-newsletter {
  background: linear-gradient(45deg, var(--accent-color), var(--primary-color));
  padding: 50px 0;
}

.footer .footer-newsletter h4 {
  font-size: 24px;
  color: black;
}

.footer .footer-newsletter .newsletter-form {
  margin-top: 30px;
  padding: 6px 8px;
  position: relative;
  background-color: black;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 80%);
  box-shadow: 0px 2px 25px
    color-mix(in srgb, var(--accent-color), transparent 90%);
  display: flex;
  transition: 0.3s;
  border-radius: 30px;
}

.footer .footer-newsletter .newsletter-form:focus-within {
  border-color: var(--accent-color);
}

.footer .footer-newsletter .newsletter-form input[type="email"] {
  border: 0;
  padding: 4px;
  width: 100%;
  background-color: black;
  color: var(--default-color);
}

.footer .footer-newsletter .newsletter-form input[type="email"]:focus-visible {
  outline: none;
}

.footer .footer-newsletter .newsletter-form input[type="submit"] {
  border: 0;
  font-size: 16px;
  padding: 0 20px;
  margin: 0;
  background: linear-gradient(45deg, var(--accent-color), var(--primary-color));
  color: black;
  transition: 0.3s;
  border-radius: 30px;
}

.footer .footer-newsletter .newsletter-form input[type="submit"]:hover {
  background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
}

.footer .footer-newsletter .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-top: 10px;
  font-weight: 600;
  border-radius: 4px;
}

.footer .footer-newsletter .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-top: 10px;
  font-weight: 600;
  border-radius: 4px;
}

.footer .footer-newsletter .loading {
  display: none;
  background: var(--background-color);
  text-align: center;
  padding: 15px;
  margin-top: 10px;
}

.footer .footer-newsletter .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(--background-color);
  animation: subscription-loading 1s linear infinite;
}

@keyframes subscription-loading {
  0% {
    transform: rotate(0deg);
  }

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

.footer .footer-top {
  padding-top: 24px;
  border: 4px solid var(--accent-color);
}

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

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

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

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

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

.footer .footer-links ul i {
  margin-right: 3px;
  font-size: 12px;
  line-height: 0;
  margin-top: 4px;
  color: var(--accent-color);
}

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

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

.footer .footer-links ul a {
  display: contents;
  color: black;
  line-height: 1;
}
img.logo-footer {
  width: 220px;
}
.footer .footer-links ul a:hover {
  color: var(--accent-color);
}

.footer .footer-about a {
  color: var(--heading-color);
  font-size: 24px;
  font-weight: 600;
  font-family: var(--heading-font);
}

.footer p {
  margin-bottom: 5px;
  font-size: 14px;
}

.footer .copyright {
  padding-top: 25px;
  padding-bottom: 25px;
}

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

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

.footer .logo {
  width: 260px;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  background-color: var(--background-color);
  transition: all 0.6s ease-out;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

#preloader div {
  width: 13px;
  height: 13px;
  background-color: var(--accent-color);
  border-radius: 50%;
  animation-timing-function: cubic-bezier(0, 1, 1, 0);
  position: absolute;
  left: 50%;
}

#preloader div:nth-child(1) {
  left: calc(50% + 8px);
  animation: animate-preloader-1 0.6s infinite;
}

#preloader div:nth-child(2) {
  left: calc(50% + 8px);
  animation: animate-preloader-2 0.6s infinite;
}

#preloader div:nth-child(3) {
  left: calc(50% + 32px);
  animation: animate-preloader-2 0.6s infinite;
}

#preloader div:nth-child(4) {
  left: calc(50% + 56px);
  animation: animate-preloader-3 0.6s infinite;
}

@keyframes animate-preloader-1 {
  0% {
    transform: scale(0);
  }

  100% {
    transform: scale(1);
  }
}

@keyframes animate-preloader-3 {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(0);
  }
}

@keyframes animate-preloader-2 {
  0% {
    transform: translate(0, 0);
  }

  100% {
    transform: translate(24px, 0);
  }
}

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

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

.scroll-top:hover {
  background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
  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 {
  --background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  color: var(--default-color);
  background: linear-gradient(45deg, var(--accent-color), var(--primary-color));
  padding: 25px 0;
  position: relative;
  padding-top: 126px;
}

.page-title h1 {
  font-size: 24px;
  font-weight: 800;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
  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%);
}
nav.breadcrumbs a {
  color: var(--default-color);
  font-weight: 600;
  text-decoration: underlines;
}

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

@media (max-width: 1199px) {
  section,
  .section {
    scroll-margin-top: 100px;
  }
}

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

.section-title h2 {
  font-size: 18px;
  letter-spacing: 1px;
  font-weight: 700;
  margin: 0;
  color: var(--primary-color);
  display: inline-block;
  text-transform: uppercase;
  font-family: var(--heading-font);
}

.section-title p {
  color: var(--heading-color);
  font-size: 38px;
  letter-spacing: 3px;
  font-weight: 700;
  font-family: var(--heading-font);
}

.section-title p .description-title {
  background: -webkit-linear-gradient(
    var(--accent-color),
    var(--primary-color)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 900;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  min-height: 100vh;
  position: relative;
  padding: 30px 0;
  display: flex;
  align-items: center;
  background: url("../img/main-banner.png") center center;
  background-size: cover;
}

.hero:before {
  /* content: url("../img/dotted-wave.png"); */
  /* background: color-mix(in srgb, var(--contrast-color), transparent 30%); */
  position: absolute;
  bottom: 0;
  top: 0;
  right: 0px;
  height: 100%;
  width: 90;
}

.hero .container {
  position: relative;
}

.hero h2 {
  font-weight: 800;
  font-size: 64px;
  color: var(--primary-color);
  letter-spacing: 3px;
}
.hero h2 span {
  font-weight: 800;
  font-size: 44px;
  text-transform: uppercase;
}

.hero h3 {
  font-weight: 800;
  font-size: 24px;
  color: var(--background-color);
  letter-spacing: 4px;
}

.hero p {
  color: var(--background-color);
  margin: 5px 0 30px 0;
  font-size: 16px;
  font-weight: 400;
}

.hero .btn-get-started {
  color: var(--contrast-color);
  background: linear-gradient(45deg, var(--accent-color), var(--primary-color));
  font-family: var(--heading-font);
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 30px;
  border-radius: 4px;
  transition: 0.5s;
  box-shadow: 0 8px 28px
    color-mix(in srgb, var(--accent-color), transparent 80%);
}

.hero .btn-get-started:hover {
  color: var(--contrast-color);
  background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
  box-shadow: 0 8px 28px
    color-mix(in srgb, var(--accent-color), transparent 55%);
}

.hero .btn-watch-video {
  font-size: 16px;
  transition: 0.5s;
  margin-left: 25px;
  color: var(--default-color);
  font-weight: 600;
}

.hero .btn-watch-video i {
  color: var(--accent-color);
  font-size: 32px;
  transition: 0.3s;
  line-height: 0;
  margin-right: 8px;
}

.hero .btn-watch-video:hover {
  color: var(--accent-color);
}

.hero .btn-watch-video:hover i {
  color: color-mix(in srgb, var(--accent-color), transparent 15%);
}

.hero .animated {
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

img.dotted {
  position: absolute;
  right: -100px;
  bottom: 0px;
  height: 100%;
}

@media (max-width: 640px) {
  .hero h1 {
    font-size: 28px;
    line-height: 28px;
  }
  .hero h2 {
    font-size: 44px;
  }
  .hero h2 span {
    font-size: 26px;
  }

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

  .hero .btn-get-started,
  .hero .btn-watch-video {
    font-size: 13px;
  }
  .hero {
    width: 100%;
    min-height: 100vh;
  }
  img.dotted {
    display: none;
  }
}

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(-10px);
  }
}

/*--------------------------------------------------------------
# Featured Services Section
--------------------------------------------------------------*/
.featured-services .service-item {
  padding: 50px 30px;
  transition: all 0.3s ease-in-out;
  height: 100%;
  border: 3px solid var(--accent-lite-color);
  position: relative;
  z-index: 1;
}

.featured-services .service-item:before {
  content: "";
  position: absolute;
  background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
  inset: 100% 0 0 0;
  transition: all 0.3s;
  z-index: -1;
}

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

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

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

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

.featured-services .service-item p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
  transition: ease-in-out 0.3s;
}

.featured-services .service-item:hover h4 a,
.featured-services .service-item:hover .icon i,
.featured-services .service-item:hover p {
  color: var(--contrast-color);
}

.featured-services .service-item:hover:before {
  background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
  inset: 0;
  border-radius: 0px;
}
.featured-services .service-item:hover {
  box-shadow: 0px 0 25px 0
    color-mix(in srgb, var(--default-color), transparent 90%);
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/

.about-content-main {
  background: linear-gradient(45deg, var(--accent-color), var(--primary-color));
  color: var(--contrast-color);
}
/* .about-content-main img{
  height: 300px;
  object-fit: cover;
  border: 6px solid var(--contrast-color);
} */

.about img {
  width: 90%;
}
.clients.about img {
  width: 100%;
  height: 60px;
}

.about .about-content h3 {
  font-weight: 700;
  font-size: 26px;
}

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

.why-choose-us {
  background-image: url("../img/why-chooseus.png");
  min-height: 500px;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.card-why-choose-us {
  position: relative;
  width: 100%;
  height: 400px;
  text-align: center;
  line-height: 8rem;
  border-radius: 0.8rem;
  font-size: 1.2rem;
}
.face {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 0.8rem;
  transition: transform 0.5s ease-in-out;
  backface-visibility: hidden;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 16px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}
.face-back {
  transform: rotateY(180deg);
}
.card-why-choose-us:hover .face-front {
  transform: rotateY(-180deg);
}
.card-why-choose-us:hover .face-back {
  transform: rotateY(0deg);
  padding: 14px;
  background: url("../img/blue.jpg");
}
.face.face-front img {
  width: 160px;
}
.face.face-front h5 {
  font-size: 18px;
  color: var(--background-color);
  font-weight: 500;
  font-family: var(--default-font);
}
.face.face-back h5 {
  color: var(--default-color);
  font-size: 20px;
  font-family: var(--default-font);
}
.face.face-back p {
  color: var(--default-color);
  font-size: 16px;
  line-height: 20px;
}

/*--------------------------------------------------------------
# Stats Section
--------------------------------------------------------------*/

section#stats {
  background: linear-gradient(45deg, var(--accent-color), var(--primary-color));
}
.stats i {
  background: linear-gradient(45deg, var(--accent-color), var(--primary-color));
  color: var(--contrast-color);
  border: 6px solid var(--contrast-color);
  width: 100px;
  height: 100px;
  font-size: 40px;
  border-radius: 100px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.stats .stats-item {
  background-color: var(--contrast-color);
  margin-top: -50px;
  padding: 60px 30px 35px 30px;
  width: 100%;
  position: relative;
  text-align: center;
  border-radius: 4px;
  z-index: 0;
}

.stats .stats-item span {
  font-size: 36px;
  display: block;
  font-weight: 700;
}

.stats .stats-item p {
  padding: 0;
  margin: 0;
  font-family: var(--heading-font);
  font-size: 16px;
}

/*--------------------------------------------------------------
# Portfolio Section
--------------------------------------------------------------*/
.portfolio {
  --background-color: color-mix(in srgb, var(--accent-color), transparent 96%);
}
.portfolio .portfolio-filters {
  padding: 0;
  margin: 0 auto 20px auto;
  list-style: none;
  text-align: center;
}

.portfolio .portfolio-filters li {
  cursor: pointer;
  display: inline-block;
  padding: 8px 20px 10px 20px;
  margin: 0;
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 5px;
  border-radius: 4px;
  transition: all 0.3s ease-in-out;
  font-family: var(--heading-font);
}

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

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

.portfolio .portfolio-filters li:last-child {
  margin-right: 0;
}

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

.portfolio .portfolio-item {
  position: relative;
  overflow: hidden;
}

.portfolio .portfolio-item .portfolio-info {
  opacity: 0;
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: -100%;
  z-index: 3;
  transition: all ease-in-out 0.5s;
  background: color-mix(in srgb, var(--background-color), transparent 10%);
  padding: 15px;
  height: 100%;
}
.portfolio .portfolio-item .portfolio-info i {
  margin: 30px;
  padding-top: 30px;
}

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

.portfolio .portfolio-item .portfolio-info .preview-link {
  position: absolute;
  right: 0px;
  left: 0px;
  bottom: 0px;
  top: 0px;
  margin: auto;
  font-size: 24px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  transition: 0.3s;
  line-height: 0;
}

.portfolio .portfolio-item .portfolio-info .preview-link:hover,
.portfolio .portfolio-item .portfolio-info .details-link:hover {
  color: var(--accent-color);
}

.portfolio .portfolio-item .portfolio-info .details-link {
  right: 14px;
  font-size: 28px;
}

.portfolio .portfolio-item:hover .portfolio-info {
  opacity: 1;
  bottom: 0;
}

/*--------------------------------------------------------------
# course Section
--------------------------------------------------------------*/

.course .course-details {
  overflow: hidden;
  border-radius: 5px;
  width: 100%;
}

.course .course-details .course-img {
  position: relative;
  overflow: hidden;
}

.course .course-details .course-info {
  background: linear-gradient(45deg, var(--accent-color), var(--primary-color));
  padding: 15px 15px;
  text-align: center;
}
.course .course-details .course-img img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}
.course .course-details .course-info h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 18px;
  color: var(--contrast-color);
}

.course .course-details .course-info span {
  display: block;
  font-size: 13px;
  font-weight: 400;
  color: var(--contrast-color);
}

.course .course-details .course-info p {
  font-style: italic;
  font-size: 14px;
  line-height: 26px;
  color: var(--contrast-color);
}
.course .course-details:hover {
  box-shadow: 0px 2px 15px
    color-mix(in srgb, var(--default-color), transparent 90%);
}
.course .course-details:hover .course-info {
  background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-wrap {
  background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
  box-shadow: 0px 0px 20px
    color-mix(in srgb, var(--default-color), transparent 90%);
  padding: 30px;
}

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

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

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

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

.contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
  color: var(--contrast-color);
}

.contact .info-item:hover i {
  background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
  color: var(--contrast-color);
}

.php-email-form {
  padding: 30px;
  box-shadow: 0px 0px 20px
    color-mix(in srgb, var(--default-color), transparent 90%);
}

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

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

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

.contact .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(--background-color);
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input[type="text"],
.contact .php-email-form input[type="email"],
.contact .php-email-form input[type="tel"],
.contact .php-email-form textarea {
  font-size: 14px;
  padding: 20px 15px;
  box-shadow: none;
  border-radius: 0;
  color: var(--default-color);
  background-color: color-mix(
    in srgb,
    var(--background-color),
    transparent 50%
  );
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

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

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

.contact .php-email-form button[type="submit"] {
  color: var(--contrast-color);
  background: var(--accent-color);
  border: 0;
  padding: 10px 30px;
  transition: 0.4s;
  border-radius: 4px;
}

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

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

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

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

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

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

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

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

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

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

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

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

.service-details ul li {
  padding: 5px 0;
  display: flex;
  align-items: center;
}

.service-details ul i {
  font-size: 20px;
  margin-right: 8px;
  color: var(--accent-color);
}

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

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

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

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

.portfolio-details .portfolio-info {
  padding: 30px;
  box-shadow: 0px 0 30px
    color-mix(in srgb, var(--default-color), transparent 90%);
}

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

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

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

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

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

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

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

.golden-btn {
  border-radius: 50px;
  padding: 4px;
  background: url(../img/blue.jpg);
  /* height: 56px; */
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: auto;
  border: 0px;
}
.golden-btn span {
  background: var(--default-color);
  border-radius: 50px;
  padding: 4px 20px;
  font-weight: 500;
}

.golden-btn.shine-effect {
  position: relative;
  overflow: hidden;
  border-radius: 50px;
  padding: 4px;
}

.golden-btn.shine-effect::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  border-radius: 50px;
  padding: 4px;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(255, 255, 255, 0.6) 50%,
    rgba(255, 255, 255, 0.1) 100%
  );
  background-clip: padding-box;
  z-index: 1;
  pointer-events: none;
  transform: skewX(-25deg);
  animation: shine 2s infinite;
}

.golden-btn.shine-effect span {
  position: relative;
  z-index: 2;
  background: var(--default-color);
  border-radius: 50px;
  padding: 4px 20px;
  font-weight: 500;
}

@keyframes shine {
  0% {
    left: -75%;
  }
  100% {
    left: 125%;
  }
}

.products {
  background: #fffdf8;
}
.product-section {
  box-shadow: rgb(224 176 59 / 17%) 0px 8px 24px;
  padding: 10px;
  border-radius: 16px;
  text-align: center;
}
.product-section img {
  width: 100%;
  border-radius: 16px;
  margin-bottom: 5px;
}
.product-name h6 {
  font-family: var(--default-font);
}
.golden-btn.golden-btn-light span {
  background: #fffdf8;
}
.golden-btn.golden-btn-light:hover,
a.golden-btn:hover {
  box-shadow: rgb(238 197 76 / 71%) 0px 7px 29px 0px;
  color: var(--accent-color);
}

.container .gallery {
  height: 100%;
  width: 100%;
  display: flex;
  gap: 20px;
}
.container .panel-container {
  border-radius: 0.25rem;
  outline: 1px solid #dfd0b8;
  position: relative;
  width: 10%;
  background: #eee;
  transition: width 3s, visibility 2s;
  user-select: none;
}
.container .panel-container:nth-child(1) {
  visibility: hidden;
  transform: translateY(-100%);
  animation: fall 2s 0s forwards;
  transform: translateY(100%);
  animation: fly 2s 0s forwards;
}
.container .panel-container:nth-child(2) {
  visibility: hidden;
  transform: translateY(-100%);
  animation: fall 2s 0.5s forwards;
}
.container .panel-container:nth-child(3) {
  visibility: hidden;
  transform: translateY(-100%);
  animation: fall 2s 1s forwards;
  transform: translateY(100%);
  animation: fly 2s 1s forwards;
}
.container .panel-container:nth-child(4) {
  visibility: hidden;
  transform: translateY(-100%);
  animation: fall 2s 1.5s forwards;
}
.container .panel-container:nth-child(5) {
  visibility: hidden;
  transform: translateY(-100%);
  animation: fall 2s 2s forwards;
  transform: translateY(100%);
  animation: fly 2s 2s forwards;
}
.container .panel-container:hover {
  cursor: pointer;
  outline-color: #948979;
}
.container .panel-container:has(.panel-control:checked) {
  width: 60%;
}
.container .panel-container:has(.panel-control:checked):hover {
  user-select: initial;
  cursor: initial;
  outline-color: #dfd0b8;
}
.container .panel-container .panel {
  height: 500px;
  padding: 10px;
  position: relative;
}
.container .panel-container .panel-img {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 0.25rem;
  object-fit: cover;
}
.container .panel-container .panel-id {
  font-size: 2rem;
  color: rgba(255, 255, 255, 0.75);
  transform: rotate(90deg) translateX(50%);
}
.container .panel-container .panel-id::before {
  content: "#";
}
.container .panel-container .panel-control {
  display: none;
}
.container .panel-container .panel-control:checked ~ .panel-id {
  display: none;
}
.container .panel-container .panel-control:checked ~ .panel-content {
  display: flex;
}
.container .panel-container .panel-content {
  height: 100%;
  flex-direction: column;
  color: white;
  letter-spacing: 0.01rem;
  position: relative;
  z-index: 5;
  overflow: hidden;
  display: none;
  transition: display 1s;
}
.container .panel-container .panel-content .head {
  padding: 10px;
  font-size: 2.5rem;
  position: relative;
}
.container .panel-container .panel-content .head::before {
  content: "";
  border-radius: 0.25rem;
  border: 2.5px solid white;
  margin-right: 0.75rem;
}
.container .panel-container .panel-content .head::after {
  content: "";
  height: 78%;
  width: 0;
  border-radius: 0.25rem;
  margin: 7px 10px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  overflow: hidden;
  background: #15344899;
  animation: squeezeout 2s 1s forwards;
}
.container .panel-container .panel-content .icon {
  color: inherit;
  height: 1.125rem;
}
.container .panel-container .panel-content .alt {
  vertical-align: bottom;
}
.container .panel-container .panel-content .alt .value::after {
  content: " mts.";
}
.container .panel-container .panel-content .spacer {
  flex: 1 0 auto;
}
.container .panel-container .panel-content .body {
  padding: 10px;
  font-size: 1.125rem;
  line-height: 1.5rem;
  position: relative;
  transform: translateY(100%);
  animation: slideInTop 2.5s 3s forwards;
}
.container .panel-container .panel-content .body::before {
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 0.25rem;
  border-top: 2.5px solid #dfd0b8;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  background: #15344899;
}
.container .panel-container .panel-content .title {
  color: limegreen;
}
.container .panel-container .panel-content .value {
  margin-bottom: 0.75rem;
}

@keyframes fall {
  0% {
    visibility: hidden;
    transform: translateY(-100%);
  }
  100% {
    visibility: visible;
    transform: translateY(0);
  }
}
@keyframes fly {
  0% {
    visibility: hidden;
    transform: translateY(100%);
  }
  100% {
    visibility: visible;
    transform: translateY(0);
  }
}
@keyframes slideInLeft {
  0% {
    transform: translateX(50%);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes slideInBottom {
  0% {
    transform: translateY(0%);
  }
  100% {
    transform: translateY(100%);
  }
}
@keyframes slideInTop {
  0% {
    transform: translateY(100%);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes reveal {
  0% {
    flex: 1;
  }
  100% {
    flex: 80%;
  }
}
@keyframes squeezeout {
  0% {
    width: 1px;
  }
  100% {
    width: 100px;
  }
}

.offcanvas {
  background: rgba(0, 0, 0, 0.2);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  color: var(--accent-lite-color);
}
.offcanvas-header {
  background: url("../img/blue.jpg");
}
.offcanvas ul {
  list-style: none;
  line-height: 46px;
  font-size: 20px;
  padding: 0px;
}
.product-info li{
  font-weight: 600;
}

@media (max-width: 640px) {
  .hero h1 {
    font-size: 16px;
  }
  .hero h1 span {
    font-size: 24px;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  .header .logo {
    padding: 5px;
  }
  .header .logo img {
    max-height: 40px;
  }
  .header .branding {
    min-height: 52px;
  }
  .section-title p {
    font-size: 24px;
  }
  .about img {
    width: 100%;
  }

  .featured-services .service-item {
    padding: 20px;
  }
  .course .course-details .course-img img {
    height: 250px;
  }
  section,
  .section {
    scroll-margin-top: 60px;
  }
  .contact .info-item {
    margin-bottom: 25px;
  }
  .container .panel-container .panel {
    height: 225px;
  }
  .page-title {
    padding-top: 90px;
    text-align: center;
  }
  .page-title .breadcrumbs ol {
    justify-content: center;
  }
}
