/*--------------------------------------------------------------
# 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: "Raleway",  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: #0f1b2d; /* Background color for the entire website, including individual sections */
  --default-color: #ffffff; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #e6e8eb; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #c89d47; /* 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: #1a2e4d; /* 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: #e1eff9; /* 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: #ffffff;  /* The default color of the main navmenu links */
  --nav-hover-color: #c89d47; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #1c3253; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #1c3253; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #ffffff; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #c89d47; /* 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: #0f1b2d;
  --surface-color: #294979;
}

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

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

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

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

.header .logo .logo-light {
  opacity: 1;
  visibility: visible;
}

.header .logo .logo-dark {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: 0;
  left: 0;
}

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

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

.scrolled .header .logo .logo-light {
  opacity: 0;
  visibility: hidden;
}

.scrolled .header .logo .logo-dark {
  opacity: 1;
  visibility: visible;
}

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

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

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

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

  .navmenu li {
    position: relative;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.footer .footer-links ul i {
  padding-right: 2px;
  font-size: 12px;
  line-height: 0;
}

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

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

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

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

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

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

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

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

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: var(--background-color);
  transition: all 0.6s ease-out;
}

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

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

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

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

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

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

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

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

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  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: 72px;
  overflow: clip;
}

@media (max-width: 1199px) {

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

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

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 15px;
}

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

/*--------------------------------------------------------------
# Hero Main Section
--------------------------------------------------------------*/
.hero-main {
  padding: 0;
  background-color: var(--surface-color);
}

.hero-main .cinema-slider {
  position: relative;
}

.hero-main .swiper {
  overflow: hidden;
}

.hero-main .swiper-wrapper {
  height: auto !important;
}

.hero-main .cinema-frame {
  position: relative;
  height: 100vh;
  min-height: 560px;
  max-height: 900px;
  overflow: hidden;
}

.hero-main .cinema-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hero-main .swiper-slide-active .cinema-frame img {
  transform: scale(1.08);
}

.hero-main .frame-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, color-mix(in srgb, var(--surface-color), transparent 50%) 0%, color-mix(in srgb, var(--surface-color), transparent 60%) 0%);
  pointer-events: none;
  z-index: 1;
}

.hero-main .frame-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  padding: 0 8%;
}

.hero-main .content-inner {
  max-width: 740px;
}

.hero-main .accent-line {
  width: 56px;
  height: 2px;
  background: var(--accent-color);
  margin-bottom: 28px;
  transition: width 0.6s ease;
}

.hero-main .swiper-slide-active .accent-line {
  width: 80px;
}

.hero-main .tag-label {
  display: inline-block;
  font-family: var(--default-font);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-color);
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(12px);
  transition: all 0.7s ease 0.2s;
}

.hero-main .swiper-slide-active .tag-label {
  opacity: 1;
  transform: translateY(0);
}

