@charset "UTF-8";

/* Fonts */
: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: "Montserrat",  sans-serif;
  --nav-font: "Open Sans",  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: #444444; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #172624; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #0e458f; /* 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: #222222;  /* The default color of the main navmenu links */
  --nav-hover-color: #0e458f; /* 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: #222222; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #0e458f; /* 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. */

.main{

margin-top:0;

padding-top:0;

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

.dark-background {
  --background-color: #0e458f;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #252525;
  --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: var(--heading-color);
  font-family: var(--heading-font);
}

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

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

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

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

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

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

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

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

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

.header .topbar .contact-info i a,
.header .topbar .contact-info i span {
  padding-left: 5px;
  color: var(--contrast-color);
}

@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(--contrast-color);
  text-decoration: underline;
}

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

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

.header .branding {
  min-height: 75px;
  padding: 4px 0;
}

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

.header .logo img{
    width:240px;
    max-height:none;
    height:auto;
    display:block;
}

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

.scrolled .header .topbar {
  height: 0;
  visibility: hidden;
  overflow: hidden;
}

/*--------------------------------------------------------------
# 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: 15px;
    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-color: var(--background-color);
  font-size: 14px;
  padding-bottom: 50px;
  position: relative;
}

.footer .footer-newsletter {
  background-color: color-mix(in srgb, var(--accent-color), transparent 96%);
  padding: 50px 0;
}

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

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

.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: var(--surface-color);
  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: -7px -8px -7px 0;
  background: var(--accent-color);
  color: var(--contrast-color);
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
}

.footer .footer-newsletter .newsletter-form input[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

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

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

.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 {
  display: inline-block;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1;
}

.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 .footer-contact p {
  margin-bottom: 5px;
}

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

.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;
  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-color: var(--accent-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-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

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

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 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-color: var(--background-color);
  padding: 25px 0;
  position: relative;
}

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

.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: 78px;
  overflow: clip;
}

@media (max-width: 1199px) {

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

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

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

.section-title h2:before {
  content: "";
  position: absolute;
  display: block;
  width: 160px;
  height: 1px;
  background: color-mix(in srgb, var(--default-color), transparent 60%);
  left: 0;
  right: 0;
  bottom: 1px;
  margin: auto;
}

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

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

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero{

margin-top:-10px;

}

.hero {
  background: linear-gradient(135deg, var(--surface-color) 0%, color-mix(in srgb, var(--accent-color), transparent 95%) 100%);
  position: relative;
  overflow: hidden;
  padding-top:20px !important;

margin-top:0 !important;
}

.hero .hero-content {
  position: relative;
  z-index: 2;
}

.hero .hero-content .content {
  padding: 80px 0;
}

.hero .hero-content .content h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: var(--heading-color);
}

@media (max-width: 768px) {
  .hero .hero-content .content h1 {
    font-size: 2.5rem;
  }
}

.hero .hero-content .content p {
  font-size: 1.125rem;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 3rem;
  max-width: 90%;
}

.hero .hero-content .content .cta-group {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.hero .hero-content .content .cta-group .btn-primary {
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 1rem 2.5rem;
  border-radius: 8px;
  font-weight: 500;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  display: inline-block;
}

.hero .hero-content .content .cta-group .btn-primary:hover {
  background: color-mix(in srgb, var(--accent-color), black 10%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.hero .hero-content .content .cta-group .btn-secondary {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--heading-color);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.hero .hero-content .content .cta-group .btn-secondary i {
  font-size: 1.5rem;
  color: var(--accent-color);
  transition: all 0.3s ease;
}

.hero .hero-content .content .cta-group .btn-secondary:hover {
  color: var(--accent-color);
}

.hero .hero-content .content .cta-group .btn-secondary:hover i {
  transform: scale(1.1);
}

.hero .hero-content .hero-image {
  position: relative;
  padding: 80px 0;
}

.hero .hero-content .hero-image img {
  border-radius: 12px;
  box-shadow: 0 20px 60px color-mix(in srgb, var(--default-color), transparent 85%);
  width: 100%;
  height: auto;
}

.hero .hero-content .hero-image .floating-card {
  position: absolute;
  bottom: 40px;
  left: -40px;
  background: var(--surface-color);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 15px 40px color-mix(in srgb, var(--default-color), transparent 85%);
  backdrop-filter: blur(10px);
}

@media (max-width: 768px) {
  .hero .hero-content .hero-image .floating-card {
    left: 20px;
    bottom: 20px;
    padding: 1.5rem;
  }
}

.hero .hero-content .hero-image .floating-card .card-content {
  display: flex;
  gap: 2rem;
}

@media (max-width: 576px) {
  .hero .hero-content .hero-image .floating-card .card-content {
    flex-direction: column;
    gap: 1rem;
  }
}

.hero .hero-content .hero-image .floating-card .metric {
  text-align: center;
}

.hero .hero-content .hero-image .floating-card .metric .number {
  display: block;
  font-size: 2rem;
  font-weight: 600;
  color: var(--accent-color);
  line-height: 1;
}

.hero .hero-content .hero-image .floating-card .metric .label {
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-top: 0.25rem;
}

.hero .hero-features {
  background: var(--surface-color);
  padding: 4rem 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.hero .hero-features .feature-item {
  text-align: center;
  padding: 2rem 1rem;
  transition: all 0.3s ease;
}

.hero .hero-features .feature-item:hover {
  transform: translateY(-5px);
}

.hero .hero-features .feature-item .icon {
  width: 80px;
  height: 80px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: all 0.3s ease;
}

.hero .hero-features .feature-item .icon i {
  font-size: 2rem;
  color: var(--accent-color);
}

.hero .hero-features .feature-item h4 {
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 1rem;
  color: var(--heading-color);
}

.hero .hero-features .feature-item p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 0;
}

.hero .hero-features .feature-item:hover .icon {
  background: var(--accent-color);
  transform: scale(1.1);
}

.hero .hero-features .feature-item:hover .icon i {
  color: var(--contrast-color);
}

@media (max-width: 992px) {
  .hero .hero-content .content {
    text-align: center;
    padding: 60px 0 40px;
  }

  .hero .hero-content .content p {
    max-width: 100%;
  }

  .hero .hero-content .hero-image {
    padding: 40px 0 60px;
  }
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: url("../img/bg/abstract-bg-1.jpg") center/cover no-repeat;
  opacity: 0.03;
  z-index: 1;
}


/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .content {
  padding-right: 40px;
}

@media (max-width: 992px) {
  .about .content {
    padding-right: 0;
    margin-bottom: 60px;
  }
}

.about .content h2 {
  font-size: 2.5rem;
  font-weight: 300;
  line-height: 1.3;
  margin-bottom: 30px;
  color: var(--heading-color);
}

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

.about .content .lead {
  font-size: 1.25rem;
  line-height: 1.7;
  margin-bottom: 40px;
  color: color-mix(in srgb, var(--default-color), transparent 10%);
}

.about .content .description {
  margin-bottom: 60px;
}

.about .content .description p {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 20px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

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

.about .content .stats-row {
  display: flex;
  gap: 60px;
  margin-bottom: 60px;
}

@media (max-width: 768px) {
  .about .content .stats-row {
    gap: 40px;
    flex-wrap: wrap;
  }
}

@media (max-width: 576px) {
  .about .content .stats-row {
    justify-content: space-between;
    gap: 20px;
  }
}

.about .content .stats-row .stat-item {
  text-align: left;
}

.about .content .stats-row .stat-item .stat-number {
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--accent-color);
  line-height: 1;
  margin-bottom: 8px;
}

@media (max-width: 768px) {
  .about .content .stats-row .stat-item .stat-number {
    font-size: 2rem;
  }
}

.about .content .stats-row .stat-item .stat-label {
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.about .content .cta-section {
  display: flex;
  align-items: center;
  gap: 30px;
}

@media (max-width: 576px) {
  .about .content .cta-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}

.about .content .cta-section .btn-primary {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 14px 30px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 400;
  transition: all 0.3s ease;
  border: 2px solid var(--accent-color);
}

.about .content .cta-section .btn-primary:hover {
  background-color: transparent;
  color: var(--accent-color);
}

.about .content .cta-section .btn-link {
  color: var(--heading-color);
  text-decoration: none;
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.about .content .cta-section .btn-link:hover {
  color: var(--accent-color);
}

.about .content .cta-section .btn-link:hover i {
  transform: translateX(4px);
}

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

.about .image-container {
  position: relative;
  height: 100%;
  min-height: 500px;
}

@media (max-width: 992px) {
  .about .image-container {
    min-height: 400px;
  }
}

.about .image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.about .image-container .image-overlay {
  position: absolute;
  bottom: 30px;
  left: 30px;
  background-color: var(--surface-color);
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 8px 30px color-mix(in srgb, var(--default-color), transparent 85%);
  min-width: 200px;
}

@media (max-width: 576px) {
  .about .image-container .image-overlay {
    bottom: 20px;
    left: 20px;
    padding: 20px;
  }
}

.about .image-container .image-overlay .overlay-content {
  display: flex;
  align-items: center;
  gap: 15px;
}

.about .image-container .image-overlay .overlay-content i {
  font-size: 2rem;
  color: var(--accent-color);
}

.about .image-container .image-overlay .overlay-content .overlay-text h4 {
  font-size: 1.1rem;
  margin-bottom: 4px;
  color: var(--heading-color);
  font-weight: 500;
}

.about .image-container .image-overlay .overlay-content .overlay-text p {
  margin: 0;
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

/*--------------------------------------------------------------
# Skills Section
--------------------------------------------------------------*/
.skills {
  --skill-spacing: 40px;
  --icon-size: 60px;
  --progress-height: 4px;
  --border-subtle: color-mix(in srgb, var(--default-color), transparent 90%);
  --text-muted: color-mix(in srgb, var(--default-color), transparent 45%);
  --surface-elevated: color-mix(in srgb, var(--surface-color), var(--accent-color) 2%);
}

