@charset "UTF-8";

:root {
  --default-font: "Roboto",  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Roboto",  sans-serif;
  --nav-font: "Roboto",  sans-serif;
}

:root { 
  --background-color: #ffffff;
  --default-color: #263a31; 
  --heading-color: #103524; 
  --accent-color: #204e79;
  --surface-color: #ffffff;
  --contrast-color: #ffffff;
}

:root {
  --nav-color: #204e79;  
  --nav-hover-color: #193e60; 
  --nav-mobile-background-color: #ffffff;
  --nav-dropdown-background-color: #ffffff; 
  --nav-dropdown-color: #263a31; 
  --nav-dropdown-hover-color: #204e79;
}

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

.dark-background {
  --background-color: #081b12;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #193e60;
  --contrast-color: #ffffff;
}

.accent-background {
  --background-color: #204e79;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --accent-color: #ffffff;
  --surface-color: #4c7193;
  --contrast-color: #ffffff;
}

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

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: #204e79;
  font-family: var(--heading-font);
}

.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), black 15%));
  color: var(--contrast-color);
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.btn-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  color: var(--contrast-color);
}

.btn-cta:hover i {
  transform: translateX(3px);
}

.btn-cta i {
  transition: transform 0.3s ease;
}

p,ul,ol {
  font-size:1.15rem;
  line-height: 30px;
}

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

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

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

.header .logo svg {
  height: 32px;
  margin-right: 6px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

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

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

/*--------------------------------------------------------------
# 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: rgba(255,255,255,0.8);
    padding: 18px 35px;
    font-size: 18px;
    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: #fff;
  }

}

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

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}

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

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

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


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

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

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

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

#preloader:before,
#preloader:after {
  content: "";
  position: absolute;
  border: 4px solid var(--accent-color);
  border-radius: 50%;
  animation: animate-preloader 2s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}

#preloader:after {
  animation-delay: -0.5s;
}

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

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

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

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

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
  bottom: 15px;
}

/*--------------------------------------------------------------
# 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: 25px 0;
  position: relative;
}

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

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

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

@media (max-width: 1199px) {

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

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

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

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

.section-title p {
  margin-bottom: 20px;
}

.section-title p.big {
  font-weight: 500;
}

/*--------------------------------------------------------------
# Home About Section
--------------------------------------------------------------*/
.home-about .image-gallery {
  position: relative;
  height: 100%;
}

.home-about .image-gallery .primary-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
}

.home-about .image-gallery .primary-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

@media (max-width: 768px) {
  .home-about .image-gallery .primary-image img {
    height: 300px;
  }
}

.home-about .image-gallery .primary-image .experience-badge {
  position: absolute;
  top: 2rem;
  left: 2rem;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), black 20%));
  border-radius: 16px;
  padding: 1.5rem;
  color: var(--contrast-color);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
  .home-about .image-gallery .primary-image .experience-badge {
    top: 1rem;
    left: 1rem;
    padding: 1rem;
  }
}

.home-about .image-gallery .primary-image .experience-badge .badge-content {
  text-align: center;
}

.home-about .image-gallery .primary-image .experience-badge .badge-content .number {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 0.25rem;
}

@media (max-width: 768px) {
  .home-about .image-gallery .primary-image .experience-badge .badge-content .number {
    font-size: 1.5rem;
  }
}

.home-about .image-gallery .primary-image .experience-badge .badge-content .text {
  font-size: 0.8rem;
  font-weight: 500;
  line-height: 1.2;
  opacity: 0.9;
}

.home-about .image-gallery .secondary-image {
  position: absolute;
  bottom: -2rem;
  right: -2rem;
  width: 60%;
  border-radius: 16px;
  overflow: hidden;
  border: 4px solid var(--surface-color);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

@media (max-width: 992px) {
  .home-about .image-gallery .secondary-image {
    display: none;
  }
}

.home-about .image-gallery .secondary-image img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.home-about .content {
  padding-left: 2rem;
}

@media (max-width: 992px) {
  .home-about .content {
    padding-left: 0;
    margin-top: 2rem;
  }
}

.home-about .content .section-header {
  margin-bottom: 2rem;
}

.home-about .content .section-header .section-label {
  display: inline-block;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.home-about .content .section-header h2 {
  font-size: 2.2rem;
  line-height: 1.3;
  font-weight: 700;
  margin: 0;
}

@media (max-width: 768px) {
  .home-about .content .section-header h2 {
    font-size: 1.8rem;
  }
}

.home-about .content p {
  font-size: 1.15rem;
  line-height: 1.7;
  margin-bottom: 2rem;
  color: #272626;
}

.home-about .content .action-section {
  display: flex;
  align-items: center;
  gap: 2rem;
  justify-content: flex-end;
}

@media (max-width: 768px) {
  .home-about .content .action-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }
}

.home-about .content .action-section .btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), black 15%));
  color: var(--contrast-color);
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.home-about .content .action-section .btn-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  color: var(--contrast-color);
}

