/**
* Template Name: FlexStart
* Template URL: https://bootstrapmade.com/flexstart-bootstrap-startup-template/
* Updated: Nov 01 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: "Nunito", sans-serif;
  --nav-font: "Poppins", 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: #f5f5f5; */
  --background-color: #fff;
  /* Background color for the entire website, including individual sections */
  --default-color: #2B2B2B;
  /* Default color used for the majority of the text content across the entire website */
  --heading-color: #090360;
  /* Color for headings, subheadings and title throughout the website */
  --accent-color: #0000FF;
  /* 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: #090360;
  /* The default color of the main navmenu links */
  --nav-hover-color: #0000FF;
  /* 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: #212529;
  /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #0000FF;
  /* 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: #f9f9f9;
  --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);
  background-color: var(--background-color);
  padding: 20px 0;
  transition: all 0.5s;
  z-index: 997;
}

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

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

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

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

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

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

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

  .header .navmenu {
    order: 3;
  }
}

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

/* Index Page Header
------------------------------*/
.index-page .header {
  --background-color: rgba(255, 255, 255, 0);
}

/* Index Page Header on Scroll
------------------------------*/
.index-page.scrolled .header {
  --background-color: #ffffff;
}

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

/* Listing Dropdown - Desktop */
@media (min-width: 1200px) {
  .navmenu .listing-dropdown {
    position: static;
  }

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

  .navmenu .listing-dropdown ul li {
    flex: 1;
  }

  .navmenu .listing-dropdown ul li a,
  .navmenu .listing-dropdown ul li:hover>a {
    padding: 10px 20px;
    font-size: 15px;
    color: var(--nav-dropdown-color);
    background-color: var(--nav-dropdown-background-color);
  }

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

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

/* Listing Dropdown - Mobile */
@media (max-width: 1199px) {
  .navmenu .listing-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 .listing-dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

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

/*--------------------------------------------------------------
# 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 97%);
  border-top: 1px solid color-mix(in srgb, var(--accent-color), transparent 85%);
  border-bottom: 1px solid color-mix(in srgb, var(--accent-color), transparent 85%);
  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: color-mix(in srgb, var(--background-color), transparent 50%);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  box-shadow: 0px 2px 25px rgba(0, 0, 0, 0.1);
  display: flex;
  transition: 0.3s;
  border-radius: 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: color-mix(in srgb, var(--background-color), transparent 50%);
  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;
  background-color: color-mix(in srgb, var(--accent-color), transparent 97%);
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 85%);
  font-size: 16px;
  color: var(--accent-color);
  margin-right: 10px;
  transition: 0.3s;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/*--------------------------------------------------------------
# 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: 50%;
  transition: all 0.4s;
}

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

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

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

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

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  position: relative;
}

.page-title .heading {
  padding: 80px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

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

.page-title nav {
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
  padding: 20px 0;
}

.page-title nav ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}

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

.page-title nav 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: 98px;
  overflow: clip;
}

@media (max-width: 1199px) {

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

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

.section-title h2 {
  font-size: 13px;
  letter-spacing: 1px;
  font-weight: 400;
  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: 0px;
  font-size: 36px;
  font-weight: 700;
  font-family: var(--heading-font);
}

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

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

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

.hero p {

  margin: 5px 0 30px 0;
  font-size: 20px;
  font-weight: 300;
  color: #fff;
}

.hero .btn-get-started {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 40px;
  border-radius: 4px;
  transition: 0.5s;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}

.hero .btn-get-started i {
  margin-left: 5px;
  font-size: 18px;
  transition: 0.3s;
}

.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-get-started:hover i {
  transform: translateX(5px);
}

.hero .btn-watch-video {
  font-size: 16px;
  transition: 0.5s;
  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;
  }
}

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

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

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .content {
  /*   background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
 */
  padding: 0px 10px;
}

#about.section {
  background-color: transparent !important;
  padding: 60px 0 30px !important;
  position: relative !important;
}

#about.section::after {
  content: '' !important;
  position: absolute !important;
  bottom: 0 !important;
  left: 0 !important;
  right: 0 !important;
  height: 55% !important;
  background-color: #0d1560 !important;
  z-index: 0 !important;
}

#about .container {
  position: relative !important;
  z-index: 1 !important;
}

.about-img {
  object-fit: cover;
  height: 100%;
  border-radius: 16px;
  width: 100%;
  max-height: 500px;
}

.about .content h3 {
  font-size: 14px;
  font-weight: 400;
  color: var(--accent-color);
  text-transform: uppercase;
}

.about .content h2 {
  font-size: 36px;
  font-weight: 800;
}

.about .content p {
  margin: 10px 0 20px 0;
  line-height: 24px;
}

.about .content .btn-read-more {
  color: var(--contrast-color);
  background: var(--accent-color);
  line-height: 0;
  padding: 15px 40px;
  border-radius: 4px;
  transition: 0.5s;
  box-shadow: 0px 5px 25px rgba(0, 0, 0, 0.1);
}

.about .content .btn-read-more span {
  font-family: var(--default-font);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 1px;
}

.about .content .btn-read-more i {
  margin-left: 5px;
  font-size: 18px;
  transition: 0.3s;
}

.about .content .btn-read-more:hover i {
  transform: translateX(5px);
}

/*--------------------------------------------------------------
# Values Section
--------------------------------------------------------------*/
.values .card {
  background-color: var(--surface-color);
  color: var(--default-color);
  padding: 30px;
  box-shadow: 0px 0 10px rgba(0, 0, 0, 0.1);
  text-align: start;
  transition: 0.3s;
  height: 100%;
  border: 0;
  justify-content: space-between;
  border-radius: 16px;
}

.values .card img {
  padding: 30px 50px;
  transition: 0.5s;
  transform: scale(1.1);
  border-radius: 16px;
}

.values .card i {
  color: var(--accent-color);
  font-size: 42px;
  width: fit-content;
  margin-right: 20px;
  background:
    color-mix(in srgb, var(--accent-color), transparent 92%);
  color: var(--accent-color);
  line-height: 0;
  padding: 15px;
  margin-right: 10px;
  font-size: 25px;
  border-radius: 16px;
  transition: 0.3s;
  margin-bottom: 15px;
}

.values .card h3 {
  font-size: 20px;
  font-weight: 800;

}

.values .card p {
  size-adjust: 14px;
  line-height: 24px;
  font-weight: 400;
}

.values .card:hover {
  box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
  background-color: #0d1560;
}

.values .card:hover p,
.values .card:hover h3 {
  color: #fff;
}

.values .card:hover i {
  background-color: #ffffff78;
}

.values .card:hover img {
  transform: scale(1);
}

/*--------------------------------------------------------------
# Stats Section
--------------------------------------------------------------*/
.stats .stats-item {
  background-color: var(--surface-color);
  box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
  padding: 35px;
  border-radius: 16px;
}

.stats .stats-item i {
  color: var(--accent-color);
  font-size: 42px;
  line-height: 0;
  margin-right: 20px;
}

.stats .stats-item span {
  color: var(--default-color);
  font-size: 32px;
  display: block;
  font-weight: 700;
  line-height: 32px;
}

.stats .stats-item p {
  padding: 0;
  margin: 15px 0 !important;
  font-family: var(--default-color);
  font-size: 16px;
  font-weight: 500;
}

/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features .feature-box {
  padding: 24px 20px;
  box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
  height: 100%;
}

.features .feature-box h3 {
  font-size: 18px;
  font-weight: 700;
  margin: 0;
}

.features .feature-box i {
  background: color-mix(in srgb, var(--accent-color), transparent 92%);
  color: var(--accent-color);
  line-height: 0;
  padding: 4px;
  margin-right: 10px;
  font-size: 24px;
  border-radius: 3px;
  transition: 0.3s;
}

.features .feature-box:hover i {
  background: var(--accent-color);
  color: var(--contrast-color);
}

/*--------------------------------------------------------------
# Alt Features Section
--------------------------------------------------------------*/
.alt-features .icon-box {
  display: flex;
}

.alt-features .icon-box h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 10px 0;
}

.alt-features .icon-box i {
  font-size: 44px;
  line-height: 44px;
  color: var(--accent-color);
  margin-right: 15px;
}

.alt-features .icon-box p {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 0;
}

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

.services .service-item .icon {
  font-size: 36px;
  padding: 20px 20px;
  border-radius: 4px;
  position: relative;
  margin-bottom: 25px;
  display: inline-block;
  line-height: 0;
  transition: 0.3s;
}

.services .service-item h3 {
  font-size: 24px;
  font-weight: 700;
}

.services .service-item .read-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 16px;
  padding: 8px 20px;
}

.services .service-item .read-more i {
  line-height: 0;
  margin-left: 5px;
  font-size: 18px;
}

.services .service-item.item-cyan {
  border-bottom: 3px solid #0dcaf0;
}

.services .service-item.item-cyan .icon {
  color: #0dcaf0;
  background: rgba(13, 202, 240, 0.1);
}

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

.services .service-item.item-cyan:hover {
  background: #0dcaf0;
}

.services .service-item.item-orange {
  border-bottom: 3px solid #fd7e14;
}

.services .service-item.item-orange .icon {
  color: #fd7e14;
  background: rgba(253, 126, 20, 0.1);
}

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

.services .service-item.item-orange:hover {
  background: #fd7e14;
}

.services .service-item.item-teal {
  border-bottom: 3px solid #20c997;
}

.services .service-item.item-teal .icon {
  color: #20c997;
  background: rgba(32, 201, 151, 0.1);
}

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

.services .service-item.item-teal:hover {
  background: #20c997;
}

.services .service-item.item-red {
  border-bottom: 3px solid #df1529;
}

.services .service-item.item-red .icon {
  color: #df1529;
  background: rgba(223, 21, 4, 0.1);
}

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

.services .service-item.item-red:hover {
  background: #df1529;
}

.services .service-item.item-indigo {
  border-bottom: 3px solid #6610f2;
}

.services .service-item.item-indigo .icon {
  color: #6610f2;
  background: rgba(102, 16, 242, 0.1);
}

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

.services .service-item.item-indigo:hover {
  background: #6610f2;
}

.services .service-item.item-pink {
  border-bottom: 3px solid #f3268c;
}

.services .service-item.item-pink .icon {
  color: #f3268c;
  background: rgba(243, 38, 140, 0.1);
}

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

.services .service-item.item-pink:hover {
  background: #f3268c;
}

.services .service-item:hover h3,
.services .service-item:hover p,
.services .service-item:hover .read-more {
  color: #fff;
}

.services .service-item:hover .icon {
  background: #fff;
}

/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/
.pricing .pricing-tem {
  background-color: var(--surface-color);
  box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
  padding: 40px 20px;
  text-align: center;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  transition: 0.3s;
  height: 100%;
}

@media (min-width: 1200px) {
  .pricing .pricing-tem:hover {
    transform: scale(1.1);
    box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
  }
}

.pricing h3 {
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 15px;
}

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

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

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

.pricing .icon {
  padding: 20px 0;
}

.pricing .icon i {
  font-size: 48px;
}

.pricing ul {
  padding: 0;
  list-style: none;
  color: var(--default-color);
  text-align: center;
  line-height: 26px;
  font-size: 16px;
  margin-bottom: 25px;
}

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

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

.pricing .btn-buy {
  display: inline-block;
  padding: 8px 40px 10px 40px;
  border-radius: 50px;
  color: var(--accent-color);
  transition: none;
  font-size: 16px;
  font-weight: 400;
  font-family: var(--heading-font);
  font-weight: 600;
  transition: 0.3s;
  border: 1px solid var(--accent-color);
}

.pricing .btn-buy:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

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

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

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

.faq .faq-container .faq-item h3 {
  font-weight: 600;
  font-size: 16px;
  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 h3 {
  color: var(--accent-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);
}

/* ── Portfolio filters — pill style ─────────────────── */
#portfolio .portfolio-filters {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 0 !important;
  padding: 6px !important;
  margin: 0 auto 40px !important;
  background: #f5f5f5 !important;
  border-radius: 50px !important;
  width: fit-content !important;
  list-style: none !important;
}

#portfolio .portfolio-filters li {
  cursor: pointer !important;
  display: inline-block !important;
  padding: 10px 28px !important;
  font-size: 0.9rem !important;
  font-weight: 500 !important;
  color: #444 !important;
  border-radius: 50px !important;
  margin: 0 !important;
  line-height: 1 !important;
  transition: all 0.25s ease !important;
  white-space: nowrap !important;
  background: transparent !important;
}

#portfolio .portfolio-filters li:hover {
  color: #0d1560 !important;
  background: transparent !important;
}

#portfolio .portfolio-filters li.filter-active {
  background: #1a3de4 !important;
  color: #fff !important;
  font-weight: 600 !important;
  box-shadow: 0 4px 12px rgba(26, 61, 228, 0.3) !important;
}

/* ── Section title ───────────────────────────────────── */
#portfolio .section-title h2 {
  font-size: 0.75rem !important;
  font-weight: 400 !important;
  letter-spacing: 2.5px !important;
  text-transform: uppercase !important;
  color: #1a3de4 !important;
  background: transparent !important;
  padding: 0 !important;
  border-radius: 0 !important;
  display: block !important;
}

#portfolio .section-title p {
  font-size: 2.2rem !important;
  font-weight: 800 !important;
  color: #0d1560 !important;
}

/* ── Responsive ──────────────────────────────────────── */
@media (max-width: 575px) {
  #portfolio .portfolio-filters {
    flex-wrap: wrap !important;
    border-radius: 20px !important;
    width: 90% !important;
    justify-content: center !important;
  }

  #portfolio .portfolio-filters li {
    padding: 8px 18px !important;
    font-size: 0.82rem !important;
  }
}