.skills .intro-content {
  margin-bottom: 80px;
}

.skills .intro-content .lead-text {
  font-size: 20px;
  line-height: 1.7;
  color: var(--text-muted);
  font-weight: 300;
  margin: 0;
}

.skills .skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: var(--skill-spacing);
  margin-bottom: 60px;
}

.skills .skill-item {
  padding: 36px 0;
  border-bottom: 1px solid var(--border-subtle);
  transition: all 0.4s ease;
}

.skills .skill-item:hover {
  transform: translateY(-4px);
}

.skills .skill-item:hover .skill-icon i {
  color: var(--accent-color);
  transform: scale(1.1);
}

.skills .skill-item .skill-icon {
  margin-bottom: 24px;
}

.skills .skill-item .skill-icon i {
  font-size: var(--icon-size);
  color: var(--text-muted);
  transition: all 0.4s ease;
}

.skills .skill-item .skill-name {
  font-size: 24px;
  font-weight: 300;
  margin-bottom: 20px;
  color: var(--heading-color);
  line-height: 1.3;
}

.skills .skill-item .skill-level {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.skills .skill-item .skill-level .level-text {
  font-size: 14px;
  color: var(--accent-color);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  min-width: 90px;
}

.skills .skill-item .skill-level .progress-track {
  flex: 1;
  height: var(--progress-height);
  background: var(--border-subtle);
  border-radius: 2px;
  overflow: hidden;
}

.skills .skill-item .skill-level .progress-track .progress-bar {
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, var(--accent-color), color-mix(in srgb, var(--accent-color), transparent 30%));
  border-radius: 2px;
  transition: width 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.skills .skill-item .skill-description {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-muted);
  margin: 0;
}

.skills .certification-area {
  padding-top: 60px;
  border-top: 1px solid var(--border-subtle);
}

.skills .certification-area .cert-content .cert-title {
  font-size: 28px;
  font-weight: 300;
  margin-bottom: 16px;
  color: var(--heading-color);
}

.skills .certification-area .cert-content .cert-description {
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 32px;
}

.skills .certification-area .cert-content .cert-list .cert-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px dashed var(--border-subtle);
}

.skills .certification-area .cert-content .cert-list .cert-item:last-child {
  border-bottom: none;
}

.skills .certification-area .cert-content .cert-list .cert-item i {
  color: var(--accent-color);
  font-size: 20px;
}

.skills .certification-area .cert-content .cert-list .cert-item span {
  font-size: 16px;
  color: var(--default-color);
}

.skills .certification-area .tools-showcase .tools-title {
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 24px;
  color: var(--heading-color);
}

.skills .certification-area .tools-showcase .tools-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.skills .certification-area .tools-showcase .tools-grid .tool-tag {
  padding: 8px 16px;
  background: var(--surface-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: 20px;
  font-size: 14px;
  color: var(--default-color);
  transition: all 0.3s ease;
}

.skills .certification-area .tools-showcase .tools-grid .tool-tag:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-color: color-mix(in srgb, var(--accent-color), transparent 70%);
  color: var(--accent-color);
}

@media (max-width: 992px) {
  .skills .skills-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .skills .skill-item {
    padding: 28px 0;
  }

  .skills .skill-item .skill-name {
    font-size: 22px;
  }

  .skills .cert-content .cert-title {
    font-size: 24px;
  }
}

@media (max-width: 768px) {
  .skills {
    --skill-spacing: 24px;
    --icon-size: 50px;
  }

  .skills .intro-content {
    margin-bottom: 60px;
  }

  .skills .intro-content .lead-text {
    font-size: 18px;
  }

  .skills .certification-area {
    padding-top: 40px;
  }

  .skills .certification-area .tools-showcase {
    margin-top: 40px;
  }
}

