/**
* Template Name: BizLand
* Template URL: https://bootstrapmade.com/bizland-bootstrap-business-template/
* Updated: Aug 07 2024 with Bootstrap v5.3.3
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* 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: #223a66; /* 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: #223a66; /* 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: #223a66; /* 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;
}

/*--------------------------------------------------------------
# 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;
}

/*--------------------------------------------------------------
# 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;
  color: var(--accent-color);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 1199px) {

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

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

.section-title h2 {
  font-size: 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 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);
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  min-height: 75vh;
  position: relative;
  padding: 60px 0;
  display: flex;
  align-items: center;
  background: url("../img/hero-bg.jpg") top left;
  background-size: cover;
}

.hero:before {
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 30%);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

.hero .container {
  position: relative;
}

.hero h1 {
  margin: 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
}

.hero h1 span {
  color: var(--accent-color);
}

.hero p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  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 {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}

.hero .btn-watch-video {
  font-size: 16px;
  transition: 0.5s;
  margin-left: 25px;
  color: var(--default-color);
  font-weight: 600;
}

.hero .btn-watch-video i {
  color: var(--accent-color);
  font-size: 32px;
  transition: 0.3s;
  line-height: 0;
  margin-right: 8px;
}

.hero .btn-watch-video:hover {
  color: var(--accent-color);
}

.hero .btn-watch-video:hover i {
  color: color-mix(in srgb, var(--accent-color), transparent 15%);
}

.hero .animated {
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

@media (max-width: 640px) {
  .hero h1 {
    font-size: 28px;
    line-height: 36px;
  }

  .hero p {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }

  .hero .btn-get-started,
  .hero .btn-watch-video {
    font-size: 13px;
  }
}

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }

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

/*--------------------------------------------------------------
# Featured Services Section
--------------------------------------------------------------*/
.featured-services .service-item {
  background-color: var(--surface-color);
  box-shadow: 0px 0 25px 0 rgba(0, 0, 0, 0.1);
  padding: 50px 30px;
  transition: all 0.3s ease-in-out;
  height: 100%;
  position: relative;
  z-index: 1;
}

.featured-services .service-item:before {
  content: "";
  position: absolute;
  background: var(--accent-color);
  inset: 100% 0 0 0;
  transition: all 0.3s;
  z-index: -1;
}

.featured-services .service-item .icon {
  margin-bottom: 10px;
}

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

.featured-services .service-item h4 {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 20px;
}

.featured-services .service-item h4 a {
  color: var(--heading-color);
  transition: ease-in-out 0.3s;
}

.featured-services .service-item p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
  transition: ease-in-out 0.3s;
}

.featured-services .service-item:hover h4 a,
.featured-services .service-item:hover .icon i,
.featured-services .service-item:hover p {
  color: var(--contrast-color);
}

.featured-services .service-item:hover:before {
  background: var(--accent-color);
  inset: 0;
  border-radius: 0px;
}

/*--------------------------------------------------------------
# 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: 35px;
}

.about .about-content ul li:first-child {
  margin-top: 35px;
}

.about .about-content ul i {
  background: var(--surface-color);
  box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  font-size: 24px;
  margin-right: 15px;
  color: var(--accent-color);
  border-radius: 50px;
}

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

/*--------------------------------------------------------------
# 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 i {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border: 6px solid var(--surface-color);
  width: 64px;
  height: 64px;
  font-size: 24px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.stats .stats-item {
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  margin-top: -32px;
  padding: 40px 30px 35px 30px;
  width: 100%;
  position: relative;
  text-align: center;
  border-radius: 4px;
  z-index: 0;
}

.stats .stats-item span {
  font-size: 36px;
  display: block;
  font-weight: 700;
}

.stats .stats-item p {
  padding: 0;
  margin: 0;
  font-family: var(--heading-font);
  font-size: 16px;
}

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

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

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

.clients .swiper-slide img {
  transition: 0.3s;
  width: 130px;
  max-width: 130px;
  

}

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

/*--------------------------------------------------------------
# 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%;
}

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

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials {
  padding: 80px 0;
  position: relative;
}

.testimonials:before {
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 30%);
  position: absolute;
  inset: 0;
  z-index: 2;
}

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

.testimonials .container {
  position: relative;
  z-index: 3;
}

.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .testimonial-item {
  text-align: center;
}

.testimonials .testimonial-item .testimonial-img {
  width: 100px;
  border-radius: 50%;
  border: 6px solid color-mix(in srgb, var(--default-color), transparent 85%);
  margin: 0 auto;
}

.testimonials .testimonial-item h3 {
  font-size: 20px;
  font-weight: bold;
  margin: 10px 0 5px 0;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  margin: 0 0 15px 0;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.testimonials .testimonial-item .stars {
  margin-bottom: 15px;
}

.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(--default-color), transparent 40%);
  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: 0 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 50%);
  opacity: 0.5;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--default-color);
  opacity: 1;
}

@media (min-width: 992px) {
  .testimonials .testimonial-item p {
    width: 80%;
  }
}

/*--------------------------------------------------------------
# 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;
}

/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
.team .team-member {
  background-color: var(--surface-color);
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  border-radius: 5px;
}

.team .team-member .member-img {
  position: relative;
  overflow: hidden;
}

.team .team-member .social {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  height: 40px;
  opacity: 0;
  transition: ease-in-out 0.3s;
  background: color-mix(in srgb, var(--background-color), transparent 20%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.team .team-member .social a {
  transition: color 0.3s;
  color: var(--heading-color);
  margin: 0 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.team .team-member .social a i {
  line-height: 0;
}

.team .team-member .social a:hover {
  color: var(--accent-color);
}

.team .team-member .social i {
  font-size: 18px;
  margin: 0 2px;
}

.team .team-member .member-info {
  padding: 25px 15px;
  text-align: center;
}

.team .team-member .member-info h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 18px;
  color: var(--accent-color);
}

.team .team-member .member-info span {
  display: block;
  font-size: 13px;
  font-weight: 400;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.team .team-member .member-info p {
  font-style: italic;
  font-size: 14px;
  line-height: 26px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.team .team-member:hover .social {
  opacity: 1;
}

/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/
.pricing .pricing-item {
  background-color: var(--surface-color);
  box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.1);
  padding: 20px;
  text-align: center;
  border-radius: 5px;
  position: relative;
  overflow: hidden;
}

.pricing .pricing-item h3 {
  font-weight: 400;
  margin: -20px -20px 20px -20px;
  padding: 20px 15px;
  font-size: 16px;
  font-weight: 600;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  background: color-mix(in srgb, var(--default-color), transparent 95%);
}

.pricing .pricing-item h4 {
  font-size: 36px;
  font-weight: 600;
  font-family: var(--heading-font);
}

.pricing .pricing-item h4 sup {
  font-size: 20px;
  top: -15px;
  left: -3px;
}

.pricing .pricing-item h4 span {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 16px;
  font-weight: 300;
}

.pricing .pricing-item ul {
  padding: 15px 0;
  list-style: none;
  text-align: center;
  line-height: 20px;
  font-size: 14px;
}

.pricing .pricing-item ul li {
  padding-bottom: 16px;
}

.pricing .pricing-item ul i {
  color: var(--accent-color);
  font-size: 18px;
  padding-right: 4px;
}

.pricing .pricing-item ul .na {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  text-decoration: line-through;
}

.pricing .btn-wrap {
  background: color-mix(in srgb, var(--default-color), transparent 95%);
  margin: 15px -20px -20px -20px;
  padding: 20px 15px;
  text-align: center;
}

.pricing .btn-buy,
.team .btn-buy {
  background: var(--accent-color);
  color: var(--contrast-color);
  display: inline-block;
  padding: 8px 35px 10px 35px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  font-family: var(--heading-font);
  transition: 0.3s;
}

.pricing .btn-buy:hover,
.team .btn-buy:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.pricing .featured h3 {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.pricing .advanced {
  background: var(--accent-color);
  color: var(--contrast-color);
  width: 200px;
  position: absolute;
  top: 18px;
  right: -68px;
  transform: rotate(45deg);
  z-index: 1;
  font-size: 14px;
  padding: 1px 0 3px 0;
}

/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq .faq-container .faq-item {
  background-color: var(--surface-color);
  position: relative;
  padding: 20px;
  margin-bottom: 15px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-radius: 5px;
  overflow: hidden;
}

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

.faq .faq-container .faq-item h3 {
  font-weight: 600;
  font-size: 18px;
  line-height: 24px;
  margin: 0 30px 0 0;
  transition: 0.3s;
  cursor: pointer;
  display: flex;
  align-items: center;
}

.faq .faq-container .faq-item h3 .num {
  color: var(--accent-color);
  padding-right: 5px;
}

.faq .faq-container .faq-item h3:hover {
  color: var(--accent-color);
}

.faq .faq-container .faq-item .faq-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
}

.faq .faq-container .faq-item .faq-content p {
  margin-bottom: 0;
  overflow: hidden;
}

.faq .faq-container .faq-item .faq-toggle {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 16px;
  line-height: 0;
  transition: 0.3s;
  cursor: pointer;
}

.faq .faq-container .faq-item .faq-toggle:hover {
  color: var(--accent-color);
}

.faq .faq-container .faq-active {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
}

.faq .faq-container .faq-active h3 {
  color: var(--contrast-color);
}

.faq .faq-container .faq-active .faq-content {
  grid-template-rows: 1fr;
  visibility: visible;
  opacity: 1;
  padding-top: 10px;
}

.faq .faq-container .faq-active .faq-toggle {
  transform: rotate(90deg);
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.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;
  color: var(--accent-color);
}

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

/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .services-list {
  background-color: var(--surface-color);
  padding: 10px 30px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  margin-bottom: 20px;
}

.service-details .services-list a {
  display: block;
  line-height: 1;
  padding: 8px 0 8px 15px;
  border-left: 3px solid color-mix(in srgb, var(--default-color), transparent 70%);
  margin: 20px 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  transition: 0.3s;
}

.service-details .services-list a.active {
  color: var(--heading-color);
  font-weight: 700;
  border-color: var(--accent-color);
}

.service-details .services-list a:hover {
  border-color: var(--accent-color);
}

.service-details .services-img {
  margin-bottom: 20px;
}

.service-details h3 {
  font-size: 26px;
  font-weight: 700;
}

.service-details h4 {
  font-size: 20px;
  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);
}

/*--------------------------------------------------------------
# Portfolio Details Section
--------------------------------------------------------------*/
.portfolio-details .portfolio-details-slider img {
  width: 100%;
}

.portfolio-details .portfolio-details-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: color-mix(in srgb, var(--default-color), transparent 85%);
  opacity: 1;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