/* .portfolio .portfolio-content .portfolio-info h4 {
  font-size: 14px;
  padding: 5px 10px;
  font-weight: 400;
  color: #ffffff;
  display: inline-block;
  background-color: var(--accent-color);
} */
/* 
.portfolio .portfolio-content .portfolio-info p {
  position: absolute;
  bottom: 10px;
  text-align: center;
  display: inline-block;
  left: 0;
  right: 0;
  font-size: 16px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
} */

.portfolio .portfolio-content .portfolio-info .preview-link,
.portfolio .portfolio-content .portfolio-info .details-link {
  position: absolute;
  left: calc(50% - 40px);
  font-size: 26px;
  top: calc(50% - 14px);
  color: #fff;
  transition: 0.3s;
  line-height: 1.2;
}

.portfolio .portfolio-content .portfolio-info .preview-link:hover,
.portfolio .portfolio-content .portfolio-info .details-link:hover {
  color: var(--accent-color);
}

.portfolio .portfolio-content .portfolio-info .details-link {
  left: 50%;
  font-size: 34px;
  line-height: 0;
}

.portfolio .portfolio-content:hover .portfolio-info {
  opacity: 1;
}

.portfolio .portfolio-content:hover img {
  transform: scale(1.1);
}

/* ── Section ─────────────────────────────────────────── */
#portfolio.section {
  background: #fff !important;
  padding: 60px 0 80px !important;
}

/* ── Section title ───────────────────────────────────── */



/* ── Filter buttons ──────────────────────────────────── */
#portfolio .portfolio-filters {
  display: flex !important;
  justify-content: center !important;
  gap: 10px !important;
  list-style: none !important;
  padding: 10px !important;
  margin: 0 0 40px !important;
  flex-wrap: wrap !important;
}

#portfolio .portfolio-filters li {
  padding: 10px 24px !important;
  border-radius: 50px !important;
  font-size: 0.875rem !important;
  font-weight: 500 !important;
  cursor: pointer !important;
  color: #333 !important;
  transition: all 0.25s ease !important;
  user-select: none !important;
}

#portfolio .portfolio-filters li:hover {
  border-color: #1a3de4 !important;
  color: #1a3de4 !important;
}

#portfolio .portfolio-filters li.filter-active {
  background: #1a3de4 !important;
  border-color: #1a3de4 !important;
  color: #fff !important;
}

/* ── Center the filter pill container ───────────────── */
#portfolio .portfolio-filters {
  margin-left: auto !important;
  margin-right: auto !important;
}

/* ── Portfolio cards ─────────────────────────────────── */
#portfolio .portfolio-content {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;

  overflow: hidden !important;
  position: relative !important;
}

/* Image */
#portfolio .portfolio-content img {
  width: 100% !important;
  height: 240px !important;
  object-fit: cover !important;
  border-radius: 12px !important;
  display: block !important;
  margin-bottom: 16px !important;
}

/* Hide the original overlay */
#portfolio .portfolio-info {
  position: static !important;
  background: transparent !important;
  /*   padding: 0 !important; */
  opacity: 1 !important;
  bottom: auto !important;
  left: auto !important;
  right: auto !important;
}

/* Title */
#portfolio .portfolio-info h4 {
  font-size: 1.1rem !important;
  font-weight: 700 !important;
  color: #111 !important;
  margin: 0 0 8px !important;
}

/* Description */
#portfolio .portfolio-info p {
  font-size: 0.875rem !important;
  color: #555 !important;
  line-height: 1.6 !important;
  margin: 0 0 10px !important;
}

/* Hide zoom/link icons */
#portfolio .portfolio-info a.preview-link,
#portfolio .portfolio-info a.details-link {
  display: none !important;
}

/* Read More link — show on hover */
#portfolio .portfolio-content::after {
  content: 'Read More →' !important;
  display: block !important;
  font-size: 0.8rem !important;
  font-weight: 600 !important;
  color: #1a3de4 !important;
  opacity: 0 !important;
  transition: opacity 0.25s ease !important;
  margin-top: 4px !important;
}

#portfolio .portfolio-item:hover .portfolio-content::after {
  opacity: 1 !important;
}

/* ── Grid spacing ────────────────────────────────────── */
#portfolio .isotope-container {
  gap: 32px 0 !important;
}

.portfolio .portfolio-content {
  overflow: hidden !important;
  border-radius: 12px !important;
}

.portfolio .portfolio-content img {
  border-radius: 12px !important;
  transition: transform 0.4s ease !important;

}

/* Card shrinks on hover */
.portfolio .portfolio-content {
  overflow: hidden !important;
  border-radius: 12px !important;
  transition: transform 0.4s ease !important;
}

.portfolio .portfolio-content:hover {
  transform: scale(0.9) !important;
}

/* Image zooms in to compensate — fills the shrunken card */
.portfolio .portfolio-content img {
  transition: transform 0.4s ease !important;
  border-radius: 12px !important;
  transform: scale(1) !important;
}

.portfolio .portfolio-content:hover img {
  transform: scale(1.2) !important;
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .testimonial-item {
  background-color: var(--surface-color);
  box-shadow: 0px 0 20px rgba(0, 0, 0, 0.1);
  box-sizing: content-box;
  padding: 30px;
  margin: 40px 30px;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  text-align: center;
  transition: 0.3s;
}

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

.testimonials .testimonial-item .stars i {
  color: #ffc107;
  margin: 0 1px;
}

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50%;
  border: 4px solid var(--background-color);
  margin: 0 auto;
}

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

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

.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 85%);
  opacity: 1;
}

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

.testimonials .swiper-slide {
  opacity: 0.3;
}

@media (max-width: 1199px) {
  .testimonials .swiper-slide-active {
    opacity: 1;
  }

  .testimonials .swiper-pagination {
    margin-top: 0;
  }

  .testimonials .testimonial-item {
    margin: 40px 20px;
  }
}

@media (min-width: 1200px) {
  .testimonials .swiper-slide-next {
    opacity: 1;
    transform: scale(1.12);
  }
}

/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
.team .team-member {
  box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: center;
  border-radius: 5px;
  transition: 0.3s;
}

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

.team .team-member .member-img:after {
  position: absolute;
  content: "";
  left: -1px;
  right: -1px;
  bottom: -1px;
  height: 100%;
  background-color: var(--surface-color);
  -webkit-mask: url("../img/team-shape.svg") no-repeat center bottom;
  mask: url("../img/team-shape.svg") no-repeat center bottom;
  -webkit-mask-size: contain;
  mask-size: contain;
  z-index: 1;
}

.team .team-member .social {
  position: absolute;
  right: -100%;
  top: 30px;
  opacity: 0;
  border-radius: 4px;
  transition: 0.5s;
  background: color-mix(in srgb, var(--background-color), transparent 60%);
  z-index: 2;
}

.team .team-member .social a {
  transition: color 0.3s;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  margin: 15px 12px;
  display: block;
  line-height: 0;
  text-align: center;
}

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

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

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

.team .team-member .member-info h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 20px;
}

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

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

.team .team-member:hover {
  transform: scale(1.08);
  box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
}

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

/*--------------------------------------------------------------
# Clients Section
--------------------------------------------------------------*/
.clients .swiper-slide img {
  transition: 0.3s;
  opacity: 0.5;
}

.clients .swiper-slide img:hover {
  opacity: 1;
}

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

.clients .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

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

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

/*--------------------------------------------------------------
# Recent Posts Section
--------------------------------------------------------------*/
.recent-posts .post-item {
  background-color: var(--surface-color);
  box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
}

.recent-posts .post-item .post-img img {
  transition: 0.5s;
}

.recent-posts .post-item .post-date {
  position: absolute;
  right: 0;
  bottom: 0;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  text-transform: uppercase;
  font-size: 13px;
  padding: 6px 12px;
  font-weight: 500;
}

.recent-posts .post-item .post-content {
  padding: 30px;
}

.recent-posts .post-item .post-title {
  color: var(--heading-color);
  font-size: 20px;
  font-weight: 700;
  transition: 0.3s;
  margin-bottom: 15px;
}

.recent-posts .post-item .meta i {
  font-size: 16px;
  color: var(--accent-color);
}

