: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: "Roboto", 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: #384046; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #003064; /* 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: #fff; /* The default color of the main navmenu links */
  --nav-hover-color: #fff; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #003064; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #003064; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #ffffff; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #ffffff; /* 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: #f7fbfe;
  --surface-color: #ffffff;
}
.dark-background {
  --background-color: #1d222d;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #31394c;
  --contrast-color: #ffffff;
}
/* Smooth scroll */ :root {
  scroll-behavior: smooth;
}
/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}
a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}
a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}
h1, h2, h3, h4, h5, h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}
/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}
.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}
.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}
.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}
@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  color: var(--default-color);
  /*background-color:#003064;*/
  background: linear-gradient(90deg, #003064 0%, #004a8f 50%, #003064 100%);
  padding: 15px 0;
  transition: all 0.5s;
  z-index: 997;
}
.header .logo {
  line-height: 1;
}
.header .logo img {
  max-height: 65px;
  margin-right: 8px;
}
.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
}
.header .header-social-links {
  padding-right: 15px;
}
.header .header-social-links a {
  color: fff;
  display: inline-block;
  text-align: center;
  transition: 0.3s;
  font-size: 14px;
  margin: -1px;
}
.header .btn-get-started {
  background: linear-gradient(135deg, #ffad33, #ff8c1a);
  color: #fff;
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 15px;
  margin: 30px 0 0 0;
  border-radius: 4px;
  transition:
    transform 0.3s ease, box-shadow 0.3s ease, filter 0.3s ease;
  text-transform: none;
}
.header .btn-get-started:hover {
  /* SAME gradient â€“ no color change */
  background: linear-gradient(135deg, #ffad33, #ff8c1a);
  /* Premium interaction */
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 140, 26, 0.35);
  filter: brightness(1.05);
  color: #fff;
}
.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 .header-social-links {
    order: 2;
  }
  .header .navmenu {
    order: 3;
  }
}
.scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}
/* 
/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background-color: var(--background-color);
  font-size: 14px;
  padding-bottom: 50px;
  position: relative;
}
.footer2 {
  background: linear-gradient(90deg, #003064 0%, #004a8f 50%, #003064 100%);
  padding: 20px 0;
  color: #f4f4f4;
}
.footer .footer-top {
  padding-top: 50px;
}
.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 {
  color: var(--heading-color);
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 1px;
  font-family: var(--heading-font);
}
.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 50%);
  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 20%);
  display: inline-block;
  line-height: 1;
}
.footer .footer-links ul a:hover {
  color: var(--accent-color);
}
.footer .footer-contact p {
  margin-bottom: 5px;
}
.footer .copyright {
  padding-top: 25px;
  padding-bottom: 25px;
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
}
.footer .copyright p {
  margin-bottom: 0;
}
.footer .credits {
  margin-top: 6px;
  font-size: 13px;
}
/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 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: 40px 0;
  scroll-margin-top: 84px;
  overflow: clip;
}
@media (max-width: 1199px) {
  section, .section {
    scroll-margin-top: 76px;
  }
}
/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
}
.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
  color: #f59e2d;
}
.section-title h2:before {
  content: "";
  position: absolute;
  display: block;
  width: 160px;
  height: 1px;
  background: color-mix(in srgb, var(--default-color), transparent 60%);
  left: 0;
  right: 0;
  bottom: 1px;
  margin: auto;
}
.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 60px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}
.section-title p {
  margin-bottom: 0;
  color: var(--default-color);
  font-size: 18px;
}
/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero-video-section {
  width: 100%;
  height: auto;
  overflow: hidden;
  margin-top: -40px;
}
.hero-video {
  width: 100%;
  display: block;
}
/* Mobile */
@media (max-width: 768px) {
  .hero-video-section {
   /* aspect-ratio: 16 / 9;*/
    overflow: hidden;
    /*margin-top: -65px;*/
  }
  .hero-video-section video {
    width: 100%;
    height: 100%;
    object-fit: contain; /* ? black space unavoidable */
    display: block;
  }
}
/*--------------------------------------------------------------
# What We Do Section
--------------------------------------------------------------*/
.what-we-do .why-box {
  color: var(--contrast-color);
  background: var(--accent-color);
  padding: 30px;
}
.what-we-do .why-box h3 {
  color: var(--contrast-color);
  font-weight: 700;
  font-size: 34px;
  margin-bottom: 30px;
}
.what-we-do .why-box p {
  margin-bottom: 30px;
}
.what-we-do .why-box .more-btn {
  display: inline-block;
  background: color-mix(in srgb, var(--contrast-color), transparent 85%);
  padding: 8px 40px 10px 40px;
  color: var(--contrast-color);
  transition: all ease-in-out 0.4s;
  border-radius: 50px;
}
.what-we-do .why-box .more-btn i {
  font-size: 14px;
}
.what-we-do .why-box .more-btn:hover {
  color: var(--accent-color);
  background: var(--surface-color);
}
.what-we-do .icon-box {
  background-color: var(--surface-color);
  text-align: center;
  padding: 40px 30px;
  width: 100%;
  height: 100%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  cursor: pointer;
  border-radius: 5px;
}
.what-we-do .icon-box i {
  color: var(--accent-color);
  margin-bottom: 30px;
  font-size: 32px;
  margin-bottom: 30px;
  background: color-mix(in srgb, var(--accent-color), transparent 95%);
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  transition: 0.3s;
}
.what-we-do .icon-box h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 30px 0;
}
.what-we-do .icon-box p {
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}
.what-we-do .icon-box:hover i {
  color: var(--contrast-color);
  background: var(--accent-color);
}
.what-we-do .icon-box:hover {
  border: 1px solid #003064;
}
.what-we-do .icon-box:hover {
  border-color: #003064;
  transform: translateY(-8px);
  box-shadow: 0 18px 45px rgba(0, 48, 100, 0.18);
}
/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .about-content h3 {
  font-weight: 700;
  font-size: 26px;
}
.about .about-content ul {
  list-style: none;
  padding: 0;
}
.about .about-content ul li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
}
.about .about-content ul li:first-child {
  margin-top: 35px;
}
.about .about-content ul i {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  font-size: 22px;
  color: #fff;
  background: var(--accent-color);
  margin-right: 15px;
  line-height: 0;
  border-radius: 5px;
}
.about .about-content ul h4 {
  font-size: 18px;
  font-weight: 600;
}
.about .about-content ul p {
  font-size: 15px;
}
.about .about-content p:last-child {
  margin-bottom: 0;
}
/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about1 .about-content h3 {
  font-weight: 700;
  font-size: 26px;
}
.about1 .about-content ul {
  list-style: none;
  padding: 0;
}
.about1 .about-content ul li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
}
.about1 .about-content ul li:first-child {
  margin-top: 35px;
}
.about1 .about-content ul i {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  font-size: 22px;
  color: #fff;
  background: var(--accent-color);
  margin-right: 15px;
  line-height: 0;
  border-radius: 5px;
}
.about1 .about-content ul h4 {
  font-size: 18px;
  font-weight: 600;
}
.about1 .about-content ul p {
  font-size: 15px;
}
.about1 .about-content p:last-child {
  margin-bottom: 0;
}
.about1 .section-title {
  text-align: left;
  padding-bottom: 60px;
  position: relative;
}
.about1 .section-title h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
  color: #f59e2d;
}
/* Thin line */
.about1 .section-title h2::before {
  content: "";
  position: absolute;
  display: block;
  width: 160px;
  height: 1px;
  background: color-mix(in srgb, var(--default-color), transparent 60%);
  left: 0; /* LEFT aligned */
  bottom: 1px;
}
/* Accent line */
.about1 .section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 60px;
  height: 3px;
  background: var(--accent-color);
  left: 0; /* LEFT aligned */
  bottom: 0;
}
.about1 .section-title p {
  margin-bottom: 0;
  color: var(--default-color);
  font-size: 18px;
  text-align: justify;
}
.about1 .section-title h2 {
  display: inline-block;
  position: relative;
  font-size: 32px;
  font-weight: 700;
  padding-bottom: 16px;
  margin-bottom: 20px;
  color: #f59e2d;
}
/* Grey base line */
.about1 .section-title h2::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 4px; /* SAME baseline reference */
  width: 160px;
  height: 1px;
  background: #b5b5b5;
}
/* Blue accent line */
.about1 .section-title h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 3px; /* overlaps perfectly */
  width: 70px;
  height: 3px;
  background: var(--accent-color);
}
/* Mission bullet styling */
.mission-points {
  list-style: none;
  padding-left: 0;
  max-width: 100%;
}
.mission-points li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 14px;
  font-family: var(--default-font);
  font-size: 18px;
  color: #333;
}
.mission-points li i {
  color: var(--accent-color);
  margin-right: 10px;
  font-size: 18px;
}
/* Mission table styling */
.mission-table {
  width: 100%;
}
.mission-table td {
  font-family: var(--default-font);
  font-size: 18px;
  color: #333;
  padding: 12px 10px;
  vertical-align: top;
}
/* Icon column */
.mission-table .icon-cell {
  width: 40px;
  padding-right: 10px;
}
/* Icon styling */
.mission-table i {
  color: var(--accent-color);
  font-size: 18px;
  line-height: 1;
}
/* Title emphasis */
.mission-table strong {
  font-weight: 600;
}
/* Mission table – light alternative color */
.mission-table {
  width: 100%;
  border-collapse: collapse;
  background-color: #f9fafc; /* very light grey-blue */
  border-radius: 6px;
  overflow: hidden;
}
/* Table cells */
.mission-table td {
  padding: 12px 14px;
  font-family: var(--default-font);
  font-size: 18px;
  color: #333;
  vertical-align: top;
  border-bottom: 1px solid #e6eaf0; /* light divider */
}
/* Remove last border */
.mission-table tr:last-child td {
  border-bottom: none;
}
/* Icon column */
.mission-table .icon-cell {
  width: 40px;
  text-align: center;
}
/* Icon */
.mission-table i {
  color: var(--accent-color);
  font-size: 18px;
}
/*--------------------------------------------------------------
# Skills Section
--------------------------------------------------------------*/
.skills .progress {
  height: 60px;
  display: block;
  background: none;
  border-radius: 0;
}
.skills .progress .skill {
  color: var(--heading-color);
  padding: 0;
  margin: 0 0 6px 0;
  text-transform: uppercase;
  display: block;
  font-weight: 600;
  font-family: var(--heading-font);
}
.skills .progress .skill .val {
  float: right;
  font-style: normal;
}
.skills .progress-bar-wrap {
  background: color-mix(in srgb, var(--default-color), transparent 90%);
  height: 10px;
}
.skills .progress-bar {
  width: 1px;
  height: 10px;
  transition: 0.9s;
  background-color: var(--accent-color);
}
/*--------------------------------------------------------------
# Stats Section
--------------------------------------------------------------*/
.stats {
  padding: 10px 0;
}
.stats .stats-item {
  padding: 30px;
  width: 100%;
}
.stats .stats-item span {
  color: var(--heading-color);
  font-size: 48px;
  display: block;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}
