/*!
Theme Name: manaslu advertising
Author: team developer
Author URI: https://www.manasluaadertising.com
Description: Modern Advertising Agency Theme
Version: 1.0.0
Tested up to: 7.4
Requires PHP: 8.1
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: manaslu-advertising
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

manaslu advertising is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.
*/

/********** Template CSS **********/
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@200;300;400;500;600;700;800;900&display=swap');

:root {
  --primary: #5b8c51;
  --secondary: #eddd5e;
  --light: #f7f7f7;
  --dark: #404a3d;
  --font-primary: 'Montserrat', 'Segoe UI', sans-serif;
  
  /* Fluid Typography & Premium Settings */
  --text-xs: clamp(0.75rem, 0.70rem + 0.25vw, 1.00rem);
  --text-sm: clamp(0.875rem, 0.80rem + 0.35vw, 1.25rem);
  --text-base: clamp(1.00rem, 0.90rem + 0.50vw, 1.60rem);
  --text-lg: clamp(1.125rem, 1.00rem + 0.60vw, 2.00rem);
  --text-xl: clamp(1.25rem, 1.10rem + 0.75vw, 2.75rem);
  --text-2xl: clamp(1.50rem, 1.30rem + 1.00vw, 3.50rem);
  --text-3xl: clamp(1.875rem, 1.60rem + 1.35vw, 5.00rem);
  --text-4xl: clamp(2.25rem, 1.90rem + 1.75vw, 7.50rem);
  --text-5xl: clamp(3.00rem, 2.50rem + 2.50vw, 10.00rem);
}

/* Global Font Application */
body, h1, h2, h3, h4, h5, h6, p, a, span, div, input, button, select, textarea, li, label, th, td {
  font-family: var(--font-primary) !important;
}

/* Protect Icon Fonts from being overwritten */
.fa, .fas, .far, .fab, .glyphicon, [class*="fa-"], [class*="icon-"] {
  font-family: "Font Awesome 5 Free", "Font Awesome 6 Free", FontAwesome !important;
}

/* Add protection for Bootstrap Icons */
.bi {
    font-family: 'bootstrap-icons' !important;
    font-weight: normal !important;
}

html, body {
  font-size: var(--text-base);
  line-height: 1.65;
  color: #2c3e50;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-top: 0;
  margin-bottom: 1rem;
  color: #1a1a1a;
  letter-spacing: -0.02em;
}

h1 { font-size: var(--text-5xl); font-weight: 800; }
h2 { font-size: var(--text-4xl); }
h3 { font-size: var(--text-3xl); }
h4 { font-size: var(--text-2xl); }
h5 { font-size: var(--text-xl); }
h6 { font-size: var(--text-lg); text-transform: uppercase; letter-spacing: 0.05em; }

p {
  margin-bottom: 1.5rem;
  max-width: 75ch;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  overflow-x: hidden;
}

.back-to-top {
  position: fixed;
  display: none;
  right: 30px;
  bottom: 30px;
  z-index: 99;
}

.fw-bold {
  font-weight: 700 !important;
}

.fw-medium {
  font-weight: 600 !important;
}

.fw-semi-bold {
  font-weight: 500 !important;
}

/*** Spinner ***/
#spinner {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease-out, visibility 0s linear 0.5s;
  z-index: 99999;
}

#spinner.show {
  transition: opacity 0.5s ease-out, visibility 0s linear 0s;
  visibility: visible;
  opacity: 1;
}

/*** Button ***/
.btn {
  transition: 0.5s;
  font-weight: 500;
}

.btn-primary,
.btn-outline-primary:hover {
  color: var(--light);
}

.btn-secondary,
.btn-outline-secondary:hover {
  color: var(--dark);
}

.btn-square {
  width: 38px;
  height: 38px;
}

.btn-sm-square {
  width: 32px;
  height: 32px;
}

.btn-lg-square {
  width: 48px;
  height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: normal;
}

/*** Navbar ***/
.navbar.sticky-top {
  position: sticky;
  top: 0;
  transition: 0.5s;
  width: 100%;
}

.navbar .navbar-nav .nav-link {
  margin-right: 35px;
  padding: 25px 0;
  color: var(--dark);
  font-size: 18px;
  font-weight: 500;
  outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
  color: var(--primary);
}

.navbar .dropdown-toggle::after {
  border: none;
  content: "\f107";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  vertical-align: middle;
  margin-left: 8px;
}

@media (max-width: 991.98px) {
  .navbar .navbar-nav .nav-link {
    margin-right: 0;
    padding: 10px 0;
  }

  .navbar .navbar-nav {
    border-top: 1px solid #eeeeee;
  }
}

@media (min-width: 992px) {
  .navbar .nav-item .dropdown-menu {
    display: block;
    border: none;
    margin-top: 0;
    top: 150%;
    opacity: 0;
    visibility: hidden;
    transition: 0.5s;
  }

  .navbar .nav-item:hover .dropdown-menu {
    top: 100%;
    visibility: visible;
    transition: 0.5s;
    opacity: 1;
  }
}

.custom-logo-link img {
  height: 80px;
  width: 120px;
}

