/* ============================================================
   SECTION 1: GLOBAL
   ============================================================ */

/*--------------------------------------------------------------
# Font & Color Variables
--------------------------------------------------------------*/
/* Fonts */
:root {
  --default-font: "Roboto",  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Montserrat",  sans-serif;
  --nav-font: "Open Sans",  sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root { 
  --background-color: #ffffff; /* Background color for the entire website, including individual sections */
  --default-color: #444444; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #222222; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #236b0a; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #222222;  /* The default color of the main navmenu links */
  --nav-hover-color: #226410; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #222222; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #87d4a9; /* 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: #f5f9ff;
  --surface-color: #ffffff;
}

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

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

.light-green-bg {
    background-color: #d5f0d5;   /* very light green */
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

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

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

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

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

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

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

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

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

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

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

@media (max-width: 575px) {

  .header .topbar .contact-info i a,
  .header .topbar .contact-info i span {
    font-size: 13px;
  }
}

.header .topbar .contact-info i a {
  line-height: 0;
  transition: 0.3s;
}

.header .topbar .contact-info i a:hover {
  color: var(--contrast-color);
  text-decoration: underline;
}

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

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

.header .branding {
  background-color: var(--background-color);
  min-height: 60px;
  padding: 10px 0;
}

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

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

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

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

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

.header .logo img {
  padding-left: 0px;
  max-height: 100px;
  width: 330px;
}

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

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

  .navmenu li {
    position: relative;
  }

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

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

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

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-hover-color);
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}

/* Navmenu - Mobile */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

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

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

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

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

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

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

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

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

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

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

.footer .footer-newsletter .newsletter-form:focus-within {
  border-color: var(--accent-color);
}

.footer .footer-newsletter .newsletter-form input[type=email] {
  border: 0;
  padding: 4px;
  width: 100%;
  background-color: var(--surface-color);
  color: var(--default-color);
}

.footer .footer-newsletter .newsletter-form input[type=email]:focus-visible {
  outline: none;
}

.footer .footer-newsletter .newsletter-form input[type=submit] {
  border: 0;
  font-size: 16px;
  padding: 0 20px;
  margin: -7px -8px -7px 0;
  background: var(--accent-color);
  color: var(--contrast-color);
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
}

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

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

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-right: 10px;
  transition: 0.3s;
}

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

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

.footer .footer-links {
  margin-bottom: 30px;
}

.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-links ul i {
  margin-right: 3px;
  font-size: 12px;
  line-height: 0;
  color: var(--accent-color);
}

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

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

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

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

.footer .footer-about a {
  color: var(--heading-color);
  font-size: 24px;
  font-weight: 600;
  font-family: var(--heading-font);
}

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

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

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

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

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  background-color: var(--background-color);
  transition: all 0.6s ease-out;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

#preloader div {
  width: 13px;
  height: 13px;
  background-color: var(--accent-color);
  border-radius: 50%;
  animation-timing-function: cubic-bezier(0, 1, 1, 0);
  position: absolute;
  left: 50%;
}

#preloader div:nth-child(1) {
  left: calc(50% + 8px);
  animation: animate-preloader-1 0.6s infinite;
}

#preloader div:nth-child(2) {
  left: calc(50% + 8px);
  animation: animate-preloader-2 0.6s infinite;
}

#preloader div:nth-child(3) {
  left: calc(50% + 32px);
  animation: animate-preloader-2 0.6s infinite;
}

#preloader div:nth-child(4) {
  left: calc(50% + 56px);
  animation: animate-preloader-3 0.6s infinite;
}

@keyframes animate-preloader-1 {
  0% {
    transform: scale(0);
  }

  100% {
    transform: scale(1);
  }
}

@keyframes animate-preloader-3 {
  0% {
    transform: scale(1);
  }

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

@keyframes animate-preloader-2 {
  0% {
    transform: translate(0, 0);
  }

  100% {
    transform: translate(24px, 0);
  }
}

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

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

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

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

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  --background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  color: var(--default-color);
  background-color: #d5f0d5;
  padding: 25px 0;
  position: relative;
}

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

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

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

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