.portfolio-details .portfolio-info {
  background-color: var(--surface-color);
  padding: 30px;
  box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
}

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

.portfolio-details .portfolio-info ul li+li {
  margin-top: 10px;
}

.portfolio-details .portfolio-description {
  padding-top: 30px;
}

.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
  padding: 0;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/
.starter-section {
  /* Add your styles here */
}





















.company-tagline {
  text-align: right;
  color: red;
  font-family: 'Brush Script MT', cursive;
  font-size: 26px;
}



















.about-section {
  position: relative;
  padding: 0px 0 100px;
  overflow: hidden;
  background: #ffffff;
}

.about-section::before {
  content: 'ABOUT';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--heading-font);
  font-size: clamp(120px, 20vw, 260px);
  font-weight: 700;
  color: rgba(0,0,0,0.03);
  white-space: nowrap;
  pointer-events: none;
  z-index: 0;
  letter-spacing: -0.02em;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent-color);
  margin-bottom: 28px;
  animation: fadeUp 0.7s ease both;
}
.eyebrow::before {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--accent-color);
}

.about-headline {
  font-family: var(--heading-font);
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 700;
  line-height: 1.15;
  color: var(--heading-color);
  margin-bottom: 32px;
  animation: fadeUp 0.7s 0.1s ease both;
}
.about-headline em {
  font-style: italic;
  color: var(--accent-color);
}

.about-body {
  font-family: var(--default-font);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.85;
  color: var(--default-color);
  margin-bottom: 20px;
  max-width: 480px;
  animation: fadeUp 0.7s 0.2s ease both;
}

.btn-about {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 30px;
  border: 1px solid var(--accent-color);
  color: var(--accent-color);
  background: transparent;
  font-family: var(--heading-font);
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 4px;
  transition: background 0.3s, color 0.3s;
  animation: fadeUp 0.7s 0.3s ease both;
}
.btn-about:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}
.btn-about svg { transition: transform 0.3s; }
.btn-about:hover svg { transform: translateX(5px); }

.stats-row {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  margin-top: 50px;
  padding-top: 40px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  animation: fadeUp 0.7s 0.4s ease both;
}

.stat-number {
  font-family: var(--heading-font);
  font-size: 36px;
  font-weight: 700;
  color: var(--accent-color);
  line-height: 1;
}

.stat-label {
  font-family: var(--default-font);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-top: 6px;
}

.image-stack {
  position: relative;
  height: 560px;
  animation: fadeUp 0.9s 0.15s ease both;
}
.img-main {
  position: absolute;
  top: 0; right: 0;
  width: 85%;
  height: 480px;
  object-fit: cover;
  filter: grayscale(20%);
}
.img-accent {
  position: absolute;
  bottom: 0; left: 0;
  width: 55%;
  height: 280px;
  object-fit: cover;
  border: 6px solid #ffffff;
  filter: grayscale(10%);
}

.bracket {
  position: absolute;
  bottom: 28px;
  right: 28px;
  width: 60px;
  height: 60px;
  border-right: 2px solid var(--accent-color);
  border-bottom: 2px solid var(--accent-color);
  z-index: 2;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}




























/* Section must be relative so buttons can anchor to it */
.our-projects {
  position: relative;
  padding: 60px 0;
  background-color: #f5f9ff;
  overflow: visible; /* allow buttons to sit on edges */
}

.our-projects .section-title {
  padding-bottom: 40px;
}

/* Carousel wrapper stays full width, no side buttons inside */
.projects-carousel-outer {
  display: block; /* reset if you had flex on this */
}

/* Buttons pinned to left/right edges, vertically centred on the card strip */
.projects-side-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid var(--accent-color);
  background: #ffffff;
  color: var(--accent-color);
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(0,0,0,0.14);
  transition: background 0.25s, color 0.25s, transform 0.25s, opacity 0.25s;
}




/* On larger screens push buttons further out so they clear the container */
@media (min-width: 1400px) {
  #projectsPrev { left: calc(50% - 740px); }
  #projectsNext { right: calc(50% - 740px); }
}

@media (max-width: 767px) {
  .projects-side-btn { width: 38px; height: 38px; font-size: 14px; }
  #projectsPrev { left: 6px; }
  #projectsNext { right: 6px; }
}

@media (max-width: 480px) {
  #projectsPrev { left: 2px; }
  #projectsNext { right: 2px; }
}





#projectsPrev { left: 12px; }
#projectsNext { right: 12px; }

.projects-side-btn:hover {
  background: var(--accent-color);
  color: #ffffff;
  transform: translateY(-50%) scale(1.08);
}

.projects-side-btn:disabled {
  opacity: 0.28;
  cursor: default;
}

.projects-side-btn:disabled:hover {
  background: #ffffff;
  color: var(--accent-color);
  transform: translateY(-50%);
}


.projects-carousel-wrapper {
  overflow: hidden;
  padding: 24px 0;
  margin: -24px 0;
}

/* Sliding track */
.projects-track {
  display: flex;
  gap: 16px;
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
  align-items: center; /* keeps shorter cards vertically centred */
}

/* ── Cards: fill exactly 1/5 of the wrapper width ── */
.project-card {
  /* 5 visible: (100% - 4 gaps of 16px) / 5 */
  flex: 0 0 calc(20% - 13px);
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.10);
  cursor: pointer;
  background: #1a2a4a;
  transition: transform 0.45s ease, box-shadow 0.45s ease, flex-basis 0.45s ease;
}

/* Centre card pops forward */
.project-card.is-center {
  transform: translateY(-14px) scale(1.055);
  box-shadow: 0 22px 48px rgba(22,44,102,0.30);
  z-index: 5;
}

.project-card .card-img-wrap {
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  display: block;
  position: relative;
}

.project-card .card-img-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, #1a2a4a 30%, #223a66 50%, #1a2a4a 70%);
  background-size: 200% 100%;
  animation: shimmer 1.6s infinite linear;
  z-index: 0;
}

@keyframes shimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

.project-card .card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: relative;
  z-index: 1;
  transition: transform 0.5s ease, filter 0.5s ease;
  filter: brightness(0.85);
}

.project-card:hover .card-img-wrap img {
  transform: scale(1.07);
  filter: brightness(0.55);
}

.project-card .card-info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 2;
  background: linear-gradient(
    to top,
    rgba(22,44,102,0.97) 0%,
    rgba(22,44,102,0.70) 55%,
    transparent 100%
  );
  padding: 40px 20px 20px;
  transition: padding 0.4s ease;
}

.project-card:hover .card-info { padding-bottom: 28px; }

.project-card .card-category {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: none;
  color: #a8c4ff;
  margin-bottom: 6px;
  font-family: var(--nav-font);
}

.project-card .card-title {
  font-family: var(--heading-font);
  font-size: 17px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 4px;
  line-height: 1.3;
}

.project-card .card-location {
  font-size: 13px;
  color: rgba(255,255,255,0.70);
  margin: 0;
  font-family: var(--default-font);
}

.project-card .card-detail {
  font-size: 12px;
  color: rgba(255,255,255,0.60);
  margin: 8px 0 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.4s ease;
  opacity: 0;
  font-family: var(--default-font);
}

.project-card:hover .card-detail {
  max-height: 60px;
  opacity: 1;
}

/* ── Dot navigation ── */
.projects-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
}

.projects-dots .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--accent-color), transparent 65%);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background 0.3s, width 0.3s;
  display: block;
}

.projects-dots .dot.active {
  background: var(--accent-color);
  width: 24px;
  border-radius: 4px;
}

/* ── Responsive ── */
@media (max-width: 1199px) {
  /* 3 visible: (100% - 2 gaps) / 3 */
  .project-card { flex: 0 0 calc(33.333% - 11px); }
  .project-card.is-center { transform: translateY(-12px) scale(1.05); }
}

@media (max-width: 767px) {
  /* 2 visible */
  .project-card { flex: 0 0 calc(50% - 8px); }
  .project-card.is-center { transform: translateY(-10px) scale(1.04); }
  .projects-side-btn { width: 36px; height: 36px; font-size: 14px; }
}

@media (max-width: 480px) {
  /* 1 visible */
  .project-card { flex: 0 0 calc(100% - 0px); }
  .project-card.is-center { transform: none; }
  .projects-carousel-outer { gap: 8px; }
}






















.clients.light-background {
  background-color: #ffffff !important;
  border-top: 2px solid color-mix(in srgb, var(--accent-color), transparent 85%);
  border-bottom: 2px solid color-mix(in srgb, var(--accent-color), transparent 85%);
}






















/*--------------------------------------------------------------
# CEIL Hero / Splash Screen
--------------------------------------------------------------*/

/* ── Reset hero defaults from template ── */
.hero.ceil-hero {
  min-height: 100vh;
  padding: 0;
  display: flex;
  align-items: stretch;
  background: none;
  overflow: hidden;
  position: relative;
}

.hero.ceil-hero::before { display: none; }

/* ── Full-bleed background base ── */
.ch-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.ch-bg-base {
  background: #0b1628;
}

/* ── Slider ── */
.ch-slider {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.ch-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 1.4s ease-in-out, transform 8s ease-out;
}

.ch-slide.active {
  opacity: 1;
  transform: scale(1);
}

/* Dark gradient overlay so text stays readable */
.ch-slider::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(11, 22, 40, 0.55) 0%,
    rgba(11, 22, 40, 0.65) 50%,
    rgba(11, 22, 40, 0.80) 100%
  );
  z-index: 1;
}