.stats .stats-item span:after {
  content: "";
  position: absolute;
  display: block;
  width: 25px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}
.stats .stats-item p {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  padding: 0;
  margin: 0;
  font-family: var(--heading-font);
  font-weight: 500;
}
/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .service-item {
  background-color: var(--surface-color);
  padding: 50px 30px;
  margin-top: 36px;
  transition: all ease-in-out 0.3s;
  position: relative;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  text-align: center;
}
.services .service-item .icon {
  background: var(--accent-color);
  color: var(--contrast-color);
  margin: 0;
  width: 72px;
  height: 72px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 28px;
  transition: ease-in-out 0.3s;
  position: absolute;
  top: -36px;
  left: calc(50% - 36px);
  border: 6px solid var(--background-color);
}
.services .service-item h3 {
  font-weight: 700;
  margin: 10px 0 15px 0;
  font-size: 22px;
  transition: ease-in-out 0.3s;
}
.services .service-item p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}
.services .service-item:hover {
  background: var(--background-color);
}
.services .service-item:hover h3 {
  color: var(--accent-color);
}
.services .service-item:hover .icon {
  background: var(--surface-color);
  border: 2px solid var(--accent-color);
}
.services .service-item:hover .icon i {
  color: var(--accent-color);
}
/*--------------------------------------------------------------
# Portfolio Section
--------------------------------------------------------------*/
.portfolio .portfolio-filters {
  padding: 0;
  margin: 0 auto 20px auto;
  list-style: none;
  text-align: center;
}
.portfolio .portfolio-filters li {
  cursor: pointer;
  display: inline-block;
  padding: 0;
  font-size: 16px;
  font-weight: 600;
  margin: 0 10px;
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
}
.portfolio .portfolio-filters li:hover, .portfolio .portfolio-filters li.filter-active {
  color: var(--accent-color);
}
.portfolio .portfolio-filters li:first-child {
  margin-left: 0;
}
.portfolio .portfolio-filters li:last-child {
  margin-right: 0;
}
@media (max-width: 575px) {
  .portfolio .portfolio-filters li {
    font-size: 14px;
    margin: 0 5px;
  }
}
.portfolio .portfolio-item {
  position: relative;
  cursor: pointer;
}
.portfolio .portfolio-item .portfolio-info {
  background-color: color-mix(in srgb, var(--surface-color), transparent 10%);
  opacity: 0;
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 0;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  padding: 15px;
}
.portfolio .portfolio-item .portfolio-info h4 {
  font-size: 18px;
  font-weight: 600;
  padding-right: 50px;
}
.portfolio .portfolio-item .portfolio-info p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 14px;
  margin-bottom: 0;
  padding-right: 50px;
}
.portfolio .portfolio-item .portfolio-info .preview-link, .portfolio .portfolio-item .portfolio-info .details-link {
  position: absolute;
  right: 50px;
  font-size: 24px;
  top: calc(50% - 14px);
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  transition: 0.3s;
  line-height: 0;
}
.portfolio .portfolio-item .portfolio-info .preview-link:hover, .portfolio .portfolio-item .portfolio-info .details-link:hover {
  color: var(--accent-color);
}
.portfolio .portfolio-item .portfolio-info .details-link {
  right: 14px;
  font-size: 28px;
}
.portfolio .portfolio-item:hover .portfolio-info {
  opacity: 1;
  bottom: 20px;
}
/* Always visible portfolio info */
.portfolio .portfolio-item {
  position: relative;
}
.portfolio .portfolio-info1 {
  position: absolute;
  /*left: 12px;*/
  /*bottom: 15px;*/
 bottom: 0px;
  width: 100%;
  max-width: calc(100%);
  background: rgba(0, 0, 0, 0.8);
  padding: 10px;
  color: #fff;
  z-index: 2;
}
/* Title */
.portfolio .portfolio-info1 h4 {
  font-size: 16px !important;
  font-weight: 600;
  color: #fff;
  margin-bottom: 5px;
}
/* Text */
.portfolio .portfolio-info1 p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}
/* Link icon */
.portfolio .portfolio-info1 .details-link {
  position: absolute;
  right: 15px;
  top: 15px;
  font-size: 24px;
  color: #fff;
}
.portfolio .portfolio-info1 .details-link:hover {
  color: var(--accent-color);
}
/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .testimonial-item {
  background-color: var(--surface-color);
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  box-sizing: content-box;
  padding: 30px;
  margin: 30px 15px;
  position: relative;
  height: 100%;
}
.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50px;
  margin-right: 15px;
}
.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  text-align: center;
}
.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin: 0;
}
.testimonials .testimonial-item .stars {
  margin: 10px 0;
}
.testimonials .testimonial-item .stars i {
  color: #ffc107;
  margin: 0 1px;
}
.testimonials .testimonial-item .quote-icon-left, .testimonials .testimonial-item .quote-icon-right {
  color: color-mix(in srgb, var(--accent-color), transparent 50%);
  font-size: 26px;
  line-height: 0;
}
.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}
.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
  transform: scale(-1, -1);
}
.testimonials .testimonial-item p {
  font-style: italic;
  margin: 15px auto 15px auto;
}
.testimonials .swiper-wrapper {
  height: auto;
}
.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}
.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: color-mix(in srgb, var(--default-color), transparent 85%);
  opacity: 1;
}
.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}
@media (max-width: 767px) {
  .testimonials .testimonial-wrap {
    padding-left: 0;
  }
  .testimonials .testimonial-item {
    padding: 30px;
    margin: 15px;
  }
  .testimonials .testimonial-item .testimonial-img {
    position: static;
    left: auto;
  }
}
/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
.team .person {
  position: relative;
}
.team .person figure {
  margin-bottom: 0;
  padding-bottom: 0;
  position: relative;
  overflow: hidden;
  margin-bottom: 30px;
}
.team .person img {
  transition: 0.3s all ease;
}
.team .person .person-contents {
  text-align: center;
}
.team .person .person-contents h3 {
  color: var(--heading-color);
  font-size: 24px;
}
.team .person .person-contents .position {
  color: var(--accent-color);
}
.team .person:hover img {
  transform: scale(1.05);
}
.team .person .social {
  position: absolute;
  bottom: 10px;
  left: 10px;
  z-index: 2;
}
.team .person .social a {
  display: block;
  margin-bottom: 10px;
  width: 40px;
  height: 40px;
  background: var(--contrast-color);
  position: relative;
}
.team .person .social a > span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.team .person .social a:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}
/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact {
  background-image: url("../img/contact-bg.png");
  background-position: left center;
  background-repeat: no-repeat;
  position: relative;
}
@media (max-width: 640px) {
  .contact {
    background-position: center 50px;
    background-size: contain;
  }
}
.contact:before {
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 30%);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}
.contact .info-item + .info-item {
  margin-top: 40px;
}
.contact .info-item i {
  background: var(--accent-color);
  color: var(--contrast-color);
  font-size: 20px;
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
  margin-right: 15px;
}
.contact .info-item h3 {
  padding: 0;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
}
.contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
}
.contact .php-email-form {
  height: 100%;
}
.contact .php-email-form input[type=text], .contact .php-email-form input[type=email], .contact .php-email-form textarea {
  font-size: 14px;
  padding: 10px 15px;
  box-shadow: none;
  border-radius: 0;
  color: var(--default-color);
  background-color: color-mix(in srgb, var(--background-color), transparent 50%);
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}
.contact .php-email-form input[type=text]:focus, .contact .php-email-form input[type=email]:focus, .contact .php-email-form textarea:focus {
  border-color: var(--accent-color);
}
.contact .php-email-form input[type=text]::placeholder, .contact .php-email-form input[type=email]::placeholder, .contact .php-email-form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}
.contact .php-email-form button[type=submit] {
  color: var(--contrast-color);
  background: var(--accent-color);
  border: 0;
  padding: 10px 30px;
  transition: 0.4s;
  border-radius: 50px;
}
.contact .php-email-form button[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}
/*--------------------------------------------------------------
# Portfolio Details Section
--------------------------------------------------------------*/
.portfolio-details .portfolio-details-slider img {
  width: 100%;
}
.portfolio-details .swiper-wrapper {
  height: auto;
}
.portfolio-details .swiper-button-prev, .portfolio-details .swiper-button-next {
  width: 48px;
  height: 48px;
}
.portfolio-details .swiper-button-prev:after, .portfolio-details .swiper-button-next:after {
  color: rgba(255, 255, 255, 0.8);
  background-color: rgba(0, 0, 0, 0.15);
  font-size: 24px;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}
