/* === Character Set and Font Import === */
@charset "UTF-8";
:root {
  --title-font: "Plus Jakarta Sans", Helvetica, Arial, sans-serif;
  --body-font: "Plus Jakarta Sans", Helvetica, Arial, sans-serif;
  --body-font-size: 16px;
  --title-font-weight: 600;
  --title-font-color: #151515;
  --body-font-color: #ffffff;
  --dark-body-font-color: rgba(255, 255, 255, 0.65);
  --border-default: solid 1px rgba(30, 30, 30, 1);
  --bg-color-even: #e8e8e8;
  --bg-dark-1: #131313;
  --bg-grey: #f7fafd;
  --bg-gradient-1: linear-gradient(0deg, rgba(var(--primary-color-rgb), 0.1) 0%, rgba(var(--primary-color-rgb), 0.2) 100%);
  --swiper-theme-color: var(--primary-color);
  --rounded-1: 12px;
}
/* ==========================================================================
   1. GLOBAL RESET AND BASE STYLES
   ========================================================================== */
*, ::after, ::before {
  box-sizing: border-box;
}
html {
  overflow-x: hidden;
  margin: 0;
  padding: 0;
  background: var(--bg-dark-1);
}
body {
  margin: 0;
  padding: 0;
  font: 400 var(--body-font-size) var(--body-font);
  font-size: 1rem;
  line-height: 29px;
  color: var(--body-font-color);
  background-color: #fff;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
}
.dark-scheme {
  color: var(--dark-body-font-color);
  background: var(--bg-dark-1);
}

/* ==========================================================================
   2. SCROLLBAR STYLES
   ========================================================================== */

/* Custom scrollbar for WebKit browsers */
body::-webkit-scrollbar {
  width: 5px;
}

body::-webkit-scrollbar-track {
  background: #dddddd;
}

body::-webkit-scrollbar-thumb {
  background-color: #ffffff;
  border-radius: 5px;
}

body.dark-scheme::-webkit-scrollbar-track {
  background: var(--bg-dark-1);
}

/* Smooth scrolling for users with no reduced motion preference */
@media (prefers-reduced-motion: no-preference) {
  :root {
    scroll-behavior: smooth;
  }
}

/* ==========================================================================
   3. TYPOGRAPHY
   ========================================================================== */

/* Heading styles */
h1, h2, h3, h4, h5, .h1, .h2, .h3, .h4, .h5 {
  margin: 0 0 0.5rem;
  font-family: var(--title-font);
  font-weight: var(--title-font-weight);
  color: var(--title-font-color);
  line-height: 1.2;
  text-transform: uppercase;
}

/* Dark scheme for headings */
.dark-scheme h1, .dark-scheme h2, .dark-scheme h3, .dark-scheme h4, .dark-scheme h5,
.dark-scheme .h1, .dark-scheme .h2, .dark-scheme .h3, .dark-scheme .h4, .dark-scheme .h5 {
  color: #c47e69; /* Rose gold for dark mode */
}

/* Heading font sizes */
h1, .h1 { font-size: calc(1.375rem + 1.5vw); }
h2, .h2 { font-size: calc(1.325rem + 0.9vw); }
h3, .h3 { font-size: calc(1.3rem + 0.6vw); }
h4, .h4 { font-size: calc(1.275rem + 0.3vw); }
h5, .h5 { font-size: 1.25rem; }

/* Heading sizes for large screens */
@media (min-width: 1200px) {
  h1, .h1 { font-size: 2.5rem; }
  h2, .h2 { font-size: 2rem; }
  h3, .h3 { font-size: 1.75rem; }
  h4, .h4 { font-size: 1.5rem; }
}

/* Heading sizes for medium screens */
@media only screen and (max-width: 992px) {
  h1 { font-size: 60px; }
  h2 { font-size: 40px; }
}

/* Heading sizes for small screens */
@media only screen and (max-width: 767px) {
  h1 { font-size: 48px; letter-spacing: -2px; }
  h2 { font-size: 36px; letter-spacing: -1.25px; }
  h1.big { font-size: 8vw; line-height: 10vw; }
}

/* Paragraph and subtitle styles */
p { margin: 0 0 20px; }

.subtitle {
  position: relative;
  display: inline-block;
  font-size: 13px;
  font-weight: bold;
  font-family: var(--title-font);
  color: var(--title-font-color);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.dark-scheme .subtitle, .text-light .subtitle {
  color: #ffffff;
}

/* Additional typography styles */
.lead { font-size: 1.25rem; font-weight: 300; }
.display-4 { font-size: calc(1.475rem + 2.7vw); font-weight: 300; line-height: 1.2; }
@media (min-width: 1200px) { .display-4 { font-size: 3.5rem; } }
strong { font-weight: bolder; }
small, .small { font-size: 0.875em; }

/* Code block styling */
code {
  font-family: var(--bs-font-monospace);
  font-size: 0.875em;
  color: #d63384;
  word-wrap: break-word;
}

a > code { color: inherit; }

/* ==========================================================================
   4. ANIMATIONS
   ========================================================================== */

/* WOW.js animation fallback */
.wow {
  visibility: hidden;
}

.animated {
  animation-duration: 1s;
  animation-fill-mode: both;
  visibility: visible;
}

/* Fade on scroll animation */
.fade-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Animation classes */
.fadeIn { animation-name: fadeIn; }
.fadeInUp { animation-name: fadeInUp; }
.fadeInRight { animation-name: fadeInRight; }

/* Keyframe animations */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translate3d(0, 40px, 0); }
  to { opacity: 1; transform: translate3d(0, 0, 0); }
}

@keyframes fadeInRight {
  from { opacity: 0; transform: translate3d(40px, 0, 0); }
  to { opacity: 1; transform: translate3d(0, 0, 0); }
}

/* Staggered animation for child elements */
.stagger-children > * {
  opacity: 0;
  animation: fadeInUp 0.8s forwards;
}

.stagger-children > *:nth-child(1) { animation-delay: 0.1s; }
.stagger-children > *:nth-child(2) { animation-delay: 0.2s; }
.stagger-children > *:nth-child(3) { animation-delay: 0.3s; }
.stagger-children > *:nth-child(4) { animation-delay: 0.4s; }
.stagger-children > *:nth-child(5) { animation-delay: 0.5s; }
.stagger-children > *:nth-child(6) { animation-delay: 0.6s; }
.stagger-children > *:nth-child(7) { animation-delay: 0.7s; }
.stagger-children > *:nth-child(8) { animation-delay: 0.8s; }
.stagger-children > *:nth-child(9) { animation-delay: 0.9s; }
.stagger-children > *:nth-child(10) { animation-delay: 1s; }

/* Additional animation keyframes */
@keyframes blinkingText {
  0% { background: var(--primary-color); }
  50% { background: rgba(255, 255, 255, 1); }
  100% { background: var(--primary-color); }
}

@keyframes op-blink-to-light {
  0% { background: var(--primary-color); color: #ffffff; }
  50% { background: var(--bg-grey); color: var(--primary-color); }
  100% { background: var(--primary-color); color: #ffffff; }
}

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

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

@keyframes dot-pulse {
  0% { transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1); opacity: 1; }
  100% { transform: translateX(-50%) translateY(-50%) translateZ(0) scale(2.2); opacity: 0; }
}

@keyframes spinner-border {
  to { transform: rotate(360deg); }
}

@keyframes spinner-grow {
  0% { transform: scale(0); }
  50% { opacity: 1; transform: none; }
}

@keyframes progress-bar-stripes {
  0% { background-position-x: 1rem; }
}

/* ==========================================================================
   5. BUTTONS
   ========================================================================== */

/* Fancy button styles */
.btn-fancy {
  display: inline-block;
  margin: 0;
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  text-decoration: none;
  color: #ffffff;
  background: transparent;
  border: 2px solid #c47e69;
  border-radius: 50px;
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  z-index: 1;
}

.btn-fancy::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: #c47e69;
  transition: all 0.3s ease;
  z-index: -1;
}

.btn-fancy:hover::before {
  left: 0;
}

.btn-fancy:hover {
  color: #0f0f0f;
  box-shadow: 0 0 20px rgba(196, 126, 105, 0.5);
}

/* Mobile button behavior */
@media (max-width: 768px) {
  .btn-fancy:hover::before {
    left: -100%; /* Disable hover animation on mobile */
  }

  .btn-fancy:active::before {
    left: 0; /* Show background on tap */
  }

  .btn-fancy:active {
    transform: scale(0.96);
    color: #0f0f0f;
    box-shadow: 0 0 20px rgba(196, 126, 105, 0.5);
    transition: transform 0.2s ease, color 0.3s ease, box-shadow 0.3s ease;
  }
}