/* ── Animated electric grid (sits above slider) ── */
.ch-grid {
  position: absolute;
  inset: 0;
  z-index: 2;
  background-image:
    linear-gradient(rgba(34,58,102,0.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(34,58,102,0.18) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 0;
  animation: gridReveal 1.2s 0.3s ease forwards, gridDrift 20s 1.5s linear infinite;
}

@keyframes gridReveal { to { opacity: 1; } }

@keyframes gridDrift {
  0%   { background-position: 0 0; }
  100% { background-position: 60px 60px; }
}

/* Radial glows */
.ch-glow-1 {
  position: absolute;
  top: -20%; left: -10%;
  width: 70vw; height: 70vw;
  border-radius: 50%;
  z-index: 2;
  background: radial-gradient(circle, rgba(34,58,102,0.45) 0%, transparent 70%);
  animation: breathe 6s ease-in-out infinite alternate;
}

.ch-glow-2 {
  position: absolute;
  bottom: -20%; right: -10%;
  width: 60vw; height: 60vw;
  border-radius: 50%;
  z-index: 2;
  background: radial-gradient(circle, rgba(20,40,80,0.35) 0%, transparent 70%);
  animation: breathe 8s ease-in-out infinite alternate-reverse;
}

@keyframes breathe {
  from { transform: scale(1); }
  to   { transform: scale(1.15); }
}

/* Diagonal accent line */
.ch-line {
  position: absolute;
  top: 0; bottom: 0;
  left: 55%;
  width: 1px;
  z-index: 3;
  background: linear-gradient(to bottom,
    transparent 0%,
    rgba(34,58,102,0.7) 30%,
    rgba(255,255,255,0.12) 50%,
    rgba(34,58,102,0.7) 70%,
    transparent 100%
  );
  transform: skewX(-8deg);
  opacity: 0;
  animation: lineReveal 1s 1s ease forwards;
}

@keyframes lineReveal { to { opacity: 1; } }

/* Floating particles */
.ch-particles {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
}

.ch-particle {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  animation: floatUp linear infinite;
}

@keyframes floatUp {
  0%   { transform: translateY(100vh) scale(0); opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 0.3; }
  100% { transform: translateY(-10vh) scale(1); opacity: 0; }
}

/* ── Vertical dot indicators (right side) ── */
.ch-slider-dots {
  position: absolute;
  right: 36px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 20;
  opacity: 0;
  animation: slideUp 0.7s 2.2s ease forwards;
}

.ch-slider-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background 0.35s, height 0.35s, border-radius 0.35s;
  display: block;
}

.ch-slider-dot.active {
  background: #ffffff;
  height: 22px;
  border-radius: 3px;
}

/* ── Content layer ── */
.ch-content {
  position: relative;
  z-index: 10;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 80px 20px 100px;
  text-align: center;
}

/* ── Top badge ── */
.ch-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Open Sans", sans-serif;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85) !important;
  margin-bottom: 36px;
  opacity: 0;
  transform: translateY(20px);
  animation: slideUp 0.7s 0.5s ease forwards;
}

.ch-badge-line {
  display: block;
  width: 40px;
  height: 1px;
  background: rgba(255,255,255,0.3);
}

/* ── Main headline ── */
.ch-headline {
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.02em;
  color: #ffffff;
  margin: 0 0 8px;
}

.ch-line-1 {
  display: block;
  font-size: clamp(24px, 3.5vw, 48px);
  font-family: "Brush Script MT", "Montserrat", sans-serif; /* Primary: Brush Script MT, fallback: Montserrat */
  color: #B22222 !important; /* Darker red */
  letter-spacing:2px; /* Space between letters */
  opacity: 0;
  transform: translateY(40px);
  animation: slideUp 0.8s 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}



@keyframes slideUp { to { opacity: 1; transform: translateY(0); } }

/* ── Divider ── */
.ch-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 32px auto;
  width: 200px;
  opacity: 0;
  animation: slideUp 0.7s 1.2s ease forwards;
}

.ch-divider-line {
  flex: 1;
  height: 1px;
  background: rgba(255,255,255,0.15);
}

.ch-divider-bolt {
  color: rgba(255,255,255,0.4);
  font-size: 18px;
}

/* ── Sub-text ── */
.ch-sub {
  font-family: "Roboto", sans-serif;
  font-size: clamp(15px, 2vw, 20px);
  font-weight: 300;
  line-height: 1.7;
  color: rgba(255,255,255,0.90) !important;
  max-width: 620px;
  margin: 0 auto 48px;
  opacity: 0;
  transform: translateY(20px);
  animation: slideUp 0.8s 1.3s ease forwards;
}

.ch-sub strong {
  color: rgba(255,255,255,0.9);
  font-weight: 500;
}

/* ── Stats row ── */
.ch-stats {
  display: flex;
  gap: 0;
  margin-bottom: 52px;
  opacity: 0;
  transform: translateY(20px);
  animation: slideUp 0.8s 1.45s ease forwards;
}

.ch-stat {
  padding: 0 36px;
  border-right: 1px solid rgba(255,255,255,0.1);
  text-align: center;
}

.ch-stat:first-child { padding-left: 0; }
.ch-stat:last-child  { padding-right: 0; border-right: none; }

.ch-stat-num {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  color: #ffffff !important;
  line-height: 1;
  display: block;
}

.ch-stat-num sup {
  font-size: 0.45em;
  vertical-align: super;
  font-weight: 600;
}

.ch-stat-label {
  font-family: "Open Sans", sans-serif;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75) !important;
  margin-top: 6px;
  display: block;
}

/* ── CTA buttons ── */
.ch-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  opacity: 0;
  transform: translateY(20px);
  animation: slideUp 0.8s 1.6s ease forwards;
}

.ch-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #0b1628;
  background: #ffffff;
  padding: 16px 36px;
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.25s, transform 0.25s, box-shadow 0.25s;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

.ch-btn-primary:hover {
  background: #e8f0ff;
  color: #0b1628;
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(0,0,0,0.4);
  text-decoration: none;
}

.ch-btn-primary svg { transition: transform 0.25s; }
.ch-btn-primary:hover svg { transform: translateX(4px); }

.ch-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  background: transparent;
  border: 1px solid rgba(255,255,255,0.25);
  padding: 16px 36px;
  border-radius: 4px;
  text-decoration: none;
  transition: border-color 0.25s, color 0.25s, background 0.25s, transform 0.25s;
}

.ch-btn-secondary:hover {
  border-color: rgba(255,255,255,0.6);
  color: #ffffff;
  background: rgba(255,255,255,0.07);
  transform: translateY(-2px);
  text-decoration: none;
}

/* ── Scroll indicator ── */
.ch-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: slideUp 0.7s 2s ease forwards;
  cursor: pointer;
  text-decoration: none;
}

.ch-scroll-label {
  font-family: "Open Sans", sans-serif;
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35) !important;
}

.ch-scroll-mouse {
  width: 22px;
  height: 34px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 11px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}

.ch-scroll-wheel {
  width: 3px;
  height: 6px;
  background: rgba(255,255,255,0.5);
  border-radius: 2px;
  animation: scrollWheel 1.8s ease-in-out infinite;
}

@keyframes scrollWheel {
  0%   { opacity: 1; transform: translateY(0); }
  100% { opacity: 0; transform: translateY(10px); }
}

/* ── Responsive ── */
@media (max-width: 767px) {
  .ch-stats { flex-wrap: wrap; justify-content: center; }
  .ch-stat {
    padding: 12px 20px;
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    width: 50%;
  }
  .ch-stat:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.1); }
  .ch-stat:last-child,
  .ch-stat:nth-last-child(2):nth-child(odd) { border-bottom: none; }
  .ch-line { display: none; }
  .ch-slider-dots { right: 12px; }
  .ch-ctas { flex-direction: column; align-items: center; }
  .ch-btn-primary,
  .ch-btn-secondary { width: 260px; justify-content: center; }
}
























/* *--------------------------------------------------------------
# Power Tower Animation Divider
--------------------------------------------------------------*/ */
.power-divider {
  width: 100%;
  background: #f5f9ff;
  padding: 0;
  overflow: hidden;
  line-height: 0;
  position: relative;
}

.power-divider svg {
  display: block;
  width: 100%;
  height: auto;
}

/* ── Static wires ── */
.wire {
  fill: none;
  stroke: #b0bfd8;
  stroke-width: 1.2;
}