.hero-main .content-inner h1 {
  font-family: var(--heading-font);
  font-size: clamp(2.5rem, 5vw, 5rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: 0.02em;
  color: #ffffff;
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.7s ease 0.35s;
}

.hero-main .swiper-slide-active .content-inner h1 {
  opacity: 1;
  transform: translateY(0);
}

.hero-main .content-inner p {
  font-size: 18px;
  font-weight: 400;
  line-height: 2;
  color: color-mix(in srgb, #ffffff 72%, transparent);
  margin-bottom: 36px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.7s ease 0.5s;
}

.hero-main .swiper-slide-active .content-inner p {
  opacity: 1;
  transform: translateY(0);
}

.hero-main .refined-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 40px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #ffffff;
  border: 1px solid color-mix(in srgb, #ffffff 40%, transparent);
  border-radius: 2px;
  text-decoration: none;
  transition: all 0.5s ease;
  opacity: 0;
  transform: translateY(20px);
}

.hero-main .refined-btn i {
  font-size: 14px;
  transition: transform 0.5s ease;
}

.hero-main .refined-btn:hover {
  background: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
}

.hero-main .refined-btn:hover i {
  transform: translateX(5px);
}

.hero-main .swiper-slide-active .refined-btn {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.7s ease 0.65s;
}

.hero-main .swiper-slide-active .refined-btn:hover {
  transition: all 0.5s ease;
}

.hero-main .slider-controls {
  position: absolute;
  bottom: 48px;
  right: 8%;
  z-index: 3;
}

.hero-main .controls-inner {
  display: flex;
  align-items: center;
  gap: 32px;
}

.hero-main .swiper-pagination {
  position: static;
  width: auto;
  font-family: var(--heading-font);
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: color-mix(in srgb, #ffffff 60%, transparent);
}

.hero-main .swiper-pagination .swiper-pagination-current {
  font-size: 28px;
  font-weight: 500;
  color: #ffffff;
}

.hero-main .nav-arrows {
  display: flex;
  align-items: center;
  gap: 4px;
}

.hero-main .swiper-button-prev,
.hero-main .swiper-button-next {
  position: static;
  width: 52px;
  height: 52px;
  margin: 0;
  border: 1px solid color-mix(in srgb, #ffffff 25%, transparent);
  border-radius: 0;
  background: transparent;
  transition: all 0.5s ease;
}

.hero-main .swiper-button-prev::after,
.hero-main .swiper-button-next::after {
  font-size: 16px;
  font-weight: 300;
  color: color-mix(in srgb, #ffffff 70%, transparent);
  transition: color 0.5s ease;
}

.hero-main .swiper-button-prev:hover,
.hero-main .swiper-button-next:hover {
  background: color-mix(in srgb, #ffffff 10%, transparent);
  border-color: color-mix(in srgb, #ffffff 50%, transparent);
}

.hero-main .swiper-button-prev:hover::after,
.hero-main .swiper-button-next:hover::after {
  color: #ffffff;
}

@media (max-width: 1200px) {
  .hero-main .content-inner h3 {
    font-size: 42px;
  }

  .hero-main .content-inner {
    max-width: 520px;
  }
}

@media (max-width: 992px) {
  .hero-main .cinema-frame {
    min-height: 480px;
  }

  .hero-main .content-inner h3 {
    font-size: 36px;
  }

  .hero-main .content-inner p {
    font-size: 16px;
  }

  .hero-main .frame-content {
    padding: 0 6%;
  }

  .hero-main .slider-controls {
    right: 6%;
    bottom: 36px;
  }
}

@media (max-width: 768px) {
  .hero-main .cinema-frame {
    min-height: 520px;
  }

  .hero-main .frame-overlay {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0.7) 60%, rgba(0, 0, 0, 0.85) 100%);
  }

  .hero-main .frame-content {
    align-items: flex-end;
    padding: 0 24px 120px;
  }

  .hero-main .content-inner {
    max-width: 100%;
  }

  .hero-main .content-inner h3 {
    font-size: 30px;
  }

  .hero-main .content-inner p {
    font-size: 15px;
    margin-bottom: 28px;
  }

  .hero-main .refined-btn {
    padding: 14px 32px;
    font-size: 12px;
  }

  .hero-main .slider-controls {
    bottom: 24px;
    right: 24px;
  }

  .hero-main .controls-inner {
    gap: 20px;
  }

  .hero-main .swiper-button-prev,
  .hero-main .swiper-button-next {
    width: 44px;
    height: 44px;
  }

  .hero-main .swiper-button-prev::after,
  .hero-main .swiper-button-next::after {
    font-size: 14px;
  }

  .hero-main .swiper-pagination .swiper-pagination-current {
    font-size: 22px;
  }
}

@media (max-width: 576px) {
  .hero-main .cinema-frame {
    min-height: 460px;
  }

  .hero-main .content-inner h3 {
    font-size: 26px;
  }

  .hero-main .accent-line {
    width: 40px;
    margin-bottom: 20px;
  }

  .hero-main .swiper-slide-active .accent-line {
    width: 56px;
  }

  .hero-main .tag-label {
    font-size: 11px;
    margin-bottom: 18px;
  }

  .hero-main .frame-content {
    padding: 0 20px 100px;
  }

  .hero-main .slider-controls {
    right: 20px;
    bottom: 20px;
  }

  .hero-main .controls-inner {
    gap: 16px;
  }

  .hero-main .swiper-button-prev,
  .hero-main .swiper-button-next {
    width: 40px;
    height: 40px;
  }
}

/*--------------------------------------------------------------
# Energy Trading Section
--------------------------------------------------------------*/
.energy-trading {
  padding-top: 120px;
  position: relative;
  background-color: var(--background-color);
  overflow: hidden;
  padding-bottom: 120px;
}

.energy-trading::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../img/uploads/pexels-aleksandra-krivdic-1442877-3696345.webp");
  background-size: cover;
  background-position: center;
  opacity: 0.05;
  z-index: 0;
}

.energy-trading .container {
  position: relative;
  z-index: 1;
}

.energy-trading .hero-content {
  margin-bottom: 30px;
}

.energy-trading .hero-content .subtitle {
  display: inline-block;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  color: var(--accent-color);
  margin-bottom: 15px;
  letter-spacing: 1px;
  position: relative;
  padding-left: 25px;
}

.energy-trading .hero-content .subtitle::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 15px;
  height: 2px;
  background-color: var(--accent-color);
  transform: translateY(-50%);
}

.energy-trading .hero-content h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

@media (max-width: 992px) {
  .energy-trading .hero-content h1 {
    font-size: 36px;
  }
}

@media (max-width: 768px) {
  .energy-trading .hero-content h1 {
    font-size: 32px;
  }
}

.energy-trading .hero-content p {
  font-size: 18px;
  margin-bottom: 30px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.energy-trading .hero-buttons {
  display: flex;
  gap: 15px;
  margin-bottom: 40px;
}

@media (max-width: 576px) {
  .energy-trading .hero-buttons {
    flex-direction: column;
    gap: 10px;
  }
}

.energy-trading .hero-buttons .btn-primary {
  display: inline-block;
  padding: 14px 32px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 4px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.energy-trading .hero-buttons .btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), black 15%);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.energy-trading .hero-buttons .btn-secondary {
  display: inline-block;
  padding: 14px 32px;
  background-color: transparent;
  color: var(--default-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 70%);
  border-radius: 4px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.energy-trading .hero-buttons .btn-secondary:hover {
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
  border-color: var(--default-color);
  transform: translateY(-3px);
}

.energy-trading .trust-badges {
  display: flex;
  gap: 30px;
}

@media (max-width: 768px) {
  .energy-trading .trust-badges {
    flex-wrap: wrap;
    gap: 20px;
  }
}

.energy-trading .trust-badges .badge-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.energy-trading .trust-badges .badge-item i {
  font-size: 32px;
  color: var(--accent-color);
}

.energy-trading .trust-badges .badge-item .badge-text {
  display: flex;
  flex-direction: column;
}

.energy-trading .trust-badges .badge-item .badge-text .count {
  font-size: 24px;
  font-weight: 700;
  color: var(--heading-color);
  line-height: 1;
}

.energy-trading .trust-badges .badge-item .badge-text .label {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.energy-trading .hero-image {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.energy-trading .hero-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  transition: transform 0.5s ease;
}

.energy-trading .hero-image:hover img {
  transform: scale(1.05);
}

.energy-trading .hero-image .image-badge {
  position: absolute;
  bottom: 30px;
  left: 30px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 15px 20px;
  border-radius: 4px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.energy-trading .hero-image .image-badge span {
  display: block;
  font-weight: 700;
  font-size: 18px;
}

.energy-trading .hero-image .image-badge p {
  margin: 0;
  font-size: 14px;
  opacity: 0.9;
}

@media (max-width: 992px) {
  .energy-trading {
    padding: 80px 0;
  }

  .energy-trading .hero-content {
    margin-bottom: 50px;
  }
}

/*--------------------------------------------------------------
# Physical Products Section
--------------------------------------------------------------*/
.physical-products .card {
  background-color: var(--surface-color);
  color: var(--default-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  position: relative;
  border-radius: 0;
  height: 100%;
}

.physical-products .card .card-img {
  overflow: hidden;
  object-fit: cover;
  margin-bottom: 15px;
  border-radius: 0;
}

.physical-products .card .card-img img {
  transition: 0.3s ease-in-out;
}

.physical-products .card h3 {
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 5px;
  padding: 10px 30px;
  text-transform: uppercase;
}

.physical-products .card a {
  color: var(--heading-color);
  transition: 0.3;
}

.physical-products .card a:hover {
  color: var(--accent-color);
}

.physical-products .card p {
  padding: 0 30px;
  margin-bottom: 30px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 15px;
}

.physical-products .card:hover .card-img img {
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# Strategic Partners Section
--------------------------------------------------------------*/
.strategic-partners {
  position: relative;
  overflow: hidden;
}

.strategic-partners::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--accent-color) 8%, transparent);
  filter: blur(100px);
  pointer-events: none;
}

.strategic-partners::after {
  content: "";
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--accent-color) 6%, transparent);
  filter: blur(80px);
  pointer-events: none;
}

.strategic-partners .clients-showcase {
  position: relative;
  z-index: 1;
}

.strategic-partners .client-card {
  background: var(--surface-color);
  border-radius: 16px;
  padding: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 40px color-mix(in srgb, var(--default-color) 8%, transparent);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  height: 120px;
  position: relative;
  overflow: hidden;
}

.strategic-partners .client-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 16px;
  padding: 2px;
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color) 30%, transparent), transparent 50%);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.strategic-partners .client-card img {
  max-width: 80%;
  max-height: 60px;
  object-fit: contain;
  transition: all 0.4s ease;
}