.portfolio-details .swiper-button-prev:hover:after, .portfolio-details .swiper-button-next:hover:after {
  background-color: rgba(0, 0, 0, 0.3);
}
@media (max-width: 575px) {
  .portfolio-details .swiper-button-prev, .portfolio-details .swiper-button-next {
    display: none;
  }
}
.portfolio-details .swiper-pagination {
  margin-top: 20px;
  position: relative;
}
.portfolio-details .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: color-mix(in srgb, var(--default-color), transparent 85%);
  opacity: 1;
}
.portfolio-details .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}
.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}
.portfolio-details .portfolio-info h3:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  bottom: 0;
}
.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}
.portfolio-details .portfolio-info ul li {
  display: flex;
  flex-direction: column;
  padding-bottom: 15px;
}
.portfolio-details .portfolio-info ul strong {
  text-transform: uppercase;
  font-weight: 400;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 14px;
}
.portfolio-details .portfolio-info .btn-visit {
  padding: 8px 40px;
  background: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 50px;
  transition: 0.3s;
}
.portfolio-details .portfolio-info .btn-visit:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}
.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}
.portfolio-details .portfolio-description p {
  padding: 0;
}
.portfolio-details .portfolio-description .testimonial-item {
  padding: 30px 30px 0 30px;
  position: relative;
  background: color-mix(in srgb, var(--default-color), transparent 97%);
  margin-bottom: 50px;
}
.portfolio-details .portfolio-description .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50px;
  border: 6px solid var(--background-color);
  float: left;
  margin: 0 10px 0 0;
}
.portfolio-details .portfolio-description .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 15px 0 5px 0;
  padding-top: 20px;
}
.portfolio-details .portfolio-description .testimonial-item h4 {
  font-size: 14px;
  color: #6c757d;
  margin: 0;
}
.portfolio-details .portfolio-description .testimonial-item .quote-icon-left, .portfolio-details .portfolio-description .testimonial-item .quote-icon-right {
  color: color-mix(in srgb, var(--accent-color), transparent 50%);
  font-size: 26px;
  line-height: 0;
}
.portfolio-details .portfolio-description .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}
.portfolio-details .portfolio-description .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
  transform: scale(-1, -1);
}
.portfolio-details .portfolio-description .testimonial-item p {
  font-style: italic;
  margin: 0 0 15px 0 0 0;
  padding: 0;
}
/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .service-box {
  background-color: var(--surface-color);
  padding: 20px;
  box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.1);
}
.service-details .service-box + .service-box {
  margin-top: 30px;
}
.service-details .service-box h4 {
  font-size: 20px;
  font-weight: 700;
  border-bottom: 2px solid color-mix(in srgb, var(--default-color), transparent 92%);
  padding-bottom: 15px;
  margin-bottom: 15px;
}
.service-details .services-list {
  background-color: var(--surface-color);
}
.service-details .services-list a {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  display: flex;
  align-items: center;
  padding: 12px 15px;
  margin-top: 15px;
  transition: 0.3s;
}
.service-details .services-list a:first-child {
  margin-top: 0;
}
.service-details .services-list a i {
  font-size: 16px;
  margin-right: 8px;
  color: var(--accent-color);
}
.service-details .services-list a.active {
  color: var(--contrast-color);
  background-color: var(--accent-color);
}
.service-details .services-list a.active i {
  color: var(--contrast-color);
}
.service-details .services-list a:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  color: var(--accent-color);
}
.service-details .download-catalog a {
  color: var(--default-color);
  display: flex;
  align-items: center;
  padding: 10px 0;
  transition: 0.3s;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}
