
/* 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: "Raleway",  sans-serif;
  --nav-font: "Poppins",  sans-serif;
}


:root { 
  --background-color: #ffffff; 
  --default-color: #555555;
  --heading-color: #0d3035; 
  --accent-color: #003B8B; 
  --surface-color: #ffffff; 
  --contrast-color: #ffffff; 
}

/* Nav Menu Colors */
:root {
  --nav-color: black;  
  --nav-hover-color: black; 
  --nav-mobile-background-color: #ffffff; 
  --nav-dropdown-background-color: #ffffff; 
  --nav-dropdown-color: #555555;
  --nav-dropdown-hover-color: #003B8B; 
}


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

.dark-background {
  --background-color: #060606;
  --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);
}


/* Global Header*/
.header {
  --background-color: #ffffff;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  color: var(--default-color);
  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: 36px;
  margin-right: 8px;
}

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

.header .logo h1 span {
  color: color-mix(in srgb, var(--accent-color) 90%, white 15%);
  font-style: italic;
}

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

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

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

  .header .logo h1 {
    font-size: 24px;
  }

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

  .header .navmenu {
    order: 3;
  }
}

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

/* Global Header on Scroll*/
.scrolled .header {
  --background-color: white;
}

/*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>ul>li {
    white-space: nowrap;
    padding: 15px 14px;
  }

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

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

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

  .navmenu>ul>li>a:before {
    content: "";
    position: absolute;
    height: 2px;
    bottom: -15px;
    left: 0;
    background-color: var(--nav-dropdown-hover-color);
    visibility: hidden;
    width: 0px;
    transition: all 0.3s ease-in-out 0s;
  }

  .navmenu a:hover:before,
  .navmenu li:hover>a:before,
  .navmenu .active:before {
    visibility: visible;
    width: 100%;
  }

  .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: 0;
    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;
  position: relative;
  padding-bottom: 0px;
  
}

.footer .footer-newsletter {
  background-color: color-mix(in srgb, var(--default-color), transparent 97%);
  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;
  border-radius: 4px;
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  box-shadow: 0px 2px 25px rgba(0, 0, 0, 0.1);
  display: flex;
  transition: 0.3s;
  border-radius: 50px;
}

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

.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: 50%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 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: 20px 0;
  padding-bottom: 2px;
  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;
}
.footer {
  margin-bottom: 0 !important;
  padding-bottom: 0;
}

.wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex: 1;
}

/* Scroll Top Button*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 11px;
  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 {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 160px 0 80px 0;
  text-align: center;
  position: relative;
}

.page-title h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 10px;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  justify-content: center;
  padding: 0;
  margin: 0;
  font-size: 16px;
  font-weight: 400;
}

.page-title .breadcrumbs ol li+li {
  padding-left: 10px;
}

.page-title .breadcrumbs ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

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

@media (max-width: 1199px) {

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

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

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

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

/* Mobile View Adjustments*/
@media (max-width: 768px) {
  .section-title h2 {
    font-size: 24px; 
    padding-bottom: 15px;
    padding-top: px;
  }

  .section-title {
    padding-bottom: 15px;
    padding-top: 2px;
  }

  .section-title h2:after {
    width: 40px; 
  }

  .page-header {
    padding-top: 20px !important;
    padding-bottom: 20px !important;
  }
}