/* ── Tower structure ── */
.tower-stroke {
  fill: none;
  stroke: #8fa3be;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ── Tree ── */
.tree-stroke {
  fill: none;
  stroke: #e8a832;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ── Animated energy pulse travelling along each wire ── */
.pulse {
  fill: none;
  stroke-linecap: round;
  stroke-width: 2.5;
}

/* Each pulse uses stroke-dasharray trick to animate a dot along the path */
.pulse-1 {
  stroke: #4a90d9;
  stroke-dasharray: 8 9999;
  stroke-dashoffset: 9999;
  animation: travel 3.5s linear infinite;
  filter: drop-shadow(0 0 3px #4a90d9);
}

.pulse-2 {
  stroke: #223a66;
  stroke-dasharray: 8 9999;
  stroke-dashoffset: 9999;
  animation: travel 3.5s linear infinite 0.6s;
  filter: drop-shadow(0 0 3px #223a66);
}

.pulse-3 {
  stroke: #4a90d9;
  stroke-dasharray: 8 9999;
  stroke-dashoffset: 9999;
  animation: travel 3.5s linear infinite 1.2s;
  filter: drop-shadow(0 0 3px #4a90d9);
}

.pulse-4 {
  stroke: #7ab3e8;
  stroke-dasharray: 8 9999;
  stroke-dashoffset: 9999;
  animation: travel 3.5s linear infinite 1.8s;
  filter: drop-shadow(0 0 3px #7ab3e8);
}

.pulse-5 {
  stroke: #223a66;
  stroke-dasharray: 8 9999;
  stroke-dashoffset: 9999;
  animation: travel 3.5s linear infinite 2.4s;
  filter: drop-shadow(0 0 3px #223a66);
}

.pulse-6 {
  stroke: #4a90d9;
  stroke-dasharray: 8 9999;
  stroke-dashoffset: 9999;
  animation: travel 3.5s linear infinite 3s;
  filter: drop-shadow(0 0 3px #4a90d9);
}

/* Second set going the other direction (right to left) */
.pulse-r1 {
  stroke: #e8a832;
  stroke-dasharray: 6 9999;
  stroke-dashoffset: 0;
  animation: travel-r 4.2s linear infinite 0.3s;
  filter: drop-shadow(0 0 3px #e8a832);
}

.pulse-r2 {
  stroke: #e8a832;
  stroke-dasharray: 6 9999;
  stroke-dashoffset: 0;
  animation: travel-r 4.2s linear infinite 2.1s;
  filter: drop-shadow(0 0 3px #e8a832);
}

@keyframes travel {
  0%   { stroke-dashoffset: 9999; }
  100% { stroke-dashoffset: -9999; }
}

@keyframes travel-r {
  0%   { stroke-dashoffset: -9999; }
  100% { stroke-dashoffset: 9999; }
}

/* ── Insulator glow at tower connection points ── */
.insulator {
  fill: #ffffff;
  stroke: #8fa3be;
  stroke-width: 1;
}

.insulator-glow {
  fill: #4a90d9;
  opacity: 0;
  animation: glow-pulse 3.5s ease-in-out infinite;
}

.insulator-glow:nth-child(2) { animation-delay: 0.6s; }
.insulator-glow:nth-child(3) { animation-delay: 1.2s; }
.insulator-glow:nth-child(4) { animation-delay: 1.8s; }
.insulator-glow:nth-child(5) { animation-delay: 2.4s; }
.insulator-glow:nth-child(6) { animation-delay: 3s; }

@keyframes glow-pulse {
  0%,100% { opacity: 0; r: 2; }
  50%      { opacity: 0.9; r: 4; }
}

/* ── Ground line ── */
.ground-line {
  stroke: #c8d5e8;
  stroke-width: 0.8;
}






























/*--------------------------------------------------------------
# ICT Division — Intro Section
--------------------------------------------------------------*/
.ict-intro {
  background: #0a0f1e;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

/* Subtle dot-grid background */
.ict-intro::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(74,144,217,0.12) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}

.ict-intro .section-title h2 {
  color: #4a90d9;
  background: rgba(74,144,217,0.1);
}

.ict-intro .section-title p {
  color: #ffffff;
}

.ict-intro .section-title .description-title {
  color: #4a90d9;
}

.ict-intro-img {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
}

.ict-intro-img img {
  width: 100%;
  display: block;
  border-radius: 4px;
  filter: brightness(0.85) saturate(1.1);
}

/* Glowing border on image */
.ict-intro-img::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(74,144,217,0.4);
  border-radius: 4px;
  pointer-events: none;
}

/* Corner accent marks */
.ict-intro-img::before {
  content: '';
  position: absolute;
  top: -1px; left: -1px;
  width: 30px; height: 30px;
  border-top: 2px solid #4a90d9;
  border-left: 2px solid #4a90d9;
  z-index: 2;
}

.ict-intro p {
  color: rgba(255,255,255,0.75);
  font-size: 15px;
  line-height: 1.85;
  margin-bottom: 18px;
}

.ict-intro p strong {
  color: #ffffff;
}

/* Inline stat badges */
.ict-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.ict-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(74,144,217,0.1);
  border: 1px solid rgba(74,144,217,0.3);
  color: #7ab3e8;
  font-family: "Montserrat", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: 3px;
}

.ict-badge i {
  font-size: 13px;
  color: #4a90d9;
}



/*--------------------------------------------------------------
# ICT Services Section
--------------------------------------------------------------*/
.ict-services {
  background: #0d1526;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.ict-services::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(74,144,217,0.07) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}

.ict-services .section-title h2 {
  color: #4a90d9;
  background: rgba(74,144,217,0.1);
}

.ict-services .section-title p {
  color: #ffffff;
}

.ict-services .section-title .description-title {
  color: #4a90d9;
}

/* Service cards — dark glassmorphism style */
.ict-service-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(74,144,217,0.15);
  border-radius: 6px;
  padding: 36px 28px;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s, background 0.3s, transform 0.3s;
}

.ict-service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 2px;
  background: linear-gradient(90deg, transparent, #4a90d9, transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.ict-service-card:hover {
  border-color: rgba(74,144,217,0.5);
  background: rgba(74,144,217,0.06);
  transform: translateY(-4px);
}

.ict-service-card:hover::before {
  opacity: 1;
}

.ict-service-icon {
  width: 52px;
  height: 52px;
  background: rgba(74,144,217,0.12);
  border: 1px solid rgba(74,144,217,0.25);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: background 0.3s;
}

.ict-service-card:hover .ict-service-icon {
  background: rgba(74,144,217,0.2);
}

.ict-service-icon i {
  font-size: 22px;
  color: #4a90d9;
}

.ict-service-card h4 {
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
  line-height: 1.3;
}

.ict-service-card p {
  font-size: 13.5px;
  color: rgba(255,255,255,0.55);
  line-height: 1.75;
  margin: 0;
}

/* Card number watermark */
.ict-card-num {
  position: absolute;
  bottom: 16px;
  right: 20px;
  font-family: "Montserrat", sans-serif;
  font-size: 42px;
  font-weight: 800;
  color: rgba(74,144,217,0.06);
  line-height: 1;
  pointer-events: none;
  transition: color 0.3s;
}

.ict-service-card:hover .ict-card-num {
  color: rgba(74,144,217,0.1);
}














    /* ============================================================
       RENEWABLE ENERGY PAGE — page-specific only, no duplication
    ============================================================ */

    /* ── Hero: half height, centred ── */
    #re-hero {
      position: relative;
      min-height: 37vh;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      padding: 0;
      background: none !important;
    }

    #re-hero::before { display: none; }

    .re-hero-bg {
      position: absolute;
      inset: 0;
      width: 100%; height: 100%;
      object-fit: cover;
      z-index: 0;
    }

    .re-hero-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(
        to bottom,
        rgba(34,58,102,0.75) 0%,
        rgba(34,58,102,0.62) 100%
      );
      z-index: 1;
    }

    .re-hero-content {
      position: relative;
      z-index: 2;
      text-align: center;
      padding: 44px 16px;
      width: 100%;
    }

    .re-hero-eyebrow {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      font-family: "Open Sans", sans-serif;
      font-size: 11px;
      letter-spacing: 0.28em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.72);
      margin-bottom: 14px;
    }

    .re-hero-eyebrow::before,
    .re-hero-eyebrow::after {
      content: '';
      display: block;
      width: 26px; height: 1px;
      background: rgba(255,255,255,0.38);
    }

    /* Title smaller than main hero */
    .re-hero-title {
      font-family: "Montserrat", sans-serif;
      font-size: clamp(22px, 3.8vw, 42px);
      font-weight: 800;
      color: #ffffff;
      line-height: 1.1;
      margin-bottom: 10px;
    }

    .re-hero-subtitle {
      font-family: "Open Sans", sans-serif;
      font-size: clamp(11px, 1.5vw, 13px);
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.60);
      margin-bottom: 0;
    }

    .re-hero-stats {
      display: flex;
      justify-content: center;
      gap: 0;
      flex-wrap: wrap;
      margin-top: 26px;
      padding-top: 22px;
      border-top: 1px solid rgba(255,255,255,0.18);
    }

    .re-hero-stat {
      padding: 0 24px;
      border-right: 1px solid rgba(255,255,255,0.14);
      text-align: center;
    }

    .re-hero-stat:first-child { padding-left: 0; }
    .re-hero-stat:last-child  { border-right: none; padding-right: 0; }

    .re-hero-stat-num {
      font-family: "Montserrat", sans-serif;
      font-size: clamp(20px, 2.8vw, 30px);
      font-weight: 800;
      color: #ffffff;
      line-height: 1;
      display: block;
    }

    .re-hero-stat-label {
      font-family: "Open Sans", sans-serif;
      font-size: 10px;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.56);
      margin-top: 3px;
      display: block;
    }

    /* ── Shared section utility ── */
    .re-tag {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-family: "Open Sans", sans-serif;
      font-size: 11px;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      color: var(--accent-color);
      margin-bottom: 14px;
    }

    .re-tag::before {
      content: '';
      display: block;
      width: 26px; height: 1px;
      background: var(--accent-color);
    }

    .re-heading {
      font-family: "Montserrat", sans-serif;
      font-size: clamp(22px, 3.2vw, 36px);
      font-weight: 800;
      color: var(--heading-color);
      line-height: 1.18;
      margin-bottom: 18px;
    }

    .re-heading em {
      font-style: italic;
      color: var(--accent-color);
    }

    .re-body {
      font-family: "Roboto", sans-serif;
      font-size: 15px;
      line-height: 1.85;
      color: var(--default-color);
      margin-bottom: 0;
    }

    /* ── Note box ── */
    .re-note-box {
      margin-top: 24px;
      padding: 16px 18px;
      background: color-mix(in srgb, var(--accent-color), transparent 92%);
      border-left: 3px solid var(--accent-color);
      border-radius: 0 4px 4px 0;
      font-family: "Roboto", sans-serif;
      font-size: 13.5px;
      color: var(--default-color);
      line-height: 1.7;
    }

    .re-note-box strong { color: var(--accent-color); }

    /* ── Icon tile ── */
    .re-icon-tile {
      background: #f5f9ff;
      border: 1px solid color-mix(in srgb, var(--accent-color), transparent 84%);
      border-radius: 6px;
      padding: 22px 16px;
      text-align: center;
      height: 100%;
    }

    .re-icon-tile i {
      font-size: 26px;
      color: var(--accent-color);
      display: block;
      margin-bottom: 10px;
    }

    .re-icon-tile-title {
      font-family: "Montserrat", sans-serif;
      font-size: 13px;
      font-weight: 700;
      color: var(--heading-color);
      margin-bottom: 4px;
    }

    .re-icon-tile-sub {
      font-size: 12px;
      color: color-mix(in srgb, var(--default-color), transparent 30%);
      line-height: 1.4;
    }

    /* ── Services list ── */
    .re-services-list {
      list-style: none;
      padding: 0; margin: 0;
    }

    .re-services-list li {
      display: flex;
      align-items: flex-start;
      gap: 14px;
      padding: 15px 0;
      border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
      font-family: "Roboto", sans-serif;
      font-size: 14.5px;
      color: var(--default-color);
      line-height: 1.6;
    }

    .re-services-list li:last-child { border-bottom: none; }

    .re-list-icon {
      flex-shrink: 0;
      width: 30px; height: 30px;
      background: color-mix(in srgb, var(--accent-color), transparent 90%);
      border: 1px solid color-mix(in srgb, var(--accent-color), transparent 70%);
      border-radius: 4px;
      display: flex; align-items: center; justify-content: center;
      margin-top: 2px;
    }

    .re-list-icon i { font-size: 13px; color: var(--accent-color); }

    /* ── EPC grid ── */
    .re-epc-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1px;
      background: color-mix(in srgb, var(--accent-color), transparent 78%);
      border-radius: 6px;
      overflow: hidden;
      margin-top: 40px;
    }

    .re-epc-card {
      background: #ffffff;
      padding: 32px 26px;
      position: relative;
      transition: background 0.3s;
    }

    .re-epc-card:hover {
      background: color-mix(in srgb, var(--accent-color), transparent 95%);
    }

    .re-epc-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0;
      width: 3px; height: 100%;
      background: var(--accent-color);
      opacity: 0;
      transition: opacity 0.3s;
    }

    .re-epc-card:hover::before { opacity: 1; }

    .re-epc-icon {
      width: 42px; height: 42px;
      background: color-mix(in srgb, var(--accent-color), transparent 90%);
      border-radius: 4px;
      display: flex; align-items: center; justify-content: center;
      margin-bottom: 14px;
    }

    .re-epc-icon i { font-size: 18px; color: var(--accent-color); }

    .re-epc-num {
      font-family: "Open Sans", sans-serif;
      font-size: 10px;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--accent-color);
      margin-bottom: 8px;
      display: block;
    }

    .re-epc-card h4 {
      font-family: "Montserrat", sans-serif;
      font-size: 16px;
      font-weight: 700;
      color: var(--heading-color);
      margin-bottom: 8px;
      line-height: 1.2;
    }

    .re-epc-card p {
      font-family: "Roboto", sans-serif;
      font-size: 13.5px;
      color: var(--default-color);
      line-height: 1.75; margin: 0;
    }

    /* ── Process timeline ── */
    .re-timeline { position: relative; margin-top: 48px; }

    .re-timeline::before {
      content: '';
      position: absolute;
      left: 27px; top: 0; bottom: 0;
      width: 1px;
      background: linear-gradient(
        to bottom,
        var(--accent-color) 0%,
        color-mix(in srgb, var(--accent-color), transparent 80%) 100%
      );
      z-index: 0;
    }

    .re-step {
      display: grid;
      grid-template-columns: 56px 1fr;
      gap: 22px;
      margin-bottom: 32px;
      position: relative;
    }

    .re-step:last-child { margin-bottom: 0; }

    .re-step-num {
      width: 56px; height: 56px;
      flex-shrink: 0;
      background: #ffffff;
      border: 2px solid var(--accent-color);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-family: "Montserrat", sans-serif;
      font-size: 17px; font-weight: 800;
      color: var(--accent-color);
      position: relative; z-index: 1;
      transition: background 0.3s, color 0.3s, transform 0.3s;
      box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent-color), transparent 90%);
    }

    .re-step:hover .re-step-num {
      background: var(--accent-color);
      color: #ffffff;
      transform: scale(1.06);
    }

    .re-step-body {
      padding-top: 10px;
      padding-bottom: 24px;
      border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
    }

    .re-step:last-child .re-step-body { border-bottom: none; }

    .re-step-body h4 {
      font-family: "Montserrat", sans-serif;
      font-size: 15px; font-weight: 700;
      color: var(--heading-color);
      margin-bottom: 6px;
    }

    .re-step-body p {
      font-family: "Roboto", sans-serif;
      font-size: 13.5px;
      color: var(--default-color);
      line-height: 1.8; margin: 0;
    }

    /* ── Sidebar cards ── */
    .re-sidebar-sticky { position: sticky; top: 90px; align-self: start; }

    .re-sidebar-card {
      background: #ffffff;
      border: 1px solid color-mix(in srgb, var(--accent-color), transparent 82%);
      border-radius: 6px;
      overflow: hidden;
      margin-bottom: 18px;
      box-shadow: 0 2px 14px rgba(0,0,0,0.06);
    }

    .re-sidebar-card:last-child { margin-bottom: 0; }

    .re-sidebar-header {
      background: var(--accent-color);
      padding: 15px 20px;
      display: flex; align-items: center; gap: 10px;
    }

    .re-sidebar-header i { font-size: 17px; color: #ffffff; }

    .re-sidebar-header span {
      font-family: "Montserrat", sans-serif;
      font-size: 12px; font-weight: 700;
      color: #ffffff; text-transform: uppercase;
      letter-spacing: 0.08em;
    }

    .re-sidebar-body { padding: 18px 20px; }

    .re-badge-row {
      display: flex; align-items: center; gap: 10px;
      padding: 9px 0;
      border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
      font-family: "Roboto", sans-serif;
      font-size: 13px; color: var(--default-color); line-height: 1.4;
    }

    .re-badge-row:last-child { border-bottom: none; }
    .re-badge-row i { color: var(--accent-color); font-size: 13px; flex-shrink: 0; }

    /* ── Map section ── */
    .re-map-img-wrap {
      border-radius: 6px; overflow: hidden;
      border: 1px solid color-mix(in srgb, var(--accent-color), transparent 82%);
      box-shadow: 0 4px 18px rgba(0,0,0,0.07);
    }

    .re-map-img-wrap img { width: 100%; display: block; }

    .re-country-tags { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 20px; }

    .re-country-tag {
      background: color-mix(in srgb, var(--accent-color), transparent 90%);
      border: 1px solid color-mix(in srgb, var(--accent-color), transparent 72%);
      color: var(--accent-color);
      font-family: "Open Sans", sans-serif;
      font-size: 11px; font-weight: 600;
      letter-spacing: 0.1em; text-transform: uppercase;
      padding: 4px 11px; border-radius: 3px;
    }

    /* ── CTA banner ── */
    .re-cta {
      background: var(--accent-color);
      padding: 60px 0;
      position: relative; overflow: hidden;
    }

    .re-cta::before {
      content: '';
      position: absolute; inset: 0;
      background-image:
        linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
      background-size: 40px 40px;
    }

    .re-cta-title {
      font-family: "Montserrat", sans-serif;
      font-size: clamp(20px, 3.2vw, 36px);
      font-weight: 800; color: #ffffff;
      line-height: 1.12; margin-bottom: 10px;
    }

    .re-cta-sub {
      font-family: "Roboto", sans-serif;
      font-size: 15px; color: rgba(255,255,255,0.72); margin: 0;
    }

    .re-btn-white {
      display: inline-flex; align-items: center; gap: 8px;
      background: #ffffff; color: var(--accent-color);
      font-family: "Montserrat", sans-serif;
      font-size: 13px; font-weight: 700;
      letter-spacing: 0.06em; text-transform: uppercase;
      padding: 14px 30px; border-radius: 4px;
      text-decoration: none;
      transition: background 0.25s, transform 0.25s;
      box-shadow: 0 6px 20px rgba(0,0,0,0.18);
    }

    .re-btn-white:hover {
      background: #e8f0ff; color: var(--accent-color);
      transform: translateY(-2px); text-decoration: none;
    }

    .re-btn-white-outline {
      display: inline-flex; align-items: center; gap: 8px;
      background: transparent; color: #ffffff;
      font-family: "Montserrat", sans-serif;
      font-size: 13px; font-weight: 600;
      letter-spacing: 0.06em; text-transform: uppercase;
      padding: 13px 30px; border-radius: 4px;
      border: 2px solid rgba(255,255,255,0.38);
      text-decoration: none;
      transition: border-color 0.25s, background 0.25s;
    }

    .re-btn-white-outline:hover {
      border-color: rgba(255,255,255,0.82);
      background: rgba(255,255,255,0.08);
      color: #ffffff; text-decoration: none;
    }

    /* ── Responsive ── */
    @media (max-width: 767px) {
      .re-epc-grid { grid-template-columns: 1fr; }
      .re-hero-stat { padding: 0 14px; }
      .re-sidebar-sticky { position: static; }
    }












  .team-member {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.team-member:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.regional-presence .member-img img {
  width: 100%;
  height: 150px;
  object-fit: cover;
}

.member-info {
  padding: 20px;
}

.member-info h4 {
  font-weight: 600;
  margin-bottom: 5px;
}

.member-info span {
  font-size: 14px;
  color: #6c757d;
}




    










    /* ══════════════════════════════════════════════
       ACCREDITATIONS PAGE — page-scoped styles only
    ══════════════════════════════════════════════ */

    /* ── Photo strip (4 image slots below hero) ── */
    .acc-photo-strip {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 4px;
      height: 220px;
      overflow: hidden;
    }
    .acc-strip-slot {
      position: relative;
      overflow: hidden;
      background: color-mix(in srgb, var(--accent-color), transparent 85%);
      cursor: pointer;
    }
    .acc-strip-slot img {
      width: 100%; height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.5s ease, filter 0.5s ease;
      filter: brightness(0.88) saturate(0.9);
    }
    .acc-strip-slot:hover img {
      transform: scale(1.07);
      filter: brightness(0.60) saturate(1.1);
    }
    .acc-strip-label {
      position: absolute;
      bottom: 10px; left: 12px;
      font-family: "Open Sans", sans-serif;
      font-size: 10px;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: rgba(255,255,255,0);
      transition: color 0.3s;
      pointer-events: none;
    }
    .acc-strip-slot:hover .acc-strip-label { color: rgba(255,255,255,0.85); }
    .acc-strip-slot .strip-placeholder {
      position: absolute;
      inset: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: "Montserrat", sans-serif;
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: color-mix(in srgb, var(--accent-color), transparent 40%);
    }
    @media (max-width: 767px) {
      .acc-photo-strip { grid-template-columns: 1fr 1fr; height: 300px; }
    }
    @media (max-width: 480px) {
      .acc-photo-strip { grid-template-columns: 1fr; height: auto; }
      .acc-strip-slot { height: 160px; }
    }

    /* ── Intro portrait image ── */
    .acc-intro-portrait {
      position: relative;
      border-radius: 4px;
      overflow: hidden;
      height: 480px;
    }
    .acc-intro-portrait img {
      width: 100%; height: 100%;
      object-fit: cover;
      display: block;
      filter: brightness(0.9);
      transition: transform 0.6s ease;
    }
    .acc-intro-portrait:hover img { transform: scale(1.04); }
    .acc-intro-portrait::after {
      content: '';
      position: absolute;
      inset: 0;
      border: 1px solid color-mix(in srgb, var(--accent-color), transparent 65%);
      border-radius: 4px;
      pointer-events: none;
    }
    .acc-intro-portrait::before {
      content: '';
      position: absolute;
      bottom: 0; right: 0;
      width: 50px; height: 50px;
      border-right: 3px solid var(--accent-color);
      border-bottom: 3px solid var(--accent-color);
      z-index: 2;
    }
    .acc-portrait-caption {
      position: absolute;
      bottom: 0; left: 0; right: 0;
      background: linear-gradient(to top, rgba(34,58,102,0.88) 0%, transparent 100%);
      padding: 30px 18px 18px;
      font-family: "Open Sans", sans-serif;
      font-size: 11px;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.75);
      z-index: 3;
    }
    .acc-portrait-placeholder {
      position: absolute;
      inset: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      gap: 10px;
      background: color-mix(in srgb, var(--accent-color), transparent 90%);
    }
    .acc-portrait-placeholder i { font-size: 48px; color: color-mix(in srgb, var(--accent-color), transparent 40%); }
    .acc-portrait-placeholder span {
      font-family: "Open Sans", sans-serif;
      font-size: 10px;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: color-mix(in srgb, var(--accent-color), transparent 30%);
    }

    /* ── Regulatory licence cards (6) ── */
    .acc-reg-card {
      background: var(--surface-color);
      border: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
      border-radius: 6px;
      overflow: hidden;
      height: 100%;
      transition: box-shadow 0.3s, transform 0.3s, border-color 0.3s;
      box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    }
    .acc-reg-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 12px 32px rgba(34,58,102,0.14);
      border-color: color-mix(in srgb, var(--accent-color), transparent 55%);
    }
    /* ★ LOGO IMAGE SLOT */
    .acc-reg-logo-wrap {
      height: 140px;
      background: none;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      position: relative;
      border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    }
    .acc-reg-logo-wrap img {
      max-width: 70%; max-height: 80%;
      object-fit: contain;
      display: block;
      transition: transform 0.4s ease, filter 0.4s ease;
    }
    .acc-reg-card:hover .acc-reg-logo-wrap img { transform: scale(1.05); filter: brightness(1.05); }
    .acc-reg-logo-placeholder {
      font-family: "Montserrat", sans-serif;
      font-size: 28px;
      font-weight: 800;
      color: color-mix(in srgb, var(--accent-color), transparent 45%);
    }
    .acc-reg-body { padding: 18px 20px 22px; }
    .acc-reg-body .acc-reg-country {
      font-family: "Open Sans", sans-serif;
      font-size: 10px;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--accent-color);
      margin-bottom: 6px;
    }
    .acc-reg-body h4 {
      font-family: "Montserrat", sans-serif;
      font-size: 14px; font-weight: 700;
      color: var(--heading-color);
      margin-bottom: 8px; line-height: 1.3;
    }
    .acc-reg-body p {
      font-size: 12.5px;
      color: color-mix(in srgb, var(--default-color), transparent 25%);
      line-height: 1.65; margin: 0;
    }

    /* ── ISO certification cards (3) ── */
    .acc-iso-card {
      position: relative;
      border-radius: 6px;
      overflow: hidden;
      height: 100%;
      box-shadow: 0 4px 20px rgba(0,0,0,0.10);
      transition: transform 0.4s ease, box-shadow 0.4s ease;
    }
    .acc-iso-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 20px 44px rgba(34,58,102,0.20);
    }
    /* ★ ISO HEADER IMAGE SLOT */
    .acc-iso-img-wrap {
      height: 190px;
      overflow: hidden;
      position: relative;
      background: linear-gradient(135deg, #1a2a4a 0%, #223a66 100%);
    }
    .acc-iso-img-wrap img {
      width: 100%; height: 100%;
      object-fit: cover;
      display: block;
      opacity: 0.75;
      transition: transform 0.5s ease, opacity 0.4s ease;
    }
    .acc-iso-card:hover .acc-iso-img-wrap img { transform: scale(1.06); opacity: 0.6; }
    .acc-iso-img-wrap::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(to bottom, rgba(11,22,40,0.35) 0%, rgba(11,22,40,0.65) 100%);
    }
    .acc-iso-num-badge {
      position: absolute;
      top: 16px; right: 18px;
      font-family: "Montserrat", sans-serif;
      font-size: 11px; font-weight: 800;
      letter-spacing: 0.12em; text-transform: uppercase;
      color: rgba(255,255,255,0.95);
      background: var(--accent-color);
      padding: 5px 12px; border-radius: 3px;
      z-index: 2;
    }
    .acc-iso-icon-badge {
      position: absolute;
      bottom: 16px; left: 18px;
      width: 40px; height: 40px;
      background: rgba(255,255,255,0.15);
      border: 1px solid rgba(255,255,255,0.25);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      z-index: 2;
    }
    .acc-iso-icon-badge i { font-size: 18px; color: #ffffff; }
    .acc-iso-body {
      padding: 22px 22px 26px;
      background: var(--surface-color);
      border: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
      border-top: none;
      border-radius: 0 0 6px 6px;
    }
    .acc-iso-body h4 {
      font-family: "Montserrat", sans-serif;
      font-size: 16px; font-weight: 700;
      color: var(--heading-color); margin-bottom: 6px;
    }
    .acc-iso-scope {
      font-family: "Open Sans", sans-serif;
      font-size: 10px; letter-spacing: 0.18em;
      text-transform: uppercase; color: var(--accent-color);
      margin-bottom: 10px; display: block;
    }
    .acc-iso-body p {
      font-size: 13.5px;
      color: color-mix(in srgb, var(--default-color), transparent 20%);
      line-height: 1.75; margin: 0;
    }

    /* ── Professional membership rows (3) ── */
    .acc-member-row {
      display: flex;
      align-items: stretch;
      background: var(--surface-color);
      border: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
      border-radius: 6px;
      overflow: hidden;
      margin-bottom: 18px;
      box-shadow: 0 2px 10px rgba(0,0,0,0.05);
      transition: box-shadow 0.3s, transform 0.3s;
    }
    .acc-member-row:last-child { margin-bottom: 0; }
    .acc-member-row:hover {
      transform: translateX(4px);
      box-shadow: 0 6px 22px rgba(34,58,102,0.12);
    }
    /* ★ MEMBERSHIP LOGO PANEL IMAGE SLOT */
    .acc-member-logo-panel {
      flex-shrink: 0;
      width: 200px;
      min-height: 120px;
      background: none;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      position: relative;
    }
    .acc-member-logo-panel img {
      max-width: 70%; max-height: 70%;
      object-fit: contain;
      display: block;
      filter: brightness(1.1) saturate(0.9);
      transition: transform 0.4s ease, filter 0.4s ease;
    }
    .acc-member-row:hover .acc-member-logo-panel img { transform: scale(1.05); filter: brightness(1.2) saturate(1.1); }
    .acc-member-logo-placeholder {
      font-family: "Montserrat", sans-serif;
      font-size: 18px; font-weight: 800;
      letter-spacing: 0.06em;
      color: rgba(255,255,255,0.5);
      text-align: center; padding: 10px;
    }
    .acc-member-content {
      flex: 1; padding: 22px 26px;
      display: flex; flex-direction: column; justify-content: center;
    }
    .acc-member-content .acc-mem-tag {
      font-family: "Open Sans", sans-serif;
      font-size: 10px; letter-spacing: 0.22em;
      text-transform: uppercase; color: var(--accent-color); margin-bottom: 6px;
    }
    .acc-member-content h4 {
      font-family: "Montserrat", sans-serif;
      font-size: 15px; font-weight: 700;
      color: var(--heading-color); margin-bottom: 8px;
    }
    .acc-member-content p {
      font-size: 13.5px;
      color: color-mix(in srgb, var(--default-color), transparent 20%);
      line-height: 1.7; margin: 0;
    }
    @media (max-width: 575px) {
      .acc-member-row { flex-direction: column; }
      .acc-member-logo-panel { width: 100%; height: 120px; }
    }

    /* ── Gallery grid (6 image slots) ── */
    .acc-gallery-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr;
      grid-template-rows: 220px 200px;
      gap: 6px;
    }
    .acc-gallery-slot {
      position: relative;
      overflow: hidden;
      border-radius: 4px;
      cursor: pointer;
      background: color-mix(in srgb, var(--accent-color), transparent 88%);
    }
    .acc-gallery-slot:nth-child(1) { grid-row: 1 / 2; grid-column: 1 / 2; }
    .acc-gallery-slot:nth-child(4) { grid-row: 2 / 3; grid-column: 1 / 3; }
    .acc-gallery-slot img {
      width: 100%; height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.5s ease, filter 0.5s ease;
      filter: brightness(0.88) saturate(0.9);
    }
    .acc-gallery-slot:hover img { transform: scale(1.07); filter: brightness(0.60) saturate(1.15); }
    .acc-gallery-label {
      position: absolute;
      bottom: 0; left: 0; right: 0;
      background: linear-gradient(to top, rgba(22,44,102,0.88) 0%, transparent 100%);
      padding: 24px 14px 12px;
      font-family: "Open Sans", sans-serif;
      font-size: 11px; letter-spacing: 0.14em;
      text-transform: uppercase;
      color: rgba(255,255,255,0);
      transform: translateY(6px);
      transition: color 0.3s, transform 0.3s;
    }
    .acc-gallery-slot:hover .acc-gallery-label { color: rgba(255,255,255,0.88); transform: translateY(0); }
    .acc-gallery-placeholder {
      position: absolute;
      inset: 0;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 8px;
    }
    .acc-gallery-placeholder svg { width: 32px; height: 32px; opacity: 0.3; color: var(--accent-color); }
    .acc-gallery-placeholder span {
      font-family: "Open Sans", sans-serif;
      font-size: 10px; letter-spacing: 0.18em;
      text-transform: uppercase;
      color: color-mix(in srgb, var(--accent-color), transparent 30%);
    }
    @media (max-width: 767px) {
      .acc-gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: repeat(4, 180px); }
      .acc-gallery-slot:nth-child(1),
      .acc-gallery-slot:nth-child(4) { grid-row: auto; grid-column: auto; }
    }
    @media (max-width: 480px) {
      .acc-gallery-grid { grid-template-columns: 1fr; grid-template-rows: none; }
      .acc-gallery-slot { height: 200px; }
    }

    /* ── Commitment CTA banner ── */
    .acc-commitment {
      position: relative;
      overflow: hidden;
    }
    /* ★ COMMITMENT BACKGROUND IMAGE SLOT */
    .acc-commitment-bg {
      position: absolute; inset: 0;
      width: 100%; height: 100%;
      object-fit: cover; z-index: 0;
    }
    .acc-commitment-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(135deg, rgba(11,22,40,0.90) 0%, rgba(34,58,102,0.84) 100%);
      z-index: 1;
    }
    .acc-commitment-grid {
      position: absolute; inset: 0; z-index: 2;
      background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
      background-size: 40px 40px;
    }
    .acc-commitment-content { position: relative; z-index: 3; padding: 80px 0; }
    .acc-commitment-content h2 {
      font-family: "Montserrat", sans-serif;
      font-size: clamp(22px, 3.5vw, 40px);
      font-weight: 800; color: #ffffff;
      line-height: 1.12; margin-bottom: 14px;
    }
    .acc-commitment-content p {
      font-family: "Roboto", sans-serif;
      font-size: 16px; color: rgba(255,255,255,0.72);
      line-height: 1.8; margin-bottom: 0; max-width: 520px;
    }
    .acc-commitment::before,
    .acc-commitment::after {
      content: '';
      position: absolute; left: 0; right: 0;
      height: 2px;
      background: linear-gradient(90deg, transparent, rgba(232,168,50,0.6), transparent);
      z-index: 4;
    }
    .acc-commitment::before { top: 0; }
    .acc-commitment::after  { bottom: 0; }