.strategic-partners .client-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px color-mix(in srgb, var(--default-color) 12%, transparent);
}

.strategic-partners .client-card:hover::before {
  opacity: 1;
}

.strategic-partners .client-card:hover img {
  filter: none;
  opacity: 1;
  transform: scale(1.05);
}

.strategic-partners .client-card.featured {
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color) 80%, black));
  transform: scale(1.05);
  z-index: 2;
}

.strategic-partners .client-card.featured::before {
  display: none;
}

.strategic-partners .client-card.featured img {
  filter: brightness(0) invert(1);
  opacity: 1;
}

.strategic-partners .client-card.featured:hover {
  transform: scale(1.05) translateY(-8px);
}

.strategic-partners .client-card.featured:hover img {
  filter: brightness(0) invert(1);
}

@media (max-width: 768px) {
  .strategic-partners .client-card {
    padding: 24px;
    height: 100px;
  }

  .strategic-partners .client-card img {
    max-height: 45px;
  }
}

.strategic-partners .trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 24px;
  background: var(--surface-color);
  border-radius: 50px;
  box-shadow: 0 8px 32px color-mix(in srgb, var(--default-color) 10%, transparent);
  margin-top: 48px;
  position: relative;
  z-index: 1;
}

.strategic-partners .trust-badge .badge-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--accent-color) 15%, transparent);
  display: flex;
  align-items: center;
  justify-content: center;
}

.strategic-partners .trust-badge .badge-icon i {
  font-size: 20px;
  color: var(--accent-color);
}

.strategic-partners .trust-badge .badge-text {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--heading-color);
}

@media (max-width: 576px) {
  .strategic-partners .trust-badge {
    padding: 10px 20px;
    gap: 10px;
    margin-top: 32px;
  }

  .strategic-partners .trust-badge .badge-icon {
    width: 36px;
    height: 36px;
  }

  .strategic-partners .trust-badge .badge-icon i {
    font-size: 18px;
  }

  .strategic-partners .trust-badge .badge-text {
    font-size: 12px;
  }
}

.strategic-partners .container {
  text-align: center;
}

