/* ==========================================================================
   MAYANK SHARMA - HERO SECTION STYLESHEET
   Color Theme: #020201, #030303, #EA1016, #E20D12
   ========================================================================== */

/* --- CSS Variables --- */
:root {
  --bg-main: #020201;
  --bg-secondary: #030303;
  --bg-card: #090909;
  
  --primary-red: #EA1016;
  --secondary-red: #E20D12;
  --red-glow: rgba(234, 16, 22, 0.4);
  --red-subtle: rgba(234, 16, 22, 0.15);
  
  --text-primary: #ffffff;
  --text-secondary: #cccccc;
  --text-muted: #777777;
  
  /* --font-heading: 'Plus Jakarta Sans', 'Outfit', sans-serif; */
  --font-clash: 'Clash Display', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-mono: 'Space Mono', monospace;
  
  --transition-fast: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  
  --header-height: 80px;
}

/* --- Global Reset & Typography --- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  /* background-color: var(--bg-main); */
  color: var(--text-primary);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3 {
  font-family: var(--font-clash) !important;
}

h4, h5, h6 {
  font-family: var(--font-clash);
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

.mono {
  font-family: var(--font-mono);
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

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

::selection {
  background-color: var(--primary-red);
  color: #ffffff;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 5px;
}
::-webkit-scrollbar-track {
  background: #fff;
}
::-webkit-scrollbar-thumb {
  background: var(--primary-red);
  /* border-radius: 4px; */
}
::-webkit-scrollbar-thumb:hover {
  background: var(--primary-red);
}

/* Scroll Progress Bar */
.scroll-progress-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: rgba(0, 0, 0, 0.038);
  z-index: 9999;
  pointer-events: none;
}

.scroll-progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--primary-red) 0%, var(--secondary-red) 100%);
  box-shadow: 0 0 10px var(--primary-red);
  transition: width 0.05s ease-out;
}

/* --- Header / Navigation --- */
.navbar-custom {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  background-color: rgba(2, 2, 1, 0.85);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: background-color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  z-index: 1050;
}

.navbar-custom.scrolled {
  height: var(--header-height);
  background-color: #ffffff !important;
  border-bottom: 1px solid #eaeaea;
box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}

.navbar-custom.scrolled .brand-logo {
  color: #111111 !important;
}

.navbar-custom.scrolled .nav-link-custom {
  color: #222222 !important;
}

.navbar-custom.scrolled .nav-link-custom:hover,
.navbar-custom.scrolled .nav-link-custom.active {
  color: var(--primary-red) !important;
}

.navbar-custom.scrolled .nav-link-custom::after {
  background-color: var(--primary-red);
  box-shadow: 0 0 8px rgba(234, 16, 22, 0.5);
}

.navbar-custom.scrolled .navbar-toggler-icon {
  filter: invert(1);
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 20px;
  letter-spacing: 1px;
  color: var(--text-primary);
}

.logo-badge {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--primary-red), var(--secondary-red));
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-weight: 900;
  font-size: 20px;
  box-shadow: 0 4px 15px var(--red-glow);
}

.nav-link-custom {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255, 255, 255, 0.85) !important;
  padding: 8px 16px !important;
  position: relative;
}

.nav-link-custom:hover,
.nav-link-custom.active {
  color: #ffffff !important;
}

.nav-link-custom::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 16px;
  right: 16px;
  height: 2px;
  background-color: var(--primary-red);
  box-shadow: 0 0 10px var(--primary-red);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link-custom:hover::after,
.nav-link-custom.active::after {
  transform: scaleX(1);
}

/* Header Buttons */
.btn-red-talk {
  background: linear-gradient(135deg, var(--primary-red), var(--secondary-red));
  color: #ffffff !important;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 12px 28px;
  border-radius: 50px;
  border: none;
  box-shadow: 0 4px 20px var(--red-glow);
  transition: var(--transition-fast);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-red-talk:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(234, 16, 22, 0.7);
  color: #ffffff;
}

/* --- Vertical Social Sidebar (Right Side) --- */
.social-sidebar {
  position: fixed;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 100;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.social-sidebar-link {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: var(--transition-fast);
  backdrop-filter: blur(8px);
}

.social-sidebar-link:hover {
  background-color: var(--primary-red);
  border-color: var(--primary-red);
  color: #ffffff;
  transform: translateX(-5px);
  box-shadow: 0 0 20px var(--red-glow);
}

/* --- Hero Section --- */
.hero-section {
  position: relative;
  height: 100vh;
  padding-top: var(--header-height);
  display: flex;
  align-items: center;
  background-image: url('../img/heroback3.png');
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  overflow: hidden;
}

/* Video Background styles */
.hero-video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(2, 2, 1, 0.65); /* Semi-transparent dark overlay to ensure readability */
  z-index: 2;
  pointer-events: none;
}

/* Background Atmosphere & Glows */
.hero-glow {
  position: absolute;
  top: 10%;
  right: 0%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(234, 16, 23, 0.221) 0%, rgba(226, 13, 17, 0.173) 40%, rgba(2, 2, 1, 0) 70%);
  filter: blur(50px);
  border-radius: 50%;
  pointer-events: none;
  z-index: 3;
  animation: pulseGlow 6s ease-in-out infinite alternate;
}

.hero-glow-left {
  position: absolute;
  bottom: 5%;
  left: -5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(234, 16, 22, 0.25) 0%, rgba(2, 2, 1, 0) 70%);
  filter: blur(70px);
  border-radius: 50%;
  pointer-events: none;
  z-index: 3;
}