.navbar {
  border-bottom: 1px solid #dadada;
  margin-bottom: 2px;
  position: relative;
  z-index: 9999;
  background-color: #fff;
}

/*** Header ***/
.carousel-caption {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  background: rgba(0, 0, 0, 0.1);
  z-index: 1;
}

.carousel-control-prev,
.carousel-control-next {
  width: 15%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 3rem;
  background-color: var(--primary);
  border: 10px solid var(--primary);
}

@media (max-width: 768px) {
  #header-carousel .carousel-item {
    position: relative;
    min-height: 450px;
  }

  #header-carousel .carousel-item img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

.page-header {
  /* Ensure folder is named 'images' and file is 'banner.jpg' (lowercase) on server */
  background: url('images/banner.jpg') center center no-repeat; 
  background-size: cover;
}

.page-header .breadcrumb-item + .breadcrumb-item::before {
  color: var(--light);
}

.page-header .breadcrumb-item,
.page-header .breadcrumb-item a {
  font-size: 18px;
  color: var(--light);
}

/*** Footer ***/
.footer {
  color: #b0b9ae;
}

.footer .btn.btn-link {
  display: block;
  margin-bottom: 5px;
  padding: 0;
  text-align: left;
  color: #b0b9ae;
  font-weight: normal;
  text-transform: capitalize;
  transition: 0.3s;
}

.footer .btn.btn-link::before {
  position: relative;
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-right: 10px;
}

.footer .btn.btn-link:hover {
  color: var(--light);
  letter-spacing: 1px;
  box-shadow: none;
}

/* Custom Elements */
.about-img {
  width: 100%;
  display: block;
}

.why-us-img {
  height: 64px !important;
  width: 64px;
}

.ow-carousel {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
}

.line-title {
  position: relative;
  width: 400px;
}

.line-title::before,
.line-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 4px;
  border-radius: 2px;
}

.line-title::before {
  width: 100%;
  background: #f2f2f2;
}

.line-title::after {
  width: 32px;
  background: #e73700;
}