@media (max-width: 768px) {
  .strategic-partners {
    padding: 64px 0;
  }
}

/*--------------------------------------------------------------
# Supply Chain Section
--------------------------------------------------------------*/
.supply-chain {
  padding-top: 60px;
  padding-bottom: 0px;
}

.supply-chain .hero-block {
  padding: 80px 0 60px;
}

@media (max-width: 992px) {
  .supply-chain .hero-block {
    padding: 60px 0 40px;
    text-align: center;
  }
}

.supply-chain .hero-block .hero-copy .top-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: color-mix(in srgb, var(--accent-color), transparent 88%);
  color: var(--accent-color);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.supply-chain .hero-block .hero-copy .top-badge i {
  font-size: 1rem;
}

.supply-chain .hero-block .hero-copy h1 {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1.25rem;
}

@media (max-width: 992px) {
  .supply-chain .hero-block .hero-copy h1 {
    font-size: 2.4rem;
  }
}

@media (max-width: 576px) {
  .supply-chain .hero-block .hero-copy h1 {
    font-size: 1.9rem;
  }
}

.supply-chain .hero-block .hero-copy p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 1.75rem;
}

.supply-chain .hero-block .hero-copy .stats-strip {
  display: flex;
  align-items: center;
  background: var(--surface-color);
  border-radius: 12px;
  padding: 18px 24px;
  margin-bottom: 2rem;
  box-shadow: 0 4px 20px color-mix(in srgb, #000, transparent 94%);
}

@media (max-width: 576px) {
  .supply-chain .hero-block .hero-copy .stats-strip {
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
  }
}

.supply-chain .hero-block .hero-copy .stats-strip .s-item {
  flex: 1;
  text-align: center;
}

@media (max-width: 576px) {
  .supply-chain .hero-block .hero-copy .stats-strip .s-item {
    flex: 0 0 auto;
    min-width: 80px;
  }
}

.supply-chain .hero-block .hero-copy .stats-strip .s-item strong {
  display: block;
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--accent-color);
  font-family: var(--heading-font);
  line-height: 1.1;
}

.supply-chain .hero-block .hero-copy .stats-strip .s-item span {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  font-weight: 500;
  color: color-mix(in srgb, var(--default-color), transparent 35%);
  margin-top: 4px;
}

.supply-chain .hero-block .hero-copy .stats-strip .s-divider {
  width: 1px;
  height: 40px;
  background: color-mix(in srgb, var(--default-color), transparent 85%);
  flex-shrink: 0;
}

@media (max-width: 576px) {
  .supply-chain .hero-block .hero-copy .stats-strip .s-divider {
    display: none;
  }
}

.supply-chain .hero-block .hero-copy .hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

@media (max-width: 992px) {
  .supply-chain .hero-block .hero-copy .hero-btns {
    justify-content: center;
  }
}