/*--------------------------------------------------------------
# Page Load Fade-In (Inner Pages)
--------------------------------------------------------------*/
.page-title,
.contact.section {
  opacity: 0;
  animation: pageFadeIn 0.9s ease forwards;
}
.page-title {
  animation-delay: 0s;
}
.contact.section {
  animation-delay: 0.5s;
}
@keyframes pageFadeIn {
  from {
    opacity: 0;
    transform: translateY(16px) scale(0.99);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

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

@media (max-width: 1199px) {

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

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

.section-title h2 {
  font-size: 13px;
  letter-spacing: 1px;
  font-weight: 700;
  padding: 8px 20px;
  margin: 0;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  display: inline-block;
  text-transform: uppercase;
  border-radius: 50px;
  font-family: var(--default-font);
}

.section-title h6 {
  font-size: 20px;
  letter-spacing: 1px;
  font-weight: 900;
  padding: 8px 20px;
  margin: 0;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  display: inline-block;
  text-transform: uppercase;
  border-radius: 50px;
  font-family: var(--default-font);
}

.section-title p {
  color: var(--heading-color);
  margin: 10px 0 0 0;
  font-size: 32px;
  font-weight: 700;
  font-family: var(--heading-font);
}

.section-title p .description-title {
  color: var(--accent-color);
}

/* ============================================================
   SECTION 2: HOME PAGE 
   (order: index.php: Hero, Stats, About, Certified Excellence, Products, Services,
   Industries, Tech Partners/Clients, Portfolio, Contact Teaser)
   ============================================================ */

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero.hero-bg {
  width: 100%;
  min-height: 85vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: none;
  color: #fff;
}
.hero .hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.hero .hero-slide-1 {
  z-index: 0;
  background-image: linear-gradient(rgba(10,15,30,0.45), rgba(10,15,30,0.45)), url('../img/hero-1.jpeg');
  /* animation: heroFade2 30s ease-in-out infinite; */
}
.hero .hero-slide-2 {
  z-index: 1;
  background-image: linear-gradient(rgba(10,15,30,0.45), rgba(10,15,30,0.45)), url('../img/hero-3.jpeg');
  opacity: 0;
  animation: heroFade2 30s ease-in-out infinite;
}
.hero .hero-slide-3 {
  z-index: 1;
  background-image: linear-gradient(rgba(10,15,30,0.45), rgba(10,15,30,0.45)), url('../img/hero-2.jpeg');
  opacity: 0;
  animation: heroFade3 30s ease-in-out infinite;
}
@keyframes heroFade2 {
  0%   { opacity: 0; }
  10%  { opacity: 1; }
  30%  { opacity: 1; }
  40%  { opacity: 0; }
  100% { opacity: 0; }
}
@keyframes heroFade3 {
  0%   { opacity: 0; }
  40%  { opacity: 0; }
  50%  { opacity: 1; }
  70%  { opacity: 1; }
  80%  { opacity: 0; }
  100% { opacity: 0; }
}
.hero.hero-bg .container {
  position: relative;
  z-index: 2;
}
.hero.hero-bg h1 {
  margin: 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
  color: #fff;
}
.hero .highlight {
  /* background: linear-gradient(90deg, #4facfe, #00f2fe, #4facfe); */
  background: linear-gradient(90deg, #03723e, #60f5a5, #13d065);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: shine 3s linear infinite;
}
@keyframes shine { to { background-position: 50% center; } }
.hero.hero-bg p {
  color: #e5e5e5;
  margin: 5px 0 30px 0;
  font-size: 20px;
  font-weight: 400;
}
.hero .btn-get-started {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-family: var(--heading-font);
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 30px;
  border-radius: 4px;
  transition: 0.5s;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}
.hero .btn-get-started:hover {
  /* background: color-mix(in srgb, var(--accent-color), transparent 15%); */
  background: #0dbf6c;

}
@media (max-width: 640px) {
  .hero.hero-bg h1 {
    font-size: 28px;
    line-height: 36px;
  }
  .hero.hero-bg p {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }
  .hero .btn-get-started {
    font-size: 13px;
  }
}

/*--------------------------------------------------------------
# Stats Section
--------------------------------------------------------------*/
.stats .stat-badge {
  width: 100%;
  height: 100%;
  background: #fff;
  border: 0.2px solid var(--accent-color);
  border-radius: 12px;
  padding: 28px 20px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.stats .stat-badge:hover {
  transform: translateY(-10px);
  box-shadow: 0 16px 32px rgba(0,0,0,0.12);
}
.stats .stat-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: var(--accent-color);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  font-size: 22px;
}
.stats .stats-item span {
  display: block;
  font-size: 28px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 4px;
}
.stats .stats-item p {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin: 0;
}

/*--------------------------------------------------------------
# About Section (Home Page)
--------------------------------------------------------------*/
.about-img-main {
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.about-img-small1 {
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.about-img-small2 {
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.about-img-main:hover {
   transform: translateY(-10px);
   box-shadow: 0 16px 32px rgba(0,0,0,0.12);
}

.about-img-small1:hover {
  transform: translateY(-10px);
  box-shadow: 0 16px 32px rgba(0,0,0,0.12);
}

.about-img-small2:hover {
  transform: translateY(-10px);
  box-shadow: 0 16px 32px rgba(0,0,0,0.12);
}

.about .about-content ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 24px;
}
.about .about-content ul li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 0;
}

.about-image-grid {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.about-img-main {
  width: 45%;
  height: auto;
  border-radius: 5px;
  display: block;
}
.about-img-stack {
  display: flex;
  flex-direction: column;
  /* gap: 8px; */
  width: 55%;
}
.about-img-small1{
  width: 100%;
  height: 100%;
  border-radius: 5px;
  display: block;
}
.about-img-small2 {
  width: 100%;
  height: 80;
  border-radius: 5px;
  display: block;
}

.about .about-content p.fst-italic {
  font-size: 20px;
  font-weight: 300;
}

/*---------------- About Image Carousel ----------------------*/

.about-carousel {
  width: 100%;
}

.about-carousel-image-wrap {
  position: relative;
  width: 100%;
  height: 450px;
  overflow: hidden;
  border-radius: 5px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.10);
}

.about-carousel-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* Navigation buttons */

.about-carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 3;
  transition: all 0.25s ease;
}

.about-carousel-btn i {
  font-size: 17px;
  color: #222;
}

.about-carousel-btn:hover {
  background: var(--accent-color);
}

.about-carousel-btn:hover i {
  color: #fff;
}

.about-carousel-prev {
  left: 12px;
}

.about-carousel-next {
  right: 12px;
}

/* Caption */

.about-carousel-caption {
  position: absolute;

  left: 0;
  right: 0;
  bottom: 0;
  padding: 12px 16px;
  background: rgba(0, 0, 0, 0.58);
  z-index: 2;
}

.about-carousel-caption h5 {
  margin: 0;
  font-size: 14px;
  font-weight: 500;
  color: #fff;
}

.about-carousel-caption p {
  margin: 2px 0 0;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.78);
}


/* Dots */

.about-carousel-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
}

.about-carousel-dot {
  width: 7px;
  height: 7px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: #ccc;
  cursor: pointer;
  transition: all 0.25s ease;
}

.about-carousel-dot.active {
  background: var(--accent-color);
  transform: scale(1.25);
}

/* Mobile */

@media (max-width: 991px) {
  .about-carousel-image-wrap {
    height: 400px;
  }
}

@media (max-width: 575px) {
  .about-carousel-image-wrap {
    height: 340px;
  }
}

/*--------------------------------------------------------------
# Certified Excellence Section
--------------------------------------------------------------*/
.certified-excellence .certified-excellence-heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 40px;
}

.certified-excellence .certified-excellence-heading .badge {
  display: inline-block;
  margin-bottom: 14px;
}

.certified-excellence .certified-excellence-heading h2 {
  margin-bottom: 12px;
}

.certified-excellence .certified-excellence-heading p {
  max-width: 700px;
}

.certified-excellence .cert-card {
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  border-radius: 8px;
  padding: 32px 26px;
  text-align: center;
  height: 100%;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.certified-excellence .cert-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent-color);
  box-shadow: 0 12px 30px color-mix(in srgb, var(--default-color), transparent 90%);
}