/* ==========================================================================
   6. IMAGES AND MEDIA
   ========================================================================== */

/* Image and SVG alignment */
img, svg {
  vertical-align: middle;
}

/* Fluid images */
.img-fluid {
  max-width: 100%;
  height: auto;
}

/* Hero image and video styles */
.hero-img {
  border-radius: 5%;
}

.hero-video {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
}

.vid-1 {
  height: 500px;
}

/* Blog post image styles */
.post-image {
  overflow: hidden;
  margin-bottom: 20px;
  position: relative;
}

.post-image img {
  width: 100%;
  margin-bottom: 0;
}

/* ==========================================================================
   7. FORMS
   ========================================================================== */

/* Form element styles */
label {
  display: inline-block;
}

button {
  border-radius: 0;
}

button:focus:not(:focus-visible) {
  outline: 0;
}

button, input, select, textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

button, select {
  text-transform: none;
}

[role="button"], [type="button"]:not(:disabled), [type="submit"]:not(:disabled), button:not(:disabled) {
  cursor: pointer;
}

select {
  word-wrap: normal;
}

select:disabled {
  opacity: 1;
}

textarea {
  resize: vertical;
}

::file-selector-button, ::-webkit-file-upload-button {
  font: inherit;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
}

/* ==========================================================================
   8. LAYOUT
   ========================================================================== */

/* Container styles */
.container, .container-fluid {
  width: 100%;
  padding-right: var(--bs-gutter-x, 0.75rem);
  padding-left: var(--bs-gutter-x, 0.75rem);
  margin-right: auto;
  margin-left: auto;
}

/* Container breakpoints */
@media (min-width: 576px) { .container { max-width: 540px; } }
@media (min-width: 768px) { .container { max-width: 720px; } }
@media (min-width: 992px) { .container { max-width: 960px; } }
@media (min-width: 1200px) { .container { max-width: 1200px; } }
@media (min-width: 1400px) { .container { max-width: 1320px; } }
@media (min-width: 980px) and (max-width: 1199px) { .container { min-width: 95%; } }
@media only screen and (max-width: 992px) { .container { max-width: 100%; } }
@media only screen and (max-width: 767px) {
  .container { padding-left: 20px; padding-right: 20px; }
}
@media only screen and (min-width: 480px) and (max-width: 767px) {
  .container { padding-left: 30px; padding-right: 30px; }
}

/* Container overlay */
.container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: -1;
}

/* Row styles */
.row {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(var(--bs-gutter-y) * -1);
  margin-right: calc(var(--bs-gutter-x) * -0.5);
  margin-left: calc(var(--bs-gutter-x) * -0.5);
}

.row > * {
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  margin-top: var(--bs-gutter-y);
}

/* Grid column widths */
.col-4 { flex: 0 0 auto; width: 33.33333333%; }
.col-6 { flex: 0 0 auto; width: 50%; }

@media (min-width: 576px) {
  .col-sm-3 { flex: 0 0 auto; width: 25%; }
  .col-sm-9 { flex: 0 0 auto; width: 75%; }
}

@media (min-width: 768px) {
  .col-md-2 { flex: 0 0 auto; width: 16.66666667%; }
  .col-md-3 { flex: 0 0 auto; width: 25%; }
  .col-md-6 { flex: 0 0 auto; width: 50%; }
}

@media (min-width: 992px) {
  .col-lg-2 { flex: 0 0 auto; width: 16.66666667%; }
  .col-lg-4 { flex: 0 0 auto; width: 33.33333333%; }
  .col-lg-6 { flex: 0 0 auto; width: 50%; }
  .col-lg-10 { flex: 0 0 auto; width: 83.33333333%; }
  .col-lg-12 { flex: 0 0 auto; width: 100%; }
}

/* Gutter utilities */
.g-3 { --bs-gutter-x: 1rem; --bs-gutter-y: 1rem; }
.g-4 { --bs-gutter-x: 1.5rem; --bs-gutter-y: 1.5rem; }
.g-5, .gx-5 { --bs-gutter-x: 3rem; }
.g-5 { --bs-gutter-y: 3rem; }

/* ==========================================================================
   9. COMPONENTS
   ========================================================================== */

/* Card component */
.card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  background-color: #fff;
  background-clip: border-box;
  border: 1px solid rgba(0, 0, 0, 0.125);
  border-radius: 0.25rem;
}

/* Modal component */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1060;
  display: none;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  outline: 0;
}

.modal-content {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 0.3rem;
  outline: 0;
}

/* ==========================================================================
   10. HEADER AND NAVIGATION
   ========================================================================== */

/* Sticky header */
.sticky-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(20, 20, 20, 0.9);
  color: white;
  z-index: 1000;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  transform: translateY(-100%);
  transition: transform 0.3s ease;
}

.sticky-header.visible {
  transform: translateY(0);
}

/* Header content layout */
.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  flex-direction: row-reverse;
}

/* Logo styles */
.logo-wrapper {
  margin-bottom: 0;
  text-align: center;
}
.logo-top {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  margin: 0;
  padding: 0;
  font-size: 15rem;
  line-height: 1;
  margin-bottom: 5px;
}

.logo-link {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  display: inline-block;
}

.sticky-header .logo-top a,
.sticky-header .logo-link,
.header-wrapper .logo-top a {
  color: #c47e69;
  text-transform: uppercase;
  text-decoration: none;
}

/* Responsive logo sizes */
@media (max-width: 1200px) {
  .logo-top { font-size: 10rem; }
}

@media (max-width: 768px) {
  .logo-top { font-size: 8rem; }
}

@media (max-width: 480px) {
  .logo-top { font-size: 5.5rem; }
}

/* Desktop menu styles */
.d-menu-1 {
  margin-top: 0;
  margin-bottom: 0;
}

.d-menu-1 ul {
  list-style: none;
  padding: 0;
  margin-top: 2px;
}

.d-menu-1 ul li {
  display: inline-block;
  margin: 8px 15px;
}

.d-menu-1 ul li a {
  color: #ffffff;
  text-decoration: none;
  font-size: 22px;
  font-weight: 600;
  transition: color 0.3s ease;
  position: relative;
}

.d-menu-1 ul li a:hover,
.d-menu-1 ul li.active a {
  color: #c47e69;
}

/* Menu hover underline effect */
.d-menu-1 li a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: #ffffff;
  opacity: 0;
  transition: width 0.3s ease, opacity 0.3s ease;
}

.dark-scheme .d-menu-1 li a::after {
  background: #ffffff;
}

.d-menu-1 li:hover a::after,
.d-menu-1 li.active a::after {
  width: 100%;
  opacity: 1;
}

.d-menu-1 ul li.active a::after {
  bottom: -2px;
  background-color: #ffffff;
}

/* Hamburger menu for mobile */
.hamburger-menu {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 22px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.hamburger-menu span {
  display: block;
  height: 3px;
  width: 100%;
  background-color: white;
  border-radius: 3px;
  transition: all 0.3s ease;
}

/* Hamburger menu active state */
.hamburger-menu.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.hamburger-menu.active span:nth-child(2) {
  opacity: 0;
}

.hamburger-menu.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* Mobile menu overlay */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(15, 15, 15, 0.98);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 60px;
}

.mobile-menu.active {
  opacity: 1;
  visibility: visible;
}

/* Mobile menu content */
.menu-content {
  text-align: center;
  width: 100%;
  max-width: 400px;
}

.menu-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.menu-content ul li {
  margin: 20px 0;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease;
}

/* Animate mobile menu items */
.mobile-menu.active .menu-content ul li {
  opacity: 1;
  transform: translateY(0);
}

.menu-content ul li:nth-child(1) { transition-delay: 0.1s; }
.menu-content ul li:nth-child(2) { transition-delay: 0.2s; }
.menu-content ul li:nth-child(3) { transition-delay: 0.3s; }
.menu-content ul li:nth-child(4) { transition-delay: 0.4s; }
.menu-content ul li:nth-child(5) { transition-delay: 0.5s; }
.menu-content ul li:nth-child(6) { transition-delay: 0.6s; }

.menu-content ul li a {
  color: white;
  font-size: 22px;
  text-decoration: none;
  transition: color 0.3s ease;
  font-weight: 500;
  letter-spacing: 1px;
}