/*--------------------------------------------------------------
# Stats Section
--------------------------------------------------------------*/
.stats .section-headline {
  color: var(--heading-color);
  font-family: var(--heading-font);
  font-size: 2.75rem;
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.stats .section-description {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 1.125rem;
  line-height: 1.7;
  font-weight: 300;
  max-width: 600px;
  margin: 0 auto;
}

.stats .stats-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 8px;
  overflow: hidden;
  background: var(--surface-color);
}

.stats .stat-item {
  padding: 3rem 2.5rem;
  position: relative;
  transition: all 0.4s ease;
}

.stats .stat-item:nth-child(1) {
  border-right: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.stats .stat-item:nth-child(2) {
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.stats .stat-item:nth-child(3) {
  border-right: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.stats .stat-item:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 97%);
  transform: translateY(-2px);
}

.stats .stat-item .stat-content {
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.stats .stat-item .stat-number {
  color: var(--accent-color);
  font-family: var(--heading-font);
  font-size: 3.5rem;
  font-weight: 200;
  line-height: 1;
  margin-bottom: 1rem;
  letter-spacing: -0.03em;
}

.stats .stat-item .stat-number .purecounter {
  font-size: inherit;
  color: inherit;
}

.stats .stat-item .stat-divider {
  width: 40px;
  height: 1px;
  background: var(--accent-color);
  margin: 0 auto 1.5rem auto;
  opacity: 0.6;
}

.stats .stat-item .stat-label {
  color: var(--heading-color);
  font-family: var(--heading-font);
  font-size: 1.25rem;
  font-weight: 400;
  margin-bottom: 1rem;
  letter-spacing: 0.01em;
}

.stats .stat-item .stat-description {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 0.95rem;
  line-height: 1.6;
  font-weight: 300;
  margin: 0;
  max-width: 200px;
}

.stats .achievement-badge {
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 80%);
  border-radius: 8px;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all 0.4s ease;
}

.stats .achievement-badge:hover {
  border-color: color-mix(in srgb, var(--accent-color), transparent 60%);
  transform: translateY(-3px);
}

.stats .achievement-badge .badge-icon {
  font-size: 2.5rem;
  color: var(--accent-color);
  margin-bottom: 1.5rem;
  opacity: 0.8;
}

.stats .achievement-badge .badge-title {
  color: var(--heading-color);
  font-family: var(--heading-font);
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 1rem;
  letter-spacing: 0.01em;
}

.stats .achievement-badge .badge-text {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  font-size: 1rem;
  line-height: 1.6;
  font-weight: 300;
  margin: 0;
  max-width: 400px;
  margin: 0 auto;
}

@media (max-width: 992px) {
  .stats .section-headline {
    font-size: 2.25rem;
  }

  .stats .stats-container {
    gap: 0;
  }

  .stats .stat-item {
    padding: 2.5rem 2rem;
  }

  .stats .stat-item .stat-number {
    font-size: 3rem;
  }

  .stats .stat-item .stat-description {
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  .stats .section-headline {
    font-size: 1.875rem;
  }

  .stats .section-description {
    font-size: 1rem;
  }

  .stats .stats-container {
    grid-template-columns: 1fr;
  }

  .stats .stat-item {
    padding: 2rem 1.5rem;
  }

  .stats .stat-item:nth-child(1) {
    border-right: none;
    border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  }

  .stats .stat-item:nth-child(2) {
    border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  }

  .stats .stat-item:nth-child(3) {
    border-right: none;
    border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  }

  .stats .stat-item:nth-child(4) {
    border-bottom: none;
  }

  .stats .stat-item .stat-number {
    font-size: 2.75rem;
  }

  .stats .stat-item .stat-description {
    max-width: 300px;
  }

  .stats .achievement-badge {
    padding: 2rem 1.5rem;
  }

  .stats .achievement-badge .badge-icon {
    font-size: 2rem;
  }

  .stats .achievement-badge .badge-title {
    font-size: 1.25rem;
  }

  .stats .achievement-badge .badge-text {
    font-size: 0.95rem;
  }
}

/*--------------------------------------------------------------
# Clients Section
--------------------------------------------------------------*/
.clients .client-item {
  padding: 1.5rem;
  text-align: center;
  height: 100%;
  background-color: var(--surface-color);
  border-radius: 8px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  transition: all 0.3s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
}

.clients .client-item img {
  max-width: 100%;
  transition: all 0.3s ease-in-out;
  filter: grayscale(100);
  opacity: 0.8;
}

.clients .client-item:hover {
  transform: translateY(-5px);
  border-color: var(--accent-color);
}

.clients .client-item:hover img {
  filter: grayscale(0);
  opacity: 1;
}

@media (max-width: 1199px) {
  .clients .client-item {
    padding: 1.25rem;
  }
}

@media (max-width: 767px) {
  .clients .client-item {
    padding: 1rem;
  }
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/


.services {
  padding: 70px 0;
}

.services .service-item {
  background: #fff;
  border-radius: 15px;
  padding: 30px 25px;
  height: 100%;
  text-align: center;
  transition: all 0.4s ease;
  box-shadow: 0 5px 20px rgba(0,0,0,0.06);
  overflow: hidden;
  position: relative;
}

.services .service-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 4px;
  background: #0d6efd;
  transition: 0.4s;
}

.services .service-item:hover::before {
  left: 0;
}

.services .service-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

.services .service-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: linear-gradient(135deg,#0d6efd,#4f8cff);
  display: flex;
  align-items: center;
  justify-content: center;
}

.services .service-icon i {
  color: #fff;
  font-size: 30px;
  transition: 0.4s;
}

.services .service-item:hover .service-icon i {
  transform: rotate(360deg) scale(1.1);
}

.services h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 12px;
}

.services p {
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 0;
  color: #666;
}

/* Responsive */

@media (max-width: 768px) {

  .services {
    padding: 50px 0;
  }

  .services .service-item {
    padding: 25px 20px;
  }

  .services .service-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
  }

  .services .service-icon i {
    font-size: 24px;
  }

  .services h3 {
    font-size: 20px;
  }

  .services p {
    font-size: 14px;
  }
}
/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .contact-form-container {
  padding: 60px 0;
}

.contact .contact-form-container .form-intro {
  margin-bottom: 60px;
}

.contact .contact-form-container .form-intro h2 {
  font-size: 36px;
  font-weight: 300;
  line-height: 1.3;
  margin-bottom: 20px;
  color: var(--heading-color);
  letter-spacing: -0.5px;
}

@media (max-width: 768px) {
  .contact .contact-form-container .form-intro h2 {
    font-size: 28px;
  }
}

.contact .contact-form-container .form-intro p {
  font-size: 18px;
  line-height: 1.7;
  color: var(--default-color);
  margin-bottom: 0;
  opacity: 0.85;
}

.contact .contact-form-container .contact-form .row {
  margin-bottom: 40px;
}

.contact .contact-form-container .contact-form .row:last-of-type {
  margin-bottom: 0;
}

.contact .contact-form-container .contact-form .form-field {
  position: relative;
  margin-bottom: 40px;
}

.contact .contact-form-container .contact-form .form-field.message-field {
  margin-bottom: 50px;
}