/* Responsive Typography Adjustments */
@media (min-width: 992px) and (max-width: 1199px) {
  h2 {
    margin-bottom: 32px;
  }
  h3 {
    margin: 0 0 8px;
    font-size: 24px;
    line-height: 32px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  h2 {
    margin-bottom: 32px;
  }
  h3 {
    margin: 0 0 8px;
    font-size: 24px;
    line-height: 32px;
  }
  .line-title {
    width: 330px;
  }
}

@media (max-width: 767px) {
  body {
    font-size: 14px;
  }
  h2 {
    margin-bottom: 20px;
  }
  h3 {
    margin: 0 0 8px;
    font-size: 19px;
    line-height: 24px;
  }
  .line-title {
    width: 250px;
  }
}

/* Owl Carousel Styles */
.owl-stage-outer {
  min-width: 100%;
  overflow: hidden;
}

.owl-nav {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  width: 100%;
}

.owl-nav .owl-prev,
.owl-nav .owl-next {
  transform: translateY(-50%);
  background: #000;
  color: #fff;
  padding: 10px;
  font-size: 20px;
  display: flex;
}

.star {
  position: absolute;
  height: 100px;
  width: 100px;
  opacity: 0.6;
  top: 126px;
  left: 170px;
  z-index: 99;
}

.chilli {
  position: absolute;
  height: 100px;
  width: 100px;
  opacity: 0.6;
  top: 339px;
  left: 354px;
  z-index: 99;
}

.gallery-img {
  height: 355px !important;
  width: 100%;
  object-fit: cover;
}

.service-icon img {
  height: 100% !important;
}

.banner {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  margin: 0 20px !important;
}

.top-banner {
  position: relative;
}

.copy-div {
  position: absolute;
  top: 28%;
  left: 5%;
  width: 80%;
}

@keyframes slideInFromLeft {
  0% {
    transform: translateX(-100%);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

.slogan {
  animation: slideInFromLeft 1s ease-in-out;
  transform: translateX(-50%, -50%);
  color: #fdee00;
  font-size: 3vw;
  font-weight: 700;
}

@keyframes typewriter {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}

@keyframes blink-caret {
  0%,
  100% {
    border-color: transparent;
  }
  50% {
    border-color: orange;
  }
}

.copy {
  color: #fff;
  font-size: 1.5vw;
  width: fit-content;
  font-weight: 600;
  overflow: hidden;
  white-space: nowrap;
  border-right: 0.15em solid orange;
  animation: typewriter 4s steps(40, end) forwards, blink-caret 0.75s step-end;
}

.overlay {
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.product-container {
  height: 70%;
  width: 60%;
  background-color: rgba(212, 206, 206, 0.9);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0px 20px;
  border-top-left-radius: 50px;
  border-bottom-right-radius: 50px;
  margin-top: 20px;
}

.product-desc p {
  color: #000 !important;
}

.related-content {
  width: 80%;
  margin: 0px 10%;
  height: 500px;
  position: relative;
  bottom: 114px;
  z-index: 999;
}

/* Text Utility Classes */
.text-white {
  color: #ffffff;
}

.text-4xl {
  font-size: 2.25rem;
}

.md\:text-5xl {
  font-size: 3rem;
}

.xl\:text-6xl {
  font-size: 4rem;
}

.font-semibold {
  font-weight: 600;
}

.max-w-3xl {
  max-width: 48rem;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.mb-16 {
  margin-bottom: 4rem;
}

.mb-4 {
  margin-bottom: 1rem;
}

.leading-snug {
  line-height: 1.375;
}

.grid-offer {
  display: grid;
}

.text-left {
  text-align: left;
}

.sm\:grid-cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.md\:grid-cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.gap-5 {
  gap: 1rem;
}

.max-w-5xl {
  max-width: 64rem;
}

.text-2xl {
  font-size: 1.5rem;
}

.xl\:text-3xl {
  font-size: 1.875rem;
}

.text-gray-400 {
  color: #cbd5e0;
}

.lg\:pl-48 {
  padding-left: 12rem;
}

.lg\:pr-44 {
  padding-right: 11rem;
}

.lg\:pr-52 {
  padding-right: 13rem;
}

.capitalize {
  text-transform: capitalize;
}

.relative {
  position: relative;
}

/* Services Section */
.card-service {
  background-color: #2d3748;
  padding: 2.5rem;
  position: relative;
}

.card-service::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  transition: 0.6s;
  z-index: 0;
  background-color: #4f46e5;
}

.card-service:hover {
  box-shadow: 0.063rem 0.063rem 1.25rem 0.375rem rgba(0, 0, 0, 0.53);
}

.card-service:nth-child(1)::before {
  bottom: 0;
  right: 0;
  clip-path: circle(calc(6.25rem + 7.5vw) at 100% 100%);
}

.card-service:nth-child(2)::before {
  bottom: 0;
  left: 0;
  clip-path: circle(calc(6.25rem + 7.5vw) at 0% 100%);
}

.card-service:nth-child(3)::before {
  top: 0;
  right: 0;
  clip-path: circle(calc(6.25rem + 7.5vw) at 100% 0%);
}

.card-service:nth-child(4)::before {
  top: 0;
  left: 0;
  clip-path: circle(calc(6.25rem + 7.5vw) at 0% 0%);
}

.card-service p {
  transition: 0.8s;
}

.card-service:hover::before {
  clip-path: circle(110vw at 100% 100%);
}

.card-service:hover p {
  color: #fff;
}

@media screen and (min-width: 62.5rem) {
  .circle {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 0;
  }
}

.card-service:nth-child(1) .circle {
  bottom: 0;
  right: 0;
  clip-path: circle(calc(6.25rem + 7.5vw) at 100% 100%);
}

.card-service:nth-child(2) .circle {
  bottom: 0;
  left: 0;
  clip-path: circle(calc(6.25rem + 7.5vw) at 0% 100%);
}

.card-service:nth-child(3) .circle {
  top: 0;
  right: 0;
  clip-path: circle(calc(6.25rem + 7.5vw) at 100% 0%);
}

.card-service:nth-child(4) .circle {
  top: 0;
  left: 0;
  clip-path: circle(calc(6.25rem + 7.5vw) at 0% 0%);
}

.card-service {
  max-width: 100% !important;
}

/* What We Offer Grid */
@media (min-width: 640px) {
  .grid-offer {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  .grid-offer {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .grid-offer {
    grid-template-columns: repeat(2, 1fr);
  }
  .card-service {
    text-align: left;
  }
}

@media (max-width: 576px) {
  .top-banner {
    height: 23vh !important;
  }
  .slogan {
    font-size: 7vw;
  }

  .copy {
    font-size: 2vw;
  }
  .lg\:pl-48 {
    padding-left: 1px;
  }

  .lg\:pr-44 {
    padding-right: 1px;
  }
  .about-experience {
    padding: 20px;
  }
}

/*======================
    404 Page
=======================*/

.page_404 {
  padding: 40px 0;
  background: #fff;
}

.page_404 img {
  width: 100%;
}

.four_zero_four_bg {
  background-image: url(https://cdn.dribbble.com/users/285475/screenshots/2083086/dribbble_1.gif);
  height: 400px;
  background-position: center;
}

.four_zero_four_bg h1 {
  font-size: 80px;
}

.four_zero_four_bg h3 {
  font-size: 80px;
}

.link_404 {
  color: #fff !important;
  padding: 10px 20px;
  background: #39ac31;
  margin: 20px 0;
  display: inline-block;
}

.contant_box_404 {
  margin-top: -50px;
}

/* Hero Section */
.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  position: relative;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
}

/* Desktop Large (1400px - 1599px) */
@media (min-width: 1400px) and (max-width: 1599px) {
  .hero-title {
    margin-bottom: 2.5rem;
    line-height: 1.25;
  }
  .hero-subtitle {
    font-size: 1.6rem;
    margin-bottom: 2.5rem;
    max-width: 950px;
    line-height: 1.75;
  }
}

/* Desktop Extra Large (1600px+) */
@media (min-width: 1600px) {
  .hero-title {
    margin-bottom: 2.75rem;
    line-height: 1.25;
  }
  .hero-subtitle {
    font-size: 1.7rem;
    margin-bottom: 2.65rem;
    max-width: 1050px;
    line-height: 1.8;
  }
}

/* Hero Section (Keyword Animation) */
.hero-section {
  position: relative;
  min-height: var(--hero-min-height, 600px);
  width: 100%;
  overflow: hidden;
  background: linear-gradient(135deg, var(--hero-primary, #006BBC) 0%, var(--hero-secondary, #F58220) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-bg-keywords {
  position: absolute;
  inset: 0;
  opacity: .12;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.keyword-row {
  position: absolute;
  width: max-content;
  white-space: nowrap;
  font-size: 1.2rem;
  font-weight: 900;
  letter-spacing: .15em;
  color: #fff;
  animation: scrollKeywords linear infinite;
  will-change: transform;
  display: flex;
}

.keyword {
  display: inline-block;
  padding: 0 2rem;
}

@keyframes scrollKeywords {
  from { transform: translateX(100vw); }
  to { transform: translateX(-100%); }
}

.hero-gradient-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, transparent 0%, rgba(0, 4, 40, .7) 100%);
  z-index: 2;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 10;
  width: 100%;
  padding: 2rem 1.25rem;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.hero-title {
  font-size: clamp(2rem, 5vw, 3.50rem);
  font-weight: 900;
  line-height: 1.15;
  margin: 0 0 1.25rem;
  color: var(--hero-secondary);
  text-shadow: 0 1px 1px rgba(255, 255, 255, 0.5);
  animation: fadeInUp .8s ease-out forwards;
  opacity: 0;
  word-wrap: break-word;
  letter-spacing: -.02em;
}

.hero-subtitle {
  font-size: clamp(1.25rem, 2vw, 2rem);
  line-height: 1.6;
  color: rgba(255, 255, 255, .9);
  margin: 0 0 1.75rem;
  animation: fadeInUp .8s ease-out .2s forwards;
  opacity: 0;
  word-wrap: break-word;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.hero-cta {
  animation: fadeInUp .8s ease-out .4s forwards;
  opacity: 0;
}

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

.hero-floating-elements {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 3;
}

.floating-circle {
  position: absolute;
  border-radius: 50%;
  opacity: .08;
  filter: blur(25px);
}

.circle-1 {
  width: clamp(120px, 20vw, 300px);
  height: clamp(120px, 20vw, 300px);
  top: 10%;
  right: 5%;
  background: radial-gradient(circle, var(--hero-accent) 0%, transparent 70%);
  animation: float 8s ease-in-out infinite;
}

.circle-2 {
  width: clamp(100px, 18vw, 220px);
  height: clamp(100px, 18vw, 220px);
  bottom: 15%;
  left: 10%;
  background: radial-gradient(circle, var(--hero-secondary) 0%, transparent 70%);
  animation: float 10s ease-in-out infinite reverse;
}

.circle-3 {
  width: clamp(110px, 19vw, 260px);
  height: clamp(110px, 19vw, 260px);
  top: 50%;
  left: 50%;
  background: radial-gradient(circle, var(--hero-primary) 0%, transparent 70%);
  animation: float 12s ease-in-out infinite;
  animation-delay: -2s;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(20px, -20px); }
}

/* About Us Section */
.about-section {
  position: relative;
  background: linear-gradient(180deg, #0a0a0a 0%, #1a1a2e 50%, #0a0a0a 100%);
  padding: 80px 0;
  overflow: hidden;
}

.ad-bg {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  pointer-events: none;
}

.float-icon {
  position: absolute;
  font-size: 60px;
  opacity: 0.08;
  animation: float 8s ease-in-out infinite;
}

.float-icon:nth-child(1) { top: 10%; left: 10%; animation-delay: 0s; }
.float-icon:nth-child(2) { top: 20%; right: 15%; animation-delay: 2s; }
.float-icon:nth-child(3) { bottom: 20%; left: 20%; animation-delay: 4s; }
.float-icon:nth-child(4) { bottom: 15%; right: 10%; animation-delay: 6s; }

.section-header {
  text-align: center;
  margin-bottom: clamp(40px, 6vw, 80px);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  background: rgba(245, 130, 32, 0.15);
  border: 1px solid rgba(245, 130, 32, 0.3);
  border-radius: 50px;
  font-size: clamp(0.75rem, 1.5vw, 0.875rem);
  font-weight: 700;
  letter-spacing: 2px;
  color: #F58220;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.title {
  font-size: clamp(2.2rem, 5vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.2;
  letter-spacing: -.02em;
  background: linear-gradient(135deg, #006BBC 0%, #F58220 50%, #006BBC 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 5s ease-in-out infinite;
}

.description {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255, 255, 255, .75);
  line-height: 1.6;
}

.section-header .description {
  max-width: 800px;
  margin: 0 auto;
}

.why-left .title {
  margin-bottom: 0;
}

.content-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: stretch;
}

@media (min-width: 768px) {
  .content-grid {
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
  }
}

.images-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(12px, 2vw, 30px);
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  max-width: 500px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .images-grid {
    max-width: none;
  }
}

.since-card {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: clamp(100px, 15vw, 180px);
  height: clamp(100px, 15vw, 180px);
  background: linear-gradient(135deg, rgba(0, 107, 188, .95), rgba(245, 130, 32, .95));
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 15px 40px rgba(0, 0, 0, .6);
  z-index: 5;
  border: 3px solid rgba(255, 255, 255, .2);
}

.since-label {
  font-size: clamp(10px, 1.2vw, 12px);
  font-weight: 600;
  color: rgba(255, 255, 255, .8);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.since-year {
  font-size: clamp(28px, 5vw, 56px);
  font-weight: 900;
  color: #fff;
  margin: 4px 0 0;
  line-height: 1;
}

.img-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  width: 100%;
  height: 100%;
  transition: transform .5s cubic-bezier(.4, 0, .2, 1);
}

.img-card:hover {
  transform: translateY(-8px);
}

@media (min-width: 768px) {
  .img-card:hover {
    transform: translateY(-12px) scale(1.05);
  }
}

.img-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}

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

.img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 107, 188, .7), rgba(245, 130, 32, .7));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity .4s ease;
}

.img-card:hover .img-overlay {
  opacity: 1;
}

.img-overlay i {
  font-size: 32px;
  color: #fff;
}

.content-side {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.info-grid {
  display: grid;
  gap: 20px;
}

.info-card {
  padding: 24px;
  background: rgba(0, 107, 188, .08);
  border: 1px solid rgba(0, 107, 188, .2);
  border-radius: 12px;
  backdrop-filter: blur(10px);
  transition: all .4s cubic-bezier(.4, 0, .2, 1);
}

.info-card:hover {
  background: rgba(245, 130, 32, .12);
  border-color: rgba(245, 130, 32, .4);
  transform: translateX(8px);
  box-shadow: 0 12px 30px rgba(245, 130, 32, .15);
}

@media (min-width: 768px) {
  .info-card:hover {
    transform: translateX(12px);
    box-shadow: 0 15px 40px rgba(245, 130, 32, .2);
  }
}

.info-card h5 {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 700;
  color: #F58220;
  margin-bottom: 10px;
}

.info-card p {
  font-size: clamp(0.95rem, 1.8vw, 1rem);
  color: rgba(255, 255, 255, .7);
  margin: 0;
  line-height: 1.6;
}

/* Why Choose Us Section */
.why-section {
  position: relative;
  background: linear-gradient(180deg, #0a0a0a 0%, #1a1a2e 50%, #0a0a0a 100%);
  padding: 80px 0;
  overflow: hidden;
}

.why-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
  align-items: center;
}

@media (min-width: 968px) {
  .why-content {
    grid-template-columns: 1fr 1fr;
    gap: 80px;
  }
}

.why-left {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.why-left > .badge {
  align-self: flex-start;
}

.features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.feature {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  font-size: clamp(1rem, 2vw, 1.1rem);
  color: rgba(255, 255, 255, .85);
  line-height: 1.6;
}

.feature-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, #006BBC, #F58220);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 16px;
}

.stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 640px) {
  .stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: clamp(30px, 4vw, 40px);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  backdrop-filter: blur(10px);
  transition: all .4s cubic-bezier(.4, 0, .2, 1);
  text-align: center;
}

.stat.highlight {
  background: rgba(245, 130, 32, .1);
  border-color: rgba(245, 130, 32, .3);
}

.stat:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 20px 60px rgba(0, 107, 188, .3);
}

.stat.highlight:hover {
  box-shadow: 0 20px 60px rgba(245, 130, 32, .3);
}

.stat-icon {
  font-size: clamp(3rem, 5vw, 4rem);
  margin-bottom: 16px;
  filter: drop-shadow(0 5px 20px rgba(0, 107, 188, .5));
}

.stat-num {
  font-size: clamp(2.5rem, 6vw, 3.5rem);
  font-weight: 900;
  color: #fff;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: clamp(0.8rem, 1.5vw, 1rem);
  color: rgba(255, 255, 255, .7);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Client Sector */
.client-sector {
  position: relative;
  background-color: #0a0a0a;
  background: linear-gradient(180deg, #0a0a0a 0%, #1a1a2e 50%, #0a0a0a 100%);
  padding: 80px 0 1px 0;
  overflow: hidden;
}

.marquee-container {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.marquee-track {
  display: flex;
  gap: 30px;
  animation: marquee-scroll var(--duration, 25s) linear infinite;
  will-change: transform;
}

.marquee-track:hover {
  animation-play-state: paused;
}

@keyframes marquee-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.client-card {
  flex-shrink: 0;
  width: clamp(280px, 30vw, 320px);
  padding: 40px 30px;
  background: rgba(0, 107, 188, .08);
  border: 1px solid rgba(0, 107, 188, .2);
  border-radius: 20px;
  backdrop-filter: blur(10px);
  text-align: center;
  transition: all .4s cubic-bezier(.4, 0, .2, 1);
}

.client-card:hover {
  background: rgba(245, 130, 32, .12);
  border-color: rgba(245, 130, 32, .4);
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 20px 60px rgba(245, 130, 32, .3);
}

.client-logo {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.client-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: filter .4s ease;
}

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

.client-name {
  font-size: clamp(1.2rem, 2vw, 1.4rem);
  font-weight: 700;
  color: #F58220;
  margin-bottom: 12px;
}

.client-description {
  font-size: clamp(0.9rem, 1.5vw, 0.95rem);
  color: rgba(255, 255, 255, .7);
  line-height: 1.6;
  margin: 0;
}

@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* Activities Section */
.activities-section {
  background: linear-gradient(180deg, #0a0a0a 0%, #1a1a2e 50%, #0a0a0a 100%);
  padding: 60px 20px;
  overflow: hidden;
}

@media (min-width: 768px) {
  .activities-section { padding: 100px 20px; }
}

@media (min-width: 1200px) {
  .activities-section { padding: 120px 20px; }
}

.activities-header {
  text-align: center;
  margin-bottom: 60px;
}

.activities-title {
  font-size: clamp(1.8rem, 5vw, 4rem);
  font-weight: 900;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #0072BC 0%, #F58220 50%, #00d4ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.activities-subtitle {
  font-size: clamp(0.95rem, 2vw, 1.3rem);
  color: rgba(255, 255, 255, 0.7);
  max-width: 600px;
  margin: 0 auto;
}

.activities-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 576px) {
  .activities-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 992px) {
  .activities-grid { grid-template-columns: repeat(3, 1fr); gap: 30px; }
}

.activity-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  transition: transform 0.4s ease;
}

.activity-card:hover {
  transform: translateY(-12px);
}

.activity-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

.activity-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.95), rgba(0, 0, 0, 0));
  opacity: 0;
  transition: opacity 0.4s ease;
  display: flex;
  align-items: flex-end;
  padding: 30px;
}

.activity-card:hover .activity-overlay {
  opacity: 1;
}

.activity-info h3 {
  font-size: 1.5rem;
  color: #fff;
  margin: 0 0 10px 0;
  font-weight: 700;
}

.activity-info p {
  color: rgba(255, 255, 255, 0.8);
  margin: 0 0 15px 0;
  font-size: 0.9rem;
}

.lightbox-info {
  padding: 20px;
  background: rgba(0, 114, 188, 0.1);
}

@media (min-width: 768px) {
  .lightbox-info {
    width: 350px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}

/* Overview Section */
.overview-section {
  position: relative;
  background: linear-gradient(180deg, #0a0a0a 0%, #1a1a2e 50%, #0a0a0a 100%);
  padding: 80px 20px;
  overflow: hidden;
}

.overview-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}

@media (min-width: 992px) {
  .overview-content { grid-template-columns: 1fr 1fr; }
}

.overview-text {
  text-align: left;
}

.overview-text .badge {
  margin-bottom: 24px;
}

.overview-text .title {
  text-align: left;
  margin-bottom: 24px;
}

.overview-text .description {
  text-align: left;
  max-width: none;
  margin: 0 0 32px 0;
}

.overview-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
  aspect-ratio: 4/3;
}

.overview-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.overview-image:hover img {
  transform: scale(1.05);
}

/* Workflow / Process Section */
.workflow-container {
  position: relative;
  z-index: 1;
  max-width: 1400px;
  margin: 0 auto;
}

.workflow-header {
  text-align: center;
  margin-bottom: clamp(50px, 8vw, 80px);
  padding: 0 20px;
}

.workflow-scroll-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 40px 0;
}

.workflow-track {
  display: flex;
  gap: 2rem;
  animation: scroll-left 40s linear infinite;
  will-change: transform;
  width: fit-content;
}

.workflow-track:hover {
  animation-play-state: paused;
}

@keyframes scroll-left {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.workflow-step-card {
  position: relative;
  min-width: clamp(280px, 30vw, 320px);
  max-width: clamp(280px, 30vw, 320px);
  padding: 2.5rem 2rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  backdrop-filter: blur(10px);
  transition: all .5s cubic-bezier(.4, 0, .2, 1);
  overflow: hidden;
  box-shadow: none;
}

.workflow-step-card:hover {
  transform: translateY(-15px) scale(1.05);
  border-color: rgba(245, 130, 32, .5);
  box-shadow: 0 30px 80px rgba(245, 130, 32, .4);
}

.step-number {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: clamp(2.5rem, 4vw, 3rem);
  font-weight: 900;
  color: rgba(0, 114, 188, .15);
  line-height: 1;
  transition: all .3s;
}

.workflow-step-card:hover .step-number {
  color: rgba(245, 130, 32, .3);
  transform: scale(1.2);
}

.step-icon-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.step-icon-circle {
  width: clamp(80px, 10vw, 100px);
  height: clamp(80px, 10vw, 100px);
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(0, 114, 188, .3), rgba(245, 130, 32, .3));
  border: 3px solid rgba(255, 255, 255, .1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .5s cubic-bezier(.4, 0, .2, 1);
}

.workflow-step-card:hover .step-icon-circle {
  transform: scale(1.15) rotate(360deg);
  background: linear-gradient(135deg, rgba(245, 130, 32, .5), rgba(0, 114, 188, .5));
  border-color: rgba(255, 255, 255, .3);
}

.step-emoji {
  font-size: clamp(2.5rem, 4vw, 3rem);
}

.step-content {
  text-align: center;
  position: relative;
  z-index: 2;
}

.step-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: .75rem;
}

.workflow-step-card:hover .step-title {
  color: #F58220;
}

.step-desc {
  font-size: .95rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, .65);
  margin: 0;
}