.menu-content ul li a:hover,
.menu-content ul li.active a {
  color: #c47e69;
}

/* ==========================================================================
   11. CONTENT SECTIONS
   ========================================================================== */

/* Main wrapper */
#wrapper {
  position: relative;
  overflow: hidden;
}

/* Content section */
#content {
  width: 100%;
  background: #ffffff;
  padding: 90px 0;
  z-index: 100;
}

.dark-scheme #content {
  background: var(--bg-dark-1);
}

/* General section styles */
.dark-scheme section {
  background: var(--bg-dark-1);
}

@media only screen and (max-width: 767px) {
  section { padding: 20px 0; }
}

@media only screen and (max-width: 992px) {
  section {
    background-size: auto 100%;
    background-attachment: scroll;
  }
}

@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: portrait) {
  section {
    background-size: auto 100%;
    background-attachment: scroll;
  }
}

/* Specific section styles */
section.no-top.center-content {
  margin-bottom: 0;
  padding-bottom: 0;
}

section.no-top.center-content-menu.header-wrapper {
  margin-bottom: 0;
  padding: 0;
}

section.expertise-hub {
  margin-bottom: 50px;
  padding: 0;
}

/* No-top section links and typography */
.no-top h4 a {
  color: #c47e69;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.no-top h4 a:hover {
  color: #fff;
  text-decoration: underline;
}

.no-top .fs-14 {
  color: white;
}



/* Row alignment */
div.row.align-items-center.g-4.gx-5 {
  margin-top: 0;
  margin-bottom: 0;
}

/* Header wrapper */
.header-wrapper {
  margin-bottom: 2px;
}

/* ==========================================================================
   12. UTILITY CLASSES
   ========================================================================== */

/* Layout utilities */
.center-content, .center-content-menu {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.overflow-hidden { overflow: hidden !important; }
.d-inline { display: inline !important; }
.d-block { display: block !important; }
.d-flex { display: flex !important; white-space: nowrap; }
.bottom-0 { bottom: 0 !important; }
.w-100 { width: 100% !important; }
.justify-content-center { justify-content: center !important; }
.justify-content-between { justify-content: space-between !important; }
.align-items-center { align-items: center !important; }

/* Margin utilities */
/* Margin utilities */
.mt-0 {margin-top: 0 !important;}
.mt-5 { margin-top: 5px !important; }
.mt-10 { margin-top: 10px !important; }
.mt-20 { margin-top: 20px !important; }
.mt-50 { margin-top: 50px !important; }
.mt-3 { margin-top: 3px !important; }
.me-2 { margin-right: 0.5rem !important; }
.me-3 { margin-right: 1rem !important; }
.mb-2 { margin-bottom: 2px !important; }
.mb-4 { margin-bottom: 1.5rem !important; }
.mb-5 { margin-bottom: 3rem !important; }
.ms-3 { margin-left: 1rem !important; }
.mr100 { margin-right: 100px; }
.mb-sm-30 { margin-bottom: 30px; }
.no-bottom { margin-bottom: 0; padding-bottom: 0 !important; }
.no-top { padding-top: 0 !important; }

/* Padding utilities */
.p-4 { padding: 1.5rem !important; }
.px-2 { padding-right: 0.5rem !important; padding-left: 0.5rem !important; }
.pt-0 { padding-top: 0 !important; }

/* Typography utilities */
.fs-4 { font-size: calc(1.275rem + 0.3vw) !important; }
@media (min-width: 1200px) { .fs-4 { font-size: 1.5rem !important; } }
.fw-bold { font-weight: 700 !important; }
.lh-1 { line-height: 1 !important; }
.text-center { text-align: center !important; }
.text-light { color: #f8f9fa !important; }
.text-white { color: #fff !important; }

/* Positioning utilities */
.absolute { position: absolute; z-index: 1; }
.abs-centered { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); }
.relative { position: relative; z-index: 1; }
.z-index-1 { z-index: 1; }

/* Spacer utilities */
.spacer-10 { height: 10px; }
.spacer-single { height: 40px; }
.spacer-double { height: 80px; }

.col-sm-9 {
  margin-top: 0;
  margin-bottom: 20px;
}
#language-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(30, 30, 30, 0.95);
  backdrop-filter: blur(5px);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.6s ease-out;
}

.language-box {
  background: rgba(15, 15, 15, 0.8);
  padding: 2.5rem;
  border-radius: 16px;
  box-shadow: 0 0 20px rgba(196, 126, 105, 0.5);
  border: 1px solid #C47E69;
  backdrop-filter: blur(12px);
  max-width: 900px;
  width: 90%;
  min-height: 300px;
  margin: 0 auto;
  box-sizing: border-box;
  position: relative;
  animation: scaleIn 0.4s ease forwards;
  text-align: center;
}

.language-box h2 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 2rem;
  font-family: 'Inter', sans-serif;
  color: white;
}

.dark-mode .language-box {
  background: white;
  border-radius: 16px;
  box-shadow: 0 0 20px rgba(196, 126, 105, 0.5);
  border: 1px solid #C47E69;
}

.dark-mode .language-box h2 {
  color: #1A1A1A;
}

.lang-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin: 1.5rem 0;
}

.lang-btn {
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  color: #fff;
  background: transparent;
  border: 2px solid #C47E69;
  border-radius: 50px;
  cursor: pointer;
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  z-index: 1;
}
.dark-mode .lang-btn{
  color: var(--bg-dark-1);
  border-radius: 50px;
  box-shadow: 0 0 20px rgba(196, 126, 105, 0.5);
  border: 1px solid #C47E69;
}

.lang-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: #C47E69;
  transition: all 0.3s ease;
  z-index: -1;
}

.lang-btn:hover::before {
  left: 0;
}

.lang-btn:hover {
  color: #0F0F0F;
  box-shadow: 0 0 20px rgba(196, 126, 105, 0.5);
}

.lang-btn:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(196, 126, 105, 0.5);
}

.lang-btn.active {
  background-color: #C47E69;
  color: #0F0F0F;
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(196, 126, 105, 0.7);
}