.recent-posts .post-item .meta span {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.recent-posts .post-item hr {
  color: color-mix(in srgb, var(--default-color), transparent 80%);
  margin: 20px 0;
}

.recent-posts .post-item .readmore {
  display: flex;
  align-items: center;
  font-weight: 600;
  line-height: 1;
  transition: 0.3s;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.recent-posts .post-item .readmore i {
  line-height: 0;
  margin-left: 6px;
  font-size: 16px;
}

.recent-posts .post-item:hover .post-title,
.recent-posts .post-item:hover .readmore {
  color: var(--accent-color);
}

.recent-posts .post-item:hover .post-img img {
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-item {
  background: color-mix(in srgb, var(--default-color), transparent 96%);
  padding: 30px;
}

.contact .info-item i {
  font-size: 38px;
  line-height: 0;
  color: var(--accent-color);
}

.contact .info-item h3 {
  font-size: 20px;
  font-weight: 700;
  margin: 20px 0 10px 0;
}

.contact .info-item p {
  padding: 0;
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.contact .php-email-form {
  background: color-mix(in srgb, var(--default-color), transparent 96%);
  padding: 30px;
  height: 100%;
}

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

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

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

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

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

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

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

/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .service-box {
  background-color: var(--surface-color);
  padding: 20px;
  box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.1);
}

.service-details .service-box+.service-box {
  margin-top: 30px;
}

.service-details .service-box h4 {
  font-size: 20px;
  font-weight: 700;
  border-bottom: 2px solid color-mix(in srgb, var(--default-color), transparent 92%);
  padding-bottom: 15px;
  margin-bottom: 15px;
}

.service-details .services-list {
  background-color: var(--surface-color);
}

.service-details .services-list a {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  display: flex;
  align-items: center;
  padding: 12px 15px;
  margin-top: 15px;
  transition: 0.3s;
}

.service-details .services-list a:first-child {
  margin-top: 0;
}

.service-details .services-list a i {
  font-size: 16px;
  margin-right: 8px;
  color: var(--accent-color);
}

.service-details .services-list a.active {
  color: var(--contrast-color);
  background-color: var(--accent-color);
}

.service-details .services-list a.active i {
  color: var(--contrast-color);
}

.service-details .services-list a:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  color: var(--accent-color);
}

.service-details .download-catalog a {
  color: var(--default-color);
  display: flex;
  align-items: center;
  padding: 10px 0;
  transition: 0.3s;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.service-details .download-catalog a:first-child {
  border-top: 0;
  padding-top: 0;
}

.service-details .download-catalog a:last-child {
  padding-bottom: 0;
}

.service-details .download-catalog a i {
  font-size: 24px;
  margin-right: 8px;
  color: var(--accent-color);
}

.service-details .download-catalog a:hover {
  color: var(--accent-color);
}

.service-details .help-box {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  margin-top: 30px;
  padding: 30px 15px;
}

.service-details .help-box .help-icon {
  font-size: 48px;
}

.service-details .help-box h4,
.service-details .help-box a {
  color: var(--contrast-color);
}

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

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

.service-details p {
  font-size: 15px;
}

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

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

.service-details ul i {
  font-size: 20px;
  margin-right: 8px;
  color: var(--accent-color);
}

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

/*--------------------------------------------------------------
# Blog Posts Section
--------------------------------------------------------------*/
.blog-posts article {
  background-color: var(--surface-color);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  padding: 30px;
  height: 100%;
}

.blog-posts .post-img {
  max-height: 440px;
  margin: -30px -30px 0 -30px;
  overflow: hidden;
}

.blog-posts .title {
  font-size: 24px;
  font-weight: 700;
  padding: 0;
  margin: 30px 0;
}

.blog-posts .title a {
  color: var(--heading-color);
  transition: 0.3s;
}

.blog-posts .title a:hover {
  color: var(--accent-color);
}

.blog-posts .meta-top {
  margin-top: 20px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-posts .meta-top ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  align-items: center;
  padding: 0;
  margin: 0;
}

.blog-posts .meta-top ul li+li {
  padding-left: 20px;
}

.blog-posts .meta-top i {
  font-size: 16px;
  margin-right: 8px;
  line-height: 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.blog-posts .meta-top a {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 14px;
  display: inline-block;
  line-height: 1;
}

.blog-posts .content {
  margin-top: 20px;
}

.blog-posts .content .read-more {
  text-align: right;
}

.blog-posts .content .read-more a {
  background: var(--accent-color);
  color: var(--contrast-color);
  display: inline-block;
  padding: 8px 30px;
  transition: 0.3s;
  font-size: 14px;
  border-radius: 4px;
}

.blog-posts .content .read-more a:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

/*--------------------------------------------------------------
# Blog Pagination Section
--------------------------------------------------------------*/
.blog-pagination {
  padding-top: 0;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-pagination ul {
  display: flex;
  padding: 0;
  margin: 0;
  list-style: none;
}

.blog-pagination li {
  margin: 0 5px;
  transition: 0.3s;
}

.blog-pagination li a {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  padding: 7px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-pagination li a.active,
.blog-pagination li a:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.blog-pagination li a.active a,
.blog-pagination li a:hover a {
  color: var(--contrast-color);
}

/*--------------------------------------------------------------
# Blog Details Section
--------------------------------------------------------------*/
.blog-details {
  padding-bottom: 30px;
}

.blog-details .article {
  background-color: var(--surface-color);
  padding: 30px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog-details .post-img {
  margin: -30px -30px 20px -30px;
  overflow: hidden;
}

.blog-details .title {
  color: var(--heading-color);
  font-size: 28px;
  font-weight: 700;
  padding: 0;
  margin: 30px 0;
}

.blog-details .content {
  margin-top: 20px;
}

.blog-details .content h3 {
  font-size: 22px;
  margin-top: 30px;
  font-weight: bold;
}

.blog-details .content blockquote {
  overflow: hidden;
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
  padding: 60px;
  position: relative;
  text-align: center;
  margin: 20px 0;
}

.blog-details .content blockquote p {
  color: var(--default-color);
  line-height: 1.6;
  margin-bottom: 0;
  font-style: italic;
  font-weight: 500;
  font-size: 22px;
}

.blog-details .content blockquote:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background-color: var(--accent-color);
  margin-top: 20px;
  margin-bottom: 20px;
}

.blog-details .meta-top {
  margin-top: 20px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-details .meta-top ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  align-items: center;
  padding: 0;
  margin: 0;
}

.blog-details .meta-top ul li+li {
  padding-left: 20px;
}

.blog-details .meta-top i {
  font-size: 16px;
  margin-right: 8px;
  line-height: 0;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-details .meta-top a {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 14px;
  display: inline-block;
  line-height: 1;
}

.blog-details .meta-bottom {
  padding-top: 10px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.blog-details .meta-bottom i {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  display: inline;
}

.blog-details .meta-bottom a {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  transition: 0.3s;
}

.blog-details .meta-bottom a:hover {
  color: var(--accent-color);
}

.blog-details .meta-bottom .cats {
  list-style: none;
  display: inline;
  padding: 0 20px 0 0;
  font-size: 14px;
}

.blog-details .meta-bottom .cats li {
  display: inline-block;
}

.blog-details .meta-bottom .tags {
  list-style: none;
  display: inline;
  padding: 0;
  font-size: 14px;
}

.blog-details .meta-bottom .tags li {
  display: inline-block;
}

.blog-details .meta-bottom .tags li+li::before {
  padding-right: 6px;
  color: var(--default-color);
  content: ",";
}

.blog-details .meta-bottom .share {
  font-size: 16px;
}

.blog-details .meta-bottom .share i {
  padding-left: 5px;
}

/*--------------------------------------------------------------
# Blog Author Section
--------------------------------------------------------------*/
.blog-author {
  padding: 10px 0 40px 0;
}

.blog-author .author-container {
  background-color: var(--surface-color);
  padding: 20px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog-author img {
  max-width: 120px;
  margin-right: 20px;
}

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

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

.blog-author .social-links a {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
  margin-right: 5px;
}

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

/*--------------------------------------------------------------
# Blog Comments Section
--------------------------------------------------------------*/
.blog-comments {
  padding: 10px 0;
}

.blog-comments .comments-count {
  font-weight: bold;
}

.blog-comments .comment {
  margin-top: 30px;
  position: relative;
}

.blog-comments .comment .comment-img {
  margin-right: 14px;
}

.blog-comments .comment .comment-img img {
  width: 60px;
}

.blog-comments .comment h5 {
  font-size: 16px;
  margin-bottom: 2px;
}

.blog-comments .comment h5 a {
  font-weight: bold;
  color: var(--default-color);
  transition: 0.3s;
}

.blog-comments .comment h5 a:hover {
  color: var(--accent-color);
}

.blog-comments .comment h5 .reply {
  padding-left: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.blog-comments .comment h5 .reply i {
  font-size: 20px;
}

.blog-comments .comment time {
  display: block;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 5px;
}

.blog-comments .comment.comment-reply {
  padding-left: 40px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.search-widget form button {
  background: var(--accent-color);
  color: var(--contrast-color);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  font-size: 16px;
  padding: 0 15px;
  margin: -1px;
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
  line-height: 0;
}

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

.search-widget form button:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

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

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

.categories-widget ul li {
  padding-bottom: 10px;
}

.categories-widget ul li:last-child {
  padding-bottom: 0;
}

.categories-widget ul a {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  transition: 0.3s;
}

.categories-widget ul a:hover {
  color: var(--accent-color);
}

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

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

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

.recent-posts-widget .post-item img {
  width: 80px;
  margin-right: 15px;
}

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

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

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

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

.tags-widget {
  margin-bottom: -10px;
}

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

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

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

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

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

.hero-slide {
  position: relative;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(50, 40, 110, 0.3) 0%, transparent 65%);
}

/* Floating content card */
.hero-card {
  position: absolute;
  bottom: 60px;
  left: 60px;
  z-index: 10;
  max-width: 50vw;
  background: rgba(72, 58, 150, 0.78);
  /*  backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px); */
  border-radius: 16px;
  padding: 36px 36px 28px 36px;
  color: #fff;
}

.hero-title {
  font-size: 32px;
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.2;
  margin-bottom: 14px;
  letter-spacing: 0.01em;
  color: #fff;
}

.hero-desc {
  font-size: 16px;
  line-height: 1.65;
  margin-bottom: 16px;
  opacity: 0.93;
  color: #fff;
}

.hero-link-wrap {
  text-align: right;
  margin-bottom: 20px;
}

.hero-link {
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: opacity 0.2s;
}

.hero-link:hover {
  opacity: 0.75;
  color: #fff;
}

/* Pagination dots */
.hero-pagination {
  display: flex;
  gap: 7px;
  align-items: center;
}

.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.35s ease;
  flex-shrink: 0;
}

.hero-dot-active {
  background: #fff;
  width: 28px;
  border-radius: 5px;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-swiper {
    height: 520px !important;
  }

  .hero-card {
    left: 20px;
    right: 20px;
    bottom: 28px;
    max-width: unset;
    padding: 24px;
  }

  .hero-title {
    font-size: 1.35rem;
  }
}


/* ── Card shrinks on hover ───────────────────────────── */
#portfolio .portfolio-content {
  transition: transform 0.4s ease !important;
  overflow: visible !important;
  /* allow shadow, but clip image inside */
}

#portfolio .portfolio-content:hover {
  transform: scale(0.93) !important;
}

/* ── Image wrapper clips the zoom ────────────────────── */
#portfolio .portfolio-content .img-wrapper {
  overflow: hidden !important;
  border-radius: 12px !important;
  margin-bottom: 16px !important;
}

#portfolio .portfolio-content img {
  width: 100% !important;
  height: 240px !important;
  object-fit: cover !important;
  display: block !important;
  border-radius: 12px !important;
  margin-bottom: 0 !important;
  /* margin now on wrapper */
  transition: transform 0.4s ease !important;
  transform: scale(1) !important;
}

#portfolio .portfolio-content:hover img {
  transform: scale(1.15) !important;
}

/* ── Read More — hidden by default, appears on hover ─── */
#portfolio .portfolio-content::after {
  content: 'Read More →' !important;
  display: block !important;
  font-size: 0.85rem !important;
  font-weight: 600 !important;
  color: #1a3de4 !important;
  opacity: 0 !important;
  transform: translateY(4px) !important;
  transition: opacity 0.3s ease, transform 0.3s ease !important;
  margin-top: 6px !important;
  text-align: right !important;
}

#portfolio .portfolio-content:hover::after {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

/* ── Portfolio Pagination ────────────────────────────── */
.portfolio-nav-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: #e0e0e0;
  color: #888;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.portfolio-nav-btn.active,
.portfolio-nav-btn:hover {
  background: #1a3de4;
  color: #fff;
}

.portfolio-see-all {
  font-size: 0.95rem;
  font-weight: 600;
  color: #1a3de4;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.portfolio-see-all:hover {
  opacity: 0.7;
  color: #1a3de4;
}

/* ── Clients Section ─────────────────────────────────── */
#clients.section {
  background: #fff !important;
  padding: 60px 0 !important;
  overflow: hidden !important;
}

#clients .section-title h2 {
  color: var(--accent-color) !important;
  font-size: 13px !important;
  letter-spacing: 2px !important;
  text-transform: uppercase !important;
  background: transparent !important;
  padding: 0 !important;
}

#clients .section-title p {
  font-size: 36px !important;
  font-weight: 800 !important;
  color: #0d1560 !important;
}

/* ── Scrolling track wrapper ─────────────────────────── */
.clients-track-wrapper {
  overflow: hidden;
  width: 100%;
  position: relative;
}

/* Fade edges */
.clients-track-wrapper::before,
.clients-track-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}

.clients-track-wrapper::before {
  left: 0;
  background: linear-gradient(to right, #fff 0%, transparent 100%);
}

.clients-track-wrapper::after {
  right: 0;
  background: linear-gradient(to left, #fff 0%, transparent 100%);
}

/* ── The moving strip ────────────────────────────────── */
.clients-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: clientsScroll 18s linear infinite;
}

.clients-track:hover {
  animation-play-state: paused;
  /* pause on hover */
}

/* ── Individual logo ─────────────────────────────────── */
.client-logo {
  flex-shrink: 0;
  padding: 0 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.client-logo img {
  max-height: 60px;
  max-width: 180px;
  width: auto;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.6;
  transition: filter 0.3s ease, opacity 0.3s ease;
}

.client-logo img:hover {
  filter: grayscale(0%);
  opacity: 1;
}

/* ── Scroll animation ────────────────────────────────── */
@keyframes clientsScroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }

  /* -50% because track is doubled */
}

/* ── Responsive ──────────────────────────────────────── */
@media (max-width: 768px) {
  .client-logo {
    padding: 0 30px;
  }

  .client-logo img {
    max-height: 40px;
    max-width: 120px;
  }

  .clients-track {
    animation-duration: 12s;
  }
}

/* ── Section Separator ───────────────────────────────── */
.section-separator {
  width: 100%;
  height: 80px;
  background: linear-gradient(to bottom, #f5f5f5 0%, #ffffff 100%);
}

/* ── Latest News Section ─────────────────────────────── */
#latest-news.latest-news-section {
  background-color: #0d1560;
  padding: 60px 0;
}

/* ── Outer rounded card ──────────────────────────────── */
.news-card-wrapper {
  display: flex;
  border-radius: 20px;
  overflow: hidden;
  min-height: 600px;
}

/* ── LEFT panel ──────────────────────────────────────── */
.news-list-panel {
  background: #fff;
  width: 52%;
  padding: 40px 40px 40px 40px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.news-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
}

.news-main-title {
  font-size: 2rem;
  font-weight: 800;
  color: #0d1560;
  margin: 0;
}

.news-see-all {
  font-size: 0.9rem;
  font-weight: 600;
  color: #1a3de4;
  text-decoration: none;
  transition: opacity 0.2s;
}

.news-see-all:hover {
  opacity: 0.7;
  color: #1a3de4;
}

/* ── Individual news item ────────────────────────────── */
.news-item {
  display: flex;
  gap: 18px;
  padding: 20px 0;
  border-bottom: 1px solid #f0f0f0;
  align-items: flex-start;
}

.news-item:last-child {
  border-bottom: none;
}

.news-thumb {
  flex-shrink: 0;
  width: 130px;
  height: 100px;
  border-radius: 10px;
  overflow: hidden;
}

.news-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.news-item:hover .news-thumb img {
  transform: scale(1.08);
}

.news-body {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.news-date {
  font-size: 0.8rem;
  color: #888;
  margin-bottom: 6px;
  display: block;
}

.news-title {
  font-size: 1rem;
  font-weight: 700;
  color: #0d1560;
  margin: 0 0 8px;
  line-height: 1.4;
}

.news-excerpt {
  font-size: 0.85rem;
  color: #666;
  line-height: 1.55;
  margin: 0 0 10px;
}

.news-read-more {
  font-size: 0.82rem;
  font-weight: 600;
  color: #1a3de4;
  text-decoration: none;
  align-self: flex-end;
  transition: opacity 0.2s;
}

.news-read-more:hover {
  opacity: 0.7;
  color: #1a3de4;
}

/* ── RIGHT featured panel ────────────────────────────── */
.news-featured-panel {
  width: 48%;
  position: relative;
  overflow: hidden;
  border-radius: 0 20px 20px 0;
}

.news-featured-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.news-featured-panel:hover .news-featured-img {
  transform: scale(1.05);
}

.news-featured-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5, 10, 60, 0.92) 0%, rgba(5, 10, 60, 0.3) 55%, transparent 100%);
}

.news-featured-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px;
  z-index: 2;
}

.news-featured-content .news-date {
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 10px;
}

.news-featured-title {
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.25;
  margin: 0 0 14px;
}

.news-featured-excerpt {
  font-size: 0.88rem;
  color: #ffffffb5;
  line-height: 1.7;
  margin: 0;
  flex: 1;
}


.news-featured-read-more {
  font-size: 0.85rem;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  float: right;
  transition: opacity 0.2s;
}

.news-featured-read-more:hover {
  opacity: 0.75;
  color: #fff;
}

/* ── Responsive ──────────────────────────────────────── */
@media (max-width: 991px) {
  .news-card-wrapper {
    flex-direction: column;
  }

  .news-list-panel,
  .news-featured-panel {
    width: 100%;
  }

  .news-featured-panel {
    height: 380px;
    border-radius: 0 0 20px 20px;
  }

  .news-list-panel {
    border-radius: 20px 20px 0 0;
    padding: 28px 20px;
  }
}

@media (max-width: 575px) {
  .news-thumb {
    width: 90px;
    height: 75px;
  }

  .news-featured-title {
    font-size: 1.2rem;
  }

  .news-featured-content {
    padding: 20px;
  }
}

/* ── Contact Section ─────────────────────────────────── */
#contact.contact-section {
  background: #fff;
  padding: 80px 0;
}

/* ── Two-column wrapper ──────────────────────────────── */
.contact-wrapper {
  display: flex;
  gap: 60px;
  align-items: flex-start;
}

/* ════════════════════════════════════════════════════════
   LEFT — Form panel
   ════════════════════════════════════════════════════════ */
.contact-form-panel {
  flex: 1;
}

.contact-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: #1a3de4;
  text-transform: uppercase;
  display: block;
  margin-bottom: 10px;
}

.contact-title {
  font-size: 2.2rem;
  font-weight: 800;
  color: #0d1560;
  margin: 0 0 36px;
}

/* Fields */
.contact-field {
  margin-bottom: 16px;
}