.acc-reg-logo-wrap img {
  max-width: 70% !important;
  max-height: 80% !important;
  width: auto !important;
  height: auto !important;
  object-fit: contain;
}

    








.fullwidth-image-section {
  width: 100%;
  padding: 0;
  margin: 0;
}

.fullwidth-image {
  width: 100%;
  height: auto;
  display: block;
}















/* ── Stats ── */
.ceil-stats-section{background:linear-gradient(145deg,#07111e 0%,#0e2040 50%,#162d5a 100%);position:relative;overflow:hidden;padding:90px 0}
.ceil-stats-bg-grid{position:absolute;inset:0;background-image:linear-gradient(rgba(255,255,255,.035) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.035) 1px,transparent 1px);background-size:52px 52px;pointer-events:none;animation:gridShift 25s linear infinite}
@keyframes gridShift{0%{background-position:0 0}100%{background-position:52px 52px}}
.ceil-stats-orb{position:absolute;border-radius:50%;pointer-events:none}
.ceil-stats-orb--1{width:500px;height:500px;top:-180px;left:-120px;background:radial-gradient(circle,rgba(34,58,102,.5) 0%,transparent 70%);animation:orbPulse 8s ease-in-out infinite alternate}
.ceil-stats-orb--2{width:400px;height:400px;bottom:-140px;right:-80px;background:radial-gradient(circle,rgba(20,50,100,.4) 0%,transparent 70%);animation:orbPulse 10s ease-in-out infinite alternate-reverse}
@keyframes orbPulse{from{transform:scale(1)}to{transform:scale(1.2)}}
.ceil-stats-header{text-align:center;margin-bottom:64px;position:relative;z-index:2}
.ceil-stats-eyebrow{display:inline-flex;align-items:center;gap:14px;font-family:"Open Sans",sans-serif;font-size:10px;letter-spacing:.35em;text-transform:uppercase;color:rgba(255,255,255,.45);margin-bottom:16px}
.ceil-stats-eyebrow-line{display:block;width:32px;height:1px;background:rgba(255,255,255,.2)}
.ceil-stats-title{font-family:"Montserrat",sans-serif;font-size:clamp(28px,4vw,46px);font-weight:800;color:#fff;line-height:1.1;margin:0 0 14px}
.ceil-stats-title em{font-style:italic;background:linear-gradient(90deg,#6aa3e8,#a8c8ff);-webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text}
.ceil-stats-subtitle{font-family:"Roboto",sans-serif;font-size:15px;color:rgba(255,255,255,.42);margin:0}
.ceil-stats-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:20px;margin-bottom:60px;position:relative;z-index:2}
.ceil-stat-card{background:rgba(255,255,255,.055);border:1px solid rgba(255,255,255,.09);border-radius:14px;padding:36px 26px 24px;position:relative;overflow:hidden;transition:transform .4s cubic-bezier(.4,0,.2,1),background .4s,border-color .4s,box-shadow .4s;cursor:default}
.ceil-stat-card::before{content:'';position:absolute;top:0;left:10%;right:10%;height:1px;background:linear-gradient(90deg,transparent,rgba(168,200,255,.5),transparent);opacity:0;transition:opacity .4s}
.ceil-stat-card:hover{transform:translateY(-10px) scale(1.02);background:rgba(255,255,255,.09);border-color:rgba(168,200,255,.22);box-shadow:0 24px 60px rgba(0,0,0,.4),0 0 40px rgba(34,58,102,.3)}
.ceil-stat-card:hover::before{opacity:1}
.ceil-stat-card__glow{position:absolute;top:-40px;left:-40px;width:160px;height:160px;border-radius:50%;background:radial-gradient(circle,rgba(74,144,217,.12) 0%,transparent 70%);pointer-events:none;transition:transform .4s}
.ceil-stat-card:hover .ceil-stat-card__glow{transform:scale(1.5)}
.ceil-stat-card__icon-wrap{width:54px;height:54px;background:rgba(74,144,217,.14);border:1px solid rgba(74,144,217,.25);border-radius:12px;display:flex;align-items:center;justify-content:center;margin-bottom:22px;transition:background .3s,border-color .3s}
.ceil-stat-card:hover .ceil-stat-card__icon-wrap{background:rgba(74,144,217,.25);border-color:rgba(74,144,217,.5)}
.ceil-stat-card__icon-wrap i{font-size:23px;color:#7ab8f5}
.ceil-stat-card__body{margin-bottom:20px}
.ceil-stat-card__num{font-family:"Montserrat",sans-serif;font-size:clamp(38px,4vw,54px);font-weight:900;color:#fff;line-height:1;display:flex;align-items:flex-start;gap:2px;margin-bottom:8px}
.ceil-stat-suffix{font-size:.4em;color:#7ab8f5;margin-top:6px;font-weight:700}
.ceil-stat-card__label{font-family:"Montserrat",sans-serif;font-size:12px;font-weight:700;letter-spacing:.12em;text-transform:uppercase;color:red;margin-bottom:6px}
.ceil-stat-card__desc{font-family:"Roboto",sans-serif;font-size:12px;color:rgba(255,255,255,.32);line-height:1.6}
.ceil-stat-card__bar-track{height:3px;background:rgba(255,255,255,.08);border-radius:2px;overflow:hidden;margin-bottom:5px}
.ceil-stat-card__bar-fill{height:100%;background:linear-gradient(90deg,#2d6cca,#7ab8f5);border-radius:2px;width:0;transition:width 1.8s cubic-bezier(.4,0,.2,1) .3s}
.ceil-stat-card__bar-pct{font-family:"Open Sans",sans-serif;font-size:10px;color:rgba(255,255,255,.25);text-align:right;letter-spacing:.05em}
.ceil-stats-timeline{display:flex;align-items:center;padding:24px 36px;background:rgba(255,255,255,.04);border:1px solid rgba(255,255,255,.07);border-radius:12px;position:relative;z-index:2}
.ceil-stats-timeline__item{display:flex;flex-direction:column;align-items:center;gap:6px;text-align:center;padding:0 20px}
.ceil-stats-timeline__dot{width:10px;height:10px;border-radius:50%;background:rgba(255,255,255,.2);border:2px solid rgba(255,255,255,.3);margin-bottom:4px}
.ceil-stats-timeline__dot--active{background:#7ab8f5;border-color:#7ab8f5;box-shadow:0 0 10px rgba(122,184,245,.6);animation:dotPulse 2s ease-in-out infinite}
@keyframes dotPulse{0%,100%{box-shadow:0 0 8px rgba(122,184,245,.5)}50%{box-shadow:0 0 20px rgba(122,184,245,.9)}}
.ceil-stats-timeline__year{font-family:"Montserrat",sans-serif;font-size:17px;font-weight:800;color:#a8c8ff;display:block}
.ceil-stats-timeline__event{font-family:"Open Sans",sans-serif;font-size:11px;color:rgba(255,255,255,.38);letter-spacing:.06em;display:block}
.ceil-stats-timeline__line{flex:1;height:1px;background:linear-gradient(90deg,rgba(168,200,255,.1),rgba(168,200,255,.3),rgba(168,200,255,.1));min-width:24px}
@media(max-width:991px){.ceil-stats-grid{grid-template-columns:repeat(2,1fr)}}
@media(max-width:575px){.ceil-stats-grid{grid-template-columns:1fr 1fr;gap:12px}.ceil-stats-timeline{flex-wrap:wrap;gap:18px;justify-content:center}.ceil-stats-timeline__line{display:none}.ceil-stats-timeline__item{padding:0 10px}}


/* ── Divisions ── */
.ceil-divisions-section{background:#f0f5fc;padding:60px 0 80px}
.ceil-div-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:18px}
.ceil-div-card{position:relative;border-radius:10px;overflow:hidden;background:#fff;box-shadow:0 3px 18px rgba(0,0,0,.08);transition:transform .42s cubic-bezier(.4,0,.2,1),box-shadow .42s;display:flex;flex-direction:column;text-decoration:none!important;color:inherit}
.ceil-div-card:hover{transform:translateY(-9px);box-shadow:0 22px 52px rgba(34,58,102,.20);text-decoration:none;color:inherit}
.ceil-div-card__img{position:relative;height:175px;overflow:hidden;flex-shrink:0}
.ceil-div-card__img img{width:100%;height:100%;object-fit:cover;display:block;transition:transform .6s,filter .45s;filter:brightness(.82) saturate(.88)}
.ceil-div-card:hover .ceil-div-card__img img{transform:scale(1.09);filter:brightness(.55) saturate(1.15)}
.ceil-div-card__overlay{position:absolute;inset:0;background:linear-gradient(to bottom,transparent 35%,rgba(11,22,40,.62) 100%)}
.ceil-div-card__badge{position:absolute;top:13px;right:13px;width:36px;height:36px;background:var(--accent-color);border-radius:8px;display:flex;align-items:center;justify-content:center;z-index:3;transition:transform .3s;box-shadow:0 4px 12px rgba(0,0,0,.25)}
.ceil-div-card:hover .ceil-div-card__badge{transform:rotate(10deg) scale(1.12)}
.ceil-div-card__badge i{font-size:15px;color:#fff}
.ceil-div-card__body{padding:18px 18px 20px;display:flex;flex-direction:column;flex:1}
.ceil-div-card__num{font-family:"Montserrat",sans-serif;font-size:10px;font-weight:800;letter-spacing:.22em;color:color-mix(in srgb,var(--accent-color),transparent 48%);margin-bottom:7px}
.ceil-div-card__title{font-family:"Montserrat",sans-serif;font-size:14.5px;font-weight:700;color:var(--heading-color);margin-bottom:9px;line-height:1.3;transition:color .3s}
.ceil-div-card:hover .ceil-div-card__title{color:var(--accent-color)}
.ceil-div-card__desc{font-family:"Roboto",sans-serif;font-size:12.5px;color:color-mix(in srgb,var(--default-color),transparent 22%);line-height:1.7;margin:0 0 14px;flex:1}
.ceil-div-card__btn{display:inline-flex;align-items:center;gap:7px;font-family:"Montserrat",sans-serif;font-size:11px;font-weight:700;letter-spacing:.1em;text-transform:uppercase;color:var(--accent-color);border-top:1px solid color-mix(in srgb,var(--default-color),transparent 88%);padding-top:13px;margin-top:auto;transition:gap .25s,color .25s}
.ceil-div-card:hover .ceil-div-card__btn{gap:11px;color:color-mix(in srgb,var(--accent-color),transparent 15%)}
.ceil-div-card__btn i{font-size:13px;transition:transform .25s}
.ceil-div-card:hover .ceil-div-card__btn i{transform:translateX(3px)}
@media(max-width:1199px){.ceil-div-grid{grid-template-columns:repeat(3,1fr)}}
@media(max-width:767px){.ceil-div-grid{grid-template-columns:repeat(2,1fr);gap:13px}.ceil-div-card__img{height:145px}}
@media(max-width:480px){.ceil-div-grid{grid-template-columns:1fr}}











/* Clients — bigger logos, two-row continuous scroll */
.clients-row-swiper {
  padding: 10px 0;
}

.clients-row-swiper .swiper-slide img {
  width: 160px;
  max-width: 160px;
  height: 70px;
  object-fit: contain;
}

/* Regional Presence — centred with tighter gaps */
#\.team.section.light-background .row,
.team.section.light-background .row {
  justify-content: center;
  column-gap: 0;
}








/* Regional Presence — landscape images only */
#regional-presence .member-img img {
  height: 150px;
  object-fit: cover;
}




/* Team section — equal size portrait photos */
#team .member-img img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  object-position: center top;
}


















/* ── Projects ── */
.pj-filter-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 40px;
}

.pj-btn {
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  font-weight: 600;
  padding: 8px 22px;
  border-radius: 50px;
  border: 2px solid color-mix(in srgb, var(--accent-color), transparent 72%);
  color: var(--accent-color);
  background: transparent;
  cursor: pointer;
  transition: background 0.22s, color 0.22s, border-color 0.22s;
  letter-spacing: 0.03em;
}

.pj-btn:hover {
  border-color: var(--accent-color);
  background: color-mix(in srgb, var(--accent-color), transparent 88%);
}

.pj-btn.active {
  background: var(--accent-color);
  color: #fff;
  border-color: var(--accent-color);
}

/* Masonry grid via CSS columns */
.pj-grid {
  columns: 3;
  column-gap: 16px;
}

.pj-item {
  break-inside: avoid;
  margin-bottom: 16px;
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  display: block;
  cursor: pointer;
}

.pj-item.is-hidden {
  display: none;
}

.pj-item a {
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  text-decoration: none;
}

.pj-item img {
  width: 100%;
  display: block;
  transition: transform 0.5s ease, filter 0.4s ease;
  filter: brightness(0.92);
}

.pj-item:hover img {
  transform: scale(1.04);
  filter: brightness(0.45);
}

/* Info overlay — slides up on hover */
.pj-item__info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 18px 18px;
  background: linear-gradient(to top, rgba(8, 18, 36, 0.92) 0%, transparent 100%);
  transform:  translateY(0);
  transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1);
}

.pj-item:hover .pj-item__info {
  transform: translateY(0);
}

.pj-item__cat {
  display: block;
  font-family: "Open Sans", sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #a8c8ff;
  margin-bottom: 5px;
}

.pj-item__title {
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 6px;
  line-height: 1.3;
}

.pj-item__loc {
  font-family: "Roboto", sans-serif;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

.pj-item__loc i {
  font-size: 11px;
  margin-right: 3px;
  color: #7ab8f5;
}

/* No results */
.pj-no-results {
  text-align: center;
  padding: 60px 20px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.pj-no-results i {
  font-size: 48px;
  display: block;
  margin-bottom: 14px;
  color: color-mix(in srgb, var(--accent-color), transparent 55%);
}

.pj-no-results p {
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  font-weight: 600;
  margin: 0;
}

@media (max-width: 991px) { .pj-grid { columns: 2; } }
@media (max-width: 575px) { .pj-grid { columns: 1; } .pj-btn { font-size: 12px; padding: 7px 15px; } }

























/* ================================================
   RESPONSIVE — all custom sections
   Breakpoints:
   xl  = max 1399px  (large laptops)
   lg  = max 1199px  (small laptops / landscape tablets)
   md  = max 991px   (portrait tablets)
   sm  = max 767px   (large phones / small tablets)
   xs  = max 480px   (phones)
   xxs = max 360px   (small phones)
   ================================================ */


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   CLIENTS — two-row swiper
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
@media (max-width: 1199px) {
  .clients-row-swiper .swiper-slide img {
    width: 130px;
    height: 60px;
  }
}

@media (max-width: 991px) {
  .clients-row-swiper .swiper-slide img {
    width: 110px;
    height: 52px;
  }
}

@media (max-width: 767px) {
  .clients-row-swiper .swiper-slide img {
    width: 90px;
    height: 44px;
  }
}

@media (max-width: 480px) {
  .clients-row-swiper .swiper-slide img {
    width: 70px;
    height: 36px;
  }
}


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   REGIONAL PRESENCE
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
@media (max-width: 1199px) {
  #regional-presence .col-lg-2 {
    width: calc(100% / 3);
  }

  #regional-presence .member-img img {
    height: 140px;
  }
}

@media (max-width: 991px) {
  #regional-presence .col-lg-2 {
    width: 33.333%;
  }

  #regional-presence .member-img img {
    height: 130px;
  }
}

@media (max-width: 767px) {
  #regional-presence .col-lg-2 {
    width: 50%;
  }

  #regional-presence .member-img img {
    height: 120px;
  }

  #regional-presence .member-info h4 {
    font-size: 13px;
  }

  #regional-presence .member-info span {
    font-size: 11px;
  }
}

@media (max-width: 480px) {
  #regional-presence .col-lg-2 {
    width: 100%;
  }

  #regional-presence .member-img img {
    height: 180px;
  }
}


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   STATS SECTION
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
@media (max-width: 1199px) {
  .ceil-stats-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
  }

  .ceil-stat-card__num {
    font-size: 42px;
  }
}