.lang-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.lang-btn .loader {
  display: none;
  width: 20px;
  height: 20px;
  border: 2px solid #fff;
  border-top: 2px solid transparent;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

.lang-btn.loading .loader {
  display: inline-block;
}

.lang-btn .checkmark {
  display: none;
  font-size: 1.2rem;
  position: absolute;
  right: 1rem;
}

.lang-btn.success .checkmark {
  display: inline-block;
}

.theme-toggle {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.2rem;
  color: #fff;
  transition: transform 0.2s ease;
}

.theme-toggle:hover {
  transform: rotate(-30deg);
}

.error-message {
  color: #FF4444;
  font-size: 0.9rem;
  margin-top: 1rem;
  text-align: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.error-message.show {
  opacity: 1;
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes scaleIn {
  from { transform: scale(0.8); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

@keyframes slideOut {
  from { transform: translateY(0); opacity: 1; }
  to { transform: translateY(-50px); opacity: 0; }
}

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

/* Responsive */
@media (max-width: 768px) {
  .language-box {
    padding: 2rem 1.5rem;
    margin: 1rem;
  }

  .lang-buttons {
    gap: 1rem;
  }

  .lang-btn {
    padding: 0.8rem 1.6rem;
  }

  .lang-btn:hover::before {
    left: -100%;
  }

  .lang-btn:active::before {
    left: 0;
  }

  .lang-btn:active {
    transform: scale(0.96);
    color: #0F0F0F;
    box-shadow: 0 0 20px rgba(196, 126, 105, 0.5);
  }
}

@media (max-width: 480px) {
  .lang-buttons {
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
  }

  .lang-btn {
    width: 100%;
    max-width: 250px;
  }
}

/* ==========================================================================
  STAT COUNTER
   ========================================================================== */
/* ==========================================================================
  STAT COUNTER
   ========================================================================== */
/* ==========================================================================
  STAT COUNTER
   ========================================================================== */
/* ==========================================================================
  STAT COUNTER
   ========================================================================== */
/* ==========================================================================
  STAT COUNTER
   ========================================================================== */
/* Achievements Section (unchanged, included for reference) */
.achievements-section {
  background-color: #2c2c2c;
  padding: 60px 0;
}

@media (max-width: 768px) {
  .achievements-section {
    padding: 40px 0;
  }
}

.stat-card {
  background-color: #19181a !important;
  padding: 20px;
  border-radius: 10px;
  border: 1px solid #c47e69;
  transition: all 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-5px);
  border-color: #ffffff;
}

.stat-number {
  color: #c47e69;
  font-size: 48px;
  font-weight: bold;
  margin-bottom: 10px;
}

.stat-label {
  color: #ffffff;
  font-size: 15px;
  text-transform: uppercase;
}

@media (max-width: 768px) {
  .stat-number {
    font-size: 36px;
  }
  .stat-label {
    font-size: 13px;
  }
}
/* Achievements Section */
.achievements-section {
  background-color: #2c2c2c;
  padding: 60px 0;
}
@media (max-width: 768px) {
  .achievements-section {
    padding: 40px 0;
  }
}

.stat-card {
  background-color: #19181a !important;
  padding: 20px;
  border-radius: 10px;
  border: 1px solid #c47e69;
  transition: all 0.3s ease;
}
.stat-number {
  color: #c47e69;
  font-size: 48px;
  font-weight: bold;
  margin-bottom: 10px;
}
.stat-label {
  color: #ffffff;
  font-size: 15px;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .stat-number {
    font-size: 36px;
  }
  .stat-label {
    font-size: 13px;
  }
}

/* ==========================================================================
  STAT COUNTER END
   ========================================================================== */
/* ==========================================================================
  STAT COUNTER END
   ========================================================================== */
/* ==========================================================================
  STAT COUNTER END
   ========================================================================== */
/* ==========================================================================
  STAT COUNTER END
   ========================================================================== */
/* ==========================================================================
  STAT COUNTER END
   ========================================================================== */
/* =========================
   HOMEPAGE SERVICES
   ========================= */
/* =========================
   HOMEPAGE SERVICES
   ========================= */
/* =========================
   HOMEPAGE SERVICES
   ========================= */
/* =========================
   HOMEPAGE SERVICES
   ========================= */
  .expertise-hub {
    min-height: 100vh;
    background: #0d0d0d;
    position: relative;
    overflow: hidden;
    color: #fff;
    font-family: "Orbitron", sans-serif;
  }
  
  .hub-console {
    position: relative;
    padding: 0;
  }
  
  /* Starfield background layer */
  #starfield {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
  }
  
  /* Overlay on top of starfield */
  .console-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(rgba(196, 126, 105, 0.5), rgba(0, 0, 0, 0.9));
    z-index: 2;
  }
  .console-header {
    position: relative;
    height: 80vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-bottom: 2px solid #c47e69;
    z-index: 3;
  }
  .console-header .jarallax-img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    filter: brightness(0.6);
  }
  .header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(125, 105, 105, 0.2), rgba(0, 0, 0, 0.5));
    z-index: 1;
  }
  .console-header p {
    font-size: 24px;
    color: #ffffff;
    z-index: 2;
  }
  
  /* Glitch Title Effect */
  .glitch {
    font-size: 60px;
    font-weight: 700;
    color: #c47e69;
    text-transform: uppercase;
    text-shadow: 0 0 10px #c47e69;
    position: relative;
    z-index: 2;
  }
  .glitch::before,
  .glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    color: #c47e69;
  }
  .glitch::before {
    animation: glitch-top 1s infinite;
    clip-path: polygon(0 0, 100% 0, 100% 33%, 0 33%);
  }
  .glitch::after {
    animation: glitch-bottom 1.5s infinite;
    clip-path: polygon(0 66%, 100% 66%, 100% 100%, 0 100%);
  }
  
  /* Glitch Animations */
  @keyframes glitch-top {
    0%, 100% { transform: translate(0, 0); }
    20%, 60% { transform: translate(-2px, 2px); }
    40% { transform: translate(2px, -2px); }
  }
  @keyframes glitch-bottom {
    0%, 100% { transform: translate(0, 0); }
    20%, 60% { transform: translate(2px, -2px); }
    40% { transform: translate(-2px, 2px); }
  }
  .mission-grid {
    position: relative;
    z-index: 3;
    padding: 60px 0;
  }
  
  .mission-card {
    background: rgba(20, 20, 20, 0.8);
    border: 2px solid #c47e69;
    border-radius: 10px;
    padding: 20px;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
  }
  .mission-card:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px #c47e69;
  }
  .mission-card i {
    font-size: 48px;
    color: #c47e69;
    margin-bottom: 15px;
  }
  .mission-card h4 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #c47e69;
  }
  .mission-card .status {
    font-size: 14px;
    color: white;
    text-transform: uppercase;
  }

  
  .content-card {
    background-color: #19181a;
    padding: 40px;
    border-radius: 10px;
    border: 1px solid #c47e69;
    margin-bottom: 40px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  .content-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  }
  .content-card h2 {
    color: #c47e69;
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 10px;
  }
  .content-card h3 {
    color: #ffffff;
    font-size: 24px;
    font-weight: 600;
    margin: 20px 0 10px;
  }
  .content-card p {
    color: #ffffff;
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 20px;
  }
  .content-card strong {
    color: #c47e69;
  }
  
  /* List styles inside content cards */
  .content-card ul,
  .benefit-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 20px;
  }
  .content-card ul li,
  .benefit-list li {
    font-size: 1.1rem;
    color: white;
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
  }
  .benefit-list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #c47e69;
    font-size: 20px;
  }
  
  /* Responsive tweaks for content cards */
  @media (max-width: 768px) {
    .content-card {
      padding: 20px;
    }
    .content-card h2 {
      font-size: 28px;
    }
    .content-card h3,
    .content-card p,
    .benefit-list li {
      font-size: 16px;
    }
  }
  .mission-brief,
  .modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    margin-left: 20px;
  }
  
  .brief-content,
  .modal-content {
    background: #1a1a1a;
    padding: 30px;
    border-radius: 12px;
    border: 2px solid #c47e69;
    max-width: 600px;
    width: 90%;
    position: relative;
    animation: zoomIn 0.5s ease;
  }
  
  .brief-close,
  .modal-close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
    color: #c47e69;
  }
  
  .brief-content h2 {
    font-size: 32px;
    color: #c47e69;
    margin-bottom: 20px;
    text-align: center;
  }
  .brief-content p {
    font-size: 16px;
    color: white;
    margin-bottom: 20px;
    text-align: center;
  }

  #contact-form input,
  #contact-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #c47e69;
    border-radius: 5px;
    background: #2a2a2a;
    color: #fff;
  }
  #contact-form textarea {
    height: 100px;
  }
  @media (max-width: 768px) {
    .console-header {
      height: 60vh;
    }
    .glitch {
      font-size: 40px;
    }
    .console-header p {
      font-size: 18px;
    }
    .mission-card {
      height: 200px;
    }
    .mission-card h4 {
      font-size: 20px;
    }
    .brief-content h2 {
      font-size: 28px;
    }
  }
  @media (max-width: 576px) {
    .console-header {
      height: 50vh;
    }
    .glitch {
      font-size: 32px;
    }
    .mission-card {
      height: 180px;
    }
  }
/* =========================
   HOMEPAGE SERVICES END
   ========================= */
/* =========================
   HOMEPAGE SERVICES END
   ========================= */
/* =========================
   HOMEPAGE SERVICES END
   ========================= */
/* =========================
   HOMEPAGE SERVICES END
   ========================= */
/* ==========================================================================
   Moving Marque's!
   ========================================================================== */
/* ==========================================================================
   Moving Marque's!
   ========================================================================== */
/* ==========================================================================
   Moving Marque's!
   ========================================================================== */
/* ==========================================================================
   Moving Marque's!
   ========================================================================== */
/* ==========================================================================
   Moving Marque's!
   ========================================================================== */
.text-marquee-section,
.logo-marquee-section {
  width: 100%;
  overflow: hidden;
  position: relative;
  margin: 20px 0;
  padding: 5px 0;
}

/* Text Marquee Styles */
.text-marquee {
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
}

.text-marquee .d-item-txt {
  display: inline-block;
  padding: 10px 20px;
  font-size: 50px;
  font-weight: bold;
  color: #ffffff;
  transition: color 0.3s ease;
  line-height: 1.4;
}

.text-marquee .d-item-txt:hover {
  color: #e8a392;
}