.supply-chain .hero-block .hero-copy .hero-btns a {
  padding: 13px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

@media (max-width: 576px) {
  .supply-chain .hero-block .hero-copy .hero-btns a {
    width: 100%;
    justify-content: center;
  }
}

.supply-chain .hero-block .hero-copy .hero-btns .btn-apply {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.supply-chain .hero-block .hero-copy .hero-btns .btn-apply:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px color-mix(in srgb, var(--accent-color), transparent 55%);
}

.supply-chain .hero-block .hero-copy .hero-btns .btn-tour {
  background: var(--surface-color);
  color: var(--default-color);
  box-shadow: 0 4px 15px color-mix(in srgb, #000, transparent 94%);
}

.supply-chain .hero-block .hero-copy .hero-btns .btn-tour i {
  color: var(--accent-color);
  font-size: 1.1rem;
}

.supply-chain .hero-block .hero-copy .hero-btns .btn-tour:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px color-mix(in srgb, #000, transparent 88%);
  color: var(--accent-color);
}

.supply-chain .hero-block .hero-visual {
  position: relative;
}

@media (max-width: 992px) {
  .supply-chain .hero-block .hero-visual {
    max-width: 85%;
    margin: 0 auto;
  }
}

.supply-chain .hero-block .hero-visual .campus-photo {
  border-radius: 20px;
  box-shadow: 0 25px 60px color-mix(in srgb, #000, transparent 82%);
  width: 100%;
  height: 480px;
  object-fit: cover;
  object-position: center;
}

@media (max-width: 1200px) {
  .supply-chain .hero-block .hero-visual .campus-photo {
    height: 400px;
  }
}

@media (max-width: 992px) {
  .supply-chain .hero-block .hero-visual .campus-photo {
    height: 350px;
  }
}

.supply-chain .hero-block .hero-visual .accred-card {
  position: absolute;
  bottom: 30px;
  left: -25px;
  background: var(--surface-color);
  padding: 14px 20px;
  border-radius: 14px;
  box-shadow: 0 10px 35px color-mix(in srgb, #000, transparent 88%);
  display: flex;
  align-items: center;
  gap: 12px;
  border-left: 4px solid var(--accent-color);
}

@media (max-width: 992px) {
  .supply-chain .hero-block .hero-visual .accred-card {
    left: 15px;
    bottom: 20px;
  }
}

.supply-chain .hero-block .hero-visual .accred-card i {
  font-size: 2rem;
  color: var(--accent-color);
}

.supply-chain .hero-block .hero-visual .accred-card div {
  display: flex;
  flex-direction: column;
}

.supply-chain .hero-block .hero-visual .accred-card div strong {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--heading-color);
  font-family: var(--heading-font);
  line-height: 1.2;
}

.supply-chain .hero-block .hero-visual .accred-card div span {
  font-size: 0.76rem;
  color: color-mix(in srgb, var(--default-color), transparent 35%);
  margin-top: 2px;
}

.supply-chain .features-block {
  padding-bottom: 40px;
}

.supply-chain .features-block .feat-card {
  display: block;
  background: var(--surface-color);
  border-radius: 16px;
  padding: 2.5rem 2rem 2rem;
  height: 100%;
  position: relative;
  overflow: hidden;
  box-shadow: 0 5px 25px color-mix(in srgb, #000, transparent 96%);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
  transition: all 0.35s ease;
}

.supply-chain .features-block .feat-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--accent-color);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}

.supply-chain .features-block .feat-card:hover,
.supply-chain .features-block .feat-card.featured {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px color-mix(in srgb, #000, transparent 90%);
}

.supply-chain .features-block .feat-card:hover::after,
.supply-chain .features-block .feat-card.featured::after {
  transform: scaleX(1);
}

.supply-chain .features-block .feat-card:hover .feat-icon,
.supply-chain .features-block .feat-card.featured .feat-icon {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.supply-chain .features-block .feat-card.featured {
  border-color: color-mix(in srgb, var(--accent-color), transparent 70%);
}

.supply-chain .features-block .feat-card .feat-number {
  position: absolute;
  top: 18px;
  right: 20px;
  font-size: 3.5rem;
  font-weight: 900;
  color: color-mix(in srgb, var(--default-color), transparent 93%);
  font-family: var(--heading-font);
  line-height: 1;
  user-select: none;
  pointer-events: none;
}

.supply-chain .features-block .feat-card .feat-icon {
  width: 65px;
  height: 65px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
  transition: all 0.35s ease;
}

.supply-chain .features-block .feat-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  padding-right: 2.5rem;
}

.supply-chain .features-block .feat-card p {
  font-size: 0.9rem;
  line-height: 1.65;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin-bottom: 1.25rem;
}

.supply-chain .features-block .feat-card .feat-link {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--accent-color);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.supply-chain .features-block .feat-card .feat-link i {
  transition: transform 0.3s ease;
}

.supply-chain .features-block .feat-card .feat-link:hover i {
  transform: translateX(5px);
}

.supply-chain .event-block {
  background: var(--surface-color);
  border-radius: 16px;
  padding: 30px 35px;
  border-left: 5px solid var(--accent-color);
  box-shadow: 0 5px 30px color-mix(in srgb, #000, transparent 94%);
  margin-bottom: 60px;
}

@media (max-width: 768px) {
  .supply-chain .event-block {
    padding: 25px 20px;
    border-left: none;
    border-top: 5px solid var(--accent-color);
  }
}

.supply-chain .event-block .event-cal {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 12px;
  padding: 14px 20px;
  min-width: 85px;
  text-align: center;
}

.supply-chain .event-block .event-cal .ec-month {
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.85;
}

.supply-chain .event-block .event-cal .ec-day {
  font-size: 2.6rem;
  font-weight: 900;
  line-height: 1;
  font-family: var(--heading-font);
}

.supply-chain .event-block .event-info .event-tag {
  display: inline-block;
  background: color-mix(in srgb, var(--accent-color), transparent 88%);
  color: var(--accent-color);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 8px;
}

.supply-chain .event-block .event-info h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 8px;
}

@media (max-width: 576px) {
  .supply-chain .event-block .event-info h3 {
    font-size: 1.15rem;
  }
}

.supply-chain .event-block .event-info p {
  font-size: 0.9rem;
  margin: 0;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.supply-chain .event-block .event-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

@media (max-width: 1199px) {
  .supply-chain .event-block .event-actions {
    align-items: flex-start;
  }
}

.supply-chain .event-block .event-actions .btn-rsvp {
  display: inline-block;
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  white-space: nowrap;
  transition: all 0.3s ease;
}

.supply-chain .event-block .event-actions .btn-rsvp:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px color-mix(in srgb, var(--accent-color), transparent 65%);
}

.supply-chain .event-block .event-actions .event-timer {
  font-size: 0.84rem;
  color: color-mix(in srgb, var(--default-color), transparent 35%);
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.supply-chain .event-block .event-actions .event-timer i {
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Chartering Solutions Section
--------------------------------------------------------------*/
.chartering-solutions {
  padding-top: 60px;
  padding-bottom: 60px;
}

.chartering-solutions .card {
  background-color: var(--background-color);
  color: var(--default-color);
  border: none;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  min-height: 500px;
}

.chartering-solutions .card:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 25%, rgba(0, 0, 0, 0.9) 75%);
  z-index: 2;
}

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

.chartering-solutions .card .card-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  padding: 30px;
}

.chartering-solutions .card .card-body h3 {
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 0px;
  padding-left: 10px;
  border-left: 3px solid var(--accent-color);
}

.chartering-solutions .card .card-body h3 a {
  color: var(--contrast-color);
}

.chartering-solutions .card .card-body .card-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: 0.5s ease-in-out;
  visibility: hidden;
  opacity: 0;
}

.chartering-solutions .card .card-body .card-content p {
  font-size: 15px;
  padding-top: 10px;
  margin-bottom: 0;
  overflow: hidden;
  color: var(--contrast-color);
}

.chartering-solutions .card:hover .card-content {
  grid-template-rows: 1fr;
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
.call-to-action {
  padding: 120px 0;
  background: linear-gradient(135deg, var(--background-color) 0%, color-mix(in srgb, var(--accent-color), transparent 97%) 50%, var(--background-color) 100%);
}

.call-to-action .cta-wrapper {
  position: relative;
  background-color: var(--surface-color);
  border-radius: 24px;
  padding: 4rem 3rem;
  box-shadow: 0 25px 50px color-mix(in srgb, var(--default-color), transparent 93%), 0 0 0 1px color-mix(in srgb, var(--accent-color), transparent 90%);
  overflow: hidden;
}

.call-to-action .background-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.call-to-action .background-pattern .wave {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(45deg, transparent 0%, color-mix(in srgb, var(--accent-color), transparent 96%) 30%, color-mix(in srgb, var(--accent-color), transparent 98%) 70%, transparent 100%);
  transform: skewX(-15deg) translateX(20%);
}

.call-to-action .background-pattern .geometric-shape {
  position: absolute;
  border-radius: 50%;
}

.call-to-action .background-pattern .geometric-shape.shape-1 {
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 85%), color-mix(in srgb, var(--accent-color), transparent 95%));
  top: 5%;
  left: 10%;
  animation: floatRotate 8s ease-in-out infinite;
}