.contact-field input,
.contact-field textarea {
  width: 100%;
  background: #f4f5f7;
  border: none;
  border-radius: 50px;
  padding: 16px 24px;
  font-size: 0.9rem;
  color: #333;
  outline: none;
  transition: background 0.25s ease, box-shadow 0.25s ease;
  font-family: var(--default-font);
  resize: none;
}

.contact-field textarea {
  border-radius: 20px;
  /* textarea gets softer square corners */
  min-height: 130px;
}

.contact-field input::placeholder,
.contact-field textarea::placeholder {
  color: #999;
}

.contact-field input:focus,
.contact-field textarea:focus {
  background: #eceffe;
  box-shadow: 0 0 0 2px rgba(26, 61, 228, 0.18);
}

/* Submit button */
.contact-submit {
  margin-top: 8px;
  background: #1a3de4;
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 10px 60px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
}

.contact-submit:hover {
  background: #0d2bbf;
  transform: translateY(-2px);
}

/* ════════════════════════════════════════════════════════
   RIGHT — Map + Info panel
   ════════════════════════════════════════════════════════ */
.contact-info-panel {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* Map */
.contact-map {
  width: 100%;
  height: 300px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

/* Info items row */
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

/* Icon bubble */
.contact-info-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #eceffe;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-icon i {
  font-size: 1.2rem;
  color: #1a3de4;
}

/* Text */
.contact-info-body {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: 4px;
}

.contact-info-body strong {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: #0d1560;
  text-transform: uppercase;
}

.contact-info-body span,
.contact-info-body a {
  font-size: 0.9rem;
  color: #444;
  text-decoration: none;
  line-height: 1.5;
  transition: color 0.2s;
}

.contact-info-body a:hover {
  color: #1a3de4;
}

/* ── Responsive ──────────────────────────────────────── */
@media (max-width: 991px) {
  .contact-wrapper {
    flex-direction: column;
    gap: 40px;
  }

  .contact-form-panel,
  .contact-info-panel {
    width: 100%;
  }

  .contact-map {
    height: 250px;
  }
}

@media (max-width: 575px) {
  .contact-title {
    font-size: 1.7rem;
  }

  .contact-submit {
    width: 100%;
    text-align: center;
  }
}

/* ── Minimal Footer ──────────────────────────────────── */
.footer-minimal {
  background-color: #0d1560;
  padding: 28px 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

/* ── Logo ────────────────────────────────────────────── */
.footer-logo-wrap {
  flex: 1;
  display: flex;
  align-items: center;
}

.footer-logo {
  height: 60px;
  width: auto;
  object-fit: contain;
}

/* ── Copyright ───────────────────────────────────────── */
.footer-copy {
  flex: 2;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.5;
}

/* ── Social icons ────────────────────────────────────── */
.footer-socials {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
}

.footer-social-link {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.3rem;
  line-height: 1;
  transition: color 0.25s ease, transform 0.25s ease;
  display: flex;
  align-items: center;
}

.footer-social-link:hover {
  color: #ffffff;
  transform: translateY(-3px);
}

/* ── Responsive ──────────────────────────────────────── */
@media (max-width: 768px) {
  .footer-inner {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }

  .footer-logo-wrap,
  .footer-socials {
    justify-content: center;
  }

  .footer-copy {
    font-size: 0.8rem;
  }
}

/* ── Header ──────────────────────────────────────────── */
.header-minimal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: transparent;
  transition: background 0.4s ease, backdrop-filter 0.4s ease;
  padding: 0;
}

/* Scrolled state — frosted dark */
.header-minimal.scrolled {
  background: rgba(10, 15, 80, 0.88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
}

/* ── Logo ────────────────────────────────────────────── */
.header-logo img {
  height: 70px;
  width: auto;
  object-fit: contain;
}

/* ── Right block ─────────────────────────────────────── */
.header-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0;
}

/* Top row — secondary links */
.header-top-row {
  display: flex;
  gap: 28px;
  padding-bottom: 8px;
}

.header-top-row a {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  font-family: var(--nav-font);
  transition: color 0.2s;
}

.header-top-row a:hover {
  color: #fff;
}

/* Thin divider between rows */
.header-divider {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
  margin-bottom: 8px;
}

/* ── Main nav ────────────────────────────────────────── */
.header-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.header-nav .nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  padding: 4px 12px;
  font-family: var(--nav-font);
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
}

.header-nav .nav-link i {
  font-size: 0.7rem;
  transition: transform 0.25s;
}

.header-nav .nav-link.active,
.header-nav .nav-link:hover {
  color: #fff;
  font-weight: 700;
}

/* ── Dropdown ────────────────────────────────────────── */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  background: rgba(10, 15, 80, 0.95);
  border-radius: 8px;
  padding: 10px 0;
  min-width: 180px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: all 0.25s ease;
  z-index: 100;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown:hover .nav-link i {
  transform: rotate(180deg);
}

.nav-dropdown-menu a {
  display: block;
  padding: 9px 20px;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-family: var(--nav-font);
  transition: color 0.2s, background 0.2s;
}

.nav-dropdown-menu a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

/* ── Search button ───────────────────────────────────── */
.nav-search-btn {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
  cursor: pointer;
  padding: 4px 8px;
  transition: color 0.2s;
  line-height: 1;
}

.nav-search-btn:hover {
  color: #fff;
}

/* ── Mobile toggle ───────────────────────────────────── */
.mobile-nav-toggle {
  background: none;
  border: none;
  color: #fff;
  font-size: 1.8rem;
  cursor: pointer;
  display: none;
  line-height: 1;
}

/* ── Responsive ──────────────────────────────────────── */
@media (max-width: 1199px) {
  .header-right {
    display: none;
  }

  .mobile-nav-toggle {
    display: block;
  }
}

/* ── Scrolled: single row, white bg ─────────────────── */
.header-minimal.scrolled {
  background: #ffffff !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08) !important;
}

/* Hide top secondary row + divider */
.header-minimal.scrolled .header-top-row,
.header-minimal.scrolled .header-divider {
  display: none !important;
}

/* Collapse right block to single row */
.header-minimal.scrolled .header-right {
  flex-direction: row !important;
  align-items: center !important;
  gap: 0 !important;
}

/* Shrink logo */
.header-minimal.scrolled .header-logo img {
  height: 52px !important;
}

/* Tighten inner padding */
.header-minimal.scrolled .header-inner {
  padding: 8px 0 !important;
}

/* Nav links go dark */
.header-minimal.scrolled .header-nav .nav-link {
  color: #333 !important;
}

.header-minimal.scrolled .header-nav .nav-link.active {
  color: #1a3de4 !important;
  font-weight: 700 !important;
}

.header-minimal.scrolled .header-nav .nav-link:hover {
  color: #1a3de4 !important;
}

/* Search icon goes dark */
.header-minimal.scrolled .nav-search-btn {
  color: #555 !important;
}

.header-minimal.scrolled .nav-search-btn:hover {
  color: #1a3de4 !important;
}

/* ── Page Banner ─────────────────────────────────────── */
.page-banner {
  position: relative;
  width: calc(100% - 80px);
  /* inset from both sides */
  margin: 0 auto 40px;
  border-radius: 20px;
  overflow: hidden;
  height: 440px;
  margin-top: 120px;
  /* offset for fixed header */
}

/* Background image */
.page-banner-img {
  position: absolute;
  inset: 0;
  background: #0a0834eb;
}

.page-banner-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Dark blue overlay */
.page-banner-overlay {
  position: absolute;
  inset: 0;
  background: #0a083487;
}

/* Centered text content */
.page-banner-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 60px;
}

.page-banner-label {
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  /* margin-bottom: 16px; */
  display: block;
}

.page-banner-title {
  font-size: 2.4rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.25;
  margin: 0;
  max-width: 700px;
}

/* ── Responsive ──────────────────────────────────────── */
@media (max-width: 991px) {
  .page-banner {
    width: calc(100% - 40px);
    height: 340px;
    margin-top: 100px;
  }

  .page-banner-title {
    font-size: 1.8rem;
  }

  .page-banner-content {
    padding: 0 30px;
  }
}

@media (max-width: 575px) {
  .page-banner {
    width: calc(100% - 24px);
    height: 280px;
    border-radius: 14px;
    margin-top: 80px;
  }

  .page-banner-title {
    font-size: 1.35rem;
  }
}

/* ── Who We Are Section ──────────────────────────────── */
#who-we-are.who-we-are-section {
  background: #fff;
  padding: 80px 0;
}

.who-wrapper {
  display: flex;
  align-items: center;
  gap: 80px;
}

/* ── LEFT: Text ──────────────────────────────────────── */
.who-text {
  flex: 1.4;
}

.who-label {
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #1a3de4;
  display: block;
}

.who-title {
  font-size: 2rem;
  font-weight: 800;
  color: #0d1560;
  line-height: 1.25;
  margin: 0 0 24px;
}

.who-text p {
  font-size: 0.92rem;
  color: #444;
  line-height: 1.75;
  margin-bottom: 16px;
}

.who-text p:last-child {
  margin-bottom: 0;
}

/* ── RIGHT: Stat ticker ──────────────────────────────── */
.who-stat {
  flex: 0 0 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

/* Arrow buttons */
.stat-arrow {
  background: none;
  border: none;
  cursor: pointer;
  color: #1a3de4;
  font-size: 1.3rem;
  padding: 4px;
  line-height: 1;
  transition: opacity 0.2s, transform 0.2s;
}

.stat-arrow:hover {
  opacity: 0.6;
  transform: scale(1.15);
}

/* Slide display area */
.stat-display {
  overflow: hidden;
  text-align: center;
  width: 100%;
}

.stat-slides {
  position: relative;
}

.stat-slide {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  animation: statFadeIn 0.4s ease;
}

.stat-slide.active {
  display: flex;
}

@keyframes statFadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

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

.stat-label {
  font-size: 1rem;
  font-weight: 500;
  color: #333;
  letter-spacing: 0.5px;
}

.stat-number {
  font-size: 4rem;
  font-weight: 800;
  color: #1a3de4;
  line-height: 1;
}

/* ── Responsive ──────────────────────────────────────── */
@media (max-width: 991px) {
  .who-wrapper {
    flex-direction: column;
    gap: 48px;
  }

  .who-stat {
    flex-direction: row;
    justify-content: center;
    width: 100%;
    flex: unset;
  }

  .stat-number {
    font-size: 3rem;
  }
}

@media (max-width: 575px) {
  .who-title {
    font-size: 1.6rem;
  }
}

/* ── Performance Section ─────────────────────────────── */
#performance.performance-section {
  background: #f5f5f5;
  padding: 80px 0;
}

.performance-wrapper {
  display: flex;
  align-items: stretch;
  gap: 90px;
  justify-content: center;
}

/* ════════════════════════════════════════════════════════
   LEFT — Stats
   ════════════════════════════════════════════════════════ */
.perf-stats {
  flex: 0 0 240px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.perf-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #1a3de4;
  display: block;
  margin-bottom: 24px;
}

.perf-stat-item {
  text-align: right;
  padding-bottom: 20px;
  border-bottom: 1px solid #d8d8d8;
}

.perf-stat-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.perf-number {
  display: block;
  font-size: 2.2rem;
  font-weight: 800;
  color: #0d1560;
  line-height: 1.1;
}

.perf-desc {
  display: block;
  font-size: 0.82rem;
  color: #666;
  line-height: 1.5;
  margin-top: 6px;
}

/* ════════════════════════════════════════════════════════
   CENTER — Image + Badge
   ════════════════════════════════════════════════════════ */
.perf-image-wrap {
  flex: 1;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 500px;
}
.perf-main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 24px;
  display: block;
}

/* Rotating badge */
.perf-badge {
  position: absolute;
  top: 35px;
  left: -55px;
  width: 120px;
  height: 120px;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
}

.perf-badge-ring {
  position: absolute;
  inset: 0;
  width: 150%;
  height: 150%;
  top: -30px;
  left: -27px;
  animation: badgeSpin 10s linear infinite;
}

@keyframes badgeSpin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.perf-badge-logo {
  width: 110px;
  height: 110px;
  background: #f5f5f5;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  /*   box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  border: 2px solid #f0f0f0; */
}

.perf-badge-logo img {
  width: 85%;
  height: 85%;
  object-fit: contain;
}

/* ════════════════════════════════════════════════════════
   RIGHT — Core Capabilities
   ════════════════════════════════════════════════════════ */
.perf-capabilities {
  flex: 0 0 320px;
}

.perf-cap-title {
  font-size: 2.2rem;
  font-weight: 800;
  color: #0d1560;
  margin: 0 0 32px;
  line-height: 1.15;
}

.perf-cap-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.perf-cap-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 0.95rem;
  color: #333;
  line-height: 1.6;
}

.perf-cap-list li i {
  color: #1a3de4;
  font-size: 1.2rem;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ── Responsive ──────────────────────────────────────── */
@media (max-width: 1199px) {
  .performance-wrapper {
    gap: 40px;
  }

 
  .perf-image-wrap {
    min-height: 420px;
  }

  .perf-cap-title {
    font-size: 1.8rem;
  }
}

@media (max-width: 991px) {
  .performance-wrapper {
    flex-direction: column;
    gap: 50px;
    align-items: center;
  }

  .perf-stats {
    flex: 0 0 auto;
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
  }

  .perf-stat-item {
    flex: 0 0 calc(50% - 15px);
    text-align: center;
    padding: 0;
    border-bottom: none;
    border-right: 1px solid #d8d8d8;
    padding-right: 15px;
  }

  .perf-stat-item:nth-child(even) {
    border-right: none;
  }

  .perf-label {
    flex: 0 0 100%;
    text-align: center;
    margin-bottom: 20px;
    order: -1;
  }
 
  .perf-image-wrap {
    flex: 0 0 auto;
    width: 100%;
    max-width: 400px;
    min-height: 350px;
  }

  .perf-capabilities {
    flex: 0 0 100%;
    text-align: center;
  }

  .perf-cap-list {
    align-items: center;
  }

  .perf-cap-list li {
    justify-content: center;
  }
}

@media (max-width: 575px) {
  .perf-cap-title {
    font-size: 1.5rem;
  }

  .perf-number {
    font-size: 1.8rem;
  }

  .perf-stats {
    gap: 20px;
  }

  .perf-stat-item {
    flex: 0 0 calc(50% - 10px);
    padding-right: 10px;
  }

 .perf-image-wrap {
    max-width: 100%;
    min-height: 280px;
  }

  .perf-cap-list {
    gap: 12px;
  }

  .perf-cap-list li {
    font-size: 0.9rem;
  }
}
/* ── History Section ─────────────────────────────────── */
#history.history-section {
  background: #fff;
  padding: 80px 0;
}