.text-marquee .d-item-txt:nth-child(even) {
  background: linear-gradient(45deg, #c47e69, #e8a392);
  background-clip: text;
  -webkit-background-clip: text; /* Optional for older WebKit browsers */
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 10px rgba(196, 126, 105, 0.2);
}

/* Logo Marquee Styles */
.logo-marquee {
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
}

.logo-marquee .d-item {
  display: inline-block;
  padding: 0 20px;
}

.logo-marquee .d-item-icon {
  height: 60px;
  width: auto;
  object-fit: contain;
}
    /* ==========================================================================
   Moving Marque's! END
   ========================================================================== */
/* ==========================================================================
   Moving Marque's! END
   ========================================================================== */
/* ==========================================================================
   Moving Marque's! END
   ========================================================================== */
/* ==========================================================================
   Moving Marque's! END
   ========================================================================== */
/* ==========================================================================
   Moving Marque's! END
   ========================================================================== */
/* ==========================================================================
  BRANDS AND TECHNOLOGIES
   ========================================================================== */

/* ==========================================================================
  BRANDS AND TECHNOLOGIES
   ========================================================================== */

/* ==========================================================================
  BRANDS AND TECHNOLOGIES
   ========================================================================== */

/* ==========================================================================
  BRANDS AND TECHNOLOGIES
   ========================================================================== */
.brands-section,
.tech-section {
  padding: 0;
}
.section-title {
  color: #c47e69;
  font-size: 36px;
  font-weight: bold;
}
.section-title p {
  margin-bottom: 100px;
}
.section-title-ourclients {
  margin-bottom: 0;
}
.brand-logo {
  max-width: 120px;
  filter: grayscale(100%);
  transition: all 0.3s ease;
}
.tech-item {
  background-color: #19181a !important;
  padding: 20px;
  border-radius: 10px;
  border: 1px solid #c47e69;
  transition: all 0.3s ease;
}

.tech-icon {
  max-width: 50px;
  margin-bottom: 10px;
}
.tech-item p {
  color: #ffffff;
  font-size: 14px;
  margin: 0;
}
.tech-icon,
.brand-logo {
  filter: invert(100%) grayscale(100%) brightness(200%);
}
.brand-logo,
.tech-icon {
  transition: filter 0.3s ease;
}

@media (max-width: 768px) {
  .section-title {
    font-size: 28px;
  }
  .brand-logo {
    max-width: 100px;
  }
  .tech-icon {
    max-width: 40px;
  }
  .tech-item p {
    font-size: 12px;
  }
}
/* ==========================================================================
  BRANDS AND TECHNOLOGIES END
   ========================================================================== */
/* ==========================================================================
  BRANDS AND TECHNOLOGIES END
   ========================================================================== */
/* ==========================================================================
  BRANDS AND TECHNOLOGIES END
   ========================================================================== */
/* ==========================================================================
  BRANDS AND TECHNOLOGIES END
   ========================================================================== */
/* ==========================================================================
  BRANDS AND TECHNOLOGIES END
   ========================================================================== */
/* ==========================================================================
  PORTFOLIO PAGE
   ========================================================================== */
/* ==========================================================================
  PORTFOLIO PAGE
   ========================================================================== */
/* ==========================================================================
  PORTFOLIO PAGE
   ========================================================================== */
/* ==========================================================================
  PORTFOLIO PAGE
   ========================================================================== */

/* Remove global .abs-centered to avoid conflicts */
.abs-centered {
  color: white !important; /* Keep for compatibility, but ideally scope to .expertise-section */
}
.portfolio-filter {
  padding: 20px 0;
  text-align: center;
}
.filter-menu {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}
.filter-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.filter-menu ul li {
  position: relative;
  margin: 5px 15px;
}
.filter-menu ul li a {
  text-decoration: none;
  color: #C47E69;
  font-weight: bold;
  font-size: 16px;
  text-transform: uppercase;
  transition: color 0.3s ease;
  display: inline-block;
}
.filter-menu ul li.active a {
  color: #FFFFFF !important;
}
.filter-menu ul li a:hover {
  color: #C47E69;
}
.filter-menu ul li:not(:last-child)::after {
  content: "•";
  position: absolute;
  right: -15px;
  top: 50%;
  transform: translateY(-50%);
  color: #FFFFFF;
  font-size: 12px;
}
@media (max-width: 768px) {
  .filter-menu {
    padding: 0 10px;
  }
  .filter-menu ul {
    justify-content: center;
    gap: 8px;
  }
  .filter-menu ul li {
    margin: 5px 10px;
  }
  .filter-menu ul li a {
    font-size: 14px;
  }
  .filter-menu ul li:not(:last-child)::after {
    right: -10px;
  }
}
.view-more-btn {
  padding: 12px 30px;
  font-size: 16px;
  font-weight: bold;
  text-transform: uppercase;
  color: #FFFFFF;
  background-color: transparent;
  border: 2px solid #C47E69;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.view-more-btn:hover {
  background-color: #C47E69;
  color: #FFFFFF;
}
@media (max-width: 768px) {
  .view-more-btn {
    padding: 10px 25px;
    font-size: 14px;
  }
}
.view-more-wrapper {
  padding-bottom: 20px;
}

/* Additional Projects Animation */
.additional-projects {
  opacity: 0;
  transition: opacity 0.5s ease;
}
.additional-projects.show {
  opacity: 1;
}
.additional-projects .col-lg-4 {
  animation: fadeInUp 0.5s ease forwards;
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.partner-section {
  padding: 60px 0;
  background-color: #1A1A1A;
}
.partner-section h2 {
  color: #C47E69;
  font-size: 40px;
  font-weight: bold;
  margin-bottom: 20px;
}
.partner-section p {
  color: #FFFFFF;
  font-size: 18px;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto 40px;
}
.consultation-btn {
  display: inline-block;
  padding: 12px 30px;
  font-size: 16px;
  font-weight: bold;
  text-transform: uppercase;
  color: #FFFFFF;
  background-color: transparent;
  border: 2px solid #C47E69;
  border-radius: 5px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.consultation-btn:hover {
  background-color: #C47E69;
  color: #FFFFFF;
}
@media (max-width: 768px) {
  .partner-section {
    padding: 40px 0;
  }
  .partner-section h2 {
    font-size: 32px;
  }
  .partner-section p {
    font-size: 16px;
    max-width: 90%;
  }
  .consultation-btn {
    padding: 10px 25px;
    font-size: 14px;
  }
}
/* ==========================================================================
  PORTFOLIO PAGE END
   ========================================================================== */

/* ==========================================================================
  PORTFOLIO PAGE END
   ========================================================================== */

/* ==========================================================================
  PORTFOLIO PAGE END
   ========================================================================== */

/* ==========================================================================
  PORTFOLIO PAGE END
   ========================================================================== */
/* ==========================================================================
  SERVICES PAGE
   ========================================================================== */
/* ==========================================================================
  SERVICES PAGE
   ========================================================================== */
/* ==========================================================================
  SERVICES PAGE
   ========================================================================== */
/* ==========================================================================
  SERVICES PAGE
   ========================================================================== */
   :root {
    --primary: #C47E69; /* Main accent color */
    --secondary: #2D2D2D; /* Primary background */
    --dark: #0F0F0F; /* Darkest shade for depth */
    --white: #FFFFFF; /* Text color */
    --transparent-light: rgba(196, 126, 105, 0.1); /* Light transparent primary for overlays */
    --transparent-dark: rgba(15, 15, 15, 0.85); /* Dark transparent for modals */
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  }
  

  
  .services-section {
    position: relative;
    padding: 6rem 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }
  
  .particle-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
  }
  
  .section-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
  }
  
  .section-header h2 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
  }
  
  .section-header p {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
    color: var(--white);
    padding-left: 20px;
    padding-right: 20px;
  }
  
  .service-core {
    position: relative;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    padding: 2rem;
  }
  
  .service-pod {
    position: relative;
    background: var(--transparent-light);
    border: 1px solid var(--primary);
    border-radius: 1.5rem;
    min-height: 360px;
    text-align: center;
    backdrop-filter: blur(10px);
    cursor: pointer;
    animation: float 6s ease-in-out infinite;
    perspective: 1000px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .service-pod:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 0 25px var(--transparent-light);
  }
  
  .service-inner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: transform 0.6s ease;
    transform-style: preserve-3d;
  }
  
  .service-inner.flipped {
    transform: rotateY(180deg);
  }
  
  .service-front,
  .service-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    box-sizing: border-box;
    border-radius: 1.5rem;
  }
  
  .service-front {
    background: #1a1a1a;
    color: var(--white);
  }
  
  .service-back {
    background: var(--transparent-light);
    color: var(--white);
    transform: rotateY(180deg);
  }
  
  .icon-service {
    width: 64px;
    height: 64px;
    stroke: var(--primary);
    stroke-width: 1.5;
    margin: 0 auto 1.5rem;
  }
  
  .service-pod h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin: 1rem 0 0.5rem;
  }
  
  .service-pod p {
    color: var(--white);
    font-size: 1rem;
    line-height: 1.5;
    max-width: 90%;
    margin: 0 auto;
  }
  
  .service-back p {
    font-size: 0.9rem;
    max-height: 100px;
    overflow-y: auto;
    padding: 0 0.5rem;
  }
  
  .service-front .click-me {
    margin-top: 1rem;
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--primary);
    border-radius: 9999px;
    color: var(--primary);
    background: transparent;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
  }
  
  .service-front .click-me:hover {
    background: var(--primary);
    color: var(--white);
  }
  
  .service-pod .cta {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--primary);
    border-radius: 9999px;
    color: var(--primary);
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
  }
  
  .service-pod .cta:hover {
    background: var(--primary);
    color: var(--white);
  }
  
  .gradient-text {
    color: var(--primary);
  }
  
  .tooltip {
    position: absolute;
    background: var(--transparent-light);
    border: 1px solid var(--primary);
    border-radius: 1rem;
    backdrop-filter: blur(10px);
    padding: 1rem;
    width: 280px;
    z-index: 100;
    transform: translateY(10px);
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 15px var(--transparent-light);
  }
  
  .tooltip.active {
    opacity: 1;
    transform: translateY(0);
  }
  
  .tooltip .bg-c47e69 {
    background-color: var(--primary);
  }
  
  .tooltip .border-c47e69 {
    border-color: var(--primary);
  }
  
  .tooltip .text-c47e69 {
    color: var(--primary);
  }
  
  .tooltip .hover\:bg-ff9a76:hover {
    background-color: var(--primary);
  }
  
  .tooltip .hover\:text-black:hover {
    color: var(--white);
  }
  
  .tooltip .focus\:ring-c47e69:focus {
    --tw-ring-color: var(--primary);
  }
  
  /* Modal Styles */
  .service-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--transparent-dark);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-in-out;
  }
  
  .service-modal-overlay.active {
    opacity: 1;
    visibility: visible;
  }
  
  .service-modal {
    background-color: var(--transparent-dark);
    border-radius: 12px;
    width: 100%;
    max-width: 800px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 10px 30px var(--dark);
    transform: translateY(30px);
    opacity: 0;
    transition: all 0.4s ease-in-out;
  }
  
  .service-modal-overlay.active .service-modal {
    transform: translateY(0);
    opacity: 1;
  }
  
  .modal-header {
    padding: 1.5rem 2rem;
    border-bottom: 1px solid var(--primary);
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .modal-header h2 {
    color: white;
    font-size: 1.8rem;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 1rem;
  }
  
  .modal-body {
    margin-left: 40px;
    margin-top: 20px;
  }
  
  .modal-close {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.5rem;
    color: var(--white);
    transition: var(--transition);
  }
  
  .modal-close:hover {
    color: var(--primary);
  }
  
  .modal-content {
    margin-bottom: 2rem;
  }
  
  .modal-content h3 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 1.3rem;
  }
  
  .feature-list {
    list-style: none;
    margin-bottom: 2rem;
  }
  
  .feature-list li {
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
    color: var(--white);
  }
  
  .feature-list li:before {
    content: "✓";
    color: var(--primary);
    position: absolute;
    left: 0;
    font-weight: bold;
  }

  .package-includes, .package-price {
    color: white;
  }

  strong {
    color: var(--primary);
  }
  
  .pricing-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 2rem;
  }
  
  .pricing-table th,
  .pricing-table td {
    padding: 0.8rem;
    text-align: left;
    border-bottom: 1px solid var(--primary);
    color: var(--white);
  }
  
  .pricing-table th {
    background-color: var(--dark);
    color: var(--primary);
  }
  
  .pricing-table tr:nth-child(even) {
    background-color: var(--transparent-light);
  }
  
  .cta-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 2rem;
    padding-top: 2rem;
    margin-right: 30px;
    border-top: 1px solid var(--primary);
  }
  
  .modal-cta {
    display: inline-block;
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
    color: #ffffff;
    background: transparent;
    border: 2px solid #c47e69;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    z-index: 1;
  }

  .btn-fancy::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: #c47e69;
  transition: all 0.3s ease;
  z-index: -1;
}