@keyframes pulseGlow {
  0% {
    transform: scale(1) translate(0, 0);
    opacity: 0.75;
  }
  100% {
    transform: scale(1.15) translate(-20px, 20px);
    opacity: 1;
  }
}

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

.hero-content h4 {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--text-primary);
}

#typed {
  color: var(--primary-red);
  text-shadow: 0 0 20px rgba(234, 16, 22, 0.45);
}

.typed-cursor {
  color: var(--primary-red);
}


.hero-subtitle {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 800;
  color: var(--primary-red);
  letter-spacing: 3px;
  text-transform: uppercase;
  /* margin-bottom: 12px; */
  display: block;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 50px;
  font-weight: 900;
  line-height: 0.95;
  text-transform: uppercase;
  /* margin-bottom: 20px; */
  letter-spacing: -1px;
}

.hero-title .name-white {
  color: #ffffff;
  display: block;
}
.typed{
  font-size: 55px !important;
}
.hero-title .name-red {
  color: var(--primary-red);
  display: block;
  text-shadow: 0 0 35px rgba(234, 16, 22, 0.45);
}

.hero-description {
  font-size: 20px;
  color: #d8d8d8;
  font-weight: 500;
  margin-bottom: 25px;
  max-width: 540px;
  line-height: 1.5;
}

/* Feature Badges in Hero */
.hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 25px;
}

.feature-badge-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(10, 10, 10, 0.6);
  border: 1px solid rgba(234, 16, 22, 0.35);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 10px 20px;
  border-radius: 50px;
  transition: var(--transition-fast);
}

.feature-badge-item:hover {
  background: rgba(234, 16, 22, 0.15);
  border-color: var(--primary-red);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(234, 16, 22, 0.2);
}

.feature-icon-circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid var(--primary-red);
  background: rgba(234, 16, 22, 0.15);
  color: var(--primary-red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}

.feature-text {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
}

/* Primary Action Button */
.btn-primary-action {
  background: linear-gradient(135deg, var(--primary-red) 0%, var(--secondary-red) 100%);
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 16px 40px;
  border-radius: 50px;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 6px 40px var(--red-glow);
  transition: var(--transition-fast);
}

.btn-primary-action:hover {
  color: #ffffff;
  transform: translateY(-3px);
  /* box-shadow: 0 15px 15px 20px rgba(234, 16, 22, 0.75); */
}

.btn-primary-action i {
  transition: var(--transition-fast);
}

.btn-primary-action:hover i {
  transform: translateX(5px);
}

/* Hero Portrait Right Side */
.hero-image-wrapper {
  position: relative;
  z-index: 5;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  height: 100%;
}

.hero-portrait-container {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.hero-portrait-img {
  /* max-height: 100vh;
  width: auto;
  max-width: 100%; */
  width: 100%;
  height: 550px;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.9));
  transition: var(--transition-fast);
}

/* --- Responsive Media Queries --- */
@media (max-width: 1199.98px) {
  .hero-title {
    font-size: 72px;
  }

  .hero-portrait-img {
    max-height: 75vh;
  }
}

/* --- Mobile Offcanvas Left Menu & Backdrop --- */
.mobile-nav-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 1040;
  display: none;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.mobile-nav-backdrop.show {
  display: block;
  opacity: 1;
}

body.mobile-nav-open {
  overflow: hidden;
}