.service-details .download-catalog a:first-child {
  border-top: 0;
  padding-top: 0;
}
.service-details .download-catalog a:last-child {
  padding-bottom: 0;
}
.service-details .download-catalog a i {
  font-size: 24px;
  margin-right: 8px;
  color: var(--accent-color);
}
.service-details .download-catalog a:hover {
  color: var(--accent-color);
}
.service-details .help-box {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  margin-top: 30px;
  padding: 30px 15px;
}
.service-details .help-box .help-icon {
  font-size: 48px;
}
.service-details .help-box h4, .service-details .help-box a {
  color: var(--contrast-color);
}
.service-details .services-img {
  margin-bottom: 20px;
}
.service-details h3 {
  font-size: 26px;
  font-weight: 700;
}
.service-details p {
  font-size: 15px;
}
.service-details ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}
.service-details ul li {
  padding: 5px 0;
  display: flex;
  align-items: center;
}
.service-details ul i {
  font-size: 20px;
  margin-right: 8px;
  color: var(--accent-color);
}
/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/
.starter-section {
  /* Add your styles here */
}
/* ======================================================
   CANEUS MILESTONES & GLOBAL IMPACT
====================================================== */
.MTC {
  position: relative;
  background: var(--background-color);
  color: var(--default-color);
  overflow: hidden;
}
/* Section Title */
.MTC h2 {
  font-weight: 800;
  letter-spacing: 0.5px;
  color: #ffffff;
}
/* ======================================================
   TIMELINE WRAPPER
====================================================== */
.MTC .mtc-wrapper {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 60px;
  /* critical spacing to avoid cut text */
  padding: 80px 80px 55px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scrollbar-gutter: stable;
}
/* Ensure first & last item never clip */
.MTC .mtc-item:first-child {
  margin-left: 10px;
}
.MTC .mtc-item:last-child {
  margin-right: 10px;
}
/* ======================================================
   TIMELINE LINE (FULL + ALIGNED)
====================================================== */
.MTC .mtc-line {
  position: absolute;
  top: 118px;
  left: 80px;
  height: 3px;
  width: 3700px; /* adjust once based on item count */
  background: linear-gradient(90deg, #e85d2f, #ef6d3a, #f98c5e);
  opacity: 0.45;
  z-index: 1;
}
/* ======================================================
   TIMELINE ITEM
====================================================== */
.MTC .mtc-item {
  position: relative;
  min-width: 240px;
  max-width: 260px;
  text-align: center;
  scroll-snap-align: center;
  z-index: 2;
  padding-top: 8px;
  transition: transform 0.35s ease;
}
.MTC .mtc-item:hover {
  transform: translateY(-10px);
}
/* ======================================================
   ICON CONTAINER
====================================================== */
.MTC .mtc-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(145deg, #d95426, #ef6d3a);
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  position: relative;
  z-index: 3;
  box-shadow:
    0 12px 35px rgba(217, 84, 38, 0.6), inset 0 0 0 1px rgba(255, 255, 255, 0.16);
  transition: box-shadow 0.35s ease, transform 0.35s ease;
}
/* Icon */
.MTC .mtc-icon i {
  font-size: 34px;
  color: #ffffff;
}
/* ======================================================
   YEAR
====================================================== */
.MTC h6 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: 0.4px;
  color: #d8c58a; /* subtle gold tone as in screenshot */
}
/* ======================================================
   DESCRIPTION
====================================================== */
.MTC p {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.92);
  margin: 0;
}
/* ======================================================
   ACTIVE STATE (AUTO ON SCROLL)
====================================================== */
.MTC .mtc-item.active .mtc-icon {
  box-shadow:
    0 0 0 4px rgba(239, 109, 58, 0.28), 0 18px 45px rgba(217, 84, 38, 0.85);
  transform: scale(1.05);
}
.MTC .mtc-item.active h6 {
  color: #ffffff;
}
/* ======================================================
   SCROLLBAR â€“ CLEAN & CENTERED
====================================================== */
.MTC .mtc-wrapper::-webkit-scrollbar {
  height: 5px;
}
.MTC .mtc-wrapper::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  margin: 0 80px; /* aligns scrollbar with timeline content */
}
.MTC .mtc-wrapper::-webkit-scrollbar-thumb {
  background: linear-gradient(90deg, #ef6d3a, #f98c5e);
  border-radius: 20px;
}
/* Firefox */
.MTC .mtc-wrapper {
  scrollbar-width: thin;
  scrollbar-color: #ef6d3a rgba(255, 255, 255, 0.12);
}
/* ======================================================
   MOBILE OPTIMIZATION
====================================================== */
@media (max-width: 768px) {
  .MTC .mtc-wrapper {
    gap: 36px;
    padding: 65px 30px 45px;
  }
  .MTC .mtc-item {
    min-width: 210px;
  }
  .MTC .mtc-line {
    top: 110px;
    left: 30px;
    right: 30px;
  }
  .MTC p {
    font-size: 14.5px;
  }
}
/* ======================================================
   CANEUS MILESTONES & GLOBAL IMPACT
   THEME MATCHED (NAVY BLUE + ORANGE)
====================================================== */
.MTC {
  position: relative;
  background: linear-gradient(180deg, #001f4d 0%, #003a78 100%);
  color: #ffffff;
  overflow: hidden;
}
/* ======================================================
   SECTION TITLE
====================================================== */
.MTC h2 {
  font-weight: 800;
  letter-spacing: 0.5px;
  color: #ffffff;
}
/* ======================================================
   TIMELINE WRAPPER
====================================================== */
.MTC .mtc-wrapper {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 60px;
  padding: 0px 80px 55px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scrollbar-gutter: stable;
}
/* Avoid clipping */
.MTC .mtc-item:first-child {
  margin-left: 10px;
}
.MTC .mtc-item:last-child {
  margin-right: 10px;
}
/* ======================================================
   TIMELINE LINE
====================================================== */
.MTC .mtc-line {
  position: absolute;
  top: 50px;
  left: 80px;
  height: 3px;
  width: 3700px;
  background: linear-gradient(90deg, rgba(255, 173, 51, 0.25), rgba(255, 173, 51, 0.75), rgba(255, 173, 51, 0.25));
  opacity: 0.6;
  z-index: 1;
}
/* ======================================================
   TIMELINE ITEM
====================================================== */
.MTC .mtc-item {
  position: relative;
  min-width: 240px;
  max-width: 260px;
  text-align: center;
  scroll-snap-align: center;
  z-index: 2;
  padding-top: 8px;
  transition: transform 0.35s ease;
}
.MTC .mtc-item:hover {
  transform: translateY(-10px);
}
/* ======================================================
   ICON CONTAINER
====================================================== */
.MTC .mtc-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(145deg, #002b5c, #003f88);
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  position: relative;
  z-index: 3;
  box-shadow:
    0 12px 30px rgba(0, 45, 100, 0.6), inset 0 0 0 1px rgba(255, 255, 255, 0.12);
  transition: box-shadow 0.35s ease, transform 0.35s ease;
}
.MTC .mtc-icon i {
  font-size: 34px;
  color: #ffad33;
}
/* ======================================================
   YEAR
====================================================== */
.MTC h6 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: 0.4px;
  color: #ffad33;
}
/* ======================================================
   DESCRIPTION
====================================================== */
.MTC p {
  font-size: 15.5px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.92);
  margin: 0;
}
/* ======================================================
   ACTIVE STATE
====================================================== */
.MTC .mtc-item.active .mtc-icon {
  box-shadow:
    0 0 0 4px rgba(255, 173, 51, 0.28), 0 18px 45px rgba(0, 60, 120, 0.85);
  transform: scale(1.06);
}
.MTC .mtc-item.active h6 {
  color: #ffffff;
}
/* ======================================================
   SCROLLBAR STYLING
====================================================== */
.MTC .mtc-wrapper::-webkit-scrollbar {
  height: 5px;
}
.MTC .mtc-wrapper::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  margin: 0 80px;
}
.MTC .mtc-wrapper::-webkit-scrollbar-thumb {
  background: linear-gradient(90deg, #ffad33, #ff8c1a);
  border-radius: 20px;
}
/* Firefox */
.MTC .mtc-wrapper {
  scrollbar-width: thin;
  scrollbar-color: #ffad33 rgba(255, 255, 255, 0.15);
}
/* ======================================================
   MOBILE OPTIMIZATION
====================================================== */
@media (max-width: 768px) {
  .MTC .mtc-wrapper {
    gap: 36px;
    padding: 65px 30px 45px;
  }
  .MTC .mtc-item {
    min-width: 210px;
  }
  .MTC .mtc-line {
    top: 110px;
    left: 30px;
    right: 30px;
  }
  .MTC p {
    font-size: 14.5px;
  }
}
.GIM {
  /* background: radial-gradient(circle at top, #0e1a3a, #050816);*/
  color: #fff;
}
.gim-title {
  font-size: 34px;
  font-weight: 600;
}
.gim-subtitle {
  font-size: 15px;
  color: #c7cbe6;
  max-width: 720px;
  margin: auto;
}
.gim-card {
  background: linear-gradient(90deg, #003064 0%, #004a8f 50%, #003064 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 28px 15px;
  height: 100%;
  transition: all 0.3s ease;
}
.gim-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 30px rgba(110, 231, 255, 0.15);
}
.gim-number {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 6px;
  color: #f59e2d;
  font-family: var(--default-font);
}
.gim-label {
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 4px;
}
.gim-desc {
  font-size: 13px;
  color: #f4f4f4;
}
/* ----------------------------------------------------
   CTA â€“ FIXED BACKGROUND, STATIC TEXT
---------------------------------------------------- */
.cta-section {
  position: relative;
  min-height: 220px;
  padding: 100px 0;
  overflow: hidden;
  /* Background scrolls behind content */
  background-image: url("../img/bg-2.jpg");
  background-size: contain;
  background-position: center;
  background-attachment: fixed;
}
/* Overlay */
.cta-overlay {
  position: absolute;
  inset: 0;
  /*background: rgba(0, 0, 0, 0.55);*/
  z-index: 1;
}
/* Content stays fixed */
.cta-section .container {
  position: relative;
  z-index: 2;
}
/* Typography */
.cta-section h3, .cta-section p {
  color: #0a1d35;
}
/* Mobile fallback (important) */
@media (max-width: 991px) {
  .cta-section {
    background-attachment: scroll;
  }
}
/* Partner section */
.partners-section {
  background: #f9fafc;
}
/* Static logos */
.partner-logo {
  max-width: 100%;
  height: 150px;
  object-fit: contain;
  opacity: 0.8;
  transition: all 0.3s ease;
}
.partner-logo:hover {
  opacity: 1;
}
.partners-section {
  background: #f9fafc;
}
/* Logo Card */
.partner-box {
  background: #fff;
  border: 1px solid #e6eaf0;
  border-radius: 12px;
  height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
  transition: all 0.3s ease;
}
/* Hover effect */
.partner-box:hover {
  border-color: #d0d7e5;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
  transform: translateY(-2px);
}
/* Logo */
.partner-logo {
  max-width: 100%;
  max-height: 100px;
  object-fit: contain;
  opacity: 1;
  transition: all 0.3s ease;
}
.partner-box:hover .partner-logo {
  opacity: 1;
}
/* Marquee */
.logo-marquee {
  overflow: hidden;
  position: relative;
}
.logo-track {
  display: flex;
  gap: 60px;
  animation: scroll 25s linear infinite;
}
.logo-track img {
  height: 50px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.7;
}
@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
/* Mobile tweaks */
@media (max-width: 768px) {
  .partner-logo {
    height: 45px;
  }
  .logo-track img {
    height: 40px;
  }
}
/* Marquee wrapper */
.logo-marquee {
  overflow: hidden;
  width: 100%;
  position: relative;
}
/* Track */
.logo-track {
  display: flex;
  width: max-content;
  animation: marquee 30s linear infinite;
}
/* Individual logo box */
.logo-item {
  flex: 0 0 auto;
  padding: 12px 20px;
}
/* Logo style with thin border */
.logo-item img {
  height: 50px;
  padding: 10px;
  background: #fff;
  border: 1px solid #e3e6ef;
  border-radius: 6px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.8;
  transition: all 0.3s ease;
}
/* Hover effect */
.logo-item img:hover {
  filter: grayscale(0);
  opacity: 1;
  transform: translateY(-2px);
}
/* Animation */
@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
/* Mobile adjustments */
@media (max-width: 768px) {
  .logo-item img {
    height: 40px;
  }
}
.footer {
  font-size: 14px;
}
.footer .sitename {
  font-weight: 600;
  font-size: 18px;
}
.footer a {
  color: #444;
  text-decoration: none;
}
.footer a:hover {
  color: var(--accent-color);
}
.footer .social-links a {
  font-size: 18px;
}
.footer-links ul li {
  margin-bottom: 8px;
}
.compact-footer {
  padding: 10px 0;
  font-size: 15px;
}
.compact-footer .footer-links li {
  margin: 0 10px;
}
.compact-footer a {
  color: #444;
  text-decoration: none;
  white-space: nowrap;
}
.compact-footer a:hover {
  color: var(--accent-color);
  text-decoration: underline;
}
.compact-footer .footer-social a {
  font-size: 16px;
}
@media (max-width: 991px) {
  .compact-footer {
    text-align: center;
  }
  .compact-footer .footer-links {
    margin: 6px 0;
  }
}
.testimonial-b2b {
  background: #fff;
  border-radius: 10px;
  padding: 30px 25px;
  height: 100%;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.testimonial-b2b img {
  max-height: 45px;
  margin: 0 auto 20px;
  object-fit: contain;
}
.testimonial-b2b p {
  font-size: 15px;
  line-height: 1.6;
  color: #555;
  margin: 0;
  font-style: italic;
}
.quote-card.b2b {
  background: #fff;
  padding: 35px 25px;
  border-radius: 8px;
  height: 100%;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.logo-wrap {
  height: 60px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo-wrap img {
  max-height: 150px;
  max-width: 150px;
  object-fit: contain;
}
.quote-card p {
  font-size: 15px;
  line-height: 1.6;
  color: #555;
  font-style: italic;
  margin: 0;
}
/* Responsive text */
@media (max-width: 768px) {
  .quote-card p {
    font-size: 14px;
  }
}
.btn-get-started {
  background-color: var(--accent-color);
  color: #fff;
  font-weight: 400;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  display: inline-block;
  padding: 10px 40px;
  margin: 30px 0 0 0;
  border-radius: 4px;
  transition: 0.5s;
}
.btn-get-started:hover {
  background-color: color-mix(in srgb, var(--accent-color) 85%, white 15%);
  color: #ffffff;
}
/* ----------------------------------------------------
   Footer Social Icons â€“ Premium Design
---------------------------------------------------- */
.footer-social .social-icon {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #f2f2f2;
  color: #444;
  font-size: 16px;
  transition: all 0.3s ease;
}
/* Hover effect */
.footer-social .social-icon:hover {
  transform: translateY(-3px);
  color: #fff;
}
/* Brand colors */
.footer-social .linkedin:hover {
  background: #0678b6;
}

.footer-social .facebook:hover {
  background: #4b69b1;
}

.footer-social .twitter:hover {
  background: #000000;
}

.footer-social .insta:hover {
  background: linear-gradient(135deg, #ff5f9e, #8a2be2);
}


.footer-social .youtube:hover {
  background: #ff0000;
}
.img-effect {
  position: relative;
  overflow: hidden;
  border-radius: var(--bs-border-radius);
}
.img-effect img {
  width: 100%;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.img-effect:hover img {
  transform: scale(1) translateY(-4px);
}
.navmenu .bi {
  font-size: 10px; /* try 8px â€“ 12px */
}
.blog-slider {
  width: 100%;
  position: relative;
  max-width: 1000px;
  margin: auto;
  background: #fff;
  box-shadow: 0px 14px 80px rgba(34, 35, 58, 0.2);
  padding: 25px;
  border-radius: 25px;
  height: 400px;
  transition: all 0.3s;
}
@media screen and (max-width: 992px) {
  .blog-slider {
    max-width: 800px;
    height: 420px;
  }
}
@media screen and (max-width: 768px) {
  .blog-slider {
    min-height: 500px;
    height: auto;
    margin: 180px auto;
  }
}
@media screen and (max-height: 500px) and (min-width: 992px) {
  .blog-slider {
    height: 350px;
  }
}
.blog-slider__item {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .blog-slider__item {
    flex-direction: column;
  }
}
.blog-slider__item.swiper-slide-active .blog-slider__img img {
  opacity: 1;
  transition-delay: 0.3s;
}
.blog-slider__item.swiper-slide-active .blog-slider__content > * {
  opacity: 1;
  transform: none;
}
.blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(1) {
  transition-delay: 0.3s;
}
.blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(2) {
  transition-delay: 0.4s;
}
.blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(3) {
  transition-delay: 0.5s;
}
.blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(4) {
  transition-delay: 0.6s;
}
.blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(5) {
  transition-delay: 0.7s;
}
.blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(6) {
  transition-delay: 0.8s;
}
.blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(7) {
  transition-delay: 0.9s;
}
.blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(8) {
  transition-delay: 1s;
}
.blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(9) {
  transition-delay: 1.1s;
}
.blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(10) {
  transition-delay: 1.2s;
}
.blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(11) {
  transition-delay: 1.3s;
}
.blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(12) {
  transition-delay: 1.4s;
}
.blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(13) {
  transition-delay: 1.5s;
}
.blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(14) {
  transition-delay: 1.6s;
}
.blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(15) {
  transition-delay: 1.7s;
}
/*.blog-slider__img {
  width: 500px;
  flex-shrink: 0;
  height: 500px;
  border-radius: 20px;
  transform: translateX(-80px);
  overflow: hidden;
}*/

.blog-slider__img {
  width: 500px;
  flex-shrink: 0;
  height: 300px;        /* ?? reduced height = horizontal */
  border-radius: 20px;
  transform: translateX(-80px);
  overflow: hidden;
}

.blog-slider__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0;
  border-radius: 20px;
  transition: all 0.3s;
}
@media screen and (max-width: 768px) {
  .blog-slider__img {
    transform: translateY(-50%);
    width: 90%;
  }
}
@media screen and (max-width: 576px) {
  .blog-slider__img {
    width: 95%;
  }
}
@media screen and (max-height: 500px) and (min-width: 992px) {
  .blog-slider__img {
    height: 270px;
  }
}
.blog-slider__content {
  padding-right: 20px;
}
@media screen and (max-width: 768px) {
  .blog-slider__content {
    margin-top: -100px;
    text-align: center;
    padding: 0 30px;
  }
}
@media screen and (max-width: 576px) {
  .blog-slider__content {
    padding: 0;
  }
}
.blog-slider__content > * {
  opacity: 0;
  transform: translateY(25px);
  transition: all 0.4s;
}
.blog-slider__code {
  color: #7b7992;
  margin-bottom: 15px;
  display: block;
  font-weight: 500;
}
.blog-slider__title {
  font-size: 24px;
  font-weight: 700;
  color: #0d0925;
  margin-bottom: 15px;
}
.blog-slider__text {
  color: #4e4a67;
  margin-bottom: 15px;
  line-height: 1.5em;
}
.blog-slider__button {
  display: inline-flex;
  background-image: linear-gradient(147deg, #fe8a39 0%, #fd3838 74%);
  padding: 15px 35px;
  border-radius: 50px;
  color: #fff;
  box-shadow: 0px 14px 80px rgba(252, 56, 56, 0.4);
  text-decoration: none;
  font-weight: 500;
  justify-content: center;
  text-align: center;
  letter-spacing: 1px;
}
@media screen and (max-width: 576px) {
  .blog-slider__button {
    width: 100%;
  }
}
.blog-slider .swiper-container-horizontal > .swiper-pagination-bullets, .blog-slider .swiper-pagination-custom, .blog-slider .swiper-pagination-fraction {
  bottom: 10px;
  left: 0;
  width: 100%;
}
.blog-slider__pagination {
  position: absolute;
  z-index: 21;
  right: 20px;
  width: 11px !important;
  text-align: center;
  left: auto !important;
  top: 10%;
  bottom: auto !important;
  transform: translateY(-250%);
}
@media screen and (max-width: 768px) {
  .blog-slider__pagination {
    transform: translateX(-50%);
    left: 50% !important;
    top: 205px;
    width: 100% !important;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
.blog-slider__pagination.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 8px 0;
}
@media screen and (max-width: 768px) {
  .blog-slider__pagination.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 5px;
  }
}
.blog-slider__pagination .swiper-pagination-bullet {
  width: 11px;
  height: 11px;
  display: block;
  border-radius: 10px;
  background: #062744;
  opacity: 0.2;
  transition: all 0.3s;
}
.blog-slider__pagination .swiper-pagination-bullet-active {
  opacity: 1;
  background: #003064;
  height: 30px;
  box-shadow: 0px 0px 20px rgba(252, 56, 56, 0.3);
}
@media screen and (max-width: 768px) {
  .blog-slider__pagination .swiper-pagination-bullet-active {
    height: 11px;
    width: 30px;
  }
}
.vertical-footer {
  background: #f9fafc;
  padding: 50px 0 25px;
  font-size: 14px;
  color: #555;
}
/* Titles */
.footer-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #0a1d35;
}
.footer-heading {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 12px;
  text-transform: uppercase;
  color: #0a1d35;
}
/* Text */
.footer-desc {
  font-size: 14px;
  line-height: 1.6;
  max-width: 90%;
}
/* Links */
.footer-links li {
  margin-bottom: 8px;
}
.footer-links a {
  color: #444;
  text-decoration: none;
  transition: 0.3s;
}
.footer-links a:hover {
  color: var(--accent-color);
  text-decoration: underline;
}
/* Social Icons */
.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #ddd;
  color: #444;
  transition: 0.3s;
}
.footer-social a:hover {
  color: #fff;
  background: var(--accent-color);
  border-color: var(--accent-color);
}
/* Bottom bar */
.footer-bottom {
  border-top: 1px solid #e5e5e5;
  color: #777;
}
/* Mobile */
@media (max-width: 767px) {
  .footer-title, .footer-heading {
    text-align: center;
  }
  .footer-desc {
    margin: auto;
    text-align: center;
  }
  .footer-social {
    justify-content: center;
  }
}
/* Static Inner Banner */
.inner-hero-static {
  position: relative;
  height: 320px; /* adjust if needed */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0;
}
/*/
.inner-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
}*/
/* Center text */
.inner-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
}
.inner-hero-content h1 {
  color: #f59e2d;
  font-size: 56px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}
/* Responsive */
@media (max-width: 768px) {
  .inner-hero-static {
    height: 240px;
  }
  .inner-hero-content h1 {
    font-size: 36px;
  }
}
/* Static Inner Banner */
.inner-hero-static {
  position: relative;
  height: 320px; /* adjust if needed */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0;
}
/* Dark overlay */
.inner-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
}
/* Center text */
.inner-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
}
.inner-hero-content h1 {
  color: #ffffff;
  font-size: 56px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}
/* Responsive */
@media (max-width: 768px) {
  .inner-hero-static {
    height: 240px;
  }
  .inner-hero-content h1 {
    font-size: 36px;
  }
}
.icon-box.horizontal {
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  gap: 24px;
  transition: all 0.3s ease;
}
.icon-box.horizontal .icon {
  flex: 0 0 60px;
  height: 60px;
  background: color-mix(in srgb, var(--accent-color) 10%, white 90%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.icon-box.horizontal .icon i {
  font-size: 26px;
  color: var(--accent-color);
}
.icon-box.horizontal .content h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}
.icon-box.horizontal .content p {
  margin: 0;
  color: #555;
  line-height: 1.7;
}
/* Hover effect */
.icon-box.horizontal:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transform: translateY(-3px);
}
/* Mobile */
@media (max-width: 767px) {
  .icon-box.horizontal {
    flex-direction: column;
    text-align: center;
  }
  .icon-box.horizontal .icon {
    margin: 0 auto 15px;
  }
}
.feature-card {
  background: #ffffff;
  border: 1px solid #e9ecef;
  border-radius: 14px;
  padding: 32px;
  gap: 28px;
}
/* Icon circle */
.feature-icon {
  width: 72px;
  height: 72px;
  flex-shrink: 0;
  border-radius: 50%;
  background: #f1f4f8;
  display: flex;
  align-items: center;
  justify-content: center;
}
.feature-icon i {
  font-size: 28px;
  color: #0b3c6f; /* CANEUS-style navy */
}
/* Content */
.feature-content h5 {
  font-weight: 800;
  margin-bottom: 12px;
  color: var(--accent-color);
}
.feature-content p {
  margin: 0;
  font-size: 16px;
  line-height: 1.75;
  color: #4b5563;
}
/* Hover (very subtle, premium) */
.feature-card:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}
/* Hover (very subtle, premium) */
.feature-card:hover i {
  background: #0b3c6f;
  color: #f1f4f8; /* CANEUS-style navy */
} /* Hover (very subtle, premium) */
.feature-card:hover .feature-icon {
  background: #0b3c6f;
}
/* Mobile */
@media (max-width: 768px) {
  .feature-card {
    flex-direction: column;
    text-align: left;
  }
  .feature-icon {
    margin-bottom: 16px;
  }
}
.focus-areas-section {
  background: #f8f9fb;
}
.focus-card {
  background: #ffffff;
  padding: 30px;
  border-radius: 14px;
  border: 1px solid #eaecef;
  transition: all 0.3s ease;
  position: relative;
}
.focus-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}
.focus-icon {
  width: 60px;
  height: 60px;
  background: color-mix(in srgb, var(--accent-color, #0d6efd) 10%, white);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.focus-icon i {
  font-size: 28px;
  color: var(--accent-color, #0d6efd);
}
.focus-card h5 {
  font-weight: 800;
  margin-bottom: 12px;
  color: var(--accent-color);
}
.focus-card p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}
.sf-item {
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid #eaeaea;
}
.sf-item:last-child {
  border-bottom: none;
}
.sf-icon {
  min-width: 50px;
  height: 50px;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.04);
  display: flex;
  align-items: center;
  justify-content: center;
}
.sf-icon i {
  font-size: 30px;
  color: var(--accent-color);
}
.sf-item h5 {
  font-weight: 600;
  margin-bottom: 4px;
}
.sf-item p {
  margin: 0;
  color: #555;
  font-size: 18px;
}
.pcw-caneus-section {
  background: #f8f9fb;
}
.pcw-heading {
  font-size: 36px;
  font-weight: 700;
  color: #0b1c39;
}
.pcw-lead {
  font-size: 17px;
  line-height: 1.75;
  color: #555;
}
.pcw-subheading {
  font-size: 28px;
  font-weight: 600;
  color: #0b1c39;
}
.pcw-card {
  background: #ffffff;
  padding: 28px;
  border-radius: 12px;
  height: 100%;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.06);
  transition: 0.35s ease;
}
.pcw-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.1);
}
.pcw-card h5 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #0b1c39;
}
.pcw-card p {
  font-size: 15px;
  color: #666;
  line-height: 1.65;
}
.pcw-benefit {
  background: #ffffff;
  padding: 25px;
  border-radius: 10px;
  height: 100%;
}
.pcw-benefit h5 {
  font-size: 18px;
  font-weight: 600;
  color: #0b1c39;
  margin-bottom: 12px;
}
.pcw-benefit ul {
  padding-left: 18px;
}
.pcw-benefit li {
  font-size: 15px;
  color: #555;
  margin-bottom: 8px;
}
.pcw-benefits-section {
  background: #ffffff;
}
.pcw-title {
  font-size: 30px;
  font-weight: 600;
  color: #0b1c39;
}
.pcw-benefit-box {
  padding: 20px 22px;
  border-left: 3px solid var(--accent-color);
}
.pcw-benefit-box h5 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #0b1c39;
}
.pcw-benefit-box ul {
  padding-left: 18px;
  margin: 0;
}
.pcw-benefit-box li {
  font-size: 18px;
  color: #555;
  margin-bottom: 8px;
  line-height: 1.6;
}
.orange {
  color: #f59e2d;
  font-display: var(--default-font);
  font-weight: 700;
}
#Partner-CANEUS h5 {
  color: var(--accent-color);
}
.partner-swiper {
  padding: 20px 40px;
}
.partner-item {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 5px;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.partner-item img {
  max-height: 100px;
  max-width: 100%;
  object-fit: contain;
  transition: 0.3s;
}
.partner-item:hover img {}
/* Reduce arrow size */
.partner-swiper .swiper-button-prev, .partner-swiper .swiper-button-next {
  width: 36px;
  height: 36px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}
/* Icon size */
.partner-swiper .swiper-button-prev::after, .partner-swiper .swiper-button-next::after {
  font-size: 14px;
  font-weight: 700;
  color: #333;
}
/* Position tweak */
.partner-swiper .swiper-button-prev {
  left: 5px;
}
.partner-swiper .swiper-button-next {
  right: 5px;
}




.caneus-header {
 color: var(--default-color);
  /*background-color:#003064;*/
  background: linear-gradient(90deg, #003064 0%, #004a8f 50%, #003064 100%);
  padding: 15px 0;
  transition: all 0.5s;
}
.caneus-header .logo {
  line-height: 1;
}
.caneus-header .logo img {
  max-height: 65px;
  margin-right: 8px;
}
.navbar-nav .nav-link {
  color: #fff;
  font-weight: 600;
  padding: 12px 16px;
  position: relative;
	font-family: var(--heading-font);
	margin-left:4px;
	margin-right:4px;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: #ffb100;
}

.dropdown-menu {
  background: #003b6f;
  border: none;
  border-radius: 6px;
  padding: 10px 0;
	font-family: var(--heading-font);
}

.dropdown-item {
  color: #fff;
  padding: 10px 20px;
  font-size: 15px;
}

.dropdown-item:hover {
  background: rgba(255,255,255,0.1);
  color: #ffb100;
}

/* CTA Button */
.btn-partner {
  font-weight: 600;
  padding: 10px 22px;
  border-radius: 6px;
}

/* Desktop hover dropdown */
@media (min-width: 1200px) {
  .dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
  }
}






/* Nav link underline animation */
.navbar-nav .nav-link {
  position: relative;
  overflow: hidden;
}

/* Thin animated underline */
.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 5px;
  width: 100%;
  height: 1px !important;            /* ?? thinner line */
  background-color: #ffb100;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

/* Hover + Active */
.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  transform: scaleX(1);
	 height: 1px !important;
	 background-color: #fff;
}