.btn-fancy:hover::before {
  left: 0;
}

.btn-fancy:hover {
  color: #0f0f0f;
  box-shadow: 0 0 20px rgba(196, 126, 105, 0.5);
}

/* Mobile button behavior */
@media (max-width: 768px) {
  .btn-fancy:hover::before {
    left: -100%; /* Disable hover animation on mobile */
  }

  .btn-fancy:active::before {
    left: 0; /* Show background on tap */
  }

  .btn-fancy:active {
    transform: scale(0.96);
    color: #0f0f0f;
    box-shadow: 0 0 20px rgba(196, 126, 105, 0.5);
    transition: transform 0.2s ease, color 0.3s ease, box-shadow 0.3s ease;
  }
}
    
  .port-preview {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 1.5rem;
  }
  
  .port-item {
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    height: 0;
    padding-bottom: 66%;
  }
  
  .port-item img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .service-description {
    color: white;
  }

  .service-testimonial {
    background-color: var(--dark);
    border-left: 4px solid var(--primary);
    padding: 1.5rem;
    margin: 2rem 0;
    font-style: italic;
    position: relative;
    color: var(--white);
  }
  
  .service-testimonial:before {
    content: '"';
    font-size: 4rem;
    color: var(--primary);
    position: absolute;
    top: -1.5rem;
    left: 0.5rem;
    opacity: 0.3;
  }
  
  .testimonial-author {
    font-style: normal;
    font-weight: 600;
    margin-top: 1rem;
    display: block;
    color: var(--primary);
  }
  
  .faq-item {
    margin-bottom: 1rem;
    border: 1px solid var(--primary);
    border-radius: 8px;
    overflow: hidden;
  }
  
  .faq-question {
    padding: 1rem;
    background-color: var(--dark);
    cursor: pointer;
    font-weight: 500;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
  }
  
  .faq-question:after {
    content: '+';
    font-size: 1.2rem;
  }
  
  .faq-item.active .faq-question:after {
    content: '−';
  }
  
  .faq-answer {
    padding: 0 1rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    color: var(--white);
  }
  
  .faq-item.active .faq-answer {
    padding: 1rem;
    max-height: 300px;
  }
  
  .process-steps {
    display: flex;
    flex-wrap: wrap;
    margin: 2rem 0;
    gap: 2rem;
  }
  
  .process-step {
    flex: 1;
    min-width: 200px;
    text-align: center;
    position: relative;
  }
  
  .process-step:not(:last-child):after {
    content: '';
    position: absolute;
    top: 2rem;
    right: -1rem;
    width: 2rem;
    height: 2px;
    background-color: var(--primary);
  }
  
  .step-number {
    width: 4rem;
    height: 4rem;
    background-color: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    font-weight: bold;
  }
  
  .step-title {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--primary);
  }
  
  .step-description {
    color: var(--white);
  }
  
  @keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
  }
  
  @media (max-width: 1024px) {
    .service-core {
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    .service-pod {
      min-height: 340px;
    }
  }
  
  @media (max-width: 768px) {
    .service-core {
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 1.5rem;
    }
    .service-pod {
      min-height: 320px;
      padding: 1.5rem;
    }
    .service-pod h3 {
      font-size: 1.25rem;
    }
    .service-pod p {
      font-size: 0.9rem;
    }
    .portfolio-preview {
      grid-template-columns: repeat(2, 1fr);
    }
    .process-steps {
      flex-direction: column;
      gap: 1rem;
    }
    .process-step:not(:last-child):after {
      display: none;
    }
  }
  
  @media (max-width: 500px) {
    .services-section {
      padding: 4rem 0;
    }
    .service-pod {
      min-height: 300px;
      padding: 1rem;
    }
    .service-pod h3 {
      font-size: 1.1rem;
    }
    .portfolio-preview {
      grid-template-columns: 1fr;
    }
    .cta-container {
      flex-direction: column;
      gap: 1rem;
    }
    .tooltip {
      width: 90%;
      left: 5% !important;
      right: 5% !important;
    }
  }
  
  button.cta.open-modal {
    background-color: transparent !important;
  }
  

  /* ==========================================================================
  SERVICES PAGE END
   ========================================================================== */

  /* ==========================================================================
  SERVICES PAGE END
   ========================================================================== */

  /* ==========================================================================
  SERVICES PAGE END
   ========================================================================== */

  /* ==========================================================================
  SERVICES PAGE END
   ========================================================================== */

  /* ==========================================================================
  SERVICES PAGE END
   ========================================================================== */
/* Google Review Banner */
/* Google Review Banner */
/* Google Review Banner */
.google-review-banner {
  padding: 20px;
  margin-bottom: 50px;
}
.google-review-banner img {
  display: block;
  margin: 0 auto;
}

.google-review-container {
  padding: 20px;
  border-radius: 10px;
  border: 1px solid #c47e69;
  margin-bottom: 50px;
}
/* Google Review Banner */
/* Google Review Banner */
/* Google Review Banner */
/* ==========================================================================
  TESTOMONIAL PAGE
   ========================================================================== */
/* ==========================================================================
  TESTOMONIAL PAGE
   ========================================================================== */
/* ==========================================================================
  TESTOMONIAL PAGE
   ========================================================================== */
/* ==========================================================================
  TESTOMONIAL PAGE
   ========================================================================== */
.ts-container {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Hero Section */

.ts-heading {
  font-size: 2.8rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 15px;
}

.ts-subtext {
  font-size: 1.15rem;
  color: #bbb;
  margin-bottom: 40px;
  line-height: 1.7;
}

/* Slider Section */
.ts-slider {
  padding: 20px 0;
}

.ts-swiper {
  padding: 20px 0;
}

.ts-card {
  background: #111;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s;
}

.ts-card:hover {
  transform: translateY(-5px);
}

.ts-card-header {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.ts-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 15px;
  object-fit: cover;
}

.ts-card-header h5 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #fff;
  margin: 0;
}

.ts-date {
  display: block;
  font-size: 0.9rem;
  color: #888;
}

.ts-stars {
  color: #C47E69;
  font-size: 1.1rem;
  margin-top: 5px;
}

.ts-card blockquote {
  font-size: 1rem;
  color: #eee;
  font-style: italic;
  margin: 0;
}

.swiper-button-prev,
.swiper-button-next {
  color: #C47E69;
  width: 40px;
  height: 40px;
  background: rgba(196, 126, 105, 0.1);
  border-radius: 50%;
  transition: background 0.3s ease;
}

.swiper-button-prev::after,
.swiper-button-next::after {
  color: #C47E69;
  font-size: 20px;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
  background: rgba(196, 126, 105, 0.3);
}

/* Detailed Testimonial */
.ts-detail {
  padding: 60px 0;
  background: linear-gradient(145deg, #0c0c0c, #1a1a1a);
}

.ts-detail-card {
  background: #111;
  border-radius: 16px;
  padding: 48px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
}

.ts-dropcap {
  float: left;
  font-size: 4rem;
  font-weight: 700;
  color: #C47E69;
  margin-right: 10px;
  line-height: 1;
}

.ts-detail-card p {
  font-size: 1rem;
  color: #eee;
  margin-bottom: 20px;
}

/* Form Section */
.ts-form-section {
  background: linear-gradient(145deg, #0c0c0c, #1a1a1a);
  padding: 20px 20px;
}

.ts-form {
  background: #111;
  border-radius: 16px;
  padding: 48px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
}

.ts-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.ts-field {
  display: flex;
  flex-direction: column;
}

.ts-label {
  font-weight: 600;
  margin-bottom: 6px;
  color: #ccc;
}

.ts-input,
.ts-textarea {
  background: #1c1c1c;
  color: #eee;
  border: 1px solid #333;
  border-radius: 12px;
  padding: 14px 18px;
  font-size: 1rem;
  transition: 0.3s;
}

.ts-input:focus,
.ts-textarea:focus {
  outline: none;
  border-color: #C47E69;
  box-shadow: 0 0 0 3px rgba(196, 126, 105, 0.2);
  background: #222;
}

.ts-error {
  color: #f55;
  font-size: 0.85rem;
  margin-top: 4px;
  display: none;
}

.ts-full {
  grid-column: span 2;
}

.ts-result {
  margin-top: 16px;
  font-size: 1rem;
  color: #0f0;
  text-align: center;
}

@media (max-width: 600px) {
  .ts-grid {
    grid-template-columns: 1fr;
  }

  .ts-full {
    grid-column: span 1;
  }

  .ts-heading {
    font-size: 2rem;
  }
}
/* ==========================================================================
  TESTOMONIAL PAGE END
   ========================================================================== */
/* ==========================================================================
  TESTOMONIAL PAGE END
   ========================================================================== */
/* ==========================================================================
  TESTOMONIAL PAGE END
   ========================================================================== */
/* ==========================================================================
  TESTOMONIAL PAGE END
   ========================================================================== */


/* ==========================================================================
   CONTACT PAGE
   ========================================================================== */
/* ==========================================================================
   CONTACT PAGE
   ========================================================================== */
/* ==========================================================================
   CONTACT PAGE
   ========================================================================== */
/* ==========================================================================
   CONTACT PAGE
   ========================================================================== */

.cf-section {
  background: linear-gradient(145deg, #0c0c0c, #1a1a1a);
  padding: 20px;
  color: #fff;
  font-family: 'Inter', sans-serif;
}
.cf-container {
  max-width: 960px;
  margin: 0 auto;
}
.cf-heading {
  font-size: 2.8rem;
  font-weight: 700;
  text-align: center;
  color: #fff;
  margin-bottom: 15px;
}
.cf-subtext {
  text-align: center;
  font-size: 1.15rem;
  color: #bbb;
  margin-bottom: 40px;
  line-height: 1.7;
}
.cf-form {
  background: #111;
  border-radius: 16px;
  padding: 48px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
}
.cf-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}
.cf-field {
  display: flex;
  flex-direction: column;
  position: relative;
}
.cf-label {
  font-weight: 600;
  margin-bottom: 6px;
  color: #ccc;
}
.cf-input,
.cf-textarea {
  background: #1c1c1c;
  color: #eee;
  border: 1px solid #333;
  border-radius: 12px;
  padding: 14px 18px;
  font-size: 1rem;
  transition: 0.3s;
}
.cf-input:focus,
.cf-textarea:focus {
  outline: none;
  border-color: #C47E69;
  box-shadow: 0 4px 12px rgba(196, 126, 105, 0.35), 0 0 0 2px rgba(196, 126, 105, 0.25);

  background: #222;
}
.cf-error {
  color: #f55;
  font-size: 0.85rem;
  margin-top: 4px;
  display: none;
}
.cf-full {
  grid-column: span 2;
}
.cf-button {
  background-color: transparent;
  color: #ffffff;
  font-weight: 7px;
  padding: 16px 32px;
  border-radius: 50px;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}
.cf-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(0, 255, 255, 0.25);
}
.cf-result {
  margin-top: 16px;
  font-size: 1rem;
  color: #0f0;
  text-align: center;
}
@media (max-width: 600px) {
  .cf-grid {
    grid-template-columns: 1fr;
  }
  .cf-full {
    grid-column: span 1;
  }
  .cf-button {
    width: 100%;
  }
}
/* Base input styles (if not already set) */
.cf-input {
  padding-left: 2.5rem; /* leave space for icons */
  background-repeat: no-repeat;
  background-position: 0.75rem center;
  background-size: 1rem 1rem;
  background-color: #1a1a1a; /* example dark input bg */
  color: #fff;
  border: 1px solid #444;
  border-radius: 8px;
  transition: border 0.2s;
}

.cf-input:focus {
  outline: none;
  border-color: #d4a373; /* rose gold border on focus */
}

/* Calendar icon (rose gold) */
.cf-date {
  background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' fill='%23d4a373' viewBox='0 0 16 16' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3 0a.5.5 0 0 1 .5.5V1h8V.5a.5.5 0 0 1 1 0V1h.5A1.5 1.5 0 0 1 14.5 2.5v11A1.5 1.5 0 0 1 13 15H3a1.5 1.5 0 0 1-1.5-1.5v-11A1.5 1.5 0 0 1 3 1h.5V.5A.5.5 0 0 1 3 0zM2 4v9.5a.5.5 0 0 0 .5.5h10a.5.5 0 0 0 .5-.5V4H2z'/%3E%3C/svg%3E");
}

/* Clock icon (rose gold) */
.cf-time {
  background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' fill='%23d4a373' viewBox='0 0 16 16' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8 3.5a.5.5 0 0 1 .5.5v4h2a.5.5 0 0 1 0 1H8a.5.5 0 0 1-.5-.5V4a.5.5 0 0 1 .5-.5zM8 16A8 8 0 1 0 8 0a8 8 0 0 0 0 16zM1 8a7 7 0 1 1 14 0A7 7 0 0 1 1 8z'/%3E%3C/svg%3E");
}

/* Map Section */
.cs-map-section {
  width: 100%;
  padding: 40px 0; /* Add vertical spacing */
  background-color: #f8f9fa; /* Light background for contrast */
}

/* Map Container */
.cs-map-container {
  max-width: 1200px; /* Consistent with site width */
  margin: 0 auto; /* Center horizontally */
}

/* Map Embed */
.cs-google_map {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 40%; /* Adjusted for a balanced 2.5:1 ratio */
  overflow: hidden;
  border-radius: 12px; /* Softer corners */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
  transition: padding-bottom 0.3s ease; /* Smooth transitions for responsiveness */
}

/* Iframe Styling */
.cs-google_map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  filter: none; /* Keep colors vibrant */
}

/* Fallback Message */
.cs-google_map .cs-map-fallback {
  display: none; /* Hidden unless iframes are disabled */
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #333;
  font-size: 1rem;
}

/* Tablet Breakpoint */
@media (max-width: 768px) {
  .cs-map-section {
    padding: 30px 0; /* Slightly less padding */
  }

  .cs-google_map {
    padding-bottom: 50%; /* Slightly taller for tablets */
    border-radius: 8px; /* Slightly smaller radius */
  }
}

/* Mobile Breakpoint */
@media (max-width: 480px) {
  .cs-map-section {
    padding: 20px 0; /* Minimal padding for phones */
  }

  .cs-google_map {
    padding-bottom: 60%; /* 5:3 ratio for better mobile fit */
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); /* Lighter shadow */
  }
}