.certified-excellence .cert-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--accent-color);
}

.certified-excellence .cert-card h5 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}

.certified-excellence .cert-card p {
  font-size: 14px;
  line-height: 1.65;
  margin-bottom: 20px;
  min-height: 60px;
}

.certified-excellence .cert-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--accent-color);
  text-decoration: none;
  border: 1px solid var(--accent-color);
  border-radius: 30px;
  padding: 8px 18px;
  transition: background 0.25s ease, color 0.25s ease;
}

.certified-excellence .cert-link:hover {
  background: var(--accent-color);
  color: #fff;
}
/*--------------------------------------------------------------
# Workflow Section
--------------------------------------------------------------*/
.workflow .stepper-row {
  display: flex;
  align-items: flex-start;
  margin-bottom: 36px;
}
.workflow .stepper-row:last-child {
  margin-bottom: 0;
}
.workflow .stepper-step {
  flex: 1;
  text-align: center;
  padding: 0 8px;
}
.workflow .stepper-circle {
  position: relative;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent-color);
  color: #fff;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}
.workflow .stepper-circle .step-number {
  position: absolute;
  top: -6px;
  right: -6px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #fff;
  color: var(--accent-color);
  font-size: 10px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 2px var(--accent-color);
}
.workflow .stepper-step h4 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 6px;
}
.workflow .stepper-step p {
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin: 0;
}
.workflow .stepper-line {
  flex: 0 0 40px;
  height: 2px;
  background: var(--border-color, #ddd);
  margin-top: 20px;
}
@media (max-width: 768px) {
  .workflow .stepper-row {
    flex-direction: column;
    align-items: stretch;
  }
  .workflow .stepper-line {
    display: none;
  }
  .workflow .stepper-step {
    margin-bottom: 24px;
  }
}

.workflow .stepper-step:hover .stepper-circle {
  transform: scale(1.12);
  box-shadow: 0 6px 16px color-mix(in srgb, var(--accent-color), transparent 60%);
}
.workflow .stepper-circle {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

/*--------------------------------------------------------------
# Products Section
--------------------------------------------------------------*/
.product-card {
  position: relative;
  display: block;
  height: 260px;
  border-radius: 10px;
  overflow: hidden;
  text-decoration: none;
}
.product-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.product-card:hover img {
  transform: scale(1.08);
}
.product-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 16px;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 20%, rgba(0,0,0,0.3) 70%, transparent 100%);
  color: #fff;
  transition: padding-top 0.35s ease;
}
.product-overlay h4 {
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 4px;
  color: #fff;
}
.product-overlay p {
  font-size: 13px;
  color: #e5e5e5;
  margin: 0;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, opacity 0.35s ease;
}
.product-card:hover .product-overlay {
  padding-top: 40px;
}
.product-card:hover .product-overlay p {
  max-height: 60px;
  opacity: 1;
}

/* ----------------------------------- */

.hero.hero-bg {
  opacity: 0;
  animation: heroPageLoad 4s ease forwards;
}

@keyframes heroPageLoad {
  from { opacity: 0; }
  to { opacity: 1; }
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .service-item {
  background-color: var(--surface-color);
  text-align: center;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  padding: 80px 20px;
  transition: border ease-in-out 0.3s;
  height: 100%;
  border-radius: 12px;
}

.services .service-item .icon {
  margin: 0 auto;
  width: 64px;
  height: 64px;
  background: var(--accent-color);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: 0.3s;
}

.services .service-item .icon i {
  color: var(--contrast-color);
  font-size: 28px;
  transition: ease-in-out 0.3s;
}

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

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

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

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

/*--------------------------------------------------------------
# Industries Section
--------------------------------------------------------------*/
.industry-tile {
  text-align: center;
  padding: 24px 12px;
  border-radius: 10px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.industry-tile:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.08);
}
.industry-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: color-mix(in srgb, var(--accent-color), transparent 88%);
  color: var(--accent-color);
  font-size: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}