.contact .contact-form-container .contact-form .form-field .field-label {
  position: absolute;
  top: -10px;
  left: 0;
  font-size: 13px;
  font-weight: 500;
  color: var(--heading-color);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  opacity: 0.8;
}

.contact .contact-form-container .contact-form .form-field .form-input {
  width: 100%;
  border: none;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  background: transparent;
  padding: 20px 0 15px 0;
  font-size: 16px;
  color: var(--default-color);
  transition: all 0.3s ease;
}

.contact .contact-form-container .contact-form .form-field .form-input:focus {
  outline: none;
  border-bottom-color: var(--accent-color);
  background: transparent;
}

.contact .contact-form-container .contact-form .form-field .form-input::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
  opacity: 1;
}

.contact .contact-form-container .contact-form .form-field .message-input {
  resize: vertical;
  min-height: 120px;
  font-family: inherit;
  padding-top: 25px;
}

.contact .contact-form-container .contact-form .send-button {
  background: transparent;
  border: 1px solid var(--accent-color);
  color: var(--accent-color);
  padding: 18px 40px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 15px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.contact .contact-form-container .contact-form .send-button .button-arrow {
  font-size: 18px;
  transition: transform 0.3s ease;
}

.contact .contact-form-container .contact-form .send-button:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.contact .contact-form-container .contact-form .send-button:hover .button-arrow {
  transform: translateX(5px);
}

.contact .contact-sidebar {
  background: color-mix(in srgb, var(--accent-color), transparent 97%);
  height: 100%;
  padding: 60px 40px;
}

.contact .contact-sidebar .contact-header {
  margin-bottom: 60px;
}

.contact .contact-sidebar .contact-header h3 {
  font-size: 28px;
  font-weight: 300;
  margin-bottom: 20px;
  color: var(--heading-color);
  letter-spacing: -0.3px;
}

.contact .contact-sidebar .contact-header p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--default-color);
  margin-bottom: 0;
  opacity: 0.85;
}

.contact .contact-sidebar .contact-methods {
  margin-bottom: 60px;
}

.contact .contact-sidebar .contact-method {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 40px;
}

.contact .contact-sidebar .contact-method:last-child {
  margin-bottom: 0;
}

.contact .contact-sidebar .contact-method .contact-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-color);
}

.contact .contact-sidebar .contact-method .contact-icon i {
  font-size: 20px;
}

.contact .contact-sidebar .contact-method .contact-details {
  flex: 1;
}

.contact .contact-sidebar .contact-method .contact-details .method-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--accent-color);
  letter-spacing: 1px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 8px;
}

.contact .contact-sidebar .contact-method .contact-details p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--default-color);
  margin-bottom: 0;
}

.contact .contact-sidebar .connect-section {
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  padding-top: 40px;
}

.contact .contact-sidebar .connect-section .connect-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--accent-color);
  letter-spacing: 1px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 20px;
}

.contact .contact-sidebar .connect-section .social-links {
  display: flex;
  gap: 15px;
}

.contact .contact-sidebar .connect-section .social-links .social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: var(--default-color);
  text-decoration: none;
  transition: all 0.3s ease;
}

.contact .contact-sidebar .connect-section .social-links .social-link i {
  font-size: 16px;
}

.contact .contact-sidebar .connect-section .social-links .social-link:hover {
  color: var(--accent-color);
  transform: translateY(-2px);
}

@media (max-width: 992px) {
  .contact .contact-form-container {
    padding: 40px 0;
  }

  .contact .contact-sidebar {
    padding: 40px 30px;
    margin-bottom: 40px;
  }
}

@media (max-width: 768px) {
  .contact .contact-form-container .form-intro {
    margin-bottom: 40px;
    text-align: center;
  }

  .contact .contact-form-container .contact-form .row {
    margin-bottom: 20px;
  }

  .contact .contact-form-container .contact-form .form-field {
    margin-bottom: 30px;
  }

  .contact .contact-sidebar {
    padding: 30px 25px;
  }

  .contact .contact-sidebar .contact-header,
  .contact .contact-sidebar .contact-methods {
    margin-bottom: 40px;
  }

  .contact .contact-sidebar .contact-method {
    margin-bottom: 30px;
  }
}

/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details {
  padding: 80px 0;
}

.service-details .service-intro {
  text-align: center;
  margin-bottom: 80px;
}

.service-details .service-intro .service-badge {
  margin-bottom: 24px;
}

.service-details .service-intro .service-badge span {
  display: inline-block;
  padding: 8px 24px;
  background: color-mix(in srgb, var(--accent-color), transparent 92%);
  color: var(--accent-color);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.service-details .service-intro h1 {
  font-size: 3.5rem;
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 32px;
  color: var(--heading-color);
  letter-spacing: -0.02em;
}

@media (max-width: 768px) {
  .service-details .service-intro h1 {
    font-size: 2.5rem;
  }
}

.service-details .service-intro .lead {
  font-size: 1.25rem;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-weight: 300;
  max-width: 600px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .service-details .service-intro .lead {
    font-size: 1.1rem;
  }
}

.service-details .service-content {
  margin-bottom: 80px;
}

.service-details .visual-section {
  margin-bottom: 80px;
}

.service-details .visual-section .service-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.service-details .visual-section .service-text {
  padding-left: 40px;
}

@media (max-width: 992px) {
  .service-details .visual-section .service-text {
    padding-left: 0;
    margin-top: 40px;
  }
}

.service-details .visual-section .service-text h2 {
  font-size: 2.25rem;
  font-weight: 300;
  line-height: 1.3;
  margin-bottom: 24px;
  color: var(--heading-color);
  letter-spacing: -0.01em;
}

@media (max-width: 768px) {
  .service-details .visual-section .service-text h2 {
    font-size: 1.8rem;
  }
}

.service-details .visual-section .service-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--default-color);
  margin-bottom: 20px;
}

.service-details .visual-section .service-text p:last-child {
  margin-bottom: 0;
}

.service-details .features-section {
  margin-bottom: 80px;
  padding: 60px 0;
  background: color-mix(in srgb, var(--default-color), transparent 97%);
}

.service-details .features-section .feature-item {
  text-align: center;
  padding: 0 20px;
}

.service-details .features-section .feature-item .feature-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-details .features-section .feature-item .feature-icon i {
  font-size: 2rem;
  color: var(--accent-color);
}

.service-details .features-section .feature-item h4 {
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 16px;
  color: var(--heading-color);
}

.service-details .features-section .feature-item p {
  font-size: 1rem;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 0;
}

.service-details .process-section {
  margin-bottom: 80px;
}

.service-details .process-section .process-info {
  padding-right: 40px;
}

@media (max-width: 992px) {
  .service-details .process-section .process-info {
    padding-right: 0;
    margin-bottom: 40px;
  }
}

.service-details .process-section .process-info h3 {
  font-size: 2rem;
  font-weight: 300;
  line-height: 1.3;
  margin-bottom: 24px;
  color: var(--heading-color);
  letter-spacing: -0.01em;
}