@media (max-width: 991.98px) {
  .social-sidebar {
    display: none;
  }

  /* Left Side Off-Canvas Mobile Drawer */
  .navbar-collapse {
    position: fixed !important;
    top: 0;
    left: 0;
    width: 300px;
    max-width: 85vw;
    height: 100vh;
    height: 100dvh;
    background-color: #080808 !important;
    border-right: 1px solid rgba(234, 16, 22, 0.3);
    padding: 25px 24px 40px;
    display: flex !important;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    z-index: 1060;
    transform: translateX(-100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.35s ease;
    box-shadow: none;
    overflow-y: auto;
  }

  .navbar-collapse.show {
    transform: translateX(0);
    box-shadow: 10px 0 35px rgba(0, 0, 0, 0.7);
  }

  .navbar-collapse.collapsing {
    height: 100vh !important;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.35s ease;
    transform: translateX(-100%);
    box-shadow: 10px 0 35px rgba(0, 0, 0, 0.7);
  }

  /* Mobile Drawer Header */
  .mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 25px;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .mobile-menu-close {
    font-size: 16px;
    opacity: 0.8;
    transition: var(--transition-fast);
    cursor: pointer;
    filter: invert(1) grayscale(100%) brightness(200%);
  }

  .mobile-menu-close:hover {
    opacity: 1;
    transform: rotate(90deg);
  }

  .navbar-menu {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 25px !important;
  }

  .nav-item {
    width: 100%;
  }
.logo-badge {
  width: 35px;
  height: 35px;
  background: linear-gradient(135deg, var(--primary-red), var(--secondary-red));
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-weight: 900;
  font-size: 16px;
  box-shadow: 0 4px 15px var(--red-glow);
}

.brand-logo{
  font-size: 16px;
}

  .nav-link-custom {
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 1.5px;
    padding: 12px 14px !important;
    display: block;
    width: 100%;
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.85) !important;
    transition: var(--transition-fast);
  }

  .nav-link-custom:hover,
  .nav-link-custom.active {
    background-color: rgba(234, 16, 22, 0.12);
    color: var(--primary-red) !important;
  }

  .nav-link-custom.active::after {
    display: none;
  }

  .w-100-mobile {
    width: 100% !important;
  }

  .btn-red-talk.w-100-mobile {
    width: 100%;
    text-align: center;
    padding: 14px 20px;
    border-radius: 8px;
  }

  /* Scrolled state on mobile side drawer */
  .navbar-custom.scrolled .navbar-collapse {
    background-color: #ffffff !important;
    border-right: 1px solid #e5e5e5;
  }

  .navbar-custom.scrolled .mobile-menu-header {
    border-bottom: 1px solid #eeeeee;
  }

  .navbar-custom.scrolled .mobile-menu-close {
    filter: none;
  }

  .navbar-custom.scrolled .nav-link-custom {
    color: #222222 !important;
  }

  .navbar-custom.scrolled .nav-link-custom:hover,
  .navbar-custom.scrolled .nav-link-custom.active {
    background-color: rgba(234, 16, 22, 0.08);
    color: var(--primary-red) !important;
  }

  .hero-section {
    padding-top: calc(var(--header-height) + 60px);
    padding-bottom: 0px;
    text-align: center;
    height: auto;
  }

  .hero-description {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-features {
    justify-content: center;
  }

  .hero-image-wrapper {
    margin-top: 40px;
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
  }

  .hero-title {
    font-size: 56px;
  }

  .hero-portrait-container {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
  }

  .hero-portrait-img {
    max-height: 50vh;
    height: auto !important;
    object-position: bottom center;
    vertical-align: bottom;
    display: block;
    margin-bottom: 0 !important;
  }

  .hero-section .container-fluid {
    padding-bottom: 0 !important;
  }
}

@media (max-width: 575.98px) {
  .hero-title {
    font-size: 42px;
  }
  
  .hero-description {
    font-size: 16px;
  }

  .feature-badge-item {
    width: 46%;
    justify-content: center;
  }

  .btn-primary-action {
    width: 100%;
    justify-content: center;
  }
}

/* ==========================================================================
   WORK PORTFOLIO GALLERY SECTION (WHITE THEME)
   ========================================================================== */
.portfolio-section {
  background-color: #ffffff;
  color: #111111;
  padding: 60px 0;
  position: relative;
  z-index: 10;
}

/* Left Title Header */
.work-section-title {
  font-family: var(--font-heading);
  font-size: 38px;
  font-weight: 900;
  line-height: 0.95;
  text-transform: uppercase;
  letter-spacing: -0.5px;
  margin: 0;
}

.work-section-title .text-black {
  color: #000000;
  display: block;
}

.work-section-title .text-red {
  color: var(--primary-red);
  display: block;
}

/* Filter Tab Buttons */
.pf-tab-btn {
  background: #ffffff;
  border: 1px solid #d4d4d4;
  color: #333333;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 10px 22px;
  border-radius: 8px;
  cursor: pointer;
  transition: var(--transition-fast);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.03);
  margin: 6px 4px;
}

.pf-tab-btn:hover {
  border-color: #999999;
  color: #000000;
}

.pf-tab-btn.active {
  background: var(--primary-red);
  border-color: var(--primary-red);
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(234, 16, 22, 0.35);
}

/* Portfolio Grid Cards */
.portfolio-card-item {
  position: relative;
  border-radius: 0px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  transition: var(--transition-fast);
  height: 200px;
  margin-bottom: 20px;
  background: #000000;
  cursor: pointer;
}

.portfolio-card-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.22);
}

.portfolio-card-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-normal);
  filter: brightness(0.65);
}

.portfolio-card-item:hover .portfolio-card-bg-img {
  transform: scale(1.08);
  filter: brightness(100%);
}

.portfolio-card-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  z-index: 2;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.4) 60%, rgba(0, 0, 0, 0.1) 100%);
  opacity: 0;
  transform: translateY(15px);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.portfolio-card-item:hover .portfolio-card-content {
  opacity: 1;
  transform: translateY(0);
}

.video-play-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--primary-red);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  margin-bottom: 12px;
  box-shadow: 0 4px 15px rgba(234, 16, 22, 0.4);
  transition: var(--transition-fast);
  align-self: flex-start;
}

.portfolio-card-item:hover .video-play-btn {
  transform: scale(1.15);
  background-color: #ffffff;
  color: var(--primary-red);
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.6);
}

.portfolio-zoom-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: #ffffff;
  color: #111111;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  margin-bottom: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  transition: var(--transition-fast);
  align-self: flex-start;
}

.portfolio-card-item:hover .portfolio-zoom-btn {
  transform: scale(1.15);
  background-color: var(--primary-red);
  color: #ffffff;
  box-shadow: 0 6px 20px rgba(234, 16, 22, 0.5);
}

.portfolio-card-title-main {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 800;
  text-transform: uppercase;
  color: #ffffff;
  line-height: 1.2;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
}

.portfolio-card-title-sub {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--primary-red);
  line-height: 1;
  letter-spacing: 1px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
}

/* Bottom Action Button */
.btn-view-all-projects {
  background: var(--primary-red);
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 14px 40px;
  border-radius: 8px;
  border: none;
  box-shadow: 0 6px 20px rgba(234, 16, 22, 0.4);
  transition: var(--transition-fast);
  cursor: pointer;
}