.home-about .content .action-section .btn-cta:hover i {
  transform: translateX(3px);
}

.home-about .content .action-section .btn-cta i {
  transition: transform 0.3s ease;
}


/*--------------------------------------------------------------
# distler Profile Section
--------------------------------------------------------------*/
.distler-profile .distler-photo-wrapper {
  position: relative;
}

.distler-profile .distler-photo-wrapper .distler-photo {
  border-radius: 15px;
  box-shadow: 0 15px 30px color-mix(in srgb, var(--default-color), transparent 85%);
}

.distler-profile .distler-photo-wrapper .distler-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 8px 15px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 5px;
}

.distler-profile .distler-photo-wrapper .distler-badge i {
  font-size: 12px;
}

.distler-profile .distler-info .distler-name {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
  .distler-profile .distler-info .distler-name {
    font-size: 2.5rem;
  }
}

.distler-profile .distler-info .distler-title {
  font-size: 1.25rem;
  color: var(--accent-color);
  font-weight: 600;
  margin-bottom: 1rem;
}

.distler-profile .distler-info .distler-tagline {
  font-size: 1.1rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-style: italic;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.distler-profile .contact-info-hero {
  margin-bottom: 2rem;
}

.distler-profile .contact-info-hero .contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 0.8rem;
}

.distler-profile .contact-info-hero .contact-item i {
  color: var(--accent-color);
  font-size: 1.1rem;
  width: 20px;
}

.distler-profile .contact-info-hero .contact-item span {
  font-weight: 500;
}


/*--------------------------------------------------------------
# Garla Head Section
--------------------------------------------------------------*/
.distlerhead-action {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
}

.distlerhead-action .distlerhead-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.distlerhead-action .distlerhead-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: color-mix(in srgb, var(--background-color), transparent 60%);
}

.distlerhead-action .container {
  position: relative;
  z-index: 2;
}

.distlerhead-action .distlerhead-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #272626;
}

@media (max-width: 768px) {
  .distlerhead-action .distlerhead-content h2 {
    font-size: 2rem;
  }
}

.distlerhead-action .distlerhead-content p {
  font-size: 1.3rem;
  margin-bottom: 2.5rem;
  color: #272626;
  line-height: 1.6;
  font-weight: 600;
}

.distlerhead-action .distlerhead-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.distlerhead-action .distlerhead-buttons .btn {
  padding: 12px 30px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.distlerhead-action .distlerhead-buttons .btn.btn-primary {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-color: var(--accent-color);
}

.distlerhead-action .distlerhead-buttons .btn.btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), black 15%);
  border-color: color-mix(in srgb, var(--accent-color), black 15%);
  transform: translateY(-2px);
}

.distlerhead-action .distlerhead-buttons .btn.btn-outline {
  background-color: transparent;
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.distlerhead-action .distlerhead-buttons .btn.btn-outline:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-2px);
}

@media (max-width: 576px) {
  .distlerhead-action .distlerhead-buttons {
    flex-direction: column;
    align-items: center;
  }

  .distlerhead-action .distlerhead-buttons .btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
}

.distlerhead-action .distlerhead-features {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.distlerhead-action .distlerhead-features .feature-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.distlerhead-action .distlerhead-features .feature-item i {
  font-size: 1.2rem;
  color: var(--accent-color);
}

.distlerhead-action .distlerhead-features .feature-item span {
  font-size: 0.95rem;
  font-weight: 500;
}

@media (max-width: 576px) {
  .distlerhead-action .distlerhead-features {
    flex-direction: column;
    gap: 1rem;
  }

  .distlerhead-action .distlerhead-features .feature-item {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .distlerhead-action {
    min-height: 400px;
    padding: 80px 0;
  }

  .distlerhead-action .distlerhead-content h2 {
    margin-bottom: 1rem;
  }

  .distlerhead-action .distlerhead-content p {
    margin-bottom: 2rem;
  }

  .distlerhead-action .distlerhead-buttons {
    margin-bottom: 2rem;
  }
}