@media (max-width: 991px) {
  .ceil-stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .ceil-stats-section {
    padding: 70px 0;
  }

  .ceil-stats-timeline {
    padding: 20px 24px;
    gap: 0;
  }

  .ceil-stats-timeline__item {
    padding: 0 12px;
  }

  .ceil-stats-timeline__year {
    font-size: 14px;
  }

  .ceil-stats-timeline__event {
    font-size: 10px;
  }
}

@media (max-width: 767px) {
  .ceil-stats-section {
    padding: 55px 0;
  }

  .ceil-stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .ceil-stat-card {
    padding: 22px 15px 16px;
  }

  .ceil-stat-card__num {
    font-size: 32px;
  }

  .ceil-stat-card__label {
    font-size: 10px;
  }

  .ceil-stat-card__desc {
    display: none;
  }

  .ceil-stats-timeline {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 18px;
  }

  .ceil-stats-timeline__line {
    display: none;
  }

  .ceil-stats-timeline__item {
    flex-direction: row;
    align-items: center;
    gap: 12px;
    text-align: left;
    padding: 0;
  }

  .ceil-stats-timeline__dot {
    flex-shrink: 0;
    margin-bottom: 0;
  }

  .ceil-stats-title {
    font-size: 26px;
  }
}

@media (max-width: 480px) {
  .ceil-stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .ceil-stat-card__num {
    font-size: 28px;
  }

  .ceil-stats-orb--1,
  .ceil-stats-orb--2 {
    display: none;
  }
}