.call-to-action .background-pattern .geometric-shape.shape-2 {
  width: 80px;
  height: 80px;
  background: linear-gradient(225deg, color-mix(in srgb, var(--heading-color), transparent 88%), color-mix(in srgb, var(--heading-color), transparent 96%));
  bottom: 10%;
  right: 15%;
  animation: floatRotate 6s ease-in-out infinite reverse;
}

.call-to-action .content-section {
  position: relative;
  z-index: 2;
}

.call-to-action .content-section .label-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), transparent 10%));
  color: var(--contrast-color);
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 2rem;
  box-shadow: 0 8px 16px color-mix(in srgb, var(--accent-color), transparent 85%);
}

.call-to-action .content-section .label-badge i {
  font-size: 1.1rem;
}

.call-to-action .content-section h2 {
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--heading-color);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.call-to-action .content-section p {
  font-size: 1.125rem;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.call-to-action .features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.call-to-action .features-grid .feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.call-to-action .features-grid .feature-item .feature-icon {
  color: var(--accent-color);
  font-size: 1.25rem;
}

.call-to-action .features-grid .feature-item span {
  font-weight: 500;
  color: var(--heading-color);
  font-size: 0.95rem;
}

.call-to-action .cta-actions {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.call-to-action .cta-actions .btn {
  transition: all 0.3s ease;
  font-weight: 600;
  border-radius: 12px;
}

.call-to-action .cta-actions .btn.btn-cta-primary {
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), transparent 15%));
  color: var(--contrast-color);
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  border: none;
  box-shadow: 0 12px 24px color-mix(in srgb, var(--accent-color), transparent 85%), 0 0 0 0 var(--accent-color);
}

.call-to-action .cta-actions .btn.btn-cta-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 32px color-mix(in srgb, var(--accent-color), transparent 80%), 0 0 0 3px color-mix(in srgb, var(--accent-color), transparent 80%);
}

.call-to-action .cta-actions .btn.btn-cta-secondary {
  background: transparent;
  color: var(--accent-color);
  border: 2px solid color-mix(in srgb, var(--accent-color), transparent 70%);
  padding: 0.75rem 1.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.call-to-action .cta-actions .btn.btn-cta-secondary:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 95%);
  border-color: var(--accent-color);
}

.call-to-action .cta-actions .btn.btn-cta-secondary i {
  font-size: 1.2rem;
}

.call-to-action .cta-actions .secondary-action {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.call-to-action .cta-actions .secondary-action .note {
  font-size: 0.85rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-style: italic;
}

.call-to-action .image-section {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
}

.call-to-action .image-section .main-image-wrapper {
  position: relative;
}

.call-to-action .image-section .main-image-wrapper .overlay-circle {
  position: absolute;
  border-radius: 50%;
  z-index: 1;
}

.call-to-action .image-section .main-image-wrapper .overlay-circle.circle-1 {
  width: 150px;
  height: 150px;
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 85%), color-mix(in srgb, var(--accent-color), transparent 95%));
  top: -20px;
  right: -30px;
  animation: pulse 4s ease-in-out infinite;
}

.call-to-action .image-section .main-image-wrapper .overlay-circle.circle-2 {
  width: 100px;
  height: 100px;
  background: linear-gradient(225deg, color-mix(in srgb, var(--heading-color), transparent 88%), color-mix(in srgb, var(--heading-color), transparent 96%));
  bottom: -15px;
  left: -25px;
  animation: pulse 3s ease-in-out infinite;
}

.call-to-action .image-section .stats-card {
  position: absolute;
  background: var(--surface-color);
  border-radius: 16px;
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: 0 15px 30px color-mix(in srgb, var(--default-color), transparent 90%), 0 0 0 1px color-mix(in srgb, var(--accent-color), transparent 90%);
  z-index: 3;
}