.scroll-fade {
  position: absolute;
  top: 0;
  bottom: 0;
  width: clamp(50px, 15vw, 150px);
  pointer-events: none;
  z-index: 10;
}

.scroll-fade-left {
  left: 0;
  background: linear-gradient(90deg, #0a0a0a 0%, transparent 100%);
}

.scroll-fade-right {
  right: 0;
  background: linear-gradient(270deg, #0a0a0a 0%, transparent 100%);
}

/* Why Advertising Section */
.why-ad-section {
  position: relative;
  background: linear-gradient(180deg, #0a0a0a 0%, #1a1a2e 50%, #0a0a0a 100%);
  padding: 80px 20px;
  overflow: hidden;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: .15;
  z-index: 0;
}

.orb-1 {
  width: 600px;
  height: 600px;
  background: #006BBC;
  top: -20%;
  left: -10%;
}

.orb-2 {
  width: 500px;
  height: 500px;
  background: #F58220;
  bottom: -10%;
  right: -5%;
}

.heading-wrapper, .intro-text, .cards-grid, .cta-wrapper {
  position: relative;
  z-index: 1;
}

.heading-wrapper {
  text-align: center;
  margin-bottom: 4rem;
}

.intro-text {
  max-width: 700px;
  margin: 0 auto 4rem;
  text-align: center;
}

.intro-text p {
  font-size: clamp(1rem, 2vw, 1.1rem);
  line-height: 1.7;
  color: #ccc;
}

.cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto 3rem;
}

@media (min-width: 640px) {
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .cards-grid { grid-template-columns: repeat(4, 1fr); }
}

.feature-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 2.5rem;
  transition: all .3s ease;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  backdrop-filter: blur(10px);
}

.feature-card:hover {
  background: rgba(255, 255, 255, .06);
  transform: translateY(-5px);
}

.card-icon {
  font-size: clamp(2rem, 4vw, 2.5rem);
  margin-bottom: 1.5rem;
}

.card-title {
  font-size: clamp(1.1rem, 2vw, 1.25rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
}

.card-desc {
  font-size: clamp(0.9rem, 1.5vw, 0.95rem);
  color: #999;
  line-height: 1.6;
}

.cta-wrapper {
  text-align: center;
}

/* Types of Advertising */
.types-ad-section {
  padding: 80px 20px;
  background: linear-gradient(180deg, #0a0a0a 0%, #1a1a2e 50%, #0a0a0a 100%);
  position: relative;
  overflow: hidden;
}

.types-ad-section .section-header {
  text-align: center;
  margin-bottom: clamp(50px, 8vw, 80px);
}

.types-ad-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
  max-width: 1400px;
  margin: 0 auto;
}

@media (max-width: 1200px) {
  .types-ad-grid { grid-template-columns: repeat(3, 1fr); }
}

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

@media (max-width: 767px) {
  .types-ad-grid { grid-template-columns: 1fr; }
}

.type-ad-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  backdrop-filter: blur(10px);
}

.type-ad-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  border-color: #F58220;
}