/*Hero Section*/
/* Hero Section */
.hero {
  padding: 60px 0; /* Apply consistent top and bottom spacing */
  position: relative;
  overflow: hidden;
  background-color: var(--light-background, #fff); /* optional */
}

.hero .hero-content h3 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
  color: var(--heading-color, #111);
}

.hero .hero-content p {
  font-size: 1rem;
  margin-bottom: 1.8rem;
  color: var(--default-color, #444);
}

.hero .hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero .hero-btns .btn {
  padding: 12px 30px;
  font-weight: 600;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.hero .hero-btns .btn-primary {
  background-color: var(--accent-color, #002F6C);
  border-color: var(--accent-color, #002F6C);
  color: var(--contrast-color, #fff);
}

.hero .hero-btns .btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), #000 10%);
  border-color: color-mix(in srgb, var(--accent-color), #000 10%);
}

/* Image Styling */
.hero .hero-image {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  margin-top: 30px;
}

.hero .hero-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  transition: transform 0.5s ease;
}

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

/* Responsive Styles */
@media (max-width: 992px) {
  .hero {
    padding: 50px 0;
    text-align: center;
  }

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

  .hero .hero-btns {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 40px 0;
  }

  .hero .hero-content h3 {
    font-size: 1.8rem;
  }

  .hero .hero-content p {
    font-size: 0.95rem;
  }

  .hero .hero-image {
    margin-top: 20px;
  }
}

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

  .hero .hero-btns .btn {
    width: 80%;
    text-align: center;
  }
}


/* About Section*/
.about .about-meta {
  color: var(--accent-color);
  font-weight: 600;
  margin-bottom: 1rem;
  display: inline-block;
}

.about .about-title {
  font-size: 1.75rem;
  margin-bottom: 1rem;
  line-height: 1.2;
  font-weight: 700;
}

.about .container  h2 {
  padding-top: 5px;

}

@media (max-width: 992px) {
  .about .about-title {
    font-size: 2rem;
  }
}

.about .about-description {
  margin-bottom: 2rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.about .feature-list-wrapper {
  margin-bottom: 2rem;
}

.about .feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.about .feature-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 1rem;
}

.about .feature-list li i {
  color: var(--accent-color);
  font-size: 1.25rem;
}

.about .profile .profile-image {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.about .profile .profile-name {
  font-size: 1.125rem;
  margin: 0;
}

.about .profile .profile-position {
  color: var(--accent-color);
  margin: 0;
  font-size: 0.875rem;
}

.about .contact-info {
  padding: 1rem 1rem;
  background-color: var(--surface-color);
  border-radius: 0.5rem;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.06);
}

.about .contact-info i {
  color: var(--accent-color);
  font-size: 1.5rem;
}

.about .contact-info .contact-label {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 0.875rem;
  margin: 0;
}

.about .contact-info .contact-number {
  font-weight: 600;
  margin: 0;
}

.about .image-wrapper {
  position: relative;
}

@media (max-width: 992px) {
  .about .image-wrapper {
    padding-left: 0;
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .about .image-wrapper .images {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  } 
}

@media (max-width: 768px) {
  .about .image-wrapper .main-image {
    margin-left: 0;
    margin-top: -40px;
  }
}

.about .image-wrapper .small-image {
  position: absolute;
  top: 5%;
  left: -10%;
  width: 45%;
  border: 8px solid var(--surface-color);
}

@media (max-width: 768px) {
  .about .image-wrapper .small-image {
    position: static;
    width: 100%;
    margin: 0 auto;
    border: 0;
  }
}



.about .image-wrapper .experience-badge {
  position: absolute;
  bottom: 1px; 
  right: 5%;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 1.5rem;
  border-radius: 0.5rem;
  text-align: center;
  min-width: 200px;
  animation: experience-float 3s ease-in-out infinite;
}


@media (max-width: 768px) {
  .about .image-wrapper .experience-badge {
    position: static;
    width: fit-content;
    margin: 0 auto;
     margin-bottom: -40px;
  }
}

.about .image-wrapper .experience-badge h3 {
  color: var(--contrast-color);
  font-size: 2.5rem;
  margin: 0;
  line-height: 0.5;
}

.about .image-wrapper .experience-badge h3 span {
  font-size: 1rem;
  display: inline-block;
  margin-left: 0.25rem;
}

.about .image-wrapper .experience-badge p {
  margin: 0.5rem 0 0;
  font-size: 0.875rem;
}

@keyframes experience-float {
  0% {
    transform: translateY(0);
  }

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

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

@media (max-width: 768px) {
  #about p {
    font-size: 1rem;
    line-height: 1.6;
    padding: 0 12px;
    text-align: justify;
  }

  #about h3, 
  #about h4 {
    padding: 0 12px;
  }

  #about ul {
    padding: 0 12px;
  }
}


@media (max-width: 768px) {
  #about .row {
    margin-top: -80px; 
  }

  #about img.img-fluid {
    margin-top: 0;
    padding-top: 0;
    display: block;
  }
}