/* Header */
.history-header {
  text-align: center;
  margin-bottom: 40px;
}

.history-label {
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #1a3de4;
  display: block;

}

.history-title {
  font-size: 2.2rem;
  font-weight: 800;
  color: #0d1560;
  margin: 0;
}

/* ── Year tabs ───────────────────────────────────────── */
.history-tabs {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: baseline;
  margin: 50px 0 60px;
  position: relative;
  flex-wrap: wrap;
}
 
.history-tab {
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-weight: 500;
  color: #999;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  font-size: 1rem;
  padding: 0 8px;
  position: relative;
  white-space: nowrap;
}
 
.history-tab.active {
  color: #1a3de4;
  font-weight: 700;
  font-size: 2.2rem;
  letter-spacing: -1px;
}
 
.history-tab:not(.active) {
  font-size: 0.9rem;
  opacity: 0.6;
}
 
.history-tab:hover:not(.active) {
  opacity: 0.8;
  color: #666;
}
 
/* Underline indicator */
.history-tab.active::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 12px;
  right: 0;
  height: 4px;
  background: #1a3de4 ;
  border-radius: 2px;
  animation: underlineSlide 0.5s ease;
}
 
@keyframes underlineSlide {
  from {
    transform: scaleX(0);
    opacity: 0;
  }
  to {
    transform: scaleX(1);
    opacity: 1;
  }
}
.history-tab:hover {
  color: #0d1560;
}

.history-tab.active {
  font-size: 1.5rem;
  font-weight: 800;
  color: #1a3de4;
}

.history-tab.active::after {
  width: 60%;
}

/* ── Content panels ──────────────────────────────────── */
.history-panels {
  text-align: center;
}

.history-panel {
  display: none;
  animation: historyFadeIn 0.4s ease;
}

.history-panel.active {
  display: block;
}

@keyframes historyFadeIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

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

.history-event-title {
  font-size: 1.5rem;
  font-weight: 900;
  color: #0d1560;
  margin: 0 0 10px;
}

.history-event-desc {
  font-size: 0.92rem;
  color: #555;
  max-width: 640px;
  margin: 0 auto 28px;
  line-height: 1.65;
}

/* Image */
.history-img-wrap {
  width: 75%;
  margin: 0 auto;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.history-img-wrap img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.history-img-wrap:hover img {
  transform: scale(1.03);
}

/* ── Responsive ──────────────────────────────────────── */
@media (max-width: 991px) {
  .history-img-wrap {
    width: 90%;
  }

  .history-img-wrap img {
    height: 280px;
  }
}

@media (max-width: 575px) {
  .history-title {
    font-size: 1.6rem;
  }

  .history-tab {
    padding: 8px 14px;
    font-size: 0.85rem;
  }

  .history-tab.active {
    font-size: 1.1rem;
  }

  .history-img-wrap {
    width: 100%;
    border-radius: 14px;
  }

  .history-img-wrap img {
    height: 220px;
  }
}

/* ── Mission Vision Section ──────────────────────────── */
#mission-vision.mission-vision-section {
  background: #f5f5f5;
  padding: 80px 0;
}

/* ── Top header row ──────────────────────────────────── */
.mv-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 48px;
  gap: 20px;
}

.mv-header-text {
  flex: 1;
}

.mv-label {
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #1a3de4;
  display: block;
}

.mv-title {
  font-size: 2rem;
  font-weight: 800;
  color: #0d1560;
  margin: 0 0 12px;
  line-height: 1.2;
}

.mv-subtitle {
  font-size: 0.92rem;
  color: #555;
  margin: 0;
  line-height: 1.6;
  max-width: 560px;
}

.mv-header-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.mv-header-logo img {
  height: 72px;
  width: auto;
  object-fit: contain;
}

/* ── 2x2 Grid ────────────────────────────────────────── */
.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 32px 48px;
  align-items: center;
  max-height: 500px;
}

/* Images */
.mv-cell img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 16px;
  display: block;
  transition: transform 0.4s ease;
}

.mv-cell img:hover {
  transform: scale(1.02);
}

/* image containers clip the zoom */
.mv-img-left,
.mv-img-right {
  overflow: hidden;
  border-radius: 16px;
}

/* Mission: top-right */
.mv-mission-text {
  align-self: start;
  padding-top: 10px;
}

/* Vision: bottom-left */
.mv-vision-text {
  align-self: start;
  padding-bottom: 10px;
}

.mv-block-title {
  font-size: 2rem;
  font-weight: 800;
  color: #0d1560;
  margin: 0 0 16px;
}

.mv-block-desc {
  font-size: 0.92rem;
  color: #555;
  line-height: 1.75;
  margin: 0;
  max-width: 480px;
}

/* ── Responsive ──────────────────────────────────────── */
@media (max-width: 991px) {
  .mv-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  /* Reorder: mission text → mission img → vision text → vision img */
  .mv-mission-text {
    order: 1;
  }

  .mv-img-left {
    order: 2;
  }

  .mv-vision-text {
    order: 3;
  }

  .mv-img-right {
    order: 4;
  }

  .mv-cell img {
    height: 260px;
  }

  .mv-block-desc {
    max-width: 100%;
  }
}

@media (max-width: 575px) {
  .mv-header {
    flex-direction: column;
    gap: 16px;
  }

  .mv-title {
    font-size: 1.6rem;
  }

  .mv-block-title {
    font-size: 1.5rem;
  }

  .mv-cell img {
    height: 200px;
  }

  .mv-header-logo img {
    height: 36px;
  }
}

/* ── Complete rebuild: 2 independent columns ─────────── */
.mv-grid {
  display: flex;
  gap: 48px;
  align-items: stretch;
}

/* Left column: big image on top, Vision text below */
.mv-col-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

/* Right column: Mission text on top, big image below */
.mv-col-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

/* Images */
.mv-img-left,
.mv-img-right {
  overflow: hidden;
  border-radius: 16px;
  flex: 1;
  /* fill remaining space in column */
  min-height: 300px;
}

.mv-img-left img,
.mv-img-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.mv-img-left:hover img,
.mv-img-right:hover img {
  transform: scale(1.03);
}

/* Text blocks */
.mv-mission-text,
.mv-vision-text {
  flex-shrink: 0;
  padding: 10px 0;
}

.mv-block-title {
  font-size: 2rem;
  font-weight: 800;
  color: #0d1560;
  margin: 0 0 16px;
}

.mv-block-desc {
  font-size: 0.92rem;
  color: #555;
  line-height: 1.75;
  margin: 0;
}

/* ── Responsive ──────────────────────────────────────── */
@media (max-width: 991px) {
  .mv-grid {
    flex-direction: column;
    gap: 28px;
  }

  .mv-img-left,
  .mv-img-right {
    min-height: 260px;
    flex: none;
    height: 260px;
  }
}

@media (max-width: 575px) {

  .mv-img-left,
  .mv-img-right {
    height: 200px;
    min-height: 200px;
  }

  .mv-block-title {
    font-size: 1.5rem;
  }
}

/* ════════════════════════════════════════════════════════
   Our Workshops
   ════════════════════════════════════════════════════════ */
#workshops.workshops-section {
  background: #fff;
  padding: 80px 0 60px;
}

.workshops-wrapper {
  display: flex;
  align-items: center;
  gap: 60px;
}

/* LEFT text */
.workshops-text {
  flex: 1;
}

.workshops-label {
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #1a3de4;
  display: block;
}

.workshops-title {
  font-size: 2rem;
  font-weight: 800;
  color: #0d1560;
  margin: 0 0 20px;
}

.workshops-text p {
  font-size: 0.92rem;
  color: #555;
  line-height: 1.75;
  margin-bottom: 16px;
}

.workshops-text p:last-child {
  margin-bottom: 0;
}

/* RIGHT stacked images */
.workshops-images {
  flex: 0 0 420px;
  position: relative;
  height: 300px;
}

/* Back card (Ras Al Khima) — slightly offset left/up */
.workshop-img-card {
  position: absolute;
  border-radius: 16px;
  overflow: visible;
  /* allow shadows to show outside bounds */
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.workshop-img-back {
  width: 260px;
  height: 200px;
  top: 0;
  left: 0;
  z-index: 1;
}

/* Front card (Dubai) — larger, offset right/down */
.workshop-img-front {
  width: 300px;
  height: 210px;
  top: 80px;
  left: 120px;
  z-index: 2;
}

.workshop-img-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 16px;
  transition: transform 0.4s ease;
}

.workshop-img-card:hover img {
  transform: scale(1.05);
}

/* City label pill */
.workshop-img-label {
  position: absolute;
  bottom: 14px;
  left: -24px;
  background: #1a3de4;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 50px;
  z-index: 3;
  pointer-events: none;
}

/* ════════════════════════════════════════════════════════
   Turbine Portfolio
   ════════════════════════════════════════════════════════ */
#turbine-portfolio.turbine-section {
  background: #fff;
  padding: 20px 0 80px;
}

.turbine-title {
  font-size: 2rem;
  font-weight: 800;
  color: #0d1560;
  text-align: center;
  margin-bottom: 40px;
}

.turbine-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px 28px;
}

/* Card */
.turbine-card {
  display: flex;
  flex-direction: column;
}

.turbine-img-wrap {
  overflow: hidden;
  border-radius: 14px;
  margin-bottom: 16px;
  height: 240px;
}

.turbine-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.turbine-card:hover .turbine-img-wrap img {
  transform: scale(1.05);
}

.turbine-name {
  font-size: 1.15rem;
  font-weight: 700;
  color: #0d1560;
  margin: 0 0 6px;
}

.turbine-models {
  font-size: 0.88rem;
  color: #555;
  line-height: 1.6;
  margin: 0;
}

/* ── Responsive ──────────────────────────────────────── */
@media (max-width: 991px) {
  .workshops-wrapper {
    flex-direction: column;
    gap: 40px;
  }

  .workshops-images {
    flex: none;
    width: 100%;
    height: 280px;
  }

  .workshop-img-back {
    width: 220px;
    height: 170px;
  }

  .workshop-img-front {
    width: 260px;
    height: 185px;
    left: 100px;
  }

  .turbine-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 575px) {
  .workshops-images {
    height: 240px;
  }

  .workshop-img-back {
    width: 170px;
    height: 135px;
  }

  .workshop-img-front {
    width: 200px;
    height: 145px;
    left: 70px;
    top: 70px;
  }

  .turbine-grid {
    grid-template-columns: 1fr;
  }

  .turbine-title {
    font-size: 1.6rem;
  }
}

/* ── Certifications Section ──────────────────────────── */
#certifications.certifications-section {
  background: #f5f5f5;
  padding: 60px 0;
}

/* ── Main wrapper ────────────────────────────────────── */
.cert-wrapper {
  display: flex;
  align-items: center;
  gap: 0;
}

/* ── Left title block ────────────────────────────────── */
.cert-title-block {
  flex: 0 0 260px;
  padding-right: 40px;
}

.cert-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #1a3de4;
  display: block;
  margin-bottom: 10px;
}

.cert-title {
  font-size: 2rem;
  font-weight: 800;
  color: #0d1560;
  margin: 0;
  line-height: 1.2;
}

/* ── Main vertical divider (between title and certs) ─── */
.cert-divider-main {
  width: 1px;
  height: 140px;
  background: #d0d0d0;
  flex-shrink: 0;
  margin-right: 48px;
}

/* ── Cert items row ──────────────────────────────────── */
.cert-items {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  gap: 0;
}

/* Individual cert */
.cert-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 0 40px;
  text-align: center;
}

.cert-item:first-child {
  padding-left: 0;
}

.cert-iso-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: #0d1560;
  margin: 0;
  white-space: nowrap;
}

.cert-item img {
  width: 120px;
  height: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.cert-item:hover img {
  transform: scale(1.08);
}

/* Separator between certs */
.cert-sep {
  width: 1px;
  height: 120px;
  background: #d0d0d0;
  flex-shrink: 0;
}

/* ── Responsive ──────────────────────────────────────── */
@media (max-width: 991px) {
  .cert-wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
  }

  .cert-title-block {
    flex: none;
    padding-right: 0;
  }

  .cert-divider-main {
    display: none;
  }

  .cert-items {
    width: 100%;
    justify-content: space-around;
  }

  .cert-item {
    padding: 0 16px;
  }

  .cert-sep {
    height: 80px;
  }
}

@media (max-width: 575px) {
  .cert-items {
    flex-wrap: wrap;
    gap: 28px;
    justify-content: center;
  }

  .cert-sep {
    display: none;
  }

  .cert-item {
    padding: 0;
    flex: 0 0 40%;
  }

  .cert-title {
    font-size: 1.6rem;
  }
}

/* ── About page: header always light (dark text) ─────── */
.about-page .header-minimal {
  background: #fff !important;
  /*  box-shadow: 0 2px 12px rgba(0,0,0,0.08); */
}

/* Nav links dark */
.about-page .header-minimal .nav-link {
  color: #333 !important;
}

.about-page .header-minimal .nav-link.active {
  color: #1a3de4 !important;
  font-weight: 700 !important;
}

.about-page .header-minimal .nav-link:hover {
  color: #1a3de4 !important;
}