.call-to-action .image-section .stats-card .stat-icon {
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), transparent 20%));
  color: var(--contrast-color);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  font-size: 1.25rem;
}

.call-to-action .image-section .stats-card .stat-content h6 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--heading-color);
  margin: 0;
  line-height: 1;
}

.call-to-action .image-section .stats-card .stat-content span {
  font-size: 0.85rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-weight: 500;
}

.call-to-action .image-section .stats-card.card-1 {
  top: 15%;
  left: -20px;
  animation: float1 6s ease-in-out infinite;
}

.call-to-action .image-section .stats-card.card-2 {
  bottom: 20%;
  right: -25px;
  animation: float2 5s ease-in-out infinite;
}

@keyframes floatRotate {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-15px) rotate(180deg);
  }
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 0.7;
  }

  50% {
    transform: scale(1.1);
    opacity: 0.4;
  }
}

@keyframes float1 {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

@keyframes float2 {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(8px);
  }
}

@media (max-width: 991.98px) {
  .call-to-action {
    padding: 80px 0;
  }

  .call-to-action .cta-wrapper {
    padding: 3rem 2rem;
  }

  .call-to-action .content-section h2 {
    font-size: 2.25rem;
  }

  .call-to-action .content-section p {
    font-size: 1rem;
  }

  .call-to-action .features-grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .call-to-action .cta-actions .btn.btn-cta-primary {
    width: 100%;
  }

  .call-to-action .image-section {
    margin-top: 3rem;
  }

  .call-to-action .image-section .stats-card.card-1 {
    top: 10%;
    left: 0;
  }

  .call-to-action .image-section .stats-card.card-2 {
    bottom: 10%;
    right: 0;
  }
}

@media (max-width: 768px) {
  .call-to-action {
    padding: 60px 0;
  }

  .call-to-action .cta-wrapper {
    padding: 2rem 1.5rem;
  }

  .call-to-action .content-section h2 {
    font-size: 1.875rem;
  }

  .call-to-action .content-section .label-badge {
    padding: 0.6rem 1.25rem;
    font-size: 0.85rem;
  }

  .call-to-action .stats-card {
    padding: 0.75rem 1rem;
  }

  .call-to-action .stats-card .stat-icon {
    width: 35px;
    height: 35px;
    font-size: 1rem;
  }

  .call-to-action .stats-card .stat-content h6 {
    font-size: 1.1rem;
  }

  .call-to-action .stats-card .stat-content span {
    font-size: 0.8rem;
  }

  .call-to-action .overlay-circle {
    transform: scale(0.8);
  }
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  padding-top: 96px;
  position: relative;
  overflow: hidden;
  padding-bottom: 0px;
}

.hero .hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero .hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero .hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15, 42, 68, 0.92) 0%, rgba(15, 42, 68, 0.75) 100%);
}

.hero .container {
  z-index: 2;
}

.hero .badge-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: color-mix(in srgb, var(--contrast-color), transparent 85%);
  color: var(--contrast-color);
  padding: 8px 16px;
  border-radius: 24px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 24px;
}

.hero .badge-label i {
  font-size: 16px;
}

.hero h1 {
  font-size: 56px;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 24px;
  color: var(--contrast-color);
}

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

.hero .lead {
  font-size: 18px;
  line-height: 1.6;
  color: color-mix(in srgb, var(--contrast-color), transparent 20%);
  max-width: 580px;
  margin-bottom: 32px;
}

.hero .hero-actions {
  margin-bottom: 80px;
}

.hero .hero-actions .btn-main {
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 14px 32px;
  border-radius: 4px;
  font-weight: 600;
  transition: all 0.3s ease;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.hero .hero-actions .btn-main:hover {
  background: color-mix(in srgb, var(--accent-color), black 10%);
}

.hero .hero-actions .btn-outline {
  border: 2px solid var(--contrast-color);
  color: var(--contrast-color);
  padding: 12px 30px;
  border-radius: 4px;
  font-weight: 600;
  transition: all 0.3s ease;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero .hero-actions .btn-outline:hover {
  background: var(--contrast-color);
  color: var(--heading-color);
}

.hero .hero-counters {
  background: var(--accent-color);
  border-radius: 8px 8px 0 0;
  padding: 32px;
}

.hero .hero-counters .counter-item {
  text-align: center;
}

.hero .hero-counters .counter-item h3 {
  font-size: 36px;
  font-weight: 700;
  color: var(--contrast-color);
  margin-bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.2;
}

.hero .hero-counters .counter-item p {
  font-size: 14px;
  color: color-mix(in srgb, var(--contrast-color), transparent 20%);
  margin: 4px 0 0;
}

@media (max-width: 991px) {
  .hero {
    padding: 80px 0 0;
  }

  .hero h1 {
    font-size: 40px;
  }

  .hero .hero-actions {
    margin-bottom: 48px;
  }
}

@media (max-width: 575px) {
  .hero {
    padding: 64px 0 0;
  }

  .hero h1 {
    font-size: 32px;
  }

  .hero .lead {
    font-size: 16px;
  }

  .hero .hero-actions {
    flex-direction: column;
    margin-bottom: 32px;
  }

  .hero .hero-actions .btn-main,
  .hero .hero-actions .btn-outline {
    width: 100%;
    justify-content: center;
  }
}

.hero .service-card {
  height: 100%;
}

.hero .service-card .service-card-inner {
  background-color: var(--surface-color);
  border-radius: 8px;
  padding: 2rem;
  height: 100%;
  transition: all 0.3s ease;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.hero .service-card .service-card-inner:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.hero .service-card .service-card-inner:hover .service-icon {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.hero .service-card .service-card-inner .service-icon {
  width: 60px;
  height: 60px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}

.hero .service-card .service-card-inner h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--heading-color);
}

.hero .service-card .service-card-inner p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 0;
  font-size: 0.95rem;
  line-height: 1.6;
}

/*--------------------------------------------------------------
# Market Intelligence Section
--------------------------------------------------------------*/
.market-intelligence {
  padding-top: 60px;
  padding-bottom: 60px;
}

.market-intelligence .intro-content h3 {
  font-size: 34px;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 18px;
  color: var(--heading-color);
}

.market-intelligence .intro-content .lead {
  font-size: 17px;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  line-height: 1.7;
  margin-bottom: 35px;
}

.market-intelligence .intro-content .checklist {
  margin-bottom: 35px;
}

.market-intelligence .intro-content .checklist .check-item {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  padding: 16px 20px;
  background: color-mix(in srgb, var(--accent-color), transparent 94%);
  border-radius: 12px;
  border-left: 4px solid var(--accent-color);
  transition: all 0.3s ease;
}

.market-intelligence .intro-content .checklist .check-item:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 88%);
  transform: translateX(6px);
}