.type-ad-image {
  height: 220px;
  overflow: hidden;
}

.type-ad-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.type-ad-card:hover .type-ad-image img {
  transform: scale(1.1);
}

.type-ad-content {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.type-ad-title {
  font-size: clamp(1.3rem, 3vw, 1.5rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
}

.type-ad-subtitle {
  font-size: clamp(0.9rem, 2vw, 1rem);
  font-weight: 600;
  color: #F58220;
  margin-bottom: 1rem;
}

/* Final CTA Section */
.final-cta-section {
  position: relative;
  background: linear-gradient(180deg, #0a0a0a 0%, #1a1a2e 100%);
  padding: 80px 20px;
  text-align: center;
  color: #fff;
  border: none !important;
  margin-top: -5px;
  z-index: 10;
}

.final-cta-section h2 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 900;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #006BBC 0%, #F58220 50%, #006BBC 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.final-cta-section p {
  font-size: clamp(1rem, 2vw, 1.2rem);
  max-width: 800px;
  margin: 0 auto 2.5rem auto;
  opacity: 0.9;
}

/* Unified CTA Button */
.unified-cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 40px;
  background: linear-gradient(135deg, #F58220 0%, #ff9d54 100%);
  color: #fff !important;
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 10px 30px rgba(245, 130, 32, 0.4);
  position: relative;
  overflow: hidden;
  text-decoration: none !important;
  margin-top: 2rem;
}

.unified-cta-button::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #ff9d54 0%, #F58220 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.unified-cta-button:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 15px 40px rgba(245, 130, 32, 0.5);
  color: #fff !important;
}

.unified-cta-button:hover::before {
  opacity: 1;
}

.unified-cta-button span,
.unified-cta-button i {
  position: relative;
  z-index: 1;
}

.unified-cta-button i {
  transition: transform .3s ease;
}

.unified-cta-button:hover i {
  transform: translateX(4px);
}

/* General Responsiveness */
@media (min-width: 1600px) {
  .container, .hero-container, .workflow-container {
    max-width: 1500px;
  }
}

@media (min-width: 2000px) {
  .container, .hero-container, .workflow-container {
    max-width: 1800px;
  }
}

/* Lightbox2 Visibility Fix */
#lightbox {
  z-index: 99999 !important;
}