.btn-view-all-projects:hover {
  background: var(--secondary-red);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(234, 16, 22, 0.65);
}

/* ==========================================================================
   HIGHLIGHTS SECTION STYLES (WHITE THEME)
   ========================================================================== */
.highlights-section {
  background-color: #ffffff;
  position: relative;
  z-index: 15;
  padding: 50px 0;
}

.highlight-card {
  background: #ffffff;
  border: 1px solid #eaeaea;
  border-radius: 16px;
  padding: 30px 24px;
  text-align: center;
  height: calc(100% - 30px);
  transition: var(--transition-normal);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.03);
  position: relative;
  overflow: hidden;
  margin-bottom: 20px;
}

.highlight-card:hover {
  transform: translateY(-8px);
  border-color: rgba(234, 16, 22, 0.3);
  box-shadow: 0 18px 40px rgba(234, 16, 22, 0.08);
}

.highlight-icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(234, 16, 22, 0.06);
  border: 1.5px solid rgba(234, 16, 22, 0.2);
  color: var(--primary-red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin: 0 auto 20px;
  transition: var(--transition-fast);
  position: relative;
  z-index: 2;
}

.highlight-card:hover .highlight-icon {
  background: var(--primary-red);
  color: #ffffff;
  box-shadow: 0 0 20px var(--red-glow);
  transform: scale(1.05);
}

.highlight-title {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 800;
  color: #111111;
  margin-bottom: 10px;
  line-height: 1.3;
  position: relative;
  z-index: 2;
}

.highlight-text {
  font-size: 13.5px;
  color: #555555;
  line-height: 1.5;
  margin: 0;
  position: relative;
  z-index: 2;
}


/* ==========================================================================
   ABOUT ME SECTION (WHITE THEME)
   ========================================================================== */
.about-section {
  background-color: #ffffff;
  color: #111111;
  padding: 70px 0 50px; 
  position: relative;
  z-index: 10;
  overflow: hidden;
}

.about-section-title {
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 900;
  line-height: 0.95;
  text-transform: uppercase;
  letter-spacing: -1px;
  margin: 0;
}

.about-section-title .text-black {
  color: #000000;
  display: block;
}

.about-section-title .text-red {
  color: var(--primary-red);
  display: block;
}

.about-lead-text {
  font-size: 18px;
  font-weight: 700;
  color: #111111;
  line-height: 1.5;
}

.about-sub-text {
  font-size: 15px;
  font-weight: 500;
  color: #555555;
  line-height: 1.65;
  max-width: 520px;
}

/* About Buttons */
.btn-download-cv {
  background: var(--primary-red);
  color: #ffffff !important;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: 8px;
  border: none;
  box-shadow: 0 4px 15px rgba(234, 16, 22, 0.4);
  transition: var(--transition-fast);
  display: inline-flex;
  align-items: center;
}

.btn-download-cv:hover {
  background: var(--secondary-red);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(234, 16, 22, 0.6);
  color: #ffffff !important;
}

.btn-about-talk {
  background: #ffffff;
  border: 1px solid #d0d0d0;
  color: #222222 !important;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: 8px;
  transition: var(--transition-fast);
  display: inline-flex;
  align-items: center;
}

.btn-about-talk:hover {
  border-color: #000000;
  color: #000000 !important;
  background: #f8f8f8;
}