@media (max-width: 360px) {
  .ceil-stats-grid {
    grid-template-columns: 1fr;
  }
}


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   DIVISIONS GRID
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
@media (max-width: 1399px) {
  .ceil-div-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
  }
}

@media (max-width: 1199px) {
  .ceil-div-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 991px) {
  .ceil-div-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .ceil-div-card__img {
    height: 160px;
  }
}

@media (max-width: 767px) {
  .ceil-div-card__img {
    height: 150px;
  }

  .ceil-div-card__title {
    font-size: 13px;
  }

  .ceil-div-card__desc {
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .ceil-div-grid {
    grid-template-columns: 1fr;
  }

  .ceil-div-card__img {
    height: 200px;
  }
}


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   PROJECTS FILTER & MASONRY
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
@media (max-width: 1199px) {
  .pj-grid {
    columns: 3;
  }
}

@media (max-width: 991px) {
  .pj-grid {
    columns: 2;
    column-gap: 12px;
  }

  .pj-filter-wrap {
    gap: 7px;
  }

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

@media (max-width: 767px) {
  .pj-grid {
    columns: 2;
    column-gap: 10px;
  }

  .pj-item {
    margin-bottom: 10px;
  }

  .pj-btn {
    font-size: 11px;
    padding: 6px 12px;
  }

  .pj-item__title {
    font-size: 12px;
  }

  .pj-item__cat {
    font-size: 9px;
    letter-spacing: 0.1em;
  }

  .pj-item__loc {
    font-size: 11px;
  }

  /* No hover on touch — always show overlay */
  .pj-item__info {
    transform: translateY(0);
    background: linear-gradient(to top, rgba(8,18,36,0.85) 0%, transparent 100%);
  }
}

@media (max-width: 480px) {
  .pj-grid {
    columns: 1;
  }

  .pj-item__info {
    padding: 14px 14px 14px;
  }

  .pj-filter-wrap {
    gap: 5px;
    margin-bottom: 22px;
  }

  .pj-btn {
    font-size: 11px;
    padding: 6px 10px;
  }
}


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   TEAM SECTION
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
@media (max-width: 1199px) {
  #team .member-img img {
    height: 260px;
  }
}

@media (max-width: 991px) {
  #team .member-img img {
    height: 240px;
  }
}