#lightbox .lb-nav a.lb-prev,
#lightbox .lb-nav a.lb-next,
#lightbox .lb-data .lb-close {
  background-image: none !important;
  display: block !important;
  opacity: 1 !important;
}

#lightbox .lb-data .lb-close {
  position: fixed !important;
  top: 15px;
  right: 15px;
  width: 44px;
  height: 44px;
  background-color: rgba(0, 0, 0, 0.5) !important;
  border-radius: 50%;
  transition: all 0.3s ease;
  z-index: 999999 !important;
}

#lightbox .lb-data .lb-close:hover {
  transform: rotate(90deg);
  background-color: #F58220 !important;
}

#lightbox .lb-data .lb-close::after {
  content: '\f00d';
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 24px;
  color: #fff;
  display: block;
  line-height: 44px;
  text-align: center;
  text-indent: 0;
}

#lightbox .lb-nav {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 10;
}

#lightbox .lb-nav a.lb-prev,
#lightbox .lb-nav a.lb-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.4) !important;
  transition: all 0.3s ease;
}

#lightbox .lb-nav a.lb-prev {
  left: 20px;
}

#lightbox .lb-nav a.lb-next {
  right: 20px;
}

#lightbox .lb-nav a.lb-prev:hover,
#lightbox .lb-nav a.lb-next:hover {
  background-color: #F58220 !important;
}