@media (max-width: 768px) {
  .service-details .process-section .process-info h3 {
    font-size: 1.6rem;
  }
}

.service-details .process-section .process-info p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--default-color);
  margin: 0;
}

.service-details .process-section .process-steps .step {
  display: flex;
  gap: 24px;
  margin-bottom: 32px;
}

.service-details .process-section .process-steps .step:last-child {
  margin-bottom: 0;
}

.service-details .process-section .process-steps .step .step-number {
  min-width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-color);
  color: var(--contrast-color);
  font-size: 14px;
  font-weight: 500;
}

.service-details .process-section .process-steps .step .step-content h5 {
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--heading-color);
}

.service-details .process-section .process-steps .step .step-content p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin: 0;
}

.service-details .info-grid .info-card {
  height: 100%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  padding: 32px;
}

.service-details .info-grid .info-card .info-header {
  margin-bottom: 24px;
}

.service-details .info-grid .info-card .info-header h4 {
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--heading-color);
}

.service-details .info-grid .info-card .info-header p {
  font-size: 0.95rem;
  line-height: 1.5;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 0;
}

.service-details .info-grid .info-card .info-content .price-range {
  text-align: center;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.service-details .info-grid .info-card .info-content .price-range .price-label {
  display: block;
  font-size: 0.85rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.service-details .info-grid .info-card .info-content .price-range .price-value {
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--accent-color);
  display: block;
}

.service-details .info-grid .info-card .info-content .info-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-details .info-grid .info-card .info-content .info-list li {
  font-size: 0.95rem;
  color: var(--default-color);
  margin-bottom: 12px;
  position: relative;
  padding-left: 20px;
}

.service-details .info-grid .info-card .info-content .info-list li:last-child {
  margin-bottom: 0;
}

.service-details .info-grid .info-card .info-content .info-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--accent-color);
}

.service-details .info-grid .info-card .testimonial-content p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--default-color);
  margin-bottom: 24px;
  font-style: italic;
}

.service-details .info-grid .info-card .testimonial-content .testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.service-details .info-grid .info-card .testimonial-content .testimonial-author .author-image {
  width: 48px;
  height: 48px;
  object-fit: cover;
}

.service-details .info-grid .info-card .testimonial-content .testimonial-author .author-info h6 {
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 4px;
  color: var(--heading-color);
}

.service-details .info-grid .info-card .testimonial-content .testimonial-author .author-info span {
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.service-details .info-grid .info-card .service-form .form-field {
  margin-bottom: 16px;
}

.service-details .info-grid .info-card .service-form input[type=text],
.service-details .info-grid .info-card .service-form input[type=email],
.service-details .info-grid .info-card .service-form input[type=tel],
.service-details .info-grid .info-card .service-form textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  font-size: 14px;
  background-color: var(--surface-color);
  color: var(--default-color);
  transition: border-color 0.3s ease;
}

.service-details .info-grid .info-card .service-form input[type=text]:focus,
.service-details .info-grid .info-card .service-form input[type=email]:focus,
.service-details .info-grid .info-card .service-form input[type=tel]:focus,
.service-details .info-grid .info-card .service-form textarea:focus {
  outline: none;
  border-color: var(--accent-color);
}

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

.service-details .info-grid .info-card .service-form .submit-btn {
  background: var(--accent-color);
  color: var(--contrast-color);
  border: none;
  padding: 12px 24px;
  font-size: 0.95rem;
  font-weight: 500;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.3s ease;
  margin-top: 8px;
}

.service-details .info-grid .info-card .service-form .submit-btn:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
}

.service-details .info-grid .info-card .service-form .submit-btn i {
  font-size: 0.85rem;
}

@media (max-width: 768px) {
  .service-details {
    padding: 60px 0;
  }

  .service-details .service-intro {
    margin-bottom: 60px;
  }

  .service-details .service-content {
    margin-bottom: 60px;
  }

  .service-details .visual-section,
  .service-details .features-section,
  .service-details .process-section {
    margin-bottom: 60px;
  }

  .service-details .features-section .row>div {
    margin-bottom: 40px;
  }

  .service-details .features-section .row>div:last-child {
    margin-bottom: 0;
  }

  .service-details .info-grid .row>div {
    margin-bottom: 32px;
  }

  .service-details .info-grid .row>div:last-child {
    margin-bottom: 0;
  }
}
/*--------------------------------------------------------------
# Terms Of Service Section
--------------------------------------------------------------*/
.terms-of-service .tos-header {
  margin-bottom: 60px;
}

.terms-of-service .tos-header .last-updated {
  display: inline-block;
  padding: 8px 20px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 30px;
  color: var(--accent-color);
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.terms-of-service .tos-header h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.terms-of-service .tos-header p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
}

.terms-of-service .tos-content .content-section {
  margin-bottom: 50px;
  scroll-margin-top: 100px;
}

.terms-of-service .tos-content .content-section:last-child {
  margin-bottom: 0;
}

.terms-of-service .tos-content .content-section h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: var(--heading-color);
}

.terms-of-service .tos-content .content-section p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.7;
  margin-bottom: 20px;
}

.terms-of-service .tos-content .content-section p:last-child {
  margin-bottom: 0;
}

.terms-of-service .tos-content .content-section .info-box {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 20px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  border-radius: 15px;
  margin-top: 20px;
}

.terms-of-service .tos-content .content-section .info-box i {
  font-size: 1.5rem;
  color: var(--accent-color);
  flex-shrink: 0;
}

.terms-of-service .tos-content .content-section .info-box p {
  margin: 0;
  font-size: 0.95rem;
}

.terms-of-service .tos-content .content-section .list-items {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.terms-of-service .tos-content .content-section .list-items li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.terms-of-service .tos-content .content-section .list-items li:last-child {
  margin-bottom: 0;
}

.terms-of-service .tos-content .content-section .list-items li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--accent-color);
}

.terms-of-service .tos-content .content-section .alert-box {
  display: flex;
  gap: 20px;
  padding: 25px;
  background-color: var(--surface-color);
  border-radius: 15px;
  border-left: 4px solid var(--accent-color);
  margin-top: 20px;
}

.terms-of-service .tos-content .content-section .alert-box i {
  font-size: 2rem;
  color: var(--accent-color);
  flex-shrink: 0;
}

.terms-of-service .tos-content .content-section .alert-box .alert-content h5 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.terms-of-service .tos-content .content-section .alert-box .alert-content p {
  margin: 0;
  font-size: 0.95rem;
}

.terms-of-service .tos-content .content-section .prohibited-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 20px;
}

@media (max-width: 576px) {
  .terms-of-service .tos-content .content-section .prohibited-list {
    grid-template-columns: 1fr;
  }
}

.terms-of-service .tos-content .content-section .prohibited-list .prohibited-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px;
  background-color: var(--surface-color);
  border-radius: 12px;
}