/* Top row links dark */
.about-page .header-minimal .header-top-row a {
  color: #555 !important;
}

.about-page .header-minimal .header-top-row a:hover {
  color: #0d1560 !important;
}

/* Divider line dark */
.about-page .header-minimal .header-divider {
  background: rgba(0, 0, 0, 0.1) !important;
}

/* Search icon dark */
.about-page .header-minimal .nav-search-btn {
  color: #555 !important;
}

.about-page .header-minimal .nav-search-btn:hover {
  color: #1a3de4 !important;
}

/* Mobile toggle dark */
.about-page .header-minimal .mobile-nav-toggle {
  color: #333 !important;
}

/* Logo: swap to dark version if you have one,
   or use filter to darken a white logo */
.about-page .header-minimal .header-logo img {
  filter: none !important;
  /* use your dark logo */
}

/* Dropdown menus stay dark bg */
.about-page .header-minimal .nav-dropdown-menu {
  background: rgba(10, 15, 80, 0.95) !important;
}

.page-banner-desc {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.7;
  margin: 0;
  max-width: 860px;
}

@media (max-width: 575px) {
  .about-banner-desc {
    font-size: 0.82rem;
  }
}


/* ── Service Detail Section ──────────────────────────── */
#service-detail.service-detail-section {
  background: #fff;
  padding: 0 0 80px;
}

/* ── Tabs wrapper ────────────────────────────────────── */
.svc-tabs-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  margin-bottom: 56px;
  border-bottom: 1px solid #eee;
  padding-bottom: 0;
  background-color: #f5f5f5;
  border-radius: 30px;
}

.svc-tabs-wrap::-webkit-scrollbar {
  display: none;
}

.svc-tabs {
  display: flex;
  align-items: center;
  gap: 4px;
  width: max-content;
  padding: 10px;
}

/* Tab button */
.svc-tab {
  background: none;
  border: none;
  font-size: 0.88rem;
  font-weight: 500;
  color: #555;
  padding: 10px 22px;
  border-radius: 50px;
  cursor: pointer;
  white-space: nowrap;
  font-family: var(--nav-font);
  transition: all 0.25s ease;
}

.svc-tab:hover {
  color: #0d1560;
}

.svc-tab.active {
  background: #1a3de4;
  color: #fff;
  font-weight: 600;
}

/* ── Panels ──────────────────────────────────────────── */
.svc-panel {
  display: none;
  animation: svcFadeIn 0.4s ease;
}

.svc-panel.active {
  display: block;
}

@keyframes svcFadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

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

/* Panel inner: two columns */
.svc-panel-inner {
  display: flex;
  align-items: center;
  gap: 60px;
}

/* LEFT text */
.svc-panel-text {
  flex: 1;
}

.svc-panel-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #1a3de4;
  display: block;
  margin-bottom: 12px;
}

.svc-panel-title {
  font-size: 2rem;
  font-weight: 800;
  color: #0d1560;
  margin: 0 0 16px;
  line-height: 1.2;
}

.svc-panel-desc {
  font-size: 0.92rem;
  color: #555;
  line-height: 1.75;
  margin: 0 0 28px;
  max-width: 500px;
}

/* Feature items */
.svc-features {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.svc-feature {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.svc-feature i {
  font-size: 1.4rem;
  color: #1a3de4;
  flex-shrink: 0;
  margin-top: 2px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.svc-feature strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: #0d1560;
  margin-bottom: 6px;
}

.svc-feature p {
  font-size: 0.87rem;
  color: #555;
  line-height: 1.65;
  margin: 0;
}

/* RIGHT image */
.svc-panel-img {
  flex: 0 0 520px;
  overflow: hidden;
  border-radius: 20px;
  height: 400px;
}

.svc-panel-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.svc-panel-img:hover img {
  transform: scale(1.04);
}

/* ── Responsive ──────────────────────────────────────── */
@media (max-width: 1199px) {
  .svc-panel-img {
    flex: 0 0 400px;
    height: 340px;
  }
}

@media (max-width: 991px) {
  .svc-panel-inner {
    flex-direction: column;
    gap: 36px;
  }

  .svc-panel-img {
    flex: none;
    width: 100%;
    height: 300px;
  }

  .svc-panel-desc {
    max-width: 100%;
  }
}

@media (max-width: 575px) {
  .svc-panel-title {
    font-size: 1.5rem;
  }

  .svc-panel-img {
    height: 240px;
    border-radius: 14px;
  }
}

/* ── Field Service Section ───────────────────────────── */
#field-service.field-service-section {
  background: #f5f5f5;
  padding: 80px 0;
}

.field-wrapper {
  display: flex;
  align-items: center;
  gap: 60px;
}

/* ── Image pair — flex side by side ─────────────────── */
.field-imgs {
  flex: 0 0 560px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

/* Left image — shorter, pushed down */
.field-img-back {
  flex: 1;
  margin-top: 100px;
  /* pushes it down */
  border-radius: 20px;
  overflow: hidden;
  height: 380px;
}

/* Right image — taller, sits higher */
.field-img-front {
  flex: 1;
  margin-top: 0;
  border-radius: 20px;
  overflow: hidden;
  height: 380px;
}

.field-img-back img,
.field-img-front img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.field-img-back:hover img,
.field-img-front:hover img {
  transform: scale(1.05);
}

/* ── Text ────────────────────────────────────────────── */
.field-text {
  flex: 1;
}

.field-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #1a3de4;
  display: block;
  margin-bottom: 12px;
}

.field-title {
  font-size: 2rem;
  font-weight: 800;
  color: #0d1560;
  margin: 0 0 16px;
}

.field-desc {
  font-size: 0.92rem;
  color: #555;
  line-height: 1.75;
  margin: 0 0 32px;
}

.field-features {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.field-feature {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.field-feature i {
  font-size: 1.4rem;
  color: #1a3de4;
  flex-shrink: 0;
  margin-top: 2px;
}

.field-feature strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: #0d1560;
  margin-bottom: 6px;
}

.field-feature p {
  font-size: 0.87rem;
  color: #555;
  line-height: 1.65;
  margin: 0;
}

/* ── Responsive ──────────────────────────────────────── */
@media (max-width: 1199px) {
  .field-imgs {
    flex: 0 0 380px;
  }

  .field-img-back {
    height: 310px;
    margin-top: 50px;
  }

  .field-img-front {
    height: 340px;
  }

  .field-wrapper {
    gap: 40px;
  }
}

@media (max-width: 991px) {
  .field-wrapper {
    flex-direction: column;
    gap: 40px;
  }

  .field-imgs {
    flex: none;
    width: 100%;
  }

  .field-img-back {
    height: 240px;
    margin-top: 30px;
  }

  .field-img-front {
    height: 270px;
  }
}

@media (max-width: 575px) {
  .field-img-back {
    height: 180px;
    margin-top: 20px;
    border-radius: 14px;
  }

  .field-img-front {
    height: 200px;
    border-radius: 14px;
  }

  .field-title {
    font-size: 1.6rem;
  }
}

/* ── Alternating Service Sections ────────────────────── */
.alt-services {
  background: #fff;
}

/* Each row */
.alt-svc-row {
  padding: 70px 0;
  border-bottom: 1px solid #f0f0f0;
}

.alt-svc-row:last-child {
  border-bottom: none;
}

/* Alternating bg */
.alt-svc-row--img-left {
  background: #f5f5f5;
}

.alt-svc-row--text-left {
  background: #fff;
}

/* Inner two-column flex */
.alt-svc-inner {
  display: flex;
  align-items: center;
  gap: 60px;
}

/* ── Image ───────────────────────────────────────────── */
.alt-svc-img {
  flex: 0 0 50%;
  height: 450px;
  border-radius: 20px;
  overflow: hidden;
}

.alt-svc-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.alt-svc-img:hover img {
  transform: scale(1.04);
}

/* ── Text ────────────────────────────────────────────── */
.alt-svc-text {
  flex: 1;
}

.alt-svc-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #1a3de4;
  display: block;
  margin-bottom: 10px;
}

.alt-svc-title {
  font-size: 1.7rem;
  font-weight: 800;
  color: #0d1560;
  margin: 0 0 14px;
  line-height: 1.2;
}

.alt-svc-desc {
  font-size: 0.88rem;
  color: #555;
  line-height: 1.75;
  margin: 0 0 24px;
}

/* Feature list */
.alt-svc-features {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.alt-svc-feature {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.alt-svc-feature i {
  font-size: 1.2rem;
  color: #1a3de4;
  flex-shrink: 0;
  margin-top: 2px;
}

.alt-svc-feature strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  color: #0d1560;
  margin-bottom: 4px;
}

.alt-svc-feature p {
  font-size: 0.82rem;
  color: #555;
  line-height: 1.6;
  margin: 0;
}

/* ── ISO Badges (for rebuild section) ───────────────── */
.alt-svc-badges {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.alt-svc-badge {
  display: flex;
  align-items: center;
  gap: 10px;
}

.alt-svc-badge i {
  font-size: 1.2rem;
  color: #1a3de4;
}

.alt-svc-badge span {
  font-size: 0.88rem;
  font-weight: 700;
  color: #0d1560;
  display: flex;
  flex-direction: column;
}

.alt-svc-badge small {
  font-size: 0.75rem;
  font-weight: 400;
  color: #777;
}

/* ── Responsive ──────────────────────────────────────── */
@media (max-width: 991px) {
  .alt-svc-inner {
    flex-direction: column !important;
    gap: 32px;
  }

  /* Always show image on top on mobile */
  .alt-svc-row--text-left .alt-svc-img {
    order: -1;
  }

  .alt-svc-img {
    flex: none;
    width: 100%;
    height: 260px;
  }

  .alt-svc-row {
    padding: 50px 0;
  }
}

@media (max-width: 575px) {
  .alt-svc-img {
    height: 210px;
    border-radius: 14px;
  }

  .alt-svc-title {
    font-size: 1.4rem;
  }
}
/* ── Related Projects Section ────────────────────────── */
/* ── Related Projects Section ────────────────────────── */
#related-projects.related-projects-section {
  background: #f5f5f5;
  padding: 70px 0;
}

/* ── Header ──────────────────────────────────────────── */
.rp-header {
  margin-bottom: 36px;
}

.rp-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #1a3de4;
  display: block;
  margin-bottom: 8px;
}

.rp-title {
  font-size: 2rem;
  font-weight: 800;
  color: #0d1560;
  margin: 0;
}

/* ── Cards grid ──────────────────────────────────────── */
.rp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* ── Card ────────────────────────────────────────────── */
.rp-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  cursor: pointer;
  position: relative;
  padding: 16px;
  padding-bottom: 40px;
  border-radius: 20px;
  background: transparent;
  transition: background 0.35s ease, box-shadow 0.35s ease;
}

.rp-card:hover {
  background: #fff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

/* Image Wrapper */
.rp-img-wrap {
  overflow: hidden;
  border-radius: 16px;
  height: 220px;
  position: relative;
}

.rp-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

.rp-card:hover .rp-img-wrap img {
  transform: scale(1.06);
}

/* Title */
.rp-name {
  font-size: 1.05rem;
  font-weight: 700;
  color: #0d1560;
  margin: 0;
  transition: color 0.3s ease;
}

.rp-card:hover .rp-name {
  color: #1a3de4;
}

/* Description */
.rp-desc {
  font-size: 0.85rem;
  color: #555;
  line-height: 1.65;
  margin: 0;
}

/* Read More link - hidden by default */
.rp-card::after {
  content: 'Read More →';
  position: absolute;
  bottom: 12px;
  right: 16px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #0d1560;
  opacity: 0;
  transform: translateY(5px);
  transition: all 0.35s ease;
}

.rp-card:hover::after {
  opacity: 1;
  transform: translateY(0);
}

/* ── Responsive ──────────────────────────────────────── */
@media (max-width: 991px) {
  .rp-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 575px) {
  .rp-grid {
    grid-template-columns: 1fr;
  }

  .rp-img-wrap {
    height: 200px;
  }

  .rp-title {
    font-size: 1.6rem;
  }
}

/* ════════════════════════════════════════════════════════
   News Banner
   ════════════════════════════════════════════════════════ */
/* ════════════════════════════════════════════════════════
   News Listing Section
   ════════════════════════════════════════════════════════ */
#news-listing.news-listing-section {
  background: #f5f5f5;
  padding: 60px 0 80px;
}

/* ── Shared utilities ────────────────────────────────── */
.news-cat-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #1a3de4;
  margin-bottom: 8px;
}

.news-date {
  font-size: 1.2rem;
  color: #d5d5d5 !important;
  font-weight: 300;
}

.news-read-more {
  font-size: 0.82rem;
  font-weight: 600;
  color: #1a3de4;
  text-decoration: none;
  white-space: nowrap;
  transition: opacity 0.2s;
}

.news-read-more:hover {
  opacity: 0.7;
  color: #1a3de4;
}

/* ── Filter tabs ─────────────────────────────────────── */
.news-filters-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
}

.news-filters {
  display: flex;
  align-items: center;
  background: #e8e8f0;
  border-radius: 50px;
  padding: 5px;
  gap: 0;
}

.news-filter {
  background: none;
  border: none;
  font-size: 0.88rem;
  font-weight: 500;
  color: #555;
  padding: 9px 22px;
  border-radius: 50px;
  cursor: pointer;
  white-space: nowrap;
  font-family: var(--nav-font);
  transition: all 0.25s ease;
}

.news-filter:hover {
  color: #0d1560;
}

.news-filter.active {
  background: #1a3de4;
  color: #fff;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(26, 61, 228, 0.25);
}

/* ════════════════════════════════════════════════════════
   Featured Post — 3 columns
   ════════════════════════════════════════════════════════ */

/* LEFT: big image */
.news-featured-img {
  position: relative;
  overflow: hidden;
}

.news-featured-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.news-featured-img:hover img {
  transform: scale(1.04);
}

