/* 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: "Nunito",  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: #111111; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #006cb4; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #444444;  /* The default color of the main navmenu links */
  --nav-hover-color: #006cb4; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #444444; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #006cb4; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

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

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

.accent-background {
  --background-color: #006cb4;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --accent-color: #ffffff;
  --surface-color: #0085df;
  --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 {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  padding: 20px 0;
}

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

.header .logo img {
  max-height: 36px;
  margin-right: 8px;
  /* filter: none; */
}

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

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

.header .header-social-links {
  padding: 0 0 0 15px;
}

.header .header-social-links a {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  padding-left: 10px;
  display: inline-block;
  transition: 0.3s;
  font-size: 16px;
}

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

.header .header-social-links a i {
  line-height: 0px;
}

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

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

  .header .header-social-links {
    order: 2;
    padding: 0 15px 0 0;
  }

  .header .navmenu {
    order: 3;
  }
}

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

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

  .navmenu li {
    position: relative;
  }

  .navmenu a {
    color: #2c3e50;
    font-size: 15px;
    font-weight: 500;
    padding: 0.5rem 0;
    text-decoration: none;
    position: relative;
    transition: all 0.3s ease;
  }

  .navmenu a::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -2px;
    left: 0;
    background-color: #006cb4;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
  }

  .navmenu a:hover::after,
  .navmenu a.active::after {
    transform: scaleX(1);
    transform-origin: left;
  }

  .navmenu a:hover,
  .navmenu a.active {
    color: #006cb4;
    background: none !important;
    box-shadow: none !important;
  }

  .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 {
    color: var(--nav-dropdown-color);
    padding: 0.8rem 0;
    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 {
    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 {
    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;
}

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

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

.footer .footer-about .logo img {
  max-height: 40px;
  margin-right: 6px;
}

.footer .footer-about .logo span {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 1px;
  font-family: var(--heading-font);
  color: var(--heading-color);
}

.footer .footer-about p {
  font-size: 14px;
  font-family: var(--heading-font);
}

.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 30%);
  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 {
  padding-right: 2px;
  font-size: 12px;
  line-height: 0;
}

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

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

.footer .footer-links ul a {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  display: inline-block;
  line-height: 1;
}

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

.footer .footer-contact p {
  margin-bottom: 5px;
}

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

.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 .copyright {
  padding: 25px 0;
  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: 999999;
  overflow: hidden;
  background: var(--background-color);
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #ffffff;
  border-color: var(--accent-color) transparent var(--accent-color) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

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

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

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-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: 25px 0;
  position: relative;
}

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

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

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

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

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

@media (max-width: 1199px) {

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

/*--------------------------------------------------------------
# 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;
  text-transform: uppercase;
  padding-bottom: 20px;
  position: relative;
}

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

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

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .inner-title {
  font-size: 2.75rem;
  font-weight: 700;
  margin: 30px 0;
}

@media (min-width: 991px) {
  .about .inner-title {
    max-width: 65%;
    margin: 0 0 80px 0;
  }
}

.about .our-story {
  padding: 40px;
  background-color: color-mix(in srgb, var(--default-color), transparent 96%);
}

@media (min-width: 991px) {
  .about .our-story {
    padding-right: 35%;
  }
}

.about .our-story h4 {
  text-transform: uppercase;
  font-size: 1.1rem;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.about .our-story h3 {
  font-size: 2.25rem;
  font-weight: 700;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

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

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

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

.about ul i {
  font-size: 1.25rem;
  margin-right: 0.5rem;
  line-height: 1.2;
  color: var(--accent-color);
}

.about .watch-video i {
  font-size: 2rem;
  transition: 0.3s;
  color: var(--accent-color);
}

.about .watch-video a {
  font-weight: 600;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-left: 8px;
  transition: 0.3s;
}

.about .watch-video:hover a {
  color: var(--accent-color);
}

.about .about-img {
  min-height: 400px;
  position: relative;
}

@media (min-width: 992px) {
  .about .about-img {
    position: absolute;
    top: 0;
    right: 0;
    min-height: 600px;
  }
}




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

.custom-card {
  border: 1.5px solid rgba(0, 108, 180, 0.2);
  border-radius: 16px;
  background-color: #ffffff;
  transition: all 0.3s ease-in-out;
  color: #333;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}




.custom-card:hover {
  transform: translateY(-10px);
  border: 2px solid #006cb4;
  background-color: #ffffff !important;
}

.custom-card .card-title {
  color: #004d40;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.custom-card .card-text {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.5;
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .service-item {
  background-color: var(--surface-color);
  box-shadow: 0px 5px 90px 0px rgba(0, 0, 0, 0.1);
  height: 100%;
  padding: 60px 30px;
  text-align: center;
  transition: 0.3s;
  border-radius: 5px;
}

.services .service-item .icon {
  margin: 0 auto;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: ease-in-out 0.3s;
  position: relative;
}

.services .service-item .icon i {
  font-size: 36px;
  transition: 0.5s;
  position: relative;
}

.services .service-item .icon svg {
  position: absolute;
  top: 0;
  left: 0;
}

.services .service-item .icon svg path {
  transition: 0.5s;
  fill: color-mix(in srgb, var(--default-color), transparent 95%);
}

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

.services .service-item p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.services .service-item:hover {
  box-shadow: 0px 5px 35px 0px rgba(0, 0, 0, 0.1);
}

.services .service-item.item-cyan i {
  color: #0dcaf0;
}

.services .service-item.item-cyan:hover .icon i {
  color: #fff;
}

.services .service-item.item-cyan:hover .icon path {
  fill: #0dcaf0;
}

.services .service-item.item-orange i {
  color: #fd7e14;
}

.services .service-item.item-orange:hover .icon i {
  color: #fff;
}

.services .service-item.item-orange:hover .icon path {
  fill: #fd7e14;
}

.services .service-item.item-teal i {
  color: #20c997;
}

.services .service-item.item-teal:hover .icon i {
  color: #fff;
}

.services .service-item.item-teal:hover .icon path {
  fill: #20c997;
}

.services .service-item.item-red i {
  color: #df1529;
}

.services .service-item.item-red:hover .icon i {
  color: #fff;
}

.services .service-item.item-red:hover .icon path {
  fill: #df1529;
}

.services .service-item.item-indigo i {
  color: #6610f2;
}

.services .service-item.item-indigo:hover .icon i {
  color: #fff;
}

.services .service-item.item-indigo:hover .icon path {
  fill: #6610f2;
}

.services .service-item.item-pink i {
  color: #f3268c;
}

.services .service-item.item-pink:hover .icon i {
  color: #fff;
}

.services .service-item.item-pink:hover .icon path {
  fill: #f3268c;
}

.service-item {
  border: 1.5px solid rgba(0, 108, 180, 0.2);
  border-radius: 30px;
  padding: 20px;
  transition: all 0.3s ease-in-out;
  background-color: white;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

/* Hover effect */
.service-item:hover {
  transform: translateY(-8px);
  border-color: #006cb4;
  box-shadow: 0 8px 20px rgba(0, 108, 180, 0.2);
}

/*--------------------------------------------------------------
# Clients Section => Why Choose US
--------------------------------------------------------------*/
.clients .clients-wrap {
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-left: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
}

.clients .client-logo {
  background-color: var(--surface-color);
  display: flex;
  justify-content: center;
  align-items: center;
  border-right: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  overflow: hidden;
}

.clients .client-logo img {
  padding: 50px;
  max-width: 80%;
  transition: 0.3s;
}

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

.clients .client-logo:hover img {
  transform: scale(1.1);
}

/* Optional: Custom styling for Why Choose Us section if needed */
.why-us {
  background-color: #f7f9fc;
  padding: 60px 0;
}

.why-box {
  background: #fff;
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0px 0 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease-in-out;
}

.why-box:hover {
  transform: translateY(-10px);
}

.icon-box {
  text-align: center;
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  transition: 0.3s ease-in-out;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
}

.icon-box i {
  font-size: 2rem;
  color: #0d6efd;
  margin-bottom: 15px;
}

.icon-box h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

.icon-box p {
  font-size: 14px;
  color: #555;
}

/*--------------------------------------------------------------
# Comment Form Section
--------------------------------------------------------------*/
.comment-form {
  padding-top: 10px;
}

.comment-form form {
  background-color: var(--surface-color);
  margin-top: 30px;
  padding: 30px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.comment-form form h4 {
  font-weight: bold;
  font-size: 22px;
}

.comment-form form p {
  font-size: 14px;
}

.comment-form form input {
  background-color: var(--surface-color);
  color: var(--default-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 70%);
  font-size: 14px;
  border-radius: 4px;
  padding: 10px 10px;
}

.comment-form form input:focus {
  color: var(--default-color);
  background-color: var(--surface-color);
  box-shadow: none;
  border-color: var(--accent-color);
}

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

.comment-form form textarea {
  background-color: var(--surface-color);
  color: var(--default-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 70%);
  border-radius: 4px;
  padding: 10px 10px;
  font-size: 14px;
  height: 120px;
}

.comment-form form textarea:focus {
  color: var(--default-color);
  box-shadow: none;
  border-color: var(--accent-color);
  background-color: var(--surface-color);
}

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

.comment-form form .form-group {
  margin-bottom: 25px;
}

.comment-form form .btn-primary {
  border-radius: 4px;
  padding: 10px 20px;
  border: 0;
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

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

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact {
  padding-top: 0;
}

.contact .info {
  background-color: var(--surface-color);
  padding: 40px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.contact .info h3 {
  font-weight: 600;
  font-size: 24px;
}

.contact .info p {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 30px;
  font-size: 15px;
}

.contact .info-item+.info-item {
  padding-top: 20px;
  margin-top: 20px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.contact .info-item i {
  font-size: 24px;
  color: var(--accent-color);
  transition: all 0.3s ease-in-out;
  margin-right: 20px;
}

.contact .info-item h4 {
  padding: 0;
  font-size: 18px;
  line-height: 24px;
  font-weight: 600;
  margin-bottom: 5px;
}

.contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.contact .php-email-form {
  width: 100%;
}

.contact .php-email-form .form-group {
  padding-bottom: 8px;
}

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

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

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

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email] {
  height: 48px;
  padding: 10px 15px;
}

.contact .php-email-form textarea {
  padding: 10px 12px;
  height: 290px;
}

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

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

/*--------------------------------------------------------------
# Widgets
--------------------------------------------------------------*/
.widgets-container {
  background-color: var(--surface-color);
  padding: 30px;
  margin: 60px 0 30px 0;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.widget-title {
  color: var(--heading-color);
  font-size: 20px;
  font-weight: 700;
  padding: 0;
  margin: 0 0 20px 0;
}

.widget-item {
  margin-bottom: 40px;
}

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

.blog-author-widget img {
  max-width: 160px;
}

.blog-author-widget h4 {
  font-weight: 600;
  font-size: 24px;
  margin: 15px 0 0 0;
  padding: 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.blog-author-widget .social-links {
  margin: 5px 0;
}

.blog-author-widget .social-links a {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
  margin: 0 3px;
  font-size: 18px;
}

.blog-author-widget .social-links a:hover {
  color: var(--accent-color);
}

.blog-author-widget p {
  font-style: italic;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 10px 0 0 0;
}

.search-widget form {
  background: var(--background-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 75%);
  padding: 3px 10px;
  position: relative;
  border-radius: 50px;
  transition: 0.3s;
}

.search-widget form input[type=text] {
  border: 0;
  padding: 4px 10px;
  border-radius: 4px;
  width: calc(100% - 40px);
  background-color: var(--background-color);
  color: var(--default-color);
}

.search-widget form input[type=text]:focus {
  outline: none;
}

.search-widget form button {
  background: none;
  color: var(--default-color);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  font-size: 16px;
  padding: 0 16px;
  transition: 0.3s;
  line-height: 0;
}

.search-widget form button i {
  line-height: 0;
}

.search-widget form button:hover {
  color: var(--accent-color);
}

.search-widget form:is(:focus-within) {
  border-color: var(--accent-color);
}

.recent-posts-widget .post-item {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

.recent-posts-widget .post-item:last-child {
  margin-bottom: 0;
}

.recent-posts-widget .post-item h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 5px;
}

.recent-posts-widget .post-item h4 a {
  color: var(--default-color);
  transition: 0.3s;
}

.recent-posts-widget .post-item h4 a:hover {
  color: var(--accent-color);
}

.recent-posts-widget .post-item time {
  display: block;
  font-style: italic;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.tags-widget ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tags-widget ul li {
  display: inline-block;
}

.tags-widget ul a {
  background-color: color-mix(in srgb, var(--default-color), transparent 94%);
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  border-radius: 50px;
  font-size: 14px;
  padding: 5px 15px;
  margin: 0 6px 8px 0;
  display: inline-block;
  transition: 0.3s;
}

.tags-widget ul a:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.tags-widget ul a span {
  padding-left: 5px;
  color: color-mix(in srgb, var(--default-color), transparent 60%);
  font-size: 14px;
}

/* Partner Strips */
.partner-strip {
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  height: 60px;
}

.logos-track {
  animation: scroll-logos 40s linear infinite;
}

.logos img {
  height: 60px;
  margin: 0 40px;
  opacity: 1;
  transition: opacity 0.3s ease;
}

.logos img:hover {
  opacity: 1;
}

@keyframes scroll-logos {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

:root {
      --primary-color: rgb(25, 135, 84);
      --primary-color-light: rgba(25, 135, 84, 0.1);
      --primary-color-dark: rgba(25, 135, 84, 0.9);
      --text-color: #333;
      --light-text: #fff;
      --transition: all 0.3s ease;
    }

    /* Global Styles */
    body {
      font-family: 'Roboto', sans-serif;
      color: var(--text-color);
      overflow-x: hidden;
    }

    .section {
      padding: 80px 0;
      position: relative;
    }

    /* Enhanced Header Styles */
    .header {
      background: rgba(255, 255, 255, 0.98);
      box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
      padding: 20px 0;
    }

    .header .logo-img {
      height: 40px;
      filter: brightness(0);
      transition: all 0.3s ease;
    }

    .header .navmenu {
      margin-left: auto;
    }

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

    .header .navmenu a {
      color: #2c3e50;
      font-size: 15px;
      font-weight: 500;
      padding: 0.5rem 0;
      text-decoration: none;
      position: relative;
      transition: all 0.3s ease;
      background: none !important;
      box-shadow: none !important;
    }

    .header .navmenu a::after {
      content: '';
      position: absolute;
      width: 100%;
      height: 2px;
      bottom: -2px;
      left: 0;
      background-color: #006cb4;
      transform: scaleX(0);
      transform-origin: right;
      transition: transform 0.3s ease;
    }

    .header .navmenu a:hover::after,
    .header .navmenu a.active::after {
      transform: scaleX(1);
      transform-origin: left;
    }

    .header .navmenu a:hover,
    .header .navmenu a.active {
      color: #006cb4;
      background: none !important;
      box-shadow: none !important;
    }

    .header .navmenu a.active {
      background: none !important;
      box-shadow: none !important;
    }

    .header .navmenu ul li {
      padding: 0;
      margin: 0;
    }

    @media (max-width: 1199px) {
      .header .navmenu a {
        padding: 0.8rem 0;
      }
      
      .header .navmenu a::after {
        bottom: 0;
      }
      
      .header .navmenu ul {
        gap: 1rem;
      }
    }

    /* Enhanced Feature Box Styles */
    .feature-box {
      background: rgba(255,255,255,0.1);
      backdrop-filter: blur(10px);
      border: 1px solid rgba(255,255,255,0.2);
      transition: all 0.3s ease;
      overflow: hidden;
    }

    .feature-box:hover {
      transform: translateY(-5px);
      border: 2px solid #006cb4;
      box-shadow: 0 10px 20px rgba(0, 108, 180, 0.2);
      background: rgba(255,255,255,0.15);
    }

    .feature-box i {
      color: var(--primary-color);
      transition: all 0.3s ease;
    }

    .feature-box:hover i {
      transform: scale(1.1);
      color: #fff !important;
    }

    .feature-box h5,
    .feature-box p {
      color: #fff;
      transition: all 0.3s ease;
    }

    .feature-box:hover h5,
    .feature-box:hover p {
      transform: translateY(-2px);
    }

    /* Service Items Enhancement */
    .service-item {
      border-radius: 15px;
      overflow: hidden;
      transition: var(--transition);
      background: #ffffff;
      border: 1.5px solid rgba(0, 108, 180, 0.15);
    }

    .service-item:hover {
      transform: translateY(-5px);
      border: 2px solid #006cb4;
      box-shadow: 0 10px 20px rgba(0, 108, 180, 0.1);
    }

    .service-item h3 {
      color: var(--primary-color);
      font-size: 1.5rem;
      margin-bottom: 1rem;
    }

    /* Partner Logo Styles */
    .logos-track {
      animation: scroll 30s linear infinite;
    }

    .logos img {
      height: 40px;
      margin: 0 20px;
      transition: var(--transition);
      filter: brightness(0) invert(1);
    }

    .logos img:hover {
      transform: scale(1.1);
      filter: brightness(0) invert(1) drop-shadow(0 0 5px rgba(255,255,255,0.5));
    }

    @keyframes scroll {
      0% { transform: translateX(0); }
      100% { transform: translateX(-100%); }
    }

    /* Testimonial Styles */
    .testimonial-item {
      background: #fff;
      border-radius: 15px;
      padding: 2rem;
      margin: 1rem 0;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
      transition: var(--transition);
    }

    .testimonial-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
      background: linear-gradient(135deg, rgba(0,108,180,0.03) 0%, rgba(0,108,180,0.06) 100%) !important;
    }

    /* Footer Enhancement */
    .footer {
      background: #1a1a1a;
      color: var(--light-text);
      padding-top: 80px;
    }

    .footer-links a {
      color: var(--light-text) !important;
      transition: var(--transition);
    }

    .footer-links a:hover {
      color: var(--primary-color) !important;
      padding-left: 5px;
    }

    /* Responsive Adjustments */
    @media (max-width: 768px) {
      .section {
        padding: 60px 0;
      }

      .display-4 {
        font-size: 2.5rem;
      }

      .logos img {
        height: 30px;
        margin: 0 10px;
      }

      .feature-box {
        margin-bottom: 1rem;
      }
    }

    /* Animation Classes */
    .fade-up {
      opacity: 0;
      transform: translateY(20px);
      transition: opacity 0.6s ease, transform 0.6s ease;
    }

    .fade-up.visible {
      opacity: 1;
      transform: translateY(0);
    }

    /* Custom Scrollbar */
    ::-webkit-scrollbar {
      width: 10px;
    }

    ::-webkit-scrollbar-track {
      background: #f1f1f1;
    }

    ::-webkit-scrollbar-thumb {
      background: var(--primary-color);
      border-radius: 5px;
    }

    ::-webkit-scrollbar-thumb:hover {
      background: var(--primary-color-dark);
    }

/* Box Styling for All Components */

/* Service Boxes */
.service-item {
    background: #ffffff;
    border: 1.5px solid rgba(0, 108, 180, 0.15);
    border-radius: 15px;
    padding: 2rem;
    height: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.service-item:hover {
    transform: translateY(-5px);
    border: 2px solid #006cb4;
    box-shadow: 0 10px 20px rgba(0, 108, 180, 0.1);
}

.service-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    gap: 1rem;
}

.service-header i {
    font-size: 2rem;
    color: #006cb4;
    transition: all 0.3s ease;
}

.service-header h3 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
}

.service-item p {
    color: #666;
    line-height: 1.6;
    text-align: justify;
    margin-bottom: 0;
}

/* Feature Boxes */
.feature-box {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-5px);
    border: 4px solid #006cb4;
    box-shadow: 0 10px 20px rgba(0, 93, 180, 0.2)
}

.feature-box i {
    font-size: 2rem;
    color: #006cb4;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.feature-box:hover i {
    transform: scale(1.1);
}

.feature-box h5 {
    color: #ffffff;
    font-size: 1.25rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.feature-box p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0;
    font-size: 0.95rem;
}

/* Feature Cards */
.feature-card {
    background: #ffffff;
    border: 1.5px solid rgba(0, 108, 180, 0.15);
    border-radius: 12px;
    padding: 2rem;
    height: 100%;
    transition: all 0.3s ease;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.feature-card:hover {
    transform: translateY(-5px);
    border: 2px solid #006cb4;
    box-shadow: 0 10px 20px rgba(0, 108, 180, 0.1);
}

.feature-icon {
    margin-bottom: 1.5rem;
}

.feature-icon img {
    height: 70px;
    transition: all 0.3s ease;
}

.feature-card h5 {
    color: #333;
    font-size: 1.25rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.feature-text {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Stats Cards */
.stats-card {
    background: #ffffff;
    border: 1.5px solid rgba(0, 108, 180, 0.15);
    border-radius: 12px;
    padding: 2rem;
    height: 100%;
    transition: all 0.3s ease;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.stats-card:hover {
    transform: translateY(-5px);
    border: 2px solid #006cb4;
    box-shadow: 0 10px 20px rgba(0, 108, 180, 0.1);
}

.stats-card .counter {
    color: #006cb4;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stats-card h5 {
    color: #333;
    font-size: 1.25rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.stats-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Testimonial Cards */
.testimonial-card {
    background: #ffffff;
    border: 1.5px solid rgba(0, 108, 180, 0.15);
    border-radius: 12px;
    padding: 2rem;
    height: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border: 2px solid #006cb4;
    border-color: rgba(0,108,180,0.3);
    box-shadow: 0 5px 15px rgba(0,108,180,0.08);
}

.testimonial-author {
    margin-bottom: 1.5rem;
}

.testimonial-author h4 {
    color: #006cb4;
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
    font-weight: 600;
}

.testimonial-author .company-name {
    color: #666;
    font-size: 0.9rem;
    font-style: italic;
    margin: 0;
}

.testimonial-content p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 0;
}

/* Partner Logo Strip */
.partner-strip {
    background-color: #006cb4;
    padding: 2rem 0;
    overflow: hidden;
}

.logos-track {
    display: flex;
    animation: scroll 40s linear infinite;
}

.logos {
    display: flex;
    align-items: center;
}

.logos img {
    height: 60px;
    margin: 0 40px;
    filter: brightness(0) invert(1);
    transition: all 0.3s ease;
}

.logos img:hover {
    transform: scale(1.1);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .service-item,
    .feature-card,
    .stats-card,
    .testimonial-card {
        padding: 1.5rem;
    }

    .service-header i {
        font-size: 1.75rem;
    }

    .service-header h3 {
        font-size: 1.25rem;
    }

    .feature-icon img {
        height: 50px;
    }

    .stats-card .counter {
        font-size: 2rem;
    }

    .logos img {
        height: 40px;
        margin: 0 20px;
    }
}

/* Unified Box Styling */
.feature-card, .stats-card, .service-item, .testimonial-card {
  transition: all 0.3s ease;
  background: #ffffff;
  border: 1.5px solid rgba(0, 108, 180, 0.15);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  cursor: pointer;
}

.feature-card:hover, .stats-card:hover, .service-item:hover, .testimonial-card:hover {
  transform: translateY(-5px);
  border: 2px solid #006cb4;
  box-shadow: 0 10px 20px rgba(0, 108, 180, 0.1);
}

.feature-icon img {
  height: 70px;
  transition: all 0.3s ease;
  filter: brightness(0);
}

.feature-text, .testimonial-content p, .service-item p {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.6;
  text-align: justify;
}

.feature-card h5, .stats-card h5, .service-item h3 {
  color: #333;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.counter {
  font-size: 2.5rem;
  font-weight: 700;
  color: rgb(25, 135, 84);
  margin-bottom: 0.5rem;
}

/* Update all success button colors */
.btn-success {
    background-color: #006cb4 !important;
    border-color: #006cb4 !important;
}

.btn-success:hover {
    background-color: #0085df !important;
    border-color: #0085df !important;
}

.text-success {
    color: #006cb4 !important;
}

.bg-success {
    background-color: #006cb4 !important;
}





/* Sidebar Styling */
.navmenu {
  background: linear-gradient(to right, rgba(0, 108, 180, 0.02), rgba(0, 108, 180, 0.05));
  border-right: 1px solid rgba(0, 108, 180, 0.1);
}

.navmenu ul li a {
  color: #2c3e50;
  transition: all 0.3s ease;
  position: relative;
  padding: 12px 20px;
  border-radius: 6px;
  margin: 4px 0;
}

.navmenu ul li a:hover {
  color: #006cb4;
  background: rgba(0, 108, 180, 0.08);
}

.navmenu ul li a.active {
  color: #ffffff;
  background: linear-gradient(135deg, #006cb4, #0085df);
  box-shadow: 0 4px 12px rgba(0, 108, 180, 0.2);
}

.navmenu .dropdown ul {
  background: #ffffff;
  box-shadow: 0 5px 20px rgba(0, 108, 180, 0.1);
  border: 1px solid rgba(0, 108, 180, 0.1);
}

.navmenu .dropdown ul li {
  border-bottom: 1px solid rgba(0, 108, 180, 0.05);
}

.navmenu .dropdown ul li:last-child {
  border-bottom: none;
}

.navmenu .dropdown ul a {
  color: #2c3e50;
  background: transparent;
  padding: 12px 20px;
}

.navmenu .dropdown ul a:hover {
  color: #006cb4;
  background: rgba(0, 108, 180, 0.05);
}


/* Mobile Navigation */
@media (max-width: 1199px) {
  .navmenu {
    background: #ffffff;
    box-shadow: 0 0 30px rgba(0, 108, 180, 0.1);
  }

  .mobile-nav-active .navmenu {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
  }

  .navmenu ul {
    background: linear-gradient(135deg, rgba(0, 108, 180, 0.02), rgba(0, 108, 180, 0.05));
    border: 1px solid rgba(0, 108, 180, 0.1);
    border-radius: 12px;
  }

  .navmenu ul li a {
    margin: 2px 15px;
  }

  .navmenu .dropdown ul {
    background: rgba(255, 255, 255, 0.95);
    margin: 15px;
    border-radius: 8px;
  }
}

/* Header Navigation Links */
.header .navmenu a::after {
  background-color: #006cb4;
}

.header .navmenu a:hover,
.header .navmenu a.active {
  color: #006cb4;
}

/* Dropdown Navigation */
.navmenu .dropdown-active {
  background: rgba(0, 108, 180, 0.03);
}

.navmenu .dropdown .dropdown-active {
  background: linear-gradient(135deg, rgba(0, 108, 180, 0.05), rgba(0, 133, 223, 0.05));
}

/* Navigation Icons */
.navmenu a i {
  color: #006cb4;
  background: rgba(0, 108, 180, 0.1);
}

.navmenu a:hover i,
.navmenu .active i {
  background: #006cb4;
  color: #ffffff;
}




/* Navigation Menu */
.header .navmenu {
  margin-left: auto;
  margin-right: 2rem;
}

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

.header .navmenu a {
  color: #2c3e50;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.3px;
  padding: 0.5rem 0;
  text-decoration: none;
  position: relative;
  transition: all 0.3s ease;
}

.header .navmenu a::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #006cb4;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

.header .navmenu a:hover::after,
.header .navmenu a.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header .navmenu a:hover,
.header .navmenu a.active {
  color: #006cb4;
}

.header .navmenu a.active {
  font-weight: 600;
}

.header .navmenu a.active::after {
  transform: scaleX(1);
  opacity: 1;
}

/* Social Links */
.header-social-links {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.header-social-links a {
  color: #6c757d;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 32px;
  border-radius: 50%;
  transition: all 0.3s ease;
  background: rgba(108, 117, 125, 0.05);
}

.header-social-links a:hover {
  transform: translateY(-2px);
}

.header-social-links a.linkedin:hover {
  color: #0077b5;
  background: rgba(0, 119, 181, 0.1);
}

.header-social-links a.facebook:hover {
  color: #1877f2;
  background: rgba(24, 119, 242, 0.1);
}

.header-social-links a.twitter:hover {
  color: #000000;
  background: rgba(0, 0, 0, 0.1);
}

.header-social-links a.instagram:hover {
  color: #e4405f;
  background: rgba(228, 64, 95, 0.1);
}



/* Mobile Navigation Toggle */
.mobile-nav-toggle {
  display: none;
  font-size: 28px;
  cursor: pointer;
  position: absolute;
  top: 15px;
  right: 0px;
  z-index: 10001;
  background: transparent;
  border: none;
}

/* Responsive Styles */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    display: block;
  }

  .header .navmenu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    bottom: 0;
    transition: 0.3s;
    z-index: 9997;
    background: #fff;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
    padding: 80px 20px 20px;
  }

  .header .navmenu ul {
    flex-direction: column;
    gap: 1.5rem;
  }

  .header .navmenu.show {
    right: 0;
  }

  .header-social-links {
    margin-left: auto;
  }

  .header-social-links a {
    font-size: 15px;
    width: 30px;
    height: 30px;
  }

  .navmenu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: #ffffff;
    z-index: 9998;
    padding: 80px 20px 20px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
  }

  body.mobile-nav-active .navmenu {
    right: 0;
  }

  .navmenu ul {
    flex-direction: column;
    gap: 2rem;
    list-style: none;
  }
}

@media (max-width: 374x) {
  .mobile-nav-toggle {
    right: 0px;
  }
  .logo-img{
    height:10px !important;
    width: 5x !important;
  }
}

/* ✅ Ensure mobile nav shows on toggle */
body.mobile-nav-active .navmenu > ul {
  display: block !important;
}


/* Force hamburger to be above and spaced correctly on small screens */
@media (max-width: 767px) {
  .mobile-nav-toggle {
    position: absolute;
    top: 12px;
    right: 0px;
    z-index: 9999;
    font-size: 28px;
  }

  .header .logo-img {
    height: 28px !important; /* Smaller logo for smaller screens */
  }
}