.terms-of-service .tos-content .content-section .prohibited-list .prohibited-item i {
  color: #dc3545;
  font-size: 1.2rem;
}

.terms-of-service .tos-content .content-section .prohibited-list .prohibited-item span {
  font-size: 0.95rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.terms-of-service .tos-content .content-section .disclaimer-box {
  background-color: var(--surface-color);
  padding: 25px;
  border-radius: 15px;
  margin-top: 20px;
}

.terms-of-service .tos-content .content-section .disclaimer-box p {
  margin-bottom: 15px;
  font-weight: 500;
}

.terms-of-service .tos-content .content-section .disclaimer-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.terms-of-service .tos-content .content-section .disclaimer-box ul li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 0.95rem;
}

.terms-of-service .tos-content .content-section .disclaimer-box ul li:last-child {
  margin-bottom: 0;
}

.terms-of-service .tos-content .content-section .disclaimer-box ul li::before {
  content: "•";
  position: absolute;
  left: 8px;
  color: var(--accent-color);
}

.terms-of-service .tos-content .content-section .notice-box {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  border-radius: 15px;
  margin-top: 20px;
}

.terms-of-service .tos-content .content-section .notice-box i {
  font-size: 1.5rem;
  color: var(--accent-color);
  flex-shrink: 0;
}

.terms-of-service .tos-content .content-section .notice-box p {
  margin: 0;
  font-size: 0.95rem;
}

.terms-of-service .tos-contact {
  margin-top: 60px;
}

.terms-of-service .tos-contact .contact-box {
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 95%) 0%, color-mix(in srgb, var(--accent-color), transparent 98%) 100%);
  border-radius: 20px;
  padding: 40px;
  display: flex;
  align-items: center;
  gap: 30px;
}

@media (max-width: 576px) {
  .terms-of-service .tos-contact .contact-box {
    flex-direction: column;
    text-align: center;
  }
}

.terms-of-service .tos-contact .contact-box .contact-icon {
  width: 60px;
  height: 60px;
  background-color: var(--accent-color);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.terms-of-service .tos-contact .contact-box .contact-icon i {
  font-size: 1.8rem;
  color: var(--contrast-color);
}

.terms-of-service .tos-contact .contact-box .contact-content {
  flex: 1;
}

.terms-of-service .tos-contact .contact-box .contact-content h4 {
  font-size: 1.4rem;
  margin-bottom: 8px;
}

.terms-of-service .tos-contact .contact-box .contact-content p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 15px;
}

.terms-of-service .tos-contact .contact-box .contact-content .contact-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 25px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s;
}

.terms-of-service .tos-contact .contact-box .contact-content .contact-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

@media print {
  .terms-of-service .tos-contact {
    display: none;
  }

  .terms-of-service .content-section {
    page-break-inside: avoid;
  }
}

/*--------------------------------------------------------------
# Privacy 2 Section
--------------------------------------------------------------*/
.privacy-2 {
  font-size: 1rem;
  line-height: 1.7;
}

.privacy-2 .privacy-header {
  margin-bottom: 60px;
  text-align: center;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  padding-bottom: 40px;
}

.privacy-2 .privacy-header .header-content {
  max-width: 800px;
  margin: 0 auto;
}

.privacy-2 .privacy-header .header-content .last-updated {
  font-size: 0.95rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 20px;
}

.privacy-2 .privacy-header .header-content h1 {
  font-size: 2.8rem;
  color: var(--heading-color);
  margin-bottom: 20px;
  font-weight: 600;
}

.privacy-2 .privacy-header .header-content .intro-text {
  font-size: 1.2rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.6;
}

.privacy-2 .privacy-content {
  max-width: 800px;
  margin: 0 auto 60px;
}

.privacy-2 .privacy-content .content-section {
  margin-bottom: 50px;
}

.privacy-2 .privacy-content .content-section:last-child {
  margin-bottom: 0;
}

.privacy-2 .privacy-content .content-section h2 {
  font-size: 1.8rem;
  color: var(--heading-color);
  margin-bottom: 25px;
  font-weight: 600;
}

.privacy-2 .privacy-content .content-section h3 {
  font-size: 1.4rem;
  color: var(--heading-color);
  margin: 30px 0 20px;
  font-weight: 500;
}

.privacy-2 .privacy-content .content-section p {
  margin-bottom: 20px;
}

.privacy-2 .privacy-content .content-section p:last-child {
  margin-bottom: 0;
}

.privacy-2 .privacy-content .content-section ul {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}

.privacy-2 .privacy-content .content-section ul li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
}

.privacy-2 .privacy-content .content-section ul li:last-child {
  margin-bottom: 0;
}

.privacy-2 .privacy-content .content-section ul li::before {
  content: "•";
  position: absolute;
  left: 8px;
  color: var(--accent-color);
}