.news-featured-img .news-cat-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(255, 255, 255, 0.95);
  padding: 4px 12px;
  border-radius: 50px;
  z-index: 2;
  margin-bottom: 0;
}

/* MIDDLE: text only */
.news-featured-middle {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 8px 24px 8px 0;
  border-right: 1px solid #eee;
}

.news-featured-middle .news-cat-badge {
  margin-bottom: 12px;
}

.news-featured-title {
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.25;
  margin: 0 0 14px;
}

.news-featured-excerpt {
  font-size: 0.88rem;
  color: #ffffffb5;
  line-height: 1.7;
  margin: 0;
  flex: 1;
}

.news-featured-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid #eee;
}

/* RIGHT: image top + text bottom */
.news-featured-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.news-right-top-img {
  height: 200px;
  border-radius: 14px;
  overflow: hidden;
  flex-shrink: 0;
}

.news-right-top-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.news-right-top-img:hover img {
  transform: scale(1.05);
}

.news-right-bottom {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding-top: 8px;
  border-top: 1px solid #eee;
}

.news-right-bottom-text {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.news-right-bottom-text .news-cat-badge {
  margin-top: 4px;
  margin-bottom: 8px;
}

.news-right-title {
  font-size: 0.98rem;
  font-weight: 700;
  color: #0d1560;
  margin: 0 0 10px;
  line-height: 1.35;
}

.news-right-excerpt {
  font-size: 0.82rem;
  color: #555;
  line-height: 1.6;
  margin: 0;
  flex: 1;
}

.news-right-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid #eee;
}

/* ════════════════════════════════════════════════════════
   News Grid
   ════════════════════════════════════════════════════════ */
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.news-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.news-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.news-card.hidden {
  display: none;
}

.news-card-img {
  position: relative;
  overflow: hidden;
  height: 200px;
  flex-shrink: 0;
}

.news-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

.news-card:hover .news-card-img img {
  transform: scale(1.06);
}

.news-card-img .news-cat-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(255, 255, 255, 0.95);
  padding: 3px 10px;
  border-radius: 50px;
  margin-bottom: 0;
}

.news-card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 20px;
}

.news-card-title {
  font-size: 1rem;
  font-weight: 700;
  color: #0d1560;
  margin: 0 0 8px;
  line-height: 1.35;
}

.news-card-excerpt {
  font-size: 0.84rem;
  color: #555;
  line-height: 1.6;
  margin: 0 0 16px;
  flex: 1;
}

.news-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid #f0f0f0;
}

/* ── Load More ───────────────────────────────────────── */
.news-load-more-wrap {
  text-align: center;
  margin-top: 8px;
}

.news-load-more {
  background: #1a3de4;
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 14px 52px;
  font-size: 0.92rem;
  font-weight: 600;
  cursor: pointer;
  font-family: var(--nav-font);
  transition: background 0.3s ease, transform 0.2s ease;
}

.news-load-more:hover {
  background: #0d2bbf;
  transform: translateY(-2px);
}

.news-load-more:disabled,
.news-load-more[style*="none"] {
  display: none;
}

/* ════════════════════════════════════════════════════════
   Responsive
   ════════════════════════════════════════════════════════ */
@media (max-width: 1199px) {
  .news-featured-post {
    grid-template-columns: 1.5fr 1fr 1fr;
  }
}

@media (max-width: 991px) {
  .news-featured-post {
    grid-template-columns: 1fr 1fr;
    min-height: auto;
    padding: 16px;
    gap: 16px;
  }

  .news-featured-img {
    grid-column: 1 / -1;
    height: 280px;
  }

  .news-featured-middle {
    border-right: none;
    padding-right: 0;
    border-bottom: 1px solid #eee;
    padding-bottom: 16px;
    justify-content: flex-start;
  }

  .news-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 575px) {
  .news-featured-post {
    grid-template-columns: 1fr;
  }

  .news-featured-img {
    height: 220px;
  }

  .news-featured-title {
    font-size: 1.2rem;
  }

  .news-right-top-img {
    height: 160px;
  }

  .news-grid {
    grid-template-columns: 1fr;
  }

  .news-filters {
    flex-wrap: wrap;
    border-radius: 16px;
    padding: 6px;
  }
}

/* ── Featured Post: 2 cards ──────────────────────────── */
.news-featured-post {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 24px;
  margin-bottom: 52px;
  align-items: stretch;
}

.news-featured-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.news-featured-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

/* Image */
.news-featured-card .news-featured-img {
  position: relative;
  height: 260px;
  overflow: hidden;
  flex-shrink: 0;
}

/* First card: taller image */
.news-featured-card:first-child .news-featured-img {
  width: 60%;
  height: 100%;
}

.news-featured-card:first-child {
  flex-direction: row;
}

.news-featured-card .news-featured-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.news-featured-card:hover .news-featured-img img {
  transform: scale(1.04);
}

.news-featured-card .news-featured-img .news-cat-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(255, 255, 255, 0.95);
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 0;
  z-index: 2;
}

/* Text block */
.news-featured-middle {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.news-featured-middle .news-cat-badge {
  margin-bottom: 10px;
}

.news-featured-title {
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.25;
  margin: 0 0 14px;
}

/* First card: larger title */
.news-featured-card:first-child .news-featured-title {
  font-size: 1.4rem;
}

.news-featured-excerpt {
  font-size: 0.88rem;
  color: #ffffffb5;
  line-height: 1.7;
  margin: 0;
  flex: 1;
}


.news-featured-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 20px;
  padding-top: 14px;
  border-top: 1px solid #f0f0f0;
}

/* ── Responsive ──────────────────────────────────────── */
@media (max-width: 767px) {
  .news-featured-post {
    grid-template-columns: 1fr;
  }

  .news-featured-card .news-featured-img,
  .news-featured-card:first-child .news-featured-img {
    height: 220px;
  }
}

/* ════════════════════════════════════════════════════════
   Contact Hero Banner
   ════════════════════════════════════════════════════════ */
.contact-hero-banner {
  position: relative;
  width: calc(100% - 80px);
  margin: 120px auto 0;
  border-radius: 24px;
  overflow: hidden;
  height: 280px;
  background: #0a0834;
}

.contact-hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center,
      rgba(26, 61, 228, 0.3) 0%,
      rgba(10, 8, 52, 0.95) 70%);
}

.contact-hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 60px;
}

.contact-hero-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  display: block;
  margin-bottom: 12px;
}

.contact-hero-title {
  font-size: 2.4rem;
  font-weight: 800;
  color: #fff;
  margin: 0 0 14px;
}

.contact-hero-desc {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.65);
  max-width: 520px;
  line-height: 1.7;
  margin: 0;
}

/* ════════════════════════════════════════════════════════
   Send Message Section
   ════════════════════════════════════════════════════════ */
#send-message.send-message-section {
  background: #fff;
  padding: 80px 0;
}

.send-message-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
}

/* LEFT */
.send-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #1a3de4;
  display: block;
  margin-bottom: 10px;
}

.send-title {
  font-size: 1.8rem;
  font-weight: 800;
  color: #0d1560;
  margin: 0 0 16px;
}

.send-desc {
  font-size: 0.88rem;
  color: #555;
  line-height: 1.75;
  margin: 0 0 32px;
}

.send-features {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.send-feature {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.send-feature i {
  font-size: 1.3rem;
  color: #1a3de4;
  flex-shrink: 0;
  margin-top: 2px;
}

.send-feature strong {
  display: block;
  font-size: 0.92rem;
  font-weight: 700;
  color: #0d1560;
  margin-bottom: 4px;
}

.send-feature p {
  font-size: 0.82rem;
  color: #666;
  line-height: 1.6;
  margin: 0;
}

/* RIGHT: Form */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}

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

.form-group:last-child {
  margin-bottom: 0;
}

.send-message-form {
  background-color: #f5f5f5;
  padding: 7%;
  border-radius: 20px;
}

.send-message-form input,
.send-message-form select,
.send-message-form textarea {
  width: 100%;
  background: #fff;
  border: 1.5px solid transparent;
  border-radius: 25px;
  padding: 13px 16px;
  font-size: 0.88rem;
  color: #333;
  outline: none;
  transition: border-color 0.25s ease, background 0.25s ease;
  font-family: var(--default-font);
  resize: none;
}

.send-message-form input::placeholder,
.send-message-form textarea::placeholder {
  color: #aaa;
}

.send-message-form input:focus,
.send-message-form select:focus,
.send-message-form textarea:focus {
  border-color: #1a3de4;
  background: #fff;
}

.send-message-form select {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  color: #aaa;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23999' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.send-message-form select option {
  color: #333;
}

.send-submit {
  width: 100%;
  background: #1a3de4;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 15px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  margin-top: 6px;
  transition: background 0.3s ease, transform 0.2s ease;
  font-family: var(--default-font);
}

.send-submit:hover {
  background: #0d2bbf;
  transform: translateY(-2px);
}

/* ════════════════════════════════════════════════════════
   Map + Contact Info
   ════════════════════════════════════════════════════════ */
#contact-info.contact-info-section {
  background: #fff;
  padding: 80px 0;
}

.contact-info-wrapper {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}

/* Map */
.contact-map {
  height: 360px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

/* Details block */
.contact-details-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #1a3de4;
  display: block;
  margin-bottom: 10px;
}

.contact-details-title {
  font-size: 1.8rem;
  font-weight: 800;
  color: #0d1560;
  margin: 0 0 32px;
}

.contact-info-items {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-info-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #eceffe;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-icon i {
  font-size: 1.1rem;
  color: #1a3de4;
}

.contact-info-body {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: 2px;
}

.contact-info-body strong {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: #0d1560;
  text-transform: uppercase;
}

.contact-info-body span,
.contact-info-body a {
  font-size: 0.9rem;
  color: #444;
  text-decoration: none;
  line-height: 1.5;
  transition: color 0.2s;
}

.contact-info-body a:hover {
  color: #1a3de4;
}

/* ── Responsive ──────────────────────────────────────── */
@media (max-width: 991px) {
  .send-message-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-info-wrapper {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .contact-map {
    height: 280px;
  }

  .contact-hero-banner {
    width: calc(100% - 40px);
    height: 240px;
    margin-top: 100px;
  }

  .contact-hero-title {
    font-size: 1.8rem;
  }
}

@media (max-width: 575px) {
  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-hero-banner {
    width: calc(100% - 24px);
    height: 200px;
    border-radius: 16px;
  }

  .contact-hero-title {
    font-size: 1.5rem;
  }

  .send-title,
  .contact-details-title {
    font-size: 1.4rem;
  }
}

/* ── Form labels ─────────────────────────────────────── */
.send-message-form label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: #0d1560;
  margin-bottom: 6px;
  letter-spacing: 0.3px;
}

/* Slightly tighter gap between label and field */
.form-group {
  margin-bottom: 18px;
  display: flex;
  flex-direction: column;
}

.form-group:last-child {
  margin-bottom: 0;
}

/* Rounder inputs to match screenshot 1 */
.send-message-form input,
.send-message-form select,
.send-message-form textarea {
  width: 100%;
  background: #fff;
  border: 1.5px solid #e8e8ee;
  border-radius: 50px;
  /* pill shape */
  padding: 13px 20px;
  font-size: 0.88rem;
  color: #333;
  outline: none;
  transition: border-color 0.25s ease;
  font-family: var(--default-font);
  resize: none;
}

/* Textarea and select keep softer radius */
.send-message-form select,
.send-message-form textarea {
  border-radius: 16px;
}

.send-message-form input::placeholder,
.send-message-form textarea::placeholder {
  color: #bbb;
}

.send-message-form input:focus,
.send-message-form select:focus,
.send-message-form textarea:focus {
  border-color: #1a3de4;
  box-shadow: 0 0 0 3px rgba(26, 61, 228, 0.08);
}

/* Send button full width */
.send-submit {
  width: 100%;
  background: #1a3de4;
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 15px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  margin-top: 8px;
  transition: background 0.3s ease, transform 0.2s ease;
  font-family: var(--default-font);
  letter-spacing: 0.5px;
}

.send-submit:hover {
  background: #0d2bbf;
  transform: translateY(-2px);
}

/* ════════════════════════════════════════════════════════
   Project Detail Hero
   ════════════════════════════════════════════════════════ */
.project-detail-hero {
  position: relative;
  width: calc(100% - 80px);
  margin: 120px auto 0;
  border-radius: 24px;
  overflow: hidden;
  height: 400px;
}

.project-detail-img {
  position: absolute;
  inset: 0;
}

.project-detail-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.project-detail-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
      rgba(5, 10, 60, 0.85) 0%,
      rgba(5, 10, 60, 0.2) 60%,
      transparent 100%);
}

.project-detail-content {
  position: absolute;
  bottom: 36px;
  left: 40px;
  z-index: 2;
}

.project-detail-title {
  font-size: 2.4rem;
  font-weight: 800;
  color: #fff;
  margin: 0 0 10px;
  line-height: 1.15;
}

.project-detail-meta {
  display: flex;
  align-items: center;
  gap: 10px;
}

.project-detail-year,
.project-detail-location {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}

.project-detail-sep {
  color: rgba(255, 255, 255, 0.4);
}

/* ════════════════════════════════════════════════════════
   Shared section title
   ════════════════════════════════════════════════════════ */
.section-block-title {
  font-size: 1.6rem;
  font-weight: 800;
  color: #0d1560;
  margin: 0 0 28px;
}

/* ════════════════════════════════════════════════════════
   Live Photos Section
   ════════════════════════════════════════════════════════ */
#live-photos.live-photos-section {
  background: #fff;
  padding: 60px 0;
}

/* Swiper */
.live-photos-swiper {
  overflow: hidden;
  position: relative;
  padding-bottom: 10px;
}

.live-photo-card {
  border-radius: 16px;
  overflow: hidden;
  height: 220px;
}

.live-photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.live-photo-card:hover img {
  transform: scale(1.05);
}