.industry-tile h4 {
  font-size: 15px;
  font-weight: 700;
  margin: 0;
}

/*--------------------------------------------------------------
# Clients / Tech Partners Section
--------------------------------------------------------------*/
.clients {
  padding: 25px 0;
}

.clients .swiper {
  padding: 10px 0;
}

.clients .swiper-wrapper {
  height: auto;
}

.clients .swiper-slide img {
  transition: 0.3s;
}

.clients .swiper-slide img:hover {
  transform: scale(1.1);
}

.clients .swiper-slide img {
  height: 55px;
  width: auto;
  /* max-width: 140px; */
  object-fit: contain;
  margin-bottom: 80px;
}

/*--------------------------------------------------------------
# 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: 8px 20px 10px 20px;
  margin: 0;
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 5px;
  border-radius: 4px;
  transition: all 0.3s ease-in-out;
  font-family: var(--heading-font);
}

.portfolio .portfolio-filters li:hover,
.portfolio .portfolio-filters li.filter-active {
  color: var(--contrast-color);
  background-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 0 10px 0;
  }
}

.portfolio .portfolio-item {
  position: relative;
  overflow: hidden;
}

.portfolio .portfolio-item .portfolio-info {
  opacity: 0;
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: -100%;
  z-index: 3;
  transition: all ease-in-out 0.5s;
  background: color-mix(in srgb, var(--background-color), transparent 10%);
  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: 0;
}

.portfolio-item img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}

/*--------------------------------------------------------------
# Contact Teaser Section
--------------------------------------------------------------*/

.cta-parallax h2 {
  font-size: 32px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 30px;
  font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-style: italic;
}
.cta-parallax p {
  font-size: 17px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 25px;
  font-style: italic;
}

.cta-parallax .btn-get-started {
  display: inline-block;
  background: var(--accent-color);
  color: #fff;
  padding: 12px 34px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.5px;
  transition: 0.3s;
}
.cta-parallax .btn-get-started:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
  color: #fff;
}

.cta-parallax {
  padding-top: 40px;
  padding-bottom: 40px;
}
.cta-parallax .cta-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--accent-color);
  color: #fff;
  font-size: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.cta-parallax .cta-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.cta-parallax .cta-call {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--accent-color);
  border: 2px solid var(--accent-color);
  padding: 10px 12px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 15px;
  transition: 0.3s;
}
.cta-parallax .cta-call:hover {
  background: var(--accent-color);
  color: #fff;
}
.cta-parallax .cta-call i {
  font-size: 16px;
}

/* ============================================================
   SECTION 3: PAGES
   ============================================================ */


/*--------------------------------------------------------------
# Panel Pages (MCC, PCC, PLC, APFC, VFD, IMCC, PMCC, BMS-PMS)
--------------------------------------------------------------*/

/* Horizontal Tabs — no box, spread across full width */
.panel-tabs {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 45px;
}

.panel-tabs a {
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.5px;
  /* color: color-mix(in srgb, var(--default-color), transparent 25%); */
  color: black;
  padding: 6px 2px;
  border-bottom: 3px solid transparent;
  text-align: center;
  transition: color 0.3s, border-color 0.3s;
}

.panel-tabs a.active {
  color: var(--accent-color);
  border-bottom-color: var(--accent-color);
}

.panel-tabs a:hover {
  color: var(--accent-color);
}

@media (max-width: 991px) {
  .panel-tabs {
    justify-content: flex-start;
    gap: 20px;
    overflow-x: auto;
    white-space: nowrap;
  }
}

/* Content */
.panel-content h3 {
  padding-top: 10px;
  font-size: 26px;
  font-weight: 700;
  color: var(--heading-color);
}

.panel-content h4 {
  padding-top: 3px;
  font-size: 22px;
  font-weight: 700;
  color: var(--heading-color);
  margin-top: 20px;
}

.panel-content p {
  font-size: 18px;
  text-align: justify;
  color: color-mix(in srgb, var(--default-color), transparent 10%);
}

/* Feature Checklist — same interaction as Industries page */
.panel-features ul {
  list-style: none;
  padding-left: 0;
}

.panel-features ul li {
  display: flex;
  align-items: center;
  padding: 6px 0;
  transition: transform 0.25s ease, color 0.25s ease;
}

.panel-features ul li i {
  color: var(--accent-color);
  margin-right: 8px;
  transition: color 0.25s ease;
}

@media (hover: hover) and (pointer: fine) {
  .panel-features ul li:hover {
    transform: translateX(8px);
    color: var(--accent-color);
  }
}

@media (hover: none) {
  .panel-features ul li:active {
    transform: translateX(8px);
    color: var(--accent-color);
  }
}

/* Panel image frame — consistent box regardless of source photo orientation */
.panel-image-frame {
  height: 480px;
  border-radius: 2px;
  overflow: hidden;
}

.panel-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

@media (max-width: 768px) {
  .panel-image-frame {
    height: 360px;
  }
}