@media (max-width: 767px) {
  #team .member-img img {
    height: 220px;
  }

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

  #team .member-info span {
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  #team .member-img img {
    height: 260px;
  }
}







/* Container aligns image to the right */
.company-tagline {
  text-align: right;       /* Align image to right */
  padding: 20px;           /* Optional spacing from edges */
}

/* Image styling */
.company-tagline img {
  width: 350px;            /* Smaller size on desktop */
  max-width: 100%;         /* Shrinks automatically on smaller screens */
  height: auto;            /* Maintain aspect ratio */
  display: inline-block;
}

/* Adjust for tablets and mobile */
@media screen and (max-width: 768px) {
  .company-tagline img {
    width: 80%;            /* Larger relative size on small screens */
    text-align: center;    /* Center if needed on mobile */
  }
}


.re-icon-tile {
  padding: 8px !important;
}







@media (max-width: 575px) {
  #regional-presence .col-lg-2 {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  #regional-presence .team-member {
    width: 100%;
    text-align: center;
  }

  #regional-presence .row {
    justify-content: center;
  }
}

















/* Remove hover tint/overlay on cards */
  .acc-iso-card--no-tint .acc-iso-img-wrap::after,
  .acc-iso-card--no-tint .acc-iso-img-wrap::before,
  .acc-iso-card--no-tint:hover .acc-iso-img-wrap::after,
  .acc-iso-card--no-tint:hover .acc-iso-img-wrap::before {
    display: none !important;
    background: none !important;
    opacity: 0 !important;
  }
 
  .acc-iso-card--no-tint:hover img,
  .acc-iso-card--no-tint img {
    filter: none !important;
  }
 
  .acc-iso-card--no-tint:hover {
    background: none;
  }




