/* About Image Frame Container */
.about-image-frame-wrapper {
  position: relative;
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
  min-height: 480px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.about-soft-backdrop {
  position: absolute;
  top: 0px;
  left: -20px;
  width: calc(100% + 40px);
  height: calc(100% + 15px);
  background: rgba(234, 16, 22, 0.06);
  border-top-right-radius: 30px;
  border-top-left-radius: 30px;
  z-index: 1;
}

.about-red-card {
  position: absolute;
  bottom: 0;
  width: 90%;
  height: 80%;
  background: var(--primary-red);
  border-radius: 32px;
  z-index: 2;
  box-shadow: 0 15px 25px rgba(234, 16, 22, 0.25);
}

.about-person-img {
  position: relative;
  z-index: 3;
  width: 100%;
  max-height: 430px;
  object-fit: contain;
  filter: drop-shadow(0 15px 20px rgba(0, 0, 0, 0.16));
}

/* Floating Badge */
.about-exp-badge {
  position: absolute;
  bottom: 30px;
  right: -25px;
  background: #ffffff;
  border-radius: 12px;
  padding: 14px 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  display: flex;
  align-items: center;
  gap: 14px;
  z-index: 5;
  border: 1px solid #f0f0f0;
}

.exp-icon-box {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(234, 16, 22, 0.1);
  color: var(--primary-red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.exp-text-box {
  display: flex;
  flex-direction: column;
}

.exp-years {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 800;
  color: var(--primary-red);
  line-height: 1.2;
}

.exp-label {
  font-size: 12px;
  font-weight: 600;
  color: #777777;
  line-height: 1.2;
}

/* ==========================================================================
   MY SERVICES SECTION (DARK THEME)
   ========================================================================== */
.services-section {
  background-color: var(--bg-secondary);
  color: var(--text-primary);
  padding: 80px 0;
  position: relative;
  z-index: 10;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.services-section-title {
  font-family: var(--font-heading);
  font-size: 42px;
  font-weight: 900;
  line-height: 0.95;
  text-transform: uppercase;
  letter-spacing: -0.5px;
  margin: 0;
}

.services-section-title .text-white {
  color: #ffffff;
  display: block;
}

.services-section-title .text-red {
  color: var(--primary-red);
  display: block;
}

.services-section-desc {
  font-size: 16px;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 0;
}

/* Service Card Item */
.service-card-item {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 18px;
  padding: 38px 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: var(--transition-fast);
  height: calc(100% - 30px);
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

.service-card-item:hover {
  transform: translateY(-6px);
  border-color: rgba(234, 16, 22, 0.35);
  box-shadow: 0 18px 40px rgba(234, 16, 22, 0.15);
}

.service-icon-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--primary-red);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 24px;
  box-shadow: 0 6px 18px rgba(234, 16, 22, 0.35);
  transition: var(--transition-fast);
}

.service-card-item:hover .service-icon-circle {
  transform: scale(1.05);
  box-shadow: 0 6px 22px rgba(234, 16, 22, 0.6);
}

.service-card-title {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.3;
  margin-bottom: 24px;
}

.badge-growing {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  color: #ffc107;
  background: rgba(255, 193, 7, 0.1);
  border: 1px solid rgba(255, 193, 7, 0.25);
  padding: 4px 10px;
  border-radius: 50px;
  margin-top: 8px;
  letter-spacing: 0.5px;
}

.service-checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.service-checklist li {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 10px;
}

.service-checklist li i {
  color: var(--primary-red);
  font-size: 13px;
}

/* Bottom CTA Button */
.btn-work-together {
  background: var(--primary-red);
  color: #ffffff !important;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 14px 40px;
  border-radius: 8px;
  border: none;
  box-shadow: 0 6px 20px rgba(234, 16, 22, 0.4);
  transition: var(--transition-fast);
  display: inline-flex;
  align-items: center;
}

.btn-work-together:hover {
  background: var(--secondary-red);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(234, 16, 22, 0.65);
  color: #ffffff !important;
}

/* ==========================================================================
   MY PROCESS SECTION (WHITE THEME)
   ========================================================================== */
.process-section {
  background-color: #ffffff;
  color: #111111;
  padding: 70px 0 80px;
  position: relative;
  z-index: 10;
}

.process-section-title {
  font-family: var(--font-heading);
  font-size: 42px;
  font-weight: 900;
  line-height: 0.95;
  text-transform: uppercase;
  letter-spacing: -0.5px;
  margin: 0;
}

.process-section-title .text-black {
  color: #000000;
  display: block;
}

.process-section-title .text-red {
  color: var(--primary-red);
  display: block;
}

.process-section-desc {
  font-size: 16px;
  font-weight: 500;
  color: #666666;
  margin-bottom: 0;
  line-height: 1.5;
}

.process-timeline-wrapper {
  position: relative;
  margin-top: 40px;
}

/* Horizontal Connecting Line (Desktop) */
.process-connecting-line {
  position: absolute;
  top: 62px;
  left: calc(10.5% + 40px);
  right: calc(10.5% + 40px);
  height: 2px;
  background-color: var(--primary-red);
  z-index: 1;
}

.process-step-col {
  position: relative;
  z-index: 2;
}

.process-step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: var(--transition-fast);
}

.process-icon-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: #000000;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 24px;
  position: relative;
  z-index: 3;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  transition: var(--transition-fast);
}

.process-icon-circle.active-red {
  background-color: var(--primary-red);
  box-shadow: 0 8px 25px rgba(234, 16, 22, 0.4);
}

.process-step-item:hover .process-icon-circle {
  transform: translateY(-4px) scale(1.05);
  background-color: var(--primary-red);
  box-shadow: 0 10px 28px rgba(234, 16, 22, 0.45);
}

.process-number {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 8px;
  display: block;
}

.process-number.text-red {
  color: var(--primary-red);
}

.process-number.text-black {
  color: #000000;
}

.process-step-item:hover .process-number {
  color: var(--primary-red);
}

.process-title {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.process-title.text-red {
  color: var(--primary-red);
}

.process-title.text-black {
  color: #000000;
}

.process-step-item:hover .process-title {
  color: var(--primary-red);
}

.process-text {
  font-size: 14px;
  font-weight: 500;
  color: #666666;
  line-height: 1.5;
  max-width: 240px;
  margin: 0 auto;
}

/* Responsive Media Queries for Process Timeline */
@media (max-width: 991.98px) {
  .process-connecting-line {
    display: none;
  }
  .process-step-col {
    margin-bottom: 20px;
  }
}

/* ==========================================================================
   CLIENTS LOVE SECTION (WHITE THEME)
   ========================================================================== */
.clients-section {
  background-color: #ffffff;
  color: #111111;
  padding: 70px 0 80px;
  position: relative;
  z-index: 10;
}

.clients-section-title {
  font-family: var(--font-heading);
  font-size: 42px;
  font-weight: 900;
  line-height: 0.95;
  text-transform: uppercase;
  letter-spacing: -0.5px;
  margin: 0;
}

.clients-section-title .text-black {
  color: #000000;
  display: block;
}

.clients-section-title .text-red {
  color: var(--primary-red);
  display: block;
}

.clients-section-desc {
  font-size: 16px;
  font-weight: 500;
  color: #666666;
  margin-bottom: 0;
  line-height: 1.5;
}

/* Testimonial Card */
.testimonial-card {
  background: #fff;
  border: 1px solid #eeeeee;
  border-radius: 20px;
  padding: 35px 35px 30px;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
  transition: var(--transition-fast);
  height: 100%;
  min-height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  border-color: #e0e0e0;
}

.quote-icon-top {
  font-size: 24px;
  color: var(--primary-red);
  margin-bottom: 16px;
}

.testimonial-text {
  font-size: 15px;
  font-weight: 500;
  color: #444444;
  line-height: 1.6;
  margin-bottom: 25px;
  flex-grow: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.author-avatar {
  width: 48px !important;
  height: 48px !important;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #ffffff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.author-avatar-text {
  width: 48px !important;
  height: 48px !important;
  border-radius: 50%;
  background: var(--primary-red);
  color: #ffffff !important;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 16px;
  border: 2px solid #ffffff;
  box-shadow: 0 4px 12px rgba(234, 16, 22, 0.25);
  flex-shrink: 0;
}

.author-info {
  display: flex;
  flex-direction: column;
}

.author-name {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 800;
  color: #000000;
  margin: 0;
  line-height: 1.2;
}

.author-role {
  font-size: 13px;
  font-weight: 500;
  color: #777777;
  line-height: 1.2;
}

/* Owl Carousel Custom Dots Styling matching the image */
.testimonials-carousel .owl-dots {
  margin-top: 35px;
  text-align: center;
}
.testimonials-carousel .owl-dot {
  background: none !important;
  border: none !important;
  padding: 0 !important;
}
.testimonials-carousel .owl-dot span {
  width: 8px !important;
  height: 8px !important;
  margin: 5px 6px !important;
  background: #d8d8d8 !important;
  display: block !important;
  transition: all 0.3s ease !important;
  border-radius: 30px !important;
}
.testimonials-carousel .owl-dot.active span,
.testimonials-carousel .owl-dot:hover span {
  background: var(--primary-red) !important;
  width: 20px !important;
  transform: none !important;
}

/* Client Logos Styling */
.client-logos-wrapper {
  border-top: 1px solid #f0f0f0;
  margin-top: 25px;
}

.client-logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 100px;
  margin: 0 auto;
  padding: 8px;
  transition: var(--transition-fast);
  box-shadow: rgba(0, 0, 0, 0.08) 0px 4px 12px;
  /* border-radius: 50%; */
  border: 1px solid #e2e2e2;
  background: #ffffff;
}
.client-logo-item img {

  object-fit: cover;
  transition: all 0.3s ease;
} 
.client-logo-item:hover {
  transform: translateY(-4px);
  box-shadow: rgba(234, 16, 22, 0.15) 0px 8px 24px;
  border-color: rgba(234, 16, 22, 0.3);
}
/* .owl-carousel .owl-item img {
    display: block;
    width: 150%;
} */
/* Custom Dots for Client Logos Carousel */
.client-logos-carousel .owl-dots {
  text-align: center;
  margin-top: 25px;
}
.client-logos-carousel .owl-dot {
  background: none !important;
  border: none !important;
  padding: 0 !important;
}
.client-logos-carousel .owl-dot span {
  width: 8px !important;
  height: 8px !important;
  margin: 5px 6px !important;
  background: #d8d8d8 !important;
  display: block !important;
  transition: all 0.3s ease !important;
  border-radius: 30px !important;
}
.client-logos-carousel .owl-dot.active span {
  background: var(--primary-red) !important;
  width: 20px !important;
}

/* Logo Fonts & Styles */
.logo-fitlife {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 20px;
  color: #000000;
  letter-spacing: 1px;
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
}

.logo-fitlife small {
  font-size: 9px;
  letter-spacing: 3px;
  font-weight: 700;
  color: #555555;
  margin-top: 2px;
}

.logo-travel {
  font-family: 'Plus Jakarta Sans', serif;
  font-weight: 800;
  font-size: 22px;
  color: #111111;
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
}

.logo-travel em {
  font-style: normal;
  font-size: 9px;
  letter-spacing: 2px;
  font-weight: 700;
  color: #666;
}

.logo-coffee {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 18px;
  color: #000000;
  letter-spacing: 1.5px;
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
}

.logo-coffee span {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  color: #666666;
  margin-top: 2px;
}

.logo-wellness {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 800;
  color: #111111;
  letter-spacing: 0.5px;
}

.logo-wellness i {
  font-size: 18px;
  color: #111111;
}

.logo-wellness span {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-wellness small {
  font-size: 9px;
  letter-spacing: 2px;
  font-weight: 700;
  color: #666;
}

.logo-techbyte {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 18px;
  color: #000000;
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
}

.logo-techbyte span {
  font-size: 9px;
  letter-spacing: 2px;
  font-weight: 700;
  color: #666666;
  margin-top: 2px;
}

/* ==========================================================================
   CONTACT / LET'S WORK TOGETHER SECTION (WHITE THEME)
   ========================================================================== */
.contact-section {
  background-color: #ffffff;
  color: #111111;
  padding: 80px 0 100px;
  position: relative;
  z-index: 10;
}

.contact-section-title {
  font-family: var(--font-heading);
  font-size: 42px;
  font-weight: 900;
  line-height: 0.95;
  text-transform: uppercase;
  letter-spacing: -0.5px;
  margin: 0;
}

.contact-section-title .text-black {
  color: #000000;
  display: block;
}

.contact-section-title .text-red {
  color: var(--primary-red);
  display: block;
}

.contact-subtitle-lead {
  font-size: 16px;
  font-weight: 700;
  color: #222222;
}

.contact-subtitle-sub {
  font-size: 15px;
  font-weight: 500;
  color: #666666;
}

/* Contact Details */
.contact-details-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-detail-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.contact-icon-box {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(234, 16, 22, 0.08);
  border: 1.5px solid var(--primary-red);
  color: var(--primary-red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.contact-text-box {
  display: flex;
  flex-direction: column;
}

.detail-label {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 800;
  color: #111111;
  line-height: 1.2;
}

.detail-value {
  font-size: 14px;
  font-weight: 500;
  color: #555555;
  line-height: 1.3;
  transition: var(--transition-fast);
}

a.detail-value:hover {
  color: var(--primary-red);
}

/* Social Buttons */
.contact-social-links {
  display: flex;
  align-items: center;
  gap: 12px;
}

.contact-social-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #000000;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: var(--transition-fast);
}

.contact-social-btn:hover {
  background-color: var(--primary-red);
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(234, 16, 22, 0.4);
}

/* Dark Contact Form Card */
.contact-form-card {
  background-color: #090909;
  border-radius: 24px;
  padding: 45px 40px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.18);
}

.form-control-dark {
  width: 100%;
  background-color: #161616;
  border: 1px solid #282828;
  border-radius: 10px;
  padding: 14px 18px;
  color: #ffffff;
  font-family: var(--font-body);
  font-size: 14px;
  transition: var(--transition-fast);
  outline: none;
}

.form-control-dark::placeholder {
  color: #777777;
}

.form-control-dark:focus {
  background-color: #1c1c1c;
  border-color: var(--primary-red);
  box-shadow: 0 0 12px rgba(234, 16, 22, 0.25);
  color: #ffffff;
}

.form-select-dark {
  width: 100%;
  background-color: #161616;
  border: 1px solid #282828;
  border-radius: 10px;
  padding: 14px 18px;
  color: #ffffff;
  font-family: var(--font-body);
  font-size: 14px;
  transition: var(--transition-fast);
  outline: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23777777'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 18px center;
  background-size: 12px;
}

.form-select-dark option {
  background-color: #161616;
  color: #ffffff;
}

.form-select-dark:focus {
  border-color: var(--primary-red);
  box-shadow: 0 0 12px rgba(234, 16, 22, 0.25);
}

.btn-send-message {
  width: 100%;
  background: var(--primary-red);
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 16px;
  border-radius: 10px;
  border: none;
  box-shadow: 0 6px 20px rgba(234, 16, 22, 0.4);
  transition: var(--transition-fast);
  cursor: pointer;
}

.btn-send-message:hover {
  background: var(--secondary-red);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(234, 16, 22, 0.65);
}

/* ==========================================================================
   CTA BANNER SECTION & FOOTER
   ========================================================================== */
.cta-banner-section {
  background-color: #020201;
  color: #ffffff;
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}

/* Red Geometric Decorative Polygon Graphic on Right Side */
.cta-banner-shape {
  position: absolute;
  top: 0;
  right: 0;
  width: 320px;
  height: 100%;
  background: linear-gradient(135deg, rgba(234, 16, 22, 0.95) 0%, rgba(180, 10, 15, 0.8) 100%);
  clip-path: polygon(45% 0, 100% 0, 100% 100%, 0% 100%);
  pointer-events: none;
  z-index: 1;
}

.cta-banner-title {
  font-family: var(--font-heading);
  font-size: 44px;
  font-weight: 900;
  text-transform: uppercase;
  color: #ffffff;
  line-height: 1.1;
  letter-spacing: -0.5px;
}

.cta-banner-title .text-red {
  color: var(--primary-red);
}

.cta-banner-subtitle {
  font-size: 16px;
  font-weight: 500;
  color: #cccccc;
}

/* Main Footer */
.main-footer {
  background-color: #020201;
  color: #ffffff;
  padding-top: 60px;
  border-top: 1px solid var(--primary-red);
  position: relative;
  z-index: 10;
}

.footer-bio-text {
  font-size: 14px;
  font-weight: 500;
  color: #aaaaaa;
  line-height: 1.6;
  max-width: 320px;
}

.footer-col-title {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.footer-links-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links-list li a {
  font-size: 14px;
  font-weight: 500;
  color: #aaaaaa;
  transition: var(--transition-fast);
}

.footer-links-list li a:hover {
  color: var(--primary-red);
  padding-left: 4px;
}

.footer-contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-contact-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: #aaaaaa;
}

.footer-contact-list li i {
  color: #ffffff;
  font-size: 16px;
}

.footer-contact-list li a {
  color: #aaaaaa;
  transition: var(--transition-fast);
}

.footer-contact-list li a:hover {
  color: var(--primary-red);
}

.footer-social-links {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-social-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  transition: var(--transition-fast);
}

.footer-social-btn:hover {
  background-color: var(--primary-red);
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 4px 15px rgba(234, 16, 22, 0.4);
}

/* Bottom Bar */
.footer-bottom-bar {
  border-top: 1px solid var(--primary-red);
}

.copyright-text {
  font-size: 13px;
  font-weight: 500;
  color: #888888;
}

/* ==========================================================================
   CLIENT LOGOS STYLING OVERRIDES (FIXES OVERFLOW/CLIPPING)
   ========================================================================== */
.client-logos-carousel .client-logo-item img {
  width: auto !important;
  max-width: 100% !important;
  max-height: 100% !important;
  object-fit: cover !important;
  margin: 0 auto;
  display: block;
}

/* ==========================================================================
   MOBILE & TABLET RESPONSIVENESS UPDATES
   ========================================================================== */

@media (max-width: 991.98px) {
  /* Section Spacing & Headings */
  .about-section,
  .services-section,
  .process-section,
  .portfolio-section,
  .clients-section,
  .contact-section {
    padding: 50px 0;
  }

  .about-section-title,
  .services-section-title,
  .process-section-title,
  .work-section-title,
  .clients-section-title,
  .contact-section-title {
    font-size: 32px !important;
    text-align: center;
    line-height: 1.1;
  }

  .services-section-desc,
  .process-section-desc,
  .clients-section-desc,
  .contact-subtitle-sub {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    max-width: 500px;
  }

  /* Process & Client header padding override */
  .process-section .mb-5.ps-4,
  .clients-section .mb-5.ps-4 {
    padding-left: 0 !important;
    text-align: center;
  }

  /* Hero Section Responsiveness adjustments */
  .hero-title {
    flex-wrap: wrap;
    justify-content: center;
    font-size: 48px !important;
    line-height: 1.1;
  }
  .hero-title .name-white,
  .hero-title .name-red {
    display: inline-block !important;
  }
  .hero-description {
    font-size: 18px;
    max-width: 480px;
    margin: 0 auto 20px;
  }

  /* About Me Section */
  .about-content {
    text-align: start;
    padding-right: 0 !important;
  }
  .about-sub-text {
    margin-left: auto;
    margin-right: auto;
  }
  .about-exp-badge {
    right: 15px !important;
    bottom: 20px !important;
  }
  .btn-download-cv,
  .btn-about-talk {
    justify-content: center;
  }

  /* Portfolio Section */
  .portfolio-filter-buttons {
    justify-content: center !important;
    width: 100%;
    margin-top: 15px;
  }
  .portfolio-card-title-main {
    font-size: 24px;
  }
  .portfolio-card-title-sub {
    font-size: 22px;
  }

  /* Contact Section */
  .contact-info-wrapper.ps-2 {
    padding-left: 0 !important;
    text-align: left !important;
  }
  .contact-section-title {
    text-align: left !important;
  }
  .contact-subtitle-lead,
  .contact-subtitle-sub {
    text-align: left !important;
  }
  .contact-details-list {
    align-items: flex-start !important;
    max-width: 100% !important;
    margin: 0 0 30px 0 !important;
  }
  .contact-social-links {
    justify-content: flex-start !important;
    margin-bottom: 15px;
  }
}

@media (max-width: 767.98px) {
  /* CTA Banner Section */
  .cta-banner-section {
    padding: 65px 0;
  }
  .cta-banner-title {
    font-size: 28px !important;
    line-height: 1.2;
  }
  .cta-banner-shape {
    display: none !important;
  }

  /* Contact Form Card */
  .contact-form-card {
    padding: 30px 20px;
  }

  /* Testimonials */
  .testimonial-card {
    padding: 24px 20px;
    min-height: auto;
  }
  .testimonial-text {
    font-size: 14px;
    margin-bottom: 15px;
  }
}

@media (max-width: 575.98px) {
  /* Headings size down for very small mobile screens */
  .about-section-title,
  .services-section-title,
  .process-section-title,
  .work-section-title,
  .clients-section-title,
  .contact-section-title {
    font-size: 28px !important;
  }

  .hero-title {
    font-size: 36px !important;
  }

  /* Hero badge features stacking / wrap behavior */
  .hero-features {
    justify-content: center;
    gap: 10px;
  }
  .feature-badge-item {
    width: 46% !important;
    justify-content: flex-start;
    padding: 10px 20px;
  }

  /* Client Logos Responsive fixes */
  .client-logo-item {
    width: 85px !important;
    height: 85px !important;
    padding: 6px !important;
  }
  .client-logos-carousel .client-logo-item img {
    max-width: 100% !important;
    max-height: 100% !important;
  }
  
  /* Fix owl-carousel image styles from stretching generic images */
  .owl-carousel .owl-item img.author-avatar {
    width: 48px !important;
    height: 48px !important;
    display: block;
  }
}

/* Centered Video Play Button styles */
.video-play-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  background: rgba(0, 0, 0, 0.15); /* Subtle dark overlay for contrast */
  transition: var(--transition-fast);
}

.portfolio-card-item:hover .video-play-overlay {
  background: rgba(0, 0, 0, 0.35); /* Darkens slightly on hover */
}

.video-play-btn-centered {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  background-color: #ffffff;
  color: var(--primary-red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.35);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  padding-left: 5px; /* Visual centering of the play triangle */
}

.portfolio-card-item:hover .video-play-btn-centered {
  transform: scale(1.12);
  background-color: var(--primary-red);
  color: #ffffff;
  box-shadow: 0 0 30px var(--red-glow);
}

/* WhatsApp Sticky Button */
.whatsapp-sticky {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  color: #ffffff !important;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.whatsapp-sticky:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
  background-color: #20ba5a;
}

.whatsapp-sticky::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #25d366;
  z-index: -1;
  opacity: 0.35;
  animation: waPulse 2s infinite;
}

@keyframes waPulse {
  0% {
    transform: scale(1);
    opacity: 0.35;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

@media (max-width: 767.98px) {
  .whatsapp-sticky {
    bottom: 20px;
    right: 20px;
    width: 52px;
    height: 52px;
    font-size: 28px;
  }
}