/* Custom nav buttons */
.live-photos-next,
.live-photos-prev {
  width: 44px !important;
  height: 44px !important;
  background: #1a3de4 !important;
  border-radius: 50% !important;
  color: #fff !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  box-shadow: 0 4px 14px rgba(26, 61, 228, 0.35) !important;
  transition: background 0.25s ease !important;
}

.live-photos-next:hover,
.live-photos-prev:hover {
  background: #0d2bbf !important;
}

.live-photos-next i,
.live-photos-prev i {
  font-size: 1.1rem;
  line-height: 1;
}

/* Hide default swiper arrows */
.live-photos-next::after,
.live-photos-prev::after {
  display: none !important;
}

/* ════════════════════════════════════════════════════════
   About Project Section
   ════════════════════════════════════════════════════════ */
#about-project.about-project-section {
  background: #fff;
  padding: 20px 0 80px;
  border-top: 1px solid #f0f0f0;
}

/* .about-project-content {
  max-width: 860px;
} */

.about-project-content p {
  font-size: 0.92rem;
  color: #444;
  line-height: 1.85;
  margin-bottom: 20px;
}

.about-project-content p:last-child {
  margin-bottom: 0;
}

/* ── Responsive ──────────────────────────────────────── */
@media (max-width: 991px) {
  .project-detail-hero {
    width: calc(100% - 40px);
    height: 320px;
    margin-top: 100px;
  }

  .project-detail-title {
    font-size: 1.8rem;
  }
}

@media (max-width: 575px) {
  .project-detail-hero {
    width: calc(100% - 24px);
    height: 260px;
    border-radius: 16px;
    margin-top: 80px;
  }

  .project-detail-title {
    font-size: 1.4rem;
  }

  .project-detail-content {
    left: 20px;
    bottom: 20px;
  }

  .live-photo-card {
    height: 180px;
  }
}

/* ── Live Photos Swiper ──────────────────────────────── */
.live-photos-swiper {
  overflow: visible !important;
  /* allow side slides to peek out */
  position: relative;
  padding: 20px 0 10px;
}

.live-photo-card {
  border-radius: 20px;
  overflow: hidden;
  height: 420px;
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.live-photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Non-active slides: dimmed + slightly smaller */
.live-photos-swiper .swiper-slide {
  opacity: 0.45;
  transform: scale(0.92);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

/* Active center slide: full opacity + full size */
.live-photos-swiper .swiper-slide-active {
  opacity: 1 !important;
  transform: scale(1) !important;
}

/* Nav button */
.live-photos-next,
.live-photos-prev {
  width: 44px !important;
  height: 44px !important;
  background: #1a3de4 !important;
  border-radius: 50% !important;
  color: #fff !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  box-shadow: 0 4px 14px rgba(26, 61, 228, 0.35) !important;
  transition: background 0.25s ease !important;
  z-index: 10;
}

.live-photos-next {
  right: -20px !important;
}

.live-photos-prev {
  left: -20px !important;
}

.live-photos-next:hover,
.live-photos-prev:hover {
  background: #0d2bbf !important;
}

.live-photos-next i,
.live-photos-prev i {
  font-size: 1.1rem;
  line-height: 1;
}

.live-photos-next::after,
.live-photos-prev::after {
  display: none !important;
}

/* ════════════════════════════════════════════════════════
   News Detail Hero
   ════════════════════════════════════════════════════════ */
.nd-hero {
  position: relative;
  width: calc(100% - 80px);
  margin: 120px auto 0;
  border-radius: 24px;
  overflow: hidden;
  height: 380px;
}

.nd-hero-img {
  position: absolute;
  inset: 0;
}

.nd-hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.nd-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
      rgba(5, 10, 60, 0.88) 0%,
      rgba(5, 10, 60, 0.25) 55%,
      transparent 100%);
}

.nd-hero-content {
  position: absolute;
  bottom: 36px;
  left: 40px;
  z-index: 2;
}

.nd-hero-title {
  font-size: 2.2rem;
  font-weight: 800;
  color: #fff;
  margin: 0 0 10px;
}

.nd-hero-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.75);
}

.nd-hero-sep {
  color: rgba(255, 255, 255, 0.3);
}

.nd-cat-badge {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
}

/* ════════════════════════════════════════════════════════
   Body Layout
   ════════════════════════════════════════════════════════ */
#news-detail-body.nd-body-section {
  background: #fff;
  padding: 60px 0 80px;
}

.nd-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 48px;
  align-items: start;
}

/* ════════════════════════════════════════════════════════
   Main Content
   ════════════════════════════════════════════════════════ */
.nd-article-title {
  font-size: 1.7rem;
  font-weight: 800;
  color: #0d1560;
  margin: 0 0 24px;
  line-height: 1.25;
}

.nd-sub-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #0d1560;
  margin: 32px 0 16px;
}

.nd-article-text p {
  font-size: 0.92rem;
  color: #444;
  line-height: 1.85;
  margin-bottom: 16px;
}

.nd-article-text p:last-child {
  margin-bottom: 0;
}

/* Image grid */
.nd-img-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 32px 0;
}

.nd-img-card {
  border-radius: 16px;
  overflow: hidden;
  height: 220px;
  position: relative;
}

.nd-img-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.nd-img-card:hover img {
  transform: scale(1.05);
}

/* Stat overlay card */
.nd-img-card--stat {
  position: relative;
}

.nd-stat-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 15, 80, 0.72);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  text-align: center;
}

.nd-stat-number {
  font-size: 2.8rem;
  font-weight: 900;
  color: #fff;
  display: block;
  margin-bottom: 10px;
  line-height: 1;
}

.nd-stat-desc {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin: 0;
}

/* ════════════════════════════════════════════════════════
   Related Articles
   ════════════════════════════════════════════════════════ */
.nd-related {
  margin-top: 52px;
  padding-top: 40px;
  border-top: 1px solid #f0f0f0;
}

.nd-related-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #1a3de4;
  display: block;
  margin-bottom: 8px;
}

.nd-related-title {
  font-size: 1.4rem;
  font-weight: 800;
  color: #0d1560;
  margin: 0 0 28px;
}

.nd-related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.nd-related-card {
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease;
}

.nd-related-card:hover {
  transform: translateY(-4px);
}

.nd-related-img {
  position: relative;
  height: 160px;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 14px;
}

.nd-related-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.nd-related-card:hover .nd-related-img img {
  transform: scale(1.06);
}

.nd-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(255, 255, 255, 0.92);
  padding: 3px 10px;
  border-radius: 50px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #1a3de4;
}

.nd-related-body h4 {
  font-size: 0.92rem;
  font-weight: 700;
  color: #0d1560;
  margin: 0 0 6px;
  line-height: 1.35;
}

.nd-related-body p {
  font-size: 0.8rem;
  color: #666;
  line-height: 1.6;
  margin: 0 0 10px;
}

.nd-read-more {
  font-size: 0.78rem;
  font-weight: 600;
  color: #1a3de4;
  text-decoration: none;
  transition: opacity 0.2s;
}

.nd-read-more:hover {
  opacity: 0.7;
  color: #1a3de4;
}

/* ════════════════════════════════════════════════════════
   Sidebar
   ════════════════════════════════════════════════════════ */
.nd-sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: sticky;
  top: 120px;
}

.nd-sidebar-card {
  background: #f5f5f7;
  border-radius: 16px;
  padding: 24px;
}

.nd-sidebar-title {
  font-size: 1rem;
  font-weight: 800;
  color: #0d1560;
  margin: 0 0 20px;
}

/* Insight items */
.nd-insight-item {
  padding-bottom: 16px;
  margin-bottom: 16px;
  border-bottom: 1px solid #e8e8ee;
}

.nd-insight-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

.nd-insight-cat {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #1a3de4;
  display: block;
  margin-bottom: 6px;
}

.nd-insight-text {
  font-size: 0.85rem;
  color: #333;
  line-height: 1.55;
  margin: 0;
  font-weight: 500;
}

/* Dark subscribe card */
.nd-sidebar-card--dark {
  background: #0d1560;
  color: #fff;
}

.nd-sidebar-subscribe-title {
  font-size: 1rem;
  font-weight: 800;
  color: #fff;
  margin: 0 0 10px;
}

.nd-sidebar-subscribe-desc {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin: 0 0 20px;
}

.nd-subscribe-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.nd-subscribe-form input {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  padding: 11px 14px;
  font-size: 0.85rem;
  color: #fff;
  outline: none;
  width: 100%;
  transition: border-color 0.25s;
}

.nd-subscribe-form input::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

.nd-subscribe-form input:focus {
  border-color: rgba(255, 255, 255, 0.5);
}

.nd-subscribe-form button {
  background: #1a3de4;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 12px;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
  font-family: var(--default-font);
}

.nd-subscribe-form button:hover {
  background: #0d2bbf;
}

/* ════════════════════════════════════════════════════════
   Responsive
   ════════════════════════════════════════════════════════ */
@media (max-width: 1199px) {
  .nd-layout {
    grid-template-columns: 1fr 280px;
    gap: 36px;
  }
}

@media (max-width: 991px) {
  .nd-layout {
    grid-template-columns: 1fr;
  }

  .nd-sidebar {
    position: static;
  }

  .nd-hero {
    width: calc(100% - 40px);
    height: 300px;
    margin-top: 100px;
  }

  .nd-related-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 575px) {
  .nd-hero {
    width: calc(100% - 24px);
    height: 250px;
    border-radius: 16px;
    margin-top: 80px;
  }

  .nd-hero-title {
    font-size: 1.5rem;
  }

  .nd-hero-content {
    left: 20px;
    bottom: 20px;
  }

  .nd-img-grid {
    grid-template-columns: 1fr;
  }

  .nd-related-grid {
    grid-template-columns: 1fr;
  }

  .nd-article-title {
    font-size: 1.3rem;
  }
}

/* ── Image grid ──────────────────────────────────────── */
.nd-img-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 32px 0;
  align-items: stretch;
}

/* Left: tall single image */
.nd-img-card--tall {
  border-radius: 16px;
  overflow: hidden;
  height: 100%;
  min-height: 360px;
}

.nd-img-card--tall img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.nd-img-card--tall:hover img {
  transform: scale(1.05);
}

/* Right column: two stacked cards */
.nd-img-right-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Top plain image card */
.nd-img-card {
  border-radius: 16px;
  overflow: hidden;
  height: 180px;
  position: relative;
  flex-shrink: 0;
}

.nd-img-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.nd-img-card:hover img {
  transform: scale(1.05);
}

/* Bottom stat card — dark bg, no image */
.nd-img-card--stat {
  background: #0d1560;
  border-radius: 16px;
  flex: 1;
  min-height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  overflow: visible;
  height: auto;
}

.nd-stat-overlay {
  text-align: left;
  width: 100%;
  border-radius: 16px;

}

.nd-stat-number {
  font-size: 2.8rem;
  font-weight: 900;
  color: #fff;
  display: block;
  margin-bottom: 6px;
  line-height: 1;
}

.nd-stat-cat {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #1a3de4;
  display: block;
  margin-bottom: 10px;
}

.nd-stat-desc {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
  margin: 0;
}

/* ── Responsive ──────────────────────────────────────── */
@media (max-width: 767px) {
  .nd-img-grid {
    grid-template-columns: 1fr;
  }

  .nd-img-card--tall {
    min-height: 220px;
  }

  .nd-img-card {
    height: 200px;
  }
}
/* Fix portfolio links z-index */
.portfolio-content {
    position: relative;
}
.portfolio-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10;
}
.portfolio-info .details-link,
.portfolio-info .preview-link {
    position: relative;
    z-index: 20;
    pointer-events: all;
}
.portfolio-card-link {
    display: block;
    position: relative;
    z-index: 1;
}
/* ── NAV SEARCH INLINE PUSH ─────────────────────────────────────────────────── */
/* ── NAV SEARCH INLINE PUSH ─────────────────────────────────────────────────── */
.header-nav {
    display: flex;
    align-items: center;
}

.nav-links-wrap {
    display: flex;
    align-items: center;
    gap: 5px;
    transition: all 0.35s ease;
    white-space: nowrap;
}

.nav-search-wrap {
    display: flex;
    align-items: center;
    margin-left: 5px;
    flex-shrink: 0;
}

.nav-search-input-wrap {
    display: flex;
    align-items: center;
    background: #f1f3f8;
    border-radius: 50px;
    padding: 0;
    width: 0;
    overflow: hidden;
    opacity: 0;
    transition: width 0.35s ease, opacity 0.25s ease, padding 0.35s ease;
    height: 36px;
}

.nav-search-input-wrap.open {
    width: 220px;
    opacity: 1;
    padding: 0 12px;
    margin-right: 8px;
}

.nav-search-icon-inside {
    color: #999;
    font-size: 13px;
    margin-right: 6px;
    flex-shrink: 0;
}

.nav-search-input-wrap input {
    border: none;
    background: transparent;
    outline: none;
    font-size: 14px;
    color: #333;
    width: 100%;
    font-family: var(--nav-font, inherit);
}

.nav-search-input-wrap input::placeholder {
    color: #999;
}

.nav-search-close {
    background: none;
    border: none;
    cursor: pointer;
    color: #999;
    font-size: 15px;
    padding: 0;
    margin-left: 6px;
    display: flex;
    align-items: center;
    flex-shrink: 0;
    transition: color 0.2s;
}

.nav-search-close:hover {
    color: #333;
}

.nav-search-btn {
    background: none;
  /*   border: 1.5px solid #ddd; */
    cursor: pointer;
    color: var(--nav-color, #333);
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    transition: all 0.2s;
    flex-shrink: 0;
}

.nav-search-btn:hover {
    border-color: var(--accent-color, #0d1560);
    color: var(--accent-color, #0d1560);
}

.nav-search-wrap.search-open .nav-search-btn {
    display: none;
}