/* Stats Section*/
.stats .stats-hero {
  margin-bottom: 2.5rem;
}

.stats .stats-hero .headline {
  color: var(--heading-color);
 
  font-size: 2.25rem;
  font-weight: 600;
  line-height: 1.2;
}

.stats .stats-hero .lead {
  color: var(--default-color);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 0;
}

.stats .stats-hero .stats-rating {
  background: var(--surface-color);
  border-radius: 5px;
  box-shadow: 0 4px 32px color-mix(in srgb, var(--accent-color), transparent 90%);
  min-width: 270px;
  gap: 8px;
}

.stats .stats-hero .stats-rating .stats-rating-img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  background: color-mix(in srgb, var(--accent-color), transparent 85%);
  border: 2px solid color-mix(in srgb, var(--accent-color), transparent 80%);
}

.stats .stats-hero .stats-rating .rating-score .fs-5 {
  color: var(--accent-color);
}

.stats .stats-hero  {
  color: color-mix(in srgb, var(--accent-color));
  font-size: 1.15rem;
}

.stats .stats-hero  {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 0.95rem;
  font-family: var(--default-font);
}
.stats section {
  padding-bottom: 2px;
}

.stats .stats-counters {
  margin-top: 0.5rem;
}

.stats .stats-counters .stats-counter-card {
  background: var(--surface-color);
  border-radius: 5px;
  box-shadow: 0 2px 12px color-mix(in srgb, var(--accent-color), transparent 90%);
  padding: 1.75rem 1rem 1.25rem 1rem;
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: box-shadow 0.3s;
}

.stats .stats-counters .stats-counter-card:hover {
  box-shadow: 0 4px 32px color-mix(in srgb, var(--accent-color), transparent 82%);
}

.stats .stats-counters .stats-counter-card .counter-value {
  color: var(--accent-color);
  font-family: var(--heading-font);
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  display: flex;
  align-items: flex-end;
}

.stats .stats-counters .stats-counter-card .counter-value .purecounter {
  font-size: inherit;
  color: inherit;
}

.stats .stats-counters .stats-counter-card .label {
  color: color-mix(in srgb, var(--default-color), transparent 35%);
  font-size: 1rem;
  font-family: var(--default-font);
  font-weight: 500;
  margin-top: 0.3rem;
  letter-spacing: 0.02em;
}

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

  .stats .stats-counters .stats-counter-card {
    font-size: 0.97rem;
    padding: 1.2rem 0.7rem 1rem 0.7rem;
  }
}

@media (max-width: 767px) {

  .stats {
    padding-top: 10px; 
    padding-bottom: 10px;
  }
  
  .stats .stats-hero {
    flex-direction: column;
  }

  .stats .stats-counters {
  margin-top: 2px;
  margin-bottom: -65px;
}

  .stats .stats-hero .headline {
    font-size: 1.3rem;
    text-align: center;
  }

  .stats .stats-hero .lead {
    font-size: 1rem;
    text-align: center;
    margin-bottom:-30px;
  }

  .stats .stats-hero .stats-rating {
    margin-inline: auto;
  }

  .stats .stats-counters .stats-counter-card {
    padding-top: 1rem;
    font-size: 0.93rem;
  }
}

@media (max-width: 767px) {
  .stats .stats-counters .row > div:nth-child(3) {
    margin-top: 12px; 
  }

  .stats .stats-counters .row > div:nth-child(4) {
    margin-top: 12px; 
  }
}

#clientele {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}

.stats-counters {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

.stats-counters > .row {
  margin-top: 0 !important;
  padding-top: 0 !important;
}


.stats {
  margin-top: -10px !important;
  padding-top: 0 !important;
}


.hero-stats {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  text-align: center;
  margin-top: 1.5rem;
}

.stat-item {
  flex: 1;
  min-width: 100px;
}

@media (max-width: 576px) {
  .hero-stats {
    flex-wrap: nowrap;
    overflow-x: auto;
    
    padding-bottom: 10px;
  }

  .stat-item {
    flex: 0 0 auto;
    width: 100px;
  }
}


/* Services Section*/
.services .service-item {
  position: relative;
  padding: 60px 30px 80px;
  background-color: var(--surface-color);
  border-radius: 12px;
  box-shadow: 0 10px 25px color-mix(in srgb, var(--default-color), transparent 90%);
  transition: all 0.3s ease;
}

.services .service-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background-color: var(--accent-color);
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}
.services  {
  padding-top: 5px;
}