/* Ensure no gap with footer */
.cs-map-section {
  margin-bottom: 0;
}
/* ==========================================================================
   CONTACT PAGE END
   ========================================================================== */
/* ==========================================================================
   CONTACT PAGE END
   ========================================================================== */
/* ==========================================================================
   CONTACT PAGE END
   ========================================================================== */
/* ==========================================================================
   CONTACT PAGE END
   ========================================================================== */
/* ==========================================================================
   4. FOOTER STYLES
   ========================================================================== */
/* ==========================================================================
   4. FOOTER STYLES
   ========================================================================== */
/* ==========================================================================
   4. FOOTER STYLES
   ========================================================================== */
/* ==========================================================================
   4. FOOTER STYLES
   ========================================================================== */
/* ==========================================================================
   4. FOOTER STYLES
   ========================================================================== */
.footer {
  background: linear-gradient(135deg, #0f0f0f 0%, #2d2d2d 50%, #c47e69 100%);
  color: #e0e0e0;
  padding: 20px 0 20px;
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  position: relative;
  overflow: hidden;
}

/* Overlay effect for the footer */
.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at 50% 50%,
    rgba(255, 255, 255, 0.05),
    transparent 50%
  );
  pointer-events: none;
}

/* Container for content centering */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
}

/* Grid layout for footer sections */
.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
  margin-bottom: 40px;
}