/*--------------------------------------------------------------
# About Company
--------------------------------------------------------------*/

.about-company{
  overflow:hidden;
}

/* Image */

.about-image{
  background:#fff;
  border-radius:16px;
  overflow:hidden;
  border:1px solid var(--accent-color);
  box-shadow:0 8px 24px rgba(0,0,0,.08);
  transition:.3s;
}

.about-image:hover{
  transform:translateY(-8px);
  box-shadow:0 16px 36px rgba(0,0,0,.14);
}

.about-image img{
  width:100%;
  height:460px;
  object-fit:fill;
}

/* Cards */

.about-card{
  width:100%;
  background:var(--surface-color);
  border:1px solid var(--accent-color);
  border-radius:16px;
  padding:35px 28px;
  text-align:center;
  box-shadow:0 8px 24px rgba(0,0,0,.06);
  transition:.3s;
}

.about-card:hover{
  transform:translateY(-8px);
  box-shadow:0 16px 36px rgba(0,0,0,.12);
}

.about-icon{
  width:72px;
  height:72px;
  margin:auto;
  margin-bottom:20px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  background:color-mix(in srgb,var(--accent-color),white 88%);
  color:var(--accent-color);
  font-size:34px;

}

.about-card h4{
  margin-bottom:15px;
  color:var(--heading-color);
}

.about-card p{
  margin:0;
  text-align:center;
  line-height:1.8;
}

/* Responsive */

@media(max-width:991px){
.about-image{
margin-top:20px;
}
.about-image img{
height:300px;
}
}

/*--------------------------------------------------------------
# About Team
--------------------------------------------------------------*/
/* No custom rules yet — 
  page currently uses Bootstrap utility classes only */


/*--------------------------------------------------------------
# Expertise Page
--------------------------------------------------------------*/
.expertise-toggle {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.expertise-toggle-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  width: 200px;
  padding: 28px 20px;
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.expertise-toggle-card:hover {
  border-color: var(--accent-color);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.expertise-toggle-icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  font-size: 18px;
  transition: all 0.3s ease;
}

.expertise-toggle-card span {
  font-weight: 500;
  color: var(--heading-color);
}

.expertise-toggle-card.active {
  border-color: var(--accent-color);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.expertise-toggle-card.active .expertise-toggle-icon {
  background-color: var(--accent-color);
  color: #fff;
}

.expertise-card {
  height: 100%;
  padding: 28px 24px;
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border: 1px solid var(--accent-color);
  border-radius: 10px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.expertise-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

.expertise-card-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  font-size: 20px;
  margin-bottom: 16px;
}

.expertise-card h4 {
  margin-bottom: 12px;
  color: var(--heading-color);
}

.expertise-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.expertise-tags span {
  font-size: 12px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 88%);
  color: var(--accent-color);
}

.expertise-card p {
  color: color-mix(in srgb, var(--default-color), transparent 15%);
  text-align: justify;
}

/*--------------------------------------------------------------
# Offerings Page
--------------------------------------------------------------*/
.offerings-summary {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.offerings-summary-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
  padding: 24px 16px;
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.offerings-summary-card:hover {
  border-color: var(--accent-color);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transform: translateY(-4px);
}

.offerings-summary-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  font-size: 20px;
}

.offerings-summary-title {
  font-weight: 600;
  font-size: 14px;
  color: var(--heading-color);
}

.offerings-summary-count {
  font-size: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.offerings-section {
  scroll-margin-top: 100px;
  padding: 32px 0;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.offerings-section:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.offerings-section-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.offerings-section-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  font-size: 20px;
  flex-shrink: 0;
}

.offerings-section-header h3 {
  margin: 0;
  color: var(--heading-color);
}

.offerings-item-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.offerings-item {
  position: relative;
  padding: 18px 20px;
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 12px;
}

.offerings-item-number {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  font-size: 11px;
  font-weight: 600;
  margin-bottom: 10px;
}

.offerings-item h5 {
  color: var(--heading-color);
  margin-bottom: 8px;
}

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

#offerings .col-lg-8 p {
  font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
  font-size:x-large;
  font-weight: 350;
}

@media (max-width: 992px) {
  .offerings-summary {
    grid-template-columns: repeat(2, 1fr);
  }

  .offerings-item-grid {
    grid-template-columns: 1fr;
  }
}

/*--------------------------------------------------------------
# Industries Page
--------------------------------------------------------------*/

@media (hover: hover) and (pointer: fine) {
  #industries .col-lg-5 ul li:hover {
    transform: translateX(6px);
    color: var(--accent-color);
  }
}

@media (hover: none) {
  #industries .col-lg-5 ul li:active {
    transform: translateX(6px);
    color: var(--accent-color);
  }
}

#industries .col-lg-5 ul li {
  transition: transform 0.25s ease, color 0.25s ease;
}

#industries .col-lg-5 ul li i {
  color: var(--accent-color);
  margin-right: 8px;
  transition: color 0.25s ease;
}

#industries .col-lg-6 p {
  text-align: justify;
}

#industries .col-lg-5 ul {
  list-style: none;
  padding-left: 0;
}

#industries .col-lg-5 h5 {
 font-weight:600;
 font-size:x-large;
}

#industries .col-lg-8 p {
  font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
  font-size:x-large;
  font-weight: 350;
}