.nav-caret {
  font-size: 10px;          /* ?? smaller */
  margin-top: 1px;
  opacity: 0.85;            /* ?? softer */
  transition: transform 0.25s ease;
	 margin-left: 4px;
}





.caneus-header .btn-get-started {
  background: linear-gradient(135deg, #ffad33, #ff8c1a);
  color: #fff;
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 15px;
  margin: 30px 0 0 0;
  border-radius: 4px;
	margin-top:-1px;
	
  transition:
    transform 0.3s ease, box-shadow 0.3s ease, filter 0.3s ease;
  text-transform: none;
}
.caneus-header .btn-get-started:hover {
  /* SAME gradient â€“ no color change */
  background: linear-gradient(135deg, #ffad33, #ff8c1a);
  /* Premium interaction */
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 140, 26, 0.35);
  filter: brightness(1.05);
  color: #fff;
}

.caneus-header .logo {
  line-height: 1;
}
.caneus-header .logo img {
  max-height: 65px;
  margin-right: 8px;
}

.navbar,
.navbar-collapse,
.dropdown-menu {
  overflow: visible !important;
}


.dropdown-toggle::after {
  border: none !important;
}



/*--------------------------------------------------------------
# Portfolio Section
--------------------------------------------------------------*/

/* ===== FILTERS ===== */
.portfolio .portfolio-filters {
  padding: 0;
  margin: 0 auto 20px;
  list-style: none;
  text-align: center;
}

.portfolio .portfolio-filters li {
  cursor: pointer;
  display: inline-block;
  font-size: 16px;
  font-weight: 600;
  margin: 0 10px 5px;
  text-transform: uppercase;
  transition: all 0.3s ease-in-out;
}

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

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

/* ===== PORTFOLIO ITEM ===== */
.portfolio .portfolio-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  cursor: pointer;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.portfolio .portfolio-item img {
  width: 100%;
  display: block;
  border-radius: 12px;
}

/* Hover lift */
.portfolio .portfolio-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.18);
}