.privacy-2 .privacy-contact {
  max-width: 800px;
  margin: 0 auto;
  padding-top: 40px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.privacy-2 .privacy-contact h2 {
  font-size: 1.8rem;
  color: var(--heading-color);
  margin-bottom: 20px;
  font-weight: 600;
}

.privacy-2 .privacy-contact p {
  margin-bottom: 20px;
}

.privacy-2 .privacy-contact .contact-details {
  background-color: var(--surface-color);
  padding: 25px;
  border-radius: 10px;
}

.privacy-2 .privacy-contact .contact-details p {
  margin-bottom: 10px;
}

.privacy-2 .privacy-contact .contact-details p:last-child {
  margin-bottom: 0;
}

.privacy-2 .privacy-contact .contact-details p strong {
  color: var(--heading-color);
  font-weight: 600;
}

@media print {
  .privacy-2 {
    font-size: 12pt;
    line-height: 1.5;
  }

  .privacy-2 .privacy-header {
    text-align: left;
    border-bottom: 1pt solid #000;
    padding-bottom: 20pt;
    margin-bottom: 30pt;
  }

  .privacy-2 h1 {
    font-size: 24pt;
  }

  .privacy-2 h2 {
    font-size: 18pt;
    page-break-after: avoid;
  }

  .privacy-2 h3 {
    font-size: 14pt;
    page-break-after: avoid;
  }

  .privacy-2 p,
  .privacy-2 ul {
    page-break-inside: avoid;
  }

  .privacy-2 .contact-details {
    border: 1pt solid #000;
    padding: 15pt;
  }
}

@media (max-width: 767px) {
  .privacy-2 .privacy-header {
    margin-bottom: 40px;
    padding-bottom: 30px;
  }

  .privacy-2 .privacy-header .header-content h1 {
    font-size: 2.2rem;
  }

  .privacy-2 .privacy-header .header-content .intro-text {
    font-size: 1.1rem;
  }

  .privacy-2 .privacy-content .content-section {
    margin-bottom: 40px;
  }

  .privacy-2 .privacy-content .content-section h2 {
    font-size: 1.6rem;
  }

  .privacy-2 .privacy-content .content-section h3 {
    font-size: 1.3rem;
  }
}

/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/
.starter-section {
  /* Add your styles here */
}
.career-section{
    padding:80px 20px;
    background:#f8f9fa;
}

.career-form{
    max-width:700px;
    margin:auto;
    background:#fff;
    padding:30px;
    border-radius:10px;
    box-shadow:0 5px 20px rgba(0,0,0,.1);
}

.form-group{
    margin-bottom:20px;
}

.form-group input,
.form-group textarea{
    width:100%;
    padding:14px;
    border:1px solid #ddd;
    border-radius:6px;
    font-size:16px;
}

.form-group textarea{
    resize:none;
}

.career-btn{
    width:100%;
    padding:15px;
    border:none;
    background:#0e458f;
    color:#fff;
    font-size:18px;
    border-radius:6px;
    cursor:pointer;
    transition:.3s;
}

.career-btn:hover{
    background:#08336b;
}

/* Mobile Responsive */

@media(max-width:768px){

    .career-section{
        padding:50px 15px;
    }

    .career-form{
        padding:20px;
    }

    .section-title h2{
        font-size:28px;
    }

    .form-group input,
    .form-group textarea{
        font-size:15px;
        padding:12px;
    }

    .career-btn{
        font-size:16px;
    }
}
/* ==========================
   GLOBAL SPACING FIX
========================== */

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

@media(max-width:768px){
    .section,
    section{
        padding:50px 0;
    }
}

/* ==========================
   HEADER
========================== */

.header .branding{
    padding:8px 0;
}

.logo img{
    max-height:60px;
}

/* ==========================
   HERO SECTION
========================== */

.hero .hero-content .content{
    padding:60px 0;
}

.hero .hero-content .content h1{
    font-size:48px;
    line-height:1.2;
    margin-bottom:20px;
}

.hero .hero-content .content p{
    margin-bottom:25px;
    max-width:100%;
}

.hero .hero-content .hero-image{
    padding:40px 0;
}

.hero .hero-features{
    padding:40px 0;
}

@media(max-width:992px){

    .hero .hero-content .content{
        text-align:center;
        padding:40px 0 20px;
    }

    .hero .hero-content .content h1{
        font-size:34px;
    }

    .hero .hero-content .hero-image{
        padding-top:20px;
    }

    .hero .hero-content .hero-image .floating-card{
        position:relative;
        left:0;
        bottom:0;
        margin-top:20px;
    }
}

@media(max-width:576px){

    .hero .hero-content .content h1{
        font-size:28px;
    }

    .hero .hero-content .content p{
        font-size:15px;
    }
}

/* ==========================
   SECTION TITLE
========================== */

.section-title{
    padding-bottom:35px;
}

.section-title h2{
    margin-bottom:10px;
    padding-bottom:15px;
}

.section-title p{
    margin-top:5px;
}

/* ==========================
   ABOUT SECTION
========================== */

.about .content{
    padding-right:20px;
}

.about .content h2{
    font-size:36px;
    margin-bottom:20px;
}

.about .content .lead{
    margin-bottom:25px;
}

.about .content .description{
    margin-bottom:30px;
}

.about .content .stats-row{
    gap:25px;
    margin-bottom:30px;
}

.about .image-container{
    min-height:auto;
}

@media(max-width:992px){

    .about .content{
        margin-bottom:30px;
    }

    .about .content h2{
        font-size:28px;
    }
}

/* ==========================
   CLIENTS
========================== */

.clients{
    padding:40px 0;
}

.client-item{
    padding:10px;
}

/* ==========================
   SERVICES
========================== */

.services .row{
    row-gap:25px;
}

.service-item{
    height:100%;
    padding:30px 20px;
    border-radius:10px;
    box-shadow:0 0 15px rgba(0,0,0,.06);
    transition:.3s;
}

.service-item:hover{
    transform:translateY(-5px);
}

.service-item h3{
    font-size:22px;
    margin:15px 0;
}

.service-item p{
    margin-bottom:0;
}
/* ==========================
   CAREER SECTION
========================== */

.career-section{
    padding:80px 0;
    background:linear-gradient(
    135deg,
    #f5f7ff,
    #eef3ff);
    overflow:hidden;
}

.career-heading{
    text-align:center;
    margin-bottom:60px;
}

.career-heading span{
    color:#0d6efd;
    font-weight:600;
    text-transform:uppercase;
    letter-spacing:2px;
}

.career-heading h2{
    font-size:42px;
    font-weight:700;
    margin-top:10px;
    margin-bottom:15px;
}

.career-heading p{
    max-width:700px;
    margin:auto;
    color:#666;
}

/* Layout */

.career-wrapper{
    display:grid;
    grid-template-columns:1fr 1.2fr;
    gap:40px;
    align-items:center;
}

/* Left Side */

.career-info{
    display:flex;
    flex-direction:column;
    gap:20px;
}

.info-box{
    background:#fff;
    padding:25px;
    border-radius:15px;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    transition:.4s;
}

.info-box:hover{
    transform:translateX(10px);
}

.info-box i{
    font-size:35px;
    color:#0d6efd;
    margin-bottom:10px;
}

.info-box h3{
    font-size:20px;
    margin-bottom:10px;
}

/* Form */

.career-form-box{
    background:rgba(255,255,255,.7);
    backdrop-filter:blur(15px);
    padding:35px;
    border-radius:20px;
    box-shadow:0 15px 40px rgba(0,0,0,.1);
    animation:floatBox 5s ease-in-out infinite;
}

@keyframes floatBox{
    0%{
        transform:translateY(0);
    }
    50%{
        transform:translateY(-10px);
    }
    100%{
        transform:translateY(0);
    }
}

.input-group{
    position:relative;
    margin-bottom:25px;
}

.input-group input,
.input-group textarea{
    width:100%;
    padding:15px;
    border:2px solid #ddd;
    border-radius:10px;
    outline:none;
    background:transparent;
    font-size:15px;
}

.input-group label{
    position:absolute;
    left:15px;
    top:15px;
    background:#fff;
    padding:0 5px;
    transition:.3s;
    color:#888;
    pointer-events:none;
}

.input-group input:focus,
.input-group textarea:focus{
    border-color:#0d6efd;
}

.input-group input:focus~label,
.input-group input:valid~label,
.input-group textarea:focus~label,
.input-group textarea:valid~label{
    top:-10px;
    font-size:12px;
    color:#0d6efd;
}

.upload-box{
    margin-bottom:25px;
}

.upload-box label{
    display:block;
    margin-bottom:10px;
    font-weight:600;
}

.upload-box input{
    width:100%;
    padding:12px;
    border:2px dashed #0d6efd;
    border-radius:10px;
}

.career-btn{
    width:100%;
    border:none;
    padding:15px;
    background:#0d6efd;
    color:#fff;
    border-radius:10px;
    font-size:16px;
    font-weight:600;
    transition:.4s;
}

.career-btn:hover{
    background:#084298;
    transform:translateY(-3px);
}

/* Responsive */

@media(max-width:992px){

    .career-wrapper{
        grid-template-columns:1fr;
    }

    .career-heading h2{
        font-size:32px;
    }

}

@media(max-width:768px){

    .career-section{
        padding:60px 0;
    }

    .career-form-box{
        padding:25px;
    }

    .career-heading h2{
        font-size:28px;
    }

}

/* ==========================
   CONTACT
========================== */

.contact .form-intro{
    margin-bottom:25px;
}

.contact .form-field{
    margin-bottom:20px;
}

.contact-form-container{
    padding:30px;
}

@media(max-width:768px){

    .contact-form-container{
        padding:20px;
    }
}

/* ==========================
   FOOTER
========================== */

.footer{
    padding-bottom:20px;
}

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

/* ==========================
   MOBILE FIXES
========================== */

@media(max-width:768px){

    .container{
        padding-left:15px;
        padding-right:15px;
    }

    .career-form{
        padding:20px;
    }

    .hero .hero-features .feature-item{
        margin-bottom:20px;
    }

    .about .content .stats-row{
        justify-content:center;
        text-align:center;
    }

    .about .content .stats-row .stat-item{
        width:100%;
    }
}

/* ==========================
   WHATSAPP FLOAT BUTTON LEFT
========================== */

.whatsapp-float{
    position:fixed;
    width:60px;
    height:60px;
    bottom:25px;
    left:25px;
    background:#25D366;
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:32px;
    text-decoration:none;
    z-index:9999;
    box-shadow:0 5px 20px rgba(0,0,0,0.25);
    animation:whatsappPulse 2s infinite;
    transition:all .3s ease;
}

.whatsapp-float:hover{
    transform:scale(1.1);
    color:#fff;
}

@keyframes whatsappPulse{
    0%{
        box-shadow:0 0 0 0 rgba(37,211,102,.7);
    }
    70%{
        box-shadow:0 0 0 20px rgba(37,211,102,0);
    }
    100%{
        box-shadow:0 0 0 0 rgba(37,211,102,0);
    }
}

@media(max-width:768px){
    .whatsapp-float{
        width:55px;
        height:55px;
        font-size:28px;
        left:15px;
        bottom:15px;
    }
}

/*=========================================
 WHY CHOOSE US
==========================================*/

.why-choose{
    padding:100px 0;
    background:linear-gradient(135deg,#f4f8ff,#eef5ff,#ffffff);
    overflow:hidden;
}

.why-choose .container{
    max-width:1320px;
}

.why-choose .row{
    align-items:center;
}

.why-choose .section-title{
    text-align:center;
    max-width:850px;
    margin:0 auto 70px;
}

.why-choose .section-title span{
    display:inline-block;
    color:#0e458f;
    font-size:14px;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:2px;
    margin-bottom:12px;
}

.why-choose .section-title h2{
    font-size:46px;
    font-weight:700;
    color:#111;
    margin-bottom:18px;
}

.why-choose .section-title p{
    color:#666;
    font-size:17px;
    line-height:30px;
}

/*==========================
IMAGE
==========================*/

.choose-image{
    text-align:center;
}

.choose-image img{
    width:100%;
    max-width:560px;
    height:620px;
    object-fit:cover;
    border-radius:25px;
    box-shadow:0 20px 60px rgba(0,0,0,.15);
    transition:.5s;
}

.choose-image img:hover{
    transform:scale(1.03);
}

/*==========================
COUNTER
==========================*/

.choose-counter{
    display:flex;
    gap:18px;
    margin-top:30px;
}

.counter-box{
    flex:1;
    background:#0e458f;
    color:#fff;
    padding:22px;
    border-radius:18px;
    text-align:center;
    box-shadow:0 10px 25px rgba(14,69,143,.30);
}

.counter-box h3{
    font-size:32px;
    font-weight:700;
    margin-bottom:6px;
}

.counter-box span{
    font-size:15px;
    color: white;
}

/*==========================
RIGHT CONTENT
==========================*/

.choose-content{
    display:flex;
    flex-direction:column;
    justify-content:center;
    gap:25px;
    height:100%;
    padding-left:20px;
}

/*==========================
CARD
==========================*/

.choose-box{
    display:flex;
    align-items:center;
    background:#fff;
    padding:28px;
    border-radius:18px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    border-left:5px solid #0e458f;
    position:relative;
    overflow:hidden;
    transition:.4s;
}

.choose-box::before{
    content:"";
    position:absolute;
    left:0;
    top:0;
    width:0;
    height:100%;
    background:#0e458f;
    transition:.5s;
}

.choose-box:hover::before{
    width:100%;
}

.choose-box>*{
    position:relative;
    z-index:2;
}

.choose-box:hover{
    transform:translateX(10px);
}

.choose-box:hover h4,
.choose-box:hover p{
    color:#fff;
}

/*==========================
ICON
==========================*/

.choose-box .icon{
    width:85px;
    height:85px;
    min-width:85px;
    border-radius:50%;
    background:#0e458f;
    display:flex;
    justify-content:center;
    align-items:center;
    color:#fff;
    font-size:34px;
    margin-right:22px;
    transition:.5s;
}

.choose-box:hover .icon{
    background:#fff;
    color:#0e458f;
    transform:rotate(360deg);
}

.choose-box h4{
    font-size:23px;
    font-weight:700;
    margin-bottom:10px;
    transition:.4s;
}

.choose-box p{
    margin:0;
    color:#666;
    line-height:28px;
    transition:.4s;
}
.counter-box h3{
    color:#fff !important;
}

/*==========================
RESPONSIVE
==========================*/

@media(max-width:991px){

.why-choose{
    padding:80px 0;
}

.choose-image{
    margin-bottom:40px;
}

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

.choose-counter{
    flex-wrap:wrap;
}

.counter-box{
    width:100%;
}
.counter-box h3{
    color:#fff !important;
}

.choose-content{
    padding-left:0;
    margin-top:40px;
}

}

@media(max-width:768px){

.why-choose{
    padding:70px 0;
}

.why-choose .section-title{
    margin-bottom:45px;
}

.why-choose .section-title h2{
    font-size:32px;
}

.why-choose .section-title p{
    font-size:15px;
    line-height:26px;
}

.choose-box{
    flex-direction:column;
    text-align:center;
    padding:25px 20px;
}

.choose-box .icon{
    margin:0 0 20px;
}

.choose-box h4{
    font-size:20px;
}

.counter-box h3{
    font-size:28px;
}

}

@media(max-width:576px){

.why-choose{
    padding:60px 0;
}

.why-choose .section-title h2{
    font-size:27px;
}

.choose-image img{
    border-radius:18px;
}

.choose-box{
    padding:22px 18px;
}

.choose-box .icon{
    width:70px;
    height:70px;
    min-width:70px;
    font-size:28px;
}

.choose-box h4{
    font-size:18px;
}

.choose-box p{
    font-size:14px;
    line-height:24px;
}

.counter-box{
    padding:18px;
}

.counter-box h3{
    font-size:24px;
}

.counter-box span{
    font-size:14px;
}

}