/*--------------------------------------------------------------
# Insights Page
--------------------------------------------------------------*/

.insights-page .main-case-image {
  aspect-ratio: 4 / 3;
}
.insights-page .main-case-image img {
  width: 100%;
  height: 90%;
  object-fit: cover;
  object-position: top;
}

.insights-page .at-a-glance-heading {
  display: block;
}
.insights-page .at-a-glance-heading span {
  display: block;
  width: 55px;
  height: 2px;
  margin-top: 10px;
  background: var(--accent-color);
}
.insights-page .at-a-glance-heading h5 {
  margin: 0;
}

.insights-page .case-study-block p {
  text-align: justify;
}


/*--------------------------------------------------------------
# Projects Page
--------------------------------------------------------------*/
#featured-project { padding: 75px 0 90px; }
#more-projects { padding: 95px 0 110px; }

/* Section labels + headings (shared: featured-label / projects-section-label, featured-title / h2, featured-intro / heading p) */
#featured-project .featured-label,
#more-projects .projects-section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}
#featured-project .featured-label {
  padding: 6px 14px;
  background: var(--accent-color);
  color: #fff;
  border-radius: 3px;
  letter-spacing: 1px;
}
#more-projects .projects-section-label { color: var(--accent-color); margin-bottom: 12px; }

#featured-project .featured-title,
#more-projects .more-projects-heading h2 {
  margin: 20px 0 16px;
  font-size: clamp(30px, 3vw, 42px);
  font-weight: 600;
  letter-spacing: -0.5px;
}

#featured-project .featured-intro,
#more-projects .more-projects-heading p {
  max-width: 850px;
  margin: 0 auto;
  font-size: 17px;
  line-height: 1.75;
  font-weight: 350;
}
#more-projects .more-projects-heading { margin-bottom: 70px; max-width: 720px; margin-left: auto; margin-right: auto; }

/* Card frame: main image, at-a-glance box, supporting-image tiles all share this look */
#featured-project .main-case-image,
#featured-project .at-a-glance,
#featured-project .supporting-image {
  position: relative;
  overflow: hidden;
  border-radius: 5px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  background: var(--surface-color);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
#featured-project .supporting-image { aspect-ratio: 4 / 3; }
#featured-project .main-case-image { aspect-ratio: 4 / 3; }
#featured-project .main-case-image img,
#featured-project .supporting-image img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.4s ease;
}
#featured-project .at-a-glance { padding: 28px 28px 24px; align-self: flex-start; }

@media (hover: hover) and (pointer: fine) {
  #featured-project .main-case-image:hover,
  #featured-project .at-a-glance:hover,
  #featured-project .supporting-image:hover {
    border-color: var(--accent-color);
    box-shadow: 0 8px 25px color-mix(in srgb, var(--default-color), transparent 92%);
  }
  #featured-project .main-case-image:hover img,
  #featured-project .supporting-image:hover img { transform: scale(1.035); }
}

/* At a Glance list */
#featured-project .at-a-glance-heading { display: flex; align-items: center; gap: 10px; margin-bottom: 22px; }
#featured-project .at-a-glance-heading span { width: 28px; height: 2px; background: var(--accent-color); flex-shrink: 0; }
#featured-project .at-a-glance-heading h5 { margin: 0; font-size: 21px; font-weight: 600; letter-spacing: -0.2px; }
#featured-project .at-a-glance ul { list-style: none; margin: 0; padding: 0; }
#featured-project .at-a-glance li {
  display: flex; align-items: flex-start; gap: 11px; padding: 9px 0;
  line-height: 1.55; font-size: 15px;
  transition: transform 0.25s ease, color 0.25s ease;
}
#featured-project .at-a-glance li i {
  flex-shrink: 0; margin-top: 7px; font-size: 7px; color: var(--accent-color);
  transition: transform 0.25s ease;
}

/* Accent line: shared by case-study-block headings and timeline headings */
#featured-project .section-accent-line,
#more-projects .timeline-accent-line {
  height: 2px;
  background: var(--accent-color);
  transition: width 0.3s ease;
}
#featured-project .section-accent-line { width: 55px; margin: 10px 0 17px; }
#more-projects .timeline-accent-line { width: 38px; margin: 12px 0 17px; }
#more-projects .timeline-right .timeline-accent-line { margin-right: auto; }
#more-projects .timeline-left .timeline-accent-line { margin-left: auto; margin-right: 0; }

@media (hover: hover) and (pointer: fine) {
  #featured-project .at-a-glance li:hover { transform: translateX(9px); color: var(--accent-color); }
  #featured-project .at-a-glance li:hover i { transform: translateX(5px); }
  #featured-project .case-study-block:hover .section-accent-line { width: 70px; }
  #more-projects .timeline-project:hover .timeline-accent-line { width: 60px; }
}
@media (hover: none) {
  #featured-project .at-a-glance li:active { transform: translateX(6px); color: var(--accent-color); }
}