/* Basic styles for each footer section */
.footer-section {
  margin-bottom: 24px;
}

/* Remove bottom margin from specific sections */
div.footer-section.contact,
div.footer-section.social-media,
div.footer-section.newsletter {
  margin-bottom: 0;
}

/* Section headings */
.footer-section h5 {
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  color: #c47e69;
  margin-bottom: 16px;
  letter-spacing: 0.05em;
}

/* Section paragraphs */
.footer-section p {
  font-size: 0.95rem;
  color: #b0b0b0;
  margin-bottom: 16px;
}


/* ==========================================================================
   11. MEDIA QUERIES
   ========================================================================== */
/* Mobile styles for marquee text */
@media (max-width: 768px) {
  .de-marquee-list .d-item-txt {
      font-size: 60px;
      line-height: 60px;
  }
  
  /* Footer section spacing on mobile */
  .footer-section.menu,
  .footer-section.social-media,
  .footer-section.contact {
    margin-bottom: 16px;
  }

  .footer-section.menu h5,
  .footer-section.social-media h5,
  .footer-section.contact h5 {
    font-size: 0.85rem;
    margin-bottom: 12px;
  }

  .footer-section.menu ul li {
    margin-bottom: 8px;
  }

  .footer-section.menu ul li a {
    font-size: 0.9rem;
  }

  .footer-section.social-media .social-icons {
    gap: 8px;
  }

  .footer-section.social-media .social-icons a {
    width: 40px;
    height: 40px;
  }

  .footer-section.social-media .social-icons .icon {
    width: 20px;
    height: 20px;
  }

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

  .footer-section.contact a {
    font-size: 0.9rem;
    gap: 6px;
  }

  .footer-section.contact .icon {
    width: 18px;
    height: 18px;
  }
}
/* ==========================================================================
   6. SOCIAL ICONS
   ========================================================================== */
   .social-icons {
    display: flex;
    gap: 12px;
  }

  .mobile-icons{
    display: flex;
  justify-content: center; /* Centers icons horizontally */
  align-items: center; /* Ensures vertical alignment */
  gap: 1rem; /* Adds spacing between icons (adjust as needed) */
  }

.social-media-mobile {
 margin-top: 50px;
}
  
  /* Base style for all social icons */
  .social-icons a {
    color: #ffffff;
    background-color: rgba(255, 255, 255, 0.1); /* Default fallback */
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition:
      background 0.3s ease,
      color 0.3s ease,
      transform 0.2s ease;
  }
  
  /* Icon sizing */
  .social-icons .icon {
    width: 24px;
    height: 24px;
    font-size: 24px;
  }
  
  /* Individual brand colors on hover */
  .social-icons a[href*="linkedin"] {
    background-color: #0a66c2; /* LinkedIn blue */
    color: #ffffff;
  }
  
  .social-icons a[href*="wa.me"] {
    background-color: #25D366; /* WhatsApp green */
    color: #ffffff;
  }
  
  .social-icons a[href*="line.me"] {
    background-color: #00C300; /* LINE green */
    color: #ffffff;
    
  }
  .social-icons a:hover {
    transform: translateY(-2px);
  }
  
/* ==========================================================================
   MENU LINKS
   ========================================================================== */
.menu ul {
  list-style: none;
  padding: 0;
}

.menu ul li {
  margin-bottom: 12px;
}

.menu ul li a {
  color: white;
  text-decoration: none;
  font-size: 0.95rem;
  transition:
    color 0.3s ease,
    padding-left 0.2s ease;
}

/* Active and hover states for menu items */
.menu ul li a:hover,
.menu ul li a[aria-current="page"] {
  color: #c47e69;
  padding-left: 8px;
}

/*trademark footer*/
/*trademark footer*/
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  text-align: center;
  font-size: 0.85rem;
  color: #888;
}


/* ==========================================================================
   5. NEWSLETTER SECTION
   ========================================================================== */
/* Newsletter text */
.newsletter p {
  font-size: 1.1rem;
  color: #e0e0e0;
}

/* Newsletter form container */
.newsletter-form {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  padding: 4px;
  transition: box-shadow 0.3s ease;
}

/* Focus effect for the form */
.newsletter-form:focus-within {
  box-shadow: 0 0 0 3px rgba(244, 162, 97, 0.3);
}

/* Input field styling */
.newsletter-form input {
  flex: 1;
  padding: 12px 16px;
  border: none;
  background: transparent;
  color: #fff;
  font-size: 0.9rem;
  outline: none;
}

/* Placeholder text color */
.newsletter-form input::placeholder {
  color: #888;
  opacity: 0.8;
}

/* Submit button */
.newsletter-form button {
  background: #c47e69;
  border: none;
  padding: 12px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background 0.3s ease,
    transform 0.2s ease;
}

/* Button hover effect */
.newsletter-form button:hover {
  background: #e76f51;
  transform: scale(1.05);
}

/* Icon inside button */
.newsletter-form .icon {
  width: 20px;
  height: 20px;
  stroke-width: 2;
}
  
.contact a {
  color: white;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

/* Hover effect for contact links */
.contact a:hover {
  color: #c47e69;
}

/* Contact icons */
.contact .icon {
  width: 20px;
  height: 20px;
  stroke-width: 2;
}
.tm {
  color: white !important;
}
/* ==========================================================================
   FOOTER STYLES END
   ========================================================================== */

   section.no-top.achievements-section {
    padding-bottom: 0 !important;
   } 