#lightbox .lb-nav a.lb-prev::after,
#lightbox .lb-nav a.lb-next::after {
  content: '';
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 22px;
  color: #fff;
  text-indent: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

#lightbox .lb-nav a.lb-prev::after {
  content: '\f053';
}

#lightbox .lb-nav a.lb-next::after {
  content: '\f054';
}

@media (max-width: 768px) {
  #lightbox .lb-nav a.lb-prev,
  #lightbox .lb-nav a.lb-next {
    width: 40px;
    height: 40px;
  }
  #lightbox .lb-nav a.lb-prev { left: 10px; }
  #lightbox .lb-nav a.lb-next { right: 10px; }

  #lightbox .lb-nav a.lb-prev::after,
  #lightbox .lb-nav a.lb-next::after {
    font-size: 18px;
  }

  #lightbox .lb-data .lb-close {
    top: 10px;
    right: 10px;
    width: 36px;
    height: 36px;
  }

  #lightbox .lb-data .lb-close::after {
    font-size: 20px;
    line-height: 36px;
  }
}

/* Lightbox2 Custom Styles */
.lightboxOverlay {
  background-color: rgba(0, 0, 0, 0.9) !important;
  opacity: 0.9 !important;
}

#lightbox .lb-image {
  border: none !important;
  border-radius: 4px;
}