/* Case study text blocks */
#featured-project .case-study-details { margin-top: 55px; }
#featured-project .case-study-block { margin-bottom: 45px; }
#featured-project .case-study-block:last-child { margin-bottom: 0; }
#featured-project .case-study-block h4,
#more-projects .timeline-content h3 { margin: 0; font-weight: 600; letter-spacing: -0.2px; }
#featured-project .case-study-block h4 { font-size: 23px; }
#more-projects .timeline-content h3 { font-size: 24px; line-height: 1.3; transition: color 0.25s ease; }
#featured-project .case-study-block p,
#more-projects .timeline-content p {
  max-width: 850px; margin: 0; font-weight: 400; line-height: 1.8;
}
#featured-project .case-study-block p { font-size: 16px; line-height: 1.85; }
#more-projects .timeline-content p { font-size: 15.5px; margin-bottom: 18px; }

#featured-project .supporting-images { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }

#featured-project .at-a-glance-video {
  aspect-ratio: 16 / 9;
  margin-top: 18px;
  border-radius: 4px;
  overflow: hidden;
}
#featured-project .at-a-glance-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}


/* Timeline structure */
#more-projects .project-timeline { position: relative; max-width: 1200px; margin: 0 auto; padding: 20px 0; }
#more-projects .project-timeline::before {
  content: ""; position: absolute; top: 0; bottom: 0; left: 50%; width: 1px;
  background: color-mix(in srgb, var(--accent-color), transparent 45%);
  transform: translateX(-50%);
}
#more-projects .timeline-project { position: relative; width: 50%; padding: 10px 0 70px; transition: transform 0.3s ease; }
#more-projects .timeline-left { padding-right: 75px; text-align: right; }
#more-projects .timeline-right { margin-left: 50%; padding-left: 75px; text-align: left; }

#more-projects .timeline-marker {
  position: absolute; top: 5px; width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--accent-color); border-radius: 50%;
  background: var(--background-color); z-index: 2;
  transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
}
#more-projects .timeline-left .timeline-marker { right: -24px; }
#more-projects .timeline-right .timeline-marker { left: -24px; }
#more-projects .timeline-marker span { font-family: 'Montserrat', sans-serif; font-size: 11px; font-weight: 600; color: var(--accent-color); }

#more-projects .timeline-content ul { list-style: none; margin: 0; padding: 0; }
#more-projects .timeline-content li {
  position: relative; margin-bottom: 8px; font-size: 14px; line-height: 1.55;
  transition: transform 0.25s ease, color 0.25s ease;
}
#more-projects .timeline-content li::before { content: "→"; position: absolute; color: var(--accent-color); transition: transform 0.25s ease; }
#more-projects .timeline-left .timeline-content li { padding-right: 23px; }
#more-projects .timeline-left .timeline-content li::before { right: 0; }
#more-projects .timeline-right .timeline-content li { padding-left: 23px; }
#more-projects .timeline-right .timeline-content li::before { left: 0; }

@media (hover: hover) and (pointer: fine) {
  #more-projects .timeline-project:hover .timeline-marker {
    transform: scale(1.08); background: var(--accent-color);
    box-shadow: 0 0 0 7px color-mix(in srgb, var(--accent-color), transparent 88%);
  }
  #more-projects .timeline-project:hover .timeline-marker span { color: #fff; }
  #more-projects .timeline-left:hover .timeline-content { transform: translateX(-6px); }
  #more-projects .timeline-right:hover .timeline-content { transform: translateX(6px); }
  #more-projects .timeline-project:hover h3 { color: var(--accent-color); }
  #more-projects .timeline-left .timeline-content li:hover,
  #more-projects .timeline-right .timeline-content li:hover { color: var(--accent-color); }
  #more-projects .timeline-left .timeline-content li:hover { transform: translateX(-6px); }
  #more-projects .timeline-right .timeline-content li:hover { transform: translateX(6px); }
  #more-projects .timeline-left .timeline-content li:hover::before { transform: translateX(-3px); }
  #more-projects .timeline-right .timeline-content li:hover::before { transform: translateX(3px); }
}

/* Mobile timeline */
@media (max-width: 991px) {
  #more-projects .project-timeline::before { left: 24px; transform: none; }
  #more-projects .timeline-project,
  #more-projects .timeline-left,
  #more-projects .timeline-right {
    width: 100%; margin-left: 0; padding: 0 20px 55px 75px; text-align: left;
  }
  #more-projects .timeline-left .timeline-marker,
  #more-projects .timeline-right .timeline-marker { left: 0; right: auto; }
  #more-projects .timeline-left .timeline-accent-line,
  #more-projects .timeline-right .timeline-accent-line { margin: 12px 0 17px; }
  #more-projects .timeline-left .timeline-content li,
  #more-projects .timeline-right .timeline-content li { padding: 0 0 0 23px; }
  #more-projects .timeline-left .timeline-content li::before,
  #more-projects .timeline-right .timeline-content li::before { left: 0; right: auto; }
  #more-projects .timeline-left:hover .timeline-content,
  #more-projects .timeline-right:hover .timeline-content,
  #more-projects .timeline-left .timeline-content li:hover,
  #more-projects .timeline-right .timeline-content li:hover { transform: translateX(6px); }
}