.services .service-item .service-icon {
  width: 72px;
  height: 72px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
  color: var(--accent-color);
  font-size: 34px;
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.services .service-item .service-icon i {
  line-height: 1;
}

.services .service-item h3 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 15px;
}

.services .service-item h3 a {
  color: var(--heading-color);
  transition: color 0.3s ease;
}

.services .service-item h3 a span {
  display: inline-block;
  color: var(--accent-color);
}

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

.services .service-item p {
  color: var(--default-color);
  margin-bottom: 0;
  transition: color 0.3s ease;
}

.services .service-item .card-action {
  position: absolute;
  right: 24px;
  bottom: 24px;
  width: 56px;
  height: 56px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  font-size: 22px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
}

.services .service-item .card-action i {
  transition: transform 0.3s ease;
}

.services .service-item .card-action:hover i {
  transform: rotate(45deg);
}

.services .service-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 14px 30px color-mix(in srgb, var(--default-color), transparent 85%);
}

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

.services .service-item:hover p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.services .service-item:hover .card-action {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

@media (max-width: 768px) {
  .services .service-item {
    padding: 50px 25px 70px;
  }

  .services .service-item h3 {
    font-size: 22px;
  }

  .services .service-item .service-icon {
    width: 64px;
    height: 64px;
    font-size: 30px;
  }
}



@media (max-width: 768px) {
  .page-header {
    padding: 20px 0 !important;
    margin-bottom: 0 !important;
  }

  .services.section {
    padding-top: 10px !important;
    margin-top: 0 !important;
  }

  .section-title {
    margin-top: 10px !important;
    padding-top: 10px !important;
     margin-bottom: 10px !important;
    padding-bottom: 10px !important;
  }
}





/* Team Section*/
.team .team-card {
  background-color: var(--surface-color);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 24px color-mix(in srgb, var(--default-color), transparent 90%);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  position: relative;
}

.team .team-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px color-mix(in srgb, var(--accent-color), transparent 85%);
}

.team .team-card:hover .profile-image img {
  transform: scale(1.05);
}

.team .team-card:hover .social-icons {
  opacity: 1;
  transform: translateY(0);
}

.team .profile-image {
  position: relative;
  height: 320px;
  overflow: hidden;
}

.team .profile-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.team .role-badge {
  position: absolute;
  top: 20px;
  right: 0;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 6px 15px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 4px 0 0 4px;
  box-shadow: -2px 3px 8px rgba(0, 0, 0, 0.1);
}

.team .social-icons {
  position: absolute;
  top: 20px;
  left: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.team .social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background-color: var(--contrast-color);
  color: var(--accent-color);
  border-radius: 50%;
  font-size: 16px;
  transition: 0.3s;
}

.team .social-icons a:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  transform: scale(1.1);
}

.team .member-info {
  padding: 25px 20px;
}

.team .member-info h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--heading-color);
  transition: color 0.3s ease;
}