.market-intelligence .intro-content .checklist .check-item:last-child {
  margin-bottom: 0;
}

.market-intelligence .intro-content .checklist .check-item i {
  font-size: 22px;
  color: var(--accent-color);
  flex-shrink: 0;
  margin-top: 2px;
}

.market-intelligence .intro-content .checklist .check-item h5 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--heading-color);
}

.market-intelligence .intro-content .checklist .check-item p {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 0;
  line-height: 1.5;
}

.market-intelligence .intro-content .action-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.market-intelligence .intro-content .action-btns .btn {
  padding: 14px 32px;
  font-weight: 600;
  font-size: 15px;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.market-intelligence .intro-content .action-btns .btn.btn-accent {
  background: var(--accent-color);
  color: var(--contrast-color);
  border: 2px solid var(--accent-color);
}

.market-intelligence .intro-content .action-btns .btn.btn-accent:hover {
  background: color-mix(in srgb, var(--accent-color), #000 15%);
  border-color: color-mix(in srgb, var(--accent-color), #000 15%);
  box-shadow: 0 8px 24px color-mix(in srgb, var(--accent-color), transparent 55%);
}

.market-intelligence .intro-content .action-btns .btn.btn-ghost {
  background: transparent;
  color: var(--accent-color);
  border: 2px solid color-mix(in srgb, var(--accent-color), transparent 40%);
}

.market-intelligence .intro-content .action-btns .btn.btn-ghost:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-color: var(--accent-color);
}

.market-intelligence .showcase-image {
  position: relative;
  text-align: center;
}

.market-intelligence .showcase-image::before {
  content: "";
  position: absolute;
  top: 10%;
  left: 10%;
  width: 80%;
  height: 80%;
  background: radial-gradient(circle, color-mix(in srgb, var(--accent-color), transparent 85%) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

.market-intelligence .showcase-image img {
  position: relative;
  z-index: 1;
  max-width: 100%;
  height: auto;
  border-radius: 15px;
}

.market-intelligence .highlight-box {
  background: var(--surface-color);
  padding: 30px 28px;
  border-radius: 16px;
  height: 100%;
  border-left: 5px solid var(--accent-color);
  box-shadow: 0 4px 20px color-mix(in srgb, var(--default-color), transparent 92%);
  transition: all 0.3s ease;
}

.market-intelligence .highlight-box:hover {
  box-shadow: 0 8px 35px color-mix(in srgb, var(--default-color), transparent 86%);
  transform: translateY(-6px);
}

.market-intelligence .highlight-box .highlight-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.market-intelligence .highlight-box .icon-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--accent-color), transparent 85%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.market-intelligence .highlight-box .icon-circle i {
  font-size: 26px;
  color: var(--accent-color);
}

.market-intelligence .highlight-box .counter-badge {
  text-align: right;
}

.market-intelligence .highlight-box .counter-badge .purecounter {
  font-size: 30px;
  font-weight: 800;
  color: var(--accent-color);
  line-height: 1;
  display: block;
}

.market-intelligence .highlight-box .counter-badge .counter-unit {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: color-mix(in srgb, var(--default-color), transparent 45%);
}

.market-intelligence .highlight-box h4 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--heading-color);
}

.market-intelligence .highlight-box p {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 992px) {
  .market-intelligence .intro-content {
    margin-bottom: 20px;
  }
}

@media (max-width: 768px) {
  .market-intelligence .intro-content h3 {
    font-size: 26px;
  }

  .market-intelligence .intro-content .checklist .check-item {
    padding: 14px 16px;
  }

  .market-intelligence .intro-content .action-btns .btn {
    width: 100%;
    text-align: center;
    padding: 12px 24px;
  }
}