#lightbox .lb-nav a.lb-prev,
#lightbox .lb-nav a.lb-next {
  opacity: 1 !important;
  background: none !important;
  width: 15% !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
}

#lightbox .lb-nav a.lb-prev::before,
#lightbox .lb-nav a.lb-next::before {
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 24px;
  color: #fff;
  background: rgba(0, 0, 0, 0.5);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
}

#lightbox .lb-nav a.lb-prev::before {
  content: '\f053';
}

#lightbox .lb-nav a.lb-next::before {
  content: '\f054';
}

#lightbox .lb-nav a.lb-prev:hover::before,
#lightbox .lb-nav a.lb-next:hover::before {
  background: #F58220;
  transform: scale(1.1);
}

#lightbox .lb-dataContainer .lb-close {
  display: block !important;
  width: 30px !important;
  height: 30px !important;
  background: none !important;
  text-align: center;
  line-height: 30px;
  opacity: 1 !important;
  float: right;
  margin-top: 5px;
}

#lightbox .lb-dataContainer .lb-close::before {
  content: '\f00d';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 20px;
  color: #fff;
  transition: color 0.3s ease;
}

#lightbox .lb-dataContainer .lb-close:hover::before {
  color: #F58220;
}

#lightbox .lb-data .lb-caption {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  color: #fff;
}

#lightbox .lb-data .lb-number {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  padding-top: 5px;
}

@media (max-width: 768px) {
  #lightbox .lb-nav a.lb-prev,
  #lightbox .lb-nav a.lb-next {
    width: 40px;
    height: 40px;
  }
  #lightbox .lb-nav a.lb-prev { left: 10px; }
  #lightbox .lb-nav a.lb-next { right: 10px; }

  #lightbox .lb-nav a.lb-prev::before,
  #lightbox .lb-nav a.lb-next::before {
    font-size: 18px;
  }

  #lightbox .lb-dataContainer .lb-close {
    top: 15px;
    right: 15px;
    width: 36px;
    height: 36px;
  }
  #lightbox .lb-dataContainer .lb-close::after {
    font-size: 20px;
    line-height: 36px;
  }
}

/* Client Sector Container */
.client-sector .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}