/* ===== OLD HOVER INFO (DISABLED SAFELY) ===== */
.portfolio .portfolio-item .portfolio-info {
  display: none;
}

/* ===== ALWAYS VISIBLE OVERLAY ===== */


/* Title */
.portfolio .portfolio-info1 h4 {
  font-size: 16px !important;
  font-weight: 600;
  color: #fff;
  margin-bottom: 5px;
}
/* Optional description */
.portfolio .portfolio-info1 p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 6px;
}

/* Title */
.portfolio-title {
  display: flex;
  align-items: center;        /* ?? FIX */
  gap: 10px;
  line-height: 1.2;
  margin: 0;
}

/* Arrow wrapper */
.details-link1 {
  display: inline-flex;
  align-items: center;
  line-height: 1;
	padding-top:10px;
}

/* SVG arrow */
.arrow-icon {
  display: block;             /* ?? FIX */
  position: relative;
  top: 5px;                   /* micro-adjust (optional) */
  transition: transform 0.3s ease;
}

/* Hover animation */
.portfolio-item:hover .arrow-icon {
  transform: translateX(6px);
}

#portfolio a{
	color:#fff !important;
}

/* ===== CLICKABLE CARD FIX ===== */
.portfolio-link {
  display: block;
  height: 100%;
  text-decoration: none;
  color: inherit;
}

/* ===== MOBILE OPTIMIZATION ===== */
@media (max-width: 768px) {
  .portfolio .portfolio-info1 {
    padding: 14px 16px;
  }

  .portfolio .portfolio-info1 h4 {
    font-size: 16px;
  }

  .details-link1 {
    font-size: 13px;
  }
}