.team .member-info p {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 0;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

@media (max-width: 992px) {
  .team .profile-image {
    height: 280px;
  }
}

@media (max-width: 768px) {
  .team .profile-image {
    height: 250px;
  }

  .team .member-info {
    padding: 20px 15px;
  }

  .team .member-info h4 {
    font-size: 18px;
  }

  .team .member-info p {
    font-size: 14px;
  }
}

/*Contact Section*/
.contact .info-box {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 3rem;
  border-radius: 1rem;
  height: 100%;
}

.contact .info-box h3 {
  color: var(--contrast-color);
  font-size: 2rem;
  margin-bottom: 1rem;
}

@media (max-width: 767.98px) {
  .contact .info-box h3 {
    font-size: 1.75rem;
  }
}

.contact .info-box p {
  opacity: 0.8;
  margin-bottom: 2rem;
}

.contact .info-box a {
  color: var(--contrast-color);
}

@media (max-width: 992px) {
  .contact .info-box {
    padding: 1.5rem;
  }
}

.contact .info-item {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.contact .info-item:last-child {
  margin-bottom: 0;
}

.contact .info-item .icon-box {
  width: 3.5rem;
  height: 3.5rem;
  background-color: color-mix(in srgb, var(--contrast-color), transparent 85%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: 0.3s;
}

.contact .info-item .icon-box i {
  font-size: 1.5rem;
  color: var(--contrast-color);
}

.contact .info-item:hover .icon-box {
  background-color: color-mix(in srgb, var(--contrast-color), transparent 70%);
}

.contact .info-item .content h4 {
  color: var(--contrast-color);
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.contact .info-item .content p {
  margin-bottom: 0.25rem;
  font-size: 0.95rem;
}

.contact .info-item .content p:last-child {
  margin-bottom: 0;
}

.contact .contact-form {
  background-color: var(--surface-color);
  padding: 3rem;
  border-radius: 1rem;
  height: 100%;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.05);
}

@media (max-width: 992px) {
  .contact .contact-form {
    padding: 1rem;
  }
}

.contact .contact-form h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

@media (max-width: 768px) {
  .contact .contact-form h3 {
    font-size: 1.75rem;
  }
}

.contact .contact-form p {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin-bottom: 2rem;
}

.contact .contact-form .form-control,
.contact .contact-form .form-select {
  padding: 0.875rem 1.25rem;
  border-color: color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 0.5rem;
  background-color: color-mix(in srgb, var(--surface-color) 90%, white 5%);
  color: var(--default-color);
}

.contact .contact-form .form-control:focus,
.contact .contact-form .form-select:focus {
  box-shadow: none;
  border-color: var(--accent-color);
}

.contact .contact-form .form-control::placeholder,
.contact .contact-form .form-select::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.contact .contact-form .btn {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 1rem 2rem;
  border-radius: 2rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: 0.3s;
}

.contact .contact-form .btn i {
  font-size: 1.25rem;
}

.contact .contact-form .btn:hover {
  background-color: color-mix(in srgb, var(--accent-color), var(--contrast-color) 20%);
}


.map-section {
  padding: 0;
  margin: 0;
  background-color: transparent;
}

.map-container {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
   padding-left:30px;
  padding-right: 30px;
   
    padding-bottom: 20px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border-radius:1rem;
  display: block;
  padding-left:100px;
  padding-right: 100px;
 
}


@media (max-width: 768px) {
  .map-container {
    height: 300px;
    width:100%;
    padding-top: -30px;
    
  }
  .map-container iframe {
    padding-left: 0;
    padding-right: 0;
     border-radius:1rem;
     padding-top: -30px;
  }
 
}
.contact-form {
  background: #fff;
  padding: 20px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
  border-radius: 8px;
}

.contact-form h3 {
  font-size: 24px;
  margin-bottom: 20px;
  font-weight: 700;
}

.contact-form .form-control {
  width: 100%;
  padding: 10px 15px;
  font-size: 15px;
  border: 1px solid #ccc;
  border-radius: 6px;
  margin-bottom: 12px; 
}

.contact-form textarea.form-control {
  resize: vertical;
}

.contact-form .btn {
  background: #003B8B;
  color: #fff;
  padding: 10px 20px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.contact-form .btn:hover {
  background: #003B8B;
}


@media (max-width: 768px) {
  .contact-form {
    padding: 15px;
  }

  .contact-form h3 {
    font-size: 20px;
    margin-bottom: 16px;
  }

  .contact-form .form-control {
    padding: 3px;
    font-size: 14px;
    margin-bottom: -10px; 
  }

  .contact-form .btn {
    padding: 10px 25px;
    font-size: 14px;
  }
}


/* === General Container === */
.container {
  max-width: 1200px;
  margin: 40px auto;
  padding: 20px;
}

.page-header {
  background-color: var(--light-background, #f1f7fc);
  padding: 60px 0;
  text-align: center;
}

.page-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.page-header a {
  font-size: 0.95rem;
  margin: 0 8px;
}

/* === Grid Layout === */
.grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  flex-direction: row;
}

.left, .right {
  background-color: var(--surface-color, #ffffff);
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
}

.left {
  flex: 1;
  min-width: 280px;
  order: 2;
}

.right {
  flex: 2;
  min-width: 300px;
  order: 1;
}

.right h1 {
  font-size: 2rem;
  margin-bottom: 20px;
  font-weight: 700;
}

.right p {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 15px;
  color: #666666;
}

.right h3 {
  margin-top: 30px;
  font-size: 25px;
  margin-bottom: 10px;
  color: #000;
  font-weight: 700;
}

.right ul {
  padding-left: 20px;
}

.right ul li {
  margin-bottom: 10px;
  font-size: 1rem;
}

/* === Info Sections === */
.box h4 {
  font-size: 25px;
  margin-bottom: 15px;
  font-weight: 700;
  color: var(#000, #052d66);
}

.info-item {
  margin-bottom: 15px;
  font-size: 1rem;
}

.info-item i {
  color: #052d66;
  margin-right: 8px;
  font-size: 1rem;
}

.info-item .desc {
  font-size: 1rem;
  color: #666;
  margin-left: 22px;
  margin-top: 4px;
}

/* === Buttons === */
.service-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 25px;
}

.service-buttons button {
  background-color: #052d66;
  color: white;
  border: none;
  padding: 10px 18px;
  border-radius: 5px;
  font-size: 0.95rem;
  cursor: pointer;
  transition: 0.3s;
}

.service-buttons button:hover {
  background-color: #052d66;
}

/* === Additional Info Section === */
.additional-info {
  margin-top: 30px;
  background: #f0f4fa;
  padding: 20px;
  border-left: 4px solid #052d66;
  border-radius: 6px;
}

.additional-info h4 {
  margin-bottom: 12px;
  font-size: 18px;
}

.additional-info p {
  font-size: 16px;
  color: #444;
  margin-bottom: 10px;
}

/* === Responsive Adjustments === */
@media (max-width: 768px) {
  .grid {
    flex-direction: column;
  }

  .right {
    order: 1;
    width: 100%;
  }

  .left {
    order: 2;
    width: 100%;
  }
  .left {
    margin-top:-50px;
  }

  .right h1 {
    font-size: 1.7rem;
    margin-top:-60px;
  }

  .right h3 {
    font-size: 1.5rem;
  }
  .additional-info h4 {
    font-size: 1.5rem;
  }

  .right p,
  .right ul li,
  .info-item,
  .info-item .desc,
  .additional-info p {
    font-size: 1rem;
  }

  .service-buttons {
    flex-direction: column;
    gap: 10px;
  }

  .service-buttons button {
    width: 100%;
    font-size: 0.9rem;
  }

  
.info-item {
 
  font-size: 1rem;
}

.info-item i {
  
  font-size: 1rem;
}

.info-item .desc {
  font-size: 1rem;
  
}

}

/* === Desktop Layout for Grid === */
@media (min-width: 992px) {
  .grid {
    flex-direction: row;
  }

  .left {
    width: 35%;
  }

  .right {
    width: 65%;
  }
}

/* === Mobile View === */
@media (max-width: 768px) {
  .grid {
    flex-direction: column;
  }

  .right {
    order: 1;
  }

  .left {
   order: 2; 
  }

  .left,
  .right {
    box-shadow: none;
    padding-left: 5px;
    padding-right: 5px;
  }

  .page-header h2 {
    font-size: 2rem;
  }

  .service-buttons {
    justify-content: center;
    flex-direction: column;
    align-items: center;
  }

  .service-buttons button {
    font-size: 0.95rem;
    width: 100%;
    max-width: 300px;
    text-align: center;
  }

  .info-item {
    font-size: 1rem;
  }

  .info-item .desc {
    font-size: 1rem;
  }
}

/* WhatsApp Floating Icon Button */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 60px;
  right: 10px;
  background-color: #25d366;
  color: white;
  border-radius: 50%;
  text-align: center;
  font-size: 28px;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s;
}

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


@media (max-width: 768px) {
  .whatsapp-float {
    width: 50px;
    height: 50px;
    font-size: 24px;
    bottom: 65px;
    right: 10px;
  }
}

.form-container {
  max-width: 600px;
  width: 90%;
  margin: 40px auto;
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  box-sizing: border-box;
}

.form-container h2 {
  text-align: center;
  margin-bottom: 25px;
 font-weight: 700;
  font-size: 28px;
}

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

label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  color: #333;
}

label::after {
  content: " *";
  color: red;
  font-weight: bold;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="file"],
select {
  width: 100%;
  padding: 12px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 6px;
  box-sizing: border-box;
}

small {
  display: block;
  margin-top: 6px;
  color: #666;
}

.submit-btn {
  display: block;
  width: 100%;
  background-color: #003366;
  color: #fff;
  font-size: 18px;
  padding: 14px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.submit-btn:hover {
  background-color: #002244;
}


@media (max-width: 768px) {
  .form-container {
    width: 95%;
    padding: 20px;
  }

  .submit-btn {
    font-size: 16px;
    padding: 12px;
  }
}


/* Clientele Section */
.clientele-section {
  padding-top: -10px;
  margin-top: -30px;
  background-color: #ffffff;
}

.section-title h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 10px;
  font-weight: 600;
  position: relative;
  text-decoration: none;
  border-bottom: none;
}

.section-title h2::before {
  content: none !important;
  display: none !important;
}

.section-subtitle {
  text-align: center;
  font-size: 1.05rem;
  color: #444;
  max-width: 600px;
  margin: 0 auto 30px;
 
  padding: 0 15px;
}

.clientele-box {
  background-color: #f9f9f9;
  padding: 30px;
  border-radius: 12px;
  max-width: 100%;
  margin: 0 auto;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.clientele-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.clientele-list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 16px;
  font-size: 1rem;
  color: #333;

  padding-right: 10px;
}

.clientele-list li i {
  color: #003366;
  margin-right: 10px;
  font-size: 1.1rem;

  margin-top: 3px;
}

@media (max-width: 768px) {
  .clientele-section {
    padding: 20px 10px;
  }

  .section-title h2 {
    font-size: 1.6rem;
    margin-bottom: 8px;
  }

  .section-subtitle {
    font-size: 1rem;
    margin-bottom: 20px;
    padding: 0 10px;
  }

  .clientele-box {
    padding-left: 10px;
     padding-right: 10px;
    border-radius: 10px;
  }

  .clientele-list li {
    font-size: 0.95rem;
    margin-bottom: 12px;
   
  }

  .clientele-list li i {
    font-size: 1rem;
    margin-right: 5px;
  }
}

@media (max-width: 480px) {
  .clientele-box {
    padding: 10px 10px;
  }

  .section-title h2 {
    font-size: 1.4rem;
  }

  .clientele-list li {
    font-size: 0.92rem;
    margin-bottom: 10px;
  }
}

.clientele-section {
  padding-top: 0 !important;
  margin-top: 0 !important;
}

 
.hero {
  padding: 40px 0 60px 0; 
  background-color: #fff;
  margin-top: 0 !important;
}

@media (max-width: 767px) {
  .hero .container {
    padding-top: 0 !important;
    margin-top: 0 !important;
  }

  .hero-content h3 {
    font-size: 22px;
    line-height: 1.4;
    text-align: center;
  }

  .hero-content p {
    font-size: 14px;
    line-height: 1.6;
    text-align: justify;
    margin-top: 15px;
  }

  @media (max-width: 767px) {
  .hero-content p {
    letter-spacing: normal !important;
  }
}

  .hero-btns {
    text-align: center;
    margin-top: 20px;
  }

  .hero-image {
    margin-top: 30px;
    text-align: center;
  }

  
  .hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: -40px;
  }
}

@media (max-width: 767px) {
  .fix-spacing {
    letter-spacing: 0 !important;
    word-spacing: normal !important;
  }
}

@media (max-width: 767px) {
  .hero {
    margin: 0 !important;
    padding: 0 !important;
  }

  .hero img {
    display: block;
    width: 100%;
    height: auto;
    margin: 0 !important;
    padding: 0 !important;
  }


  .hero .row,
  .hero .col-lg-6 {
    margin: 0 !important;
    padding: 0 !important;
  }

 
  .hero-content {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
  }
}