/* Small mobile */
@media (max-width: 575px) {
  #featured-project { padding: 55px 0 65px; }
  #featured-project .featured-title { font-size: 29px; }
  #featured-project .featured-intro { font-size: 15px; }
  #featured-project .at-a-glance { padding: 23px 20px; }
  #featured-project .case-study-details { margin-top: 40px; }
  #featured-project .case-study-block { margin-bottom: 38px; }
  #featured-project .case-study-block h4 { font-size: 20px; }
  #featured-project .case-study-block p { font-size: 15px; line-height: 1.75; }
  #featured-project .supporting-images { gap: 10px; }
  #more-projects { padding: 65px 0 75px; }
  #more-projects .more-projects-heading { margin-bottom: 45px; }
  #more-projects .more-projects-heading h2 { font-size: 30px; }
  #more-projects .more-projects-heading p { font-size: 15px; }
  #more-projects .timeline-project,
  #more-projects .timeline-left,
  #more-projects .timeline-right { padding: 0 5px 0 62px; }
  #more-projects .project-timeline::before { left: 20px; }
  #more-projects .timeline-left .timeline-marker,
  #more-projects .timeline-right .timeline-marker { left: -4px; }
  #more-projects .timeline-marker { width: 42px; height: 42px; }
  #more-projects .timeline-content h3 { font-size: 20px; }
  #more-projects .timeline-content p { font-size: 14.5px; }
  #more-projects .timeline-content li { font-size: 13.5px; }
}

/*--------------------------------------------------------------
# Pharma Page
--------------------------------------------------------------*/

.pharma-intro-eyebrow {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent-color);
  margin-bottom: 12px;
}

.pharma-intro-pullquote {
  font-size: 19px;
  font-weight: 500;
  line-height: 1.5;
  color: var(--heading-color);
  border-left: 4px solid var(--accent-color);
  padding-left: 18px;
  margin-bottom: 20px;
  text-align: justify;
}

.pharma-intro-support {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--heading-color);
  border-left: 4px solid var(--accent-color);
  padding-left: 18px;
  margin-bottom: 20px;
}

.pharma-badge-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 8px;
}

.pharma-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  border-radius: 30px;
  padding: 7px 14px;
  font-size: 12.5px;
  font-weight: 600;
  margin: 3px 5px 3px 0;
}

.pharma-intro-closing {
  font-size: 14px;
  color: var(--heading-color);
  font-weight: 600;
  margin-top: 22px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  padding-top: 18px;
}

.pharma-gallery img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 6px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.pharma-gallery img:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 24px color-mix(in srgb, var(--default-color), transparent 80%);
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 10%);
}

/*--------------------------------------------------------------
# Contact Page
--------------------------------------------------------------*/
.contact .info-wrap {
  background-color: var(--surface-color);
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  padding: 30px;
}

@media (max-width: 575px) {
  .contact .info-wrap {
    padding: 20px;
  }
}

.contact .info-item {
  margin-bottom: 40px;
}

.contact .info-item i {
  font-size: 20px;
  color: var(--accent-color);
  background: color-mix(in srgb, var(--accent-color), transparent 92%);
  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 .info-item:hover i {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.contact .php-email-form {
  background-color: var(--surface-color);
  height: 100%;
  padding: 30px;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
}

@media (max-width: 575px) {
  .contact .php-email-form {
    padding: 20px;
  }
}

.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: var(--surface-color);
  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 25%);
}

.contact .php-email-form .required-star {
  color: #e74c3c;
}

.contact .info-wrap,
.contact .php-email-form {
  border-radius: 12px;
  border: 1px solid var(--accent-color);
}
.contact .info-item i {
  transition: transform 0.3s ease, background 0.3s ease;
}
.contact .info-item:hover i {
  transform: scale(1.1);
}
.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent-color), transparent 85%);
}

/*--------------------------------------------------------------
# Contact Form Modal
--------------------------------------------------------------*/
.form-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}

.form-modal-overlay.active {
  display: flex;
}

.form-modal-box {
  background: var(--surface-color, #fff);
  border-radius: 10px;
  padding: 40px 36px;
  max-width: 380px;
  width: 90%;
  text-align: center;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

.form-modal-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 700;
  color: #fff;
}

.form-modal-icon.loading {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
  animation: form-modal-spin 1s linear infinite;
  border: 4px solid color-mix(in srgb, var(--accent-color), transparent 60%);
  border-top-color: var(--accent-color);
  background: transparent;
}

.form-modal-icon.success {
  background: var(--accent-color);
}

.form-modal-icon.error {
  background: #d9534f;
}

@keyframes form-modal-spin {
  to { transform: rotate(360deg); }
}

.form-modal-text {
  font-size: 16px;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 6px;
}

.form-modal-countdown {
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 18px;
}

.form-modal-close-btn {
  display: none;
  background: var(--accent-color);
  color: #fff;
  border: none;
  padding: 10px 26px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}

/* Case Study Cards (Insights page) */
.case-study-card {
  display: block;
  border-radius: 10px;
  overflow: hidden;
  background-color: var(--surface-color);
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
  text-decoration: none;
  height: 100%;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.case-study-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}
.case-study-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}
.case-study-card-body {
  padding: 22px 24px 26px;
}
.case-study-card-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent-color);
  margin-bottom: 8px;
}
.case-study-card-body h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--heading-color);
  margin: 0 0 10px;
}
.case-study-card-body p {
  font-size: 14.5px;
  color: var(--default-color);
  line-height: 1.7;
  margin: 0 0 14px;
}
.case-study-card-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--accent-color);
}
.case-study-card-link i {
  margin-left: 4px;
  transition: margin-left 0.25s ease;
}
.case-study-card:hover .case-study-card-link i {
  margin-left: 9px;
}