@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400..800&display=swap');
/* 1. Global Variables and Reset */
:root {
  --bs-body-bg: #050505;
  --bs-body-color: #ffffff;
  --bs-primary: #0099FF;
  --bs-secondary: #FFB800;
  --bs-gray-300: #d1d5db;
  --bs-gray-400: #9ca3af;
  --bs-gray-500: #6b7280;

  --cursor-size: 20px;
  --glow-size: 400px;

  /* Typography */
  --font-base: 'Outfit', sans-serif;
  --font-display: 'Syne', sans-serif;
  --font-mono: 'Space Grotesk', monospace;
}

body {
  background-color: var(--bs-body-bg);
  color: var(--bs-body-color);
  font-family: var(--font-base);
  overflow-x: hidden;
  cursor: default;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Bootstrap Overrides */


.section-padding {
  padding-top: 4rem;
  padding-bottom: 4rem;
}
select.form-select {
    background-color: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    height: 49px;
}

select.form-select option {
    background: rgb(0 0 0 / 87%);
}

@media (min-width: 768px) {
  .section-padding {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
}

/* Utility Classes */
.text-primary {
  color: var(--bs-primary) !important;
}

.text-secondary {
  color: var(--bs-secondary) !important;
}

.text-gray-400 {
  color: var(--bs-gray-400) !important;
}

.text-gray-500 {
  color: var(--bs-gray-500) !important;
}

.text-uppercase {
  text-transform: uppercase;
}

.tracking-widest {
  letter-spacing: 0.1em;
}

.tracking-wider {
  letter-spacing: 0.05em;
}

.tracking-tighter {
  letter-spacing: -0.05em;
}

.line-height-tight {
  line-height: 1.25;
}

.line-height-relaxed {
  line-height: 1.625;
}

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

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

.z-n1 {
  z-index: -1;
}

/* 2. Custom Effects & Animations */

/* 2.1. Noise Overlay */
.noise-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9998;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.7' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

/* 2.2. Custom Cursor (Desktop Only) */
@media (min-width: 768px) {
  body {
    cursor: default;
  }
}

/* 2.3. Background Blobs */
.bg-blob {
  position: absolute;
  width: 60vw;
  height: 60vw;
  border-radius: 50%;
  filter: blur(80px);
  animation: blob 10s infinite;
}

.primary-blob {
  top: -20%;
  left: 20%;
  background-color: rgba(0, 153, 255, 0.1);
}

.secondary-blob {
  bottom: -20%;
  right: 20%;
  background-color: rgba(255, 184, 0, 0.1);
}

@media (min-width: 768px) {
  .bg-blob {
    width: 40vw;
    height: 40vw;
    filter: blur(120px);
  }
}

@keyframes blob {
  0% {
    transform: translate(0px, 0px) scale(1)
  }

  33% {
    transform: translate(30px, -50px) scale(1.1)
  }

  66% {
    transform: translate(-20px, 20px) scale(0.9)
  }

  100% {
    transform: translate(0px, 0px) scale(1)
  }
}

/* 2.4. Background Grid */
.bg-grid {
  background-size: 50px 50px;
  background-image: linear-gradient(to right, rgba(255, 255, 255, 0.03) 1px, transparent 1px), linear-gradient(to bottom, rgb(255 255 255 / 0%) 1px, #00000033 1px);
  mask-image: radial-gradient(circle at center, black 40%, transparent 100%);
  inset: 0;
  z-index: -1 !important;
  position: absolute;
}

/* 2.5. Text Effects */
.text-outline {
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.3);
  color: transparent;
  transition: all 0.5s ease;
}

.hero-title:hover .text-outline {
  -webkit-text-stroke: 1px var(--bs-primary);
  text-shadow: 0 0 30px rgba(0, 153, 255, 0.3);
}

@media (max-width: 1200px) {
  .text-outline {
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.5);
  }

  .mb-4.mb-md-5.animate-reveal {
    text-align: center;
    display: block;
    margin: 0 auto;
  }

  .badge-custom {
    text-align: center;
  }

  .hero_img h2 {
    font-size: 30px !important;
  }

  .hero_img {
    height: 200px !important;
  }

  section.hero {
    padding: 20px 0 !important;
  }
}

.gradient-text {
  background: linear-gradient(135deg, #ffffff 0%, #a5a5a5 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.brand-gradient-text {
  background: linear-gradient(135deg, var(--bs-primary) 0%, var(--bs-secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.glow-text {
  text-shadow: 0 0 20px rgba(0, 153, 255, 0.5);
}

/* 2.6. Reveal Animation */
@keyframes revealUp {
  from {
    transform: translateY(100%);
    opacity: 0;
  }

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

.animate-reveal {
  animation: revealUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  opacity: 0;
  /* Start hidden */
}

/* 2.7. Ping Animation */
@keyframes ping {

  75%,
  100% {
    transform: scale(2);
    opacity: 0
  }
}

.ping-dot::before {
  content: '';
  position: absolute;
  display: inline-flex;
  height: 100%;
  width: 100%;
  border-radius: 50%;
  background-color: var(--bs-secondary);
  opacity: 0.75;
  animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite;
}

.ping-dot {
  position: relative;
  display: inline-flex;
  height: 8px;
  width: 8px;
  border-radius: 50%;
  background-color: var(--bs-secondary);
}

/* 3. Layout & Components */

/* 3.1. Navigation */
.nav-custom {
  background-color: rgba(5, 5, 5, 0.8);
  /* bg-bg/80 */
  backdrop-filter: blur(12px);
  /* backdrop-blur-md */
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  /* border-white/5 */
  transition: all 0.3s;
}

.logo-icon {
  width: 32px;
  height: 32px;
  background-color: #ffffff;
  color: #000000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.125rem;
  transition: background-color 0.3s;
  overflow: hidden;
  border: 2px solid #ffffff;
  position: relative;
}

.logo-icon::before,
.logo-icon::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 50%;
  z-index: 0;
}

.logo-icon::before {
  top: 0;
  background-color: var(--bs-primary);
}

.logo-icon::after {
  bottom: 0;
  background-color: var(--bs-secondary);
}

.logo-text {
  font-size: 0.75rem;
  text-shadow: 0 4px 3px rgba(0, 0, 0, 0.07), 0 2px 2px rgba(0, 0, 0, 0.06);
  z-index: 1;
}

.group:hover .logo-icon {
  background-color: var(--bs-primary);
}

.nav-link-custom {
  color: #ffffff;
  font-size: 0.75rem;
  transition: color 0.3s;
}

.nav-link-custom:hover {
  color: var(--bs-primary);
}

.btn-custom {
  padding: 0.5rem 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 9999px;
  color: #ffffff;
  transition: all 0.3s;
  text-decoration: none;
  font-size: 0.75rem;
  font-family: var(--font-mono);
  font-weight: 500;
  letter-spacing: 0.1em;
}

.btn-custom:hover {
  background-color: #ffffff;
  color: #000000;
  border-color: #ffffff;
}

.btn-menu-toggle {
  border: none;
  background: none;
}

/* Mobile Menu */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: var(--bs-body-bg);
  z-index: 40;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}


.hidden-menu {
  transform: translateX(100%);
}

.visible-menu {
  transform: translateX(0);
}

.mobile-menu-overlay a {
  font-size: 1.5rem;
  font-family: var(--font-display);
  font-weight: 700;
  text-decoration: none;
  transition: color 0.3s;
}

.mobile-menu-overlay a:hover {
  color: var(--bs-primary);
}

.btn-mobile-cta {
  padding: 0.75rem 2rem;
  background-color: var(--bs-primary);
  color: #ffffff;
  border-radius: 9999px;
  margin-top: 1rem;
}

.mobile-menu-footer {
  position: absolute;
  bottom: 3rem;
  color: var(--bs-gray-500);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* 3.2. Hero Section */
.hero-section {
  padding-top: 6rem;
  padding-bottom: 6rem;
}

@media (min-width: 768px) {
  .hero-section {
    padding-top: 7rem;
    padding-bottom: 5rem;
  }
}

.hero-title {
  font-size: 3rem;
  /* text-5xl */
  line-height: 1;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.05em;
	text-transform: uppercase;
  /* tracking-tighter */
}

@media (min-width: 576px) {
  .hero-title {
    font-size: 3.75rem;
    /* sm:text-6xl */
  }
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 6rem;
    /* md:text-8xl */
    line-height: 0.9;
    /* md:leading-[0.9] */
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 7rem;
    /* lg:text-[7rem] */
  }
}

.hero-subtext {
  font-size: 1rem;
  max-width: 42rem;
  /* max-w-2xl */
}

@media (min-width: 768px) {
  .hero-subtext {
    font-size: 1.25rem;
  }
}

.hero-line {
  height: 4px;
  width: 6rem;
  background-color: #8d8d8d;
  margin-top: 0.5rem;
  border-radius: 9999px;
  transform-origin: left;
  transform: scaleX(0);
  z-index: 1;
}

@media (min-width: 1024px) {
  .hero-line {
    height: 8px;
    width: 25%;
    margin-top: 56px;
    margin-left: 20px;
  }
}

/* Magnetic Buttons */
.magnetic-btn {
  transition: transform 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  text-decoration: none;
  position: relative;
  overflow: hidden;
  border-radius: 9999px;
  padding: 1rem 2rem;
  font-size: 0.875rem;
}

@media (min-width: 768px) {
  .magnetic-btn {
    padding: 1.25rem 2.5rem;
    font-size: 0.875rem;
  }
}

.btn-primary-custom {
  background-color: var(--bs-primary);
  color: #ffffff;
  font-weight: 700;
  z-index: 1;
  text-align: center;
}

.btn-primary-hover-bg {
  position: absolute;
  inset: 0;
  background-color: var(--bs-secondary);
  transform: translateY(100%);
  transition: transform 0.3s;
  z-index: -1;
  text-align: center;
}

.btn-primary-custom:hover .btn-primary-hover-bg {
  transform: translateY(0);
}

.btn-secondary-custom {
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  transition: all 0.3s;
  border-radius: 35px;
  /* width: fit-content; */

  text-align: center;
  text-align: center;
  width: fit-content;
}

.second_view_porfolio_btn {
  padding: 10px 80px;
}

.btn-secondary-custom:hover {
  background-color: #ffffff;
  color: #000000;
}

.btn-secondary-custom svg {
  color: var(--bs-gray-400);
  transition: color 0.3s;
}

.btn-secondary-custom:hover svg {
  color: #000000;
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  opacity: 0.4;
  transition: opacity 0.3s;
  text-decoration: none;
  color: #ffffff;
}

.scroll-indicator:hover {
  opacity: 1;
}

.scroll-line {
  width: 1px;
  height: 3rem;
  background: linear-gradient(to bottom, #ffffff, transparent);
}

.scroll-indicator span {
  transform: rotate(90deg) translate(20px, -10px);
  transform-origin: left;
}

/* Tilt Card */
.tilt-card-wrapper {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transform-style: preserve-3d;
  transform: perspective(1000px);
}

.tilt-card-inner {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background-color: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(4px);
  transform: translateZ(20px);
  transition: all 0.3s;
}

.tilt-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
  transition: all 0.7s;
  transform: scale(1.1);
  filter: grayscale(100%);
}

.group:hover .tilt-card-img {
  opacity: 1;
  transform: scale(1);
  filter: grayscale(0);
}

.tilt-card-overlay {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  padding: 1rem;
  background-color: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(12px);
  border-radius: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transform: translateY(1rem);
  opacity: 0;
  transition: all 0.5s;
}

.group:hover .tilt-card-overlay {
  transform: translateY(0);
  opacity: 1;
}

.tilt-card-arrow {
  width: 32px;
  height: 32px;
  background-color: #ffffff;
  color: #000000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tilt-card-glow {
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 120%;
  background: radial-gradient(circle at center, rgba(0, 153, 255, 0.2) 0%, rgba(255, 184, 0, 0.2) 100%);
  border-radius: 50%;
  filter: blur(80px);
}

/* 3.3. About Section */
.section-about {
  background-color: rgba(255, 255, 255, 0.02);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(4px);
}

.border-l-md {
  border-left: none;
  padding-left: 0;
}

@media (min-width: 768px) {
  .border-l-md {
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    padding-left: 2rem;
  }
}

.stat-card {
  padding: 1rem;
  border-radius: 1rem;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s;
  text-align: center;
}

@media (min-width: 768px) {
  .stat-card {
    padding: 1.5rem;
    text-align: left;
  }
}

.stat-card:nth-child(odd):hover {
  border-color: rgba(255, 184, 0, 0.3);
}

.stat-card:nth-child(even):hover {
  border-color: rgba(0, 153, 255, 0.3);
}

.stat-card:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.stat-icon {
  display: inline-block;
  width: 24px;
  height: 24px;
  transition: transform 0.3s;
}

@media (min-width: 768px) {
  .stat-icon {
    display: block;
    width: 32px;
    height: 32px;
  }
}

.group:hover .stat-icon {
  transform: scale(1.1);
}

/* 3.4. Services Section */
.service-card {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 1rem;
  padding: 1.5rem;
  transition: all 0.5s;
  min-height: 300px;
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
  transform: perspective(1000px);
}

@media (min-width: 768px) {
  .service-card {
    padding: 2rem;
    min-height: 350px;
  }
}

.service-card:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.service-card-lg {
  min-height: 300px;
}

@media (min-width: 768px) {
  .service-card-lg {
    min-height: 350px;
  }
}

.service-card-glow {
  position: absolute;
  top: 0;
  right: 0;
  width: 128px;
  height: 128px;
  border-radius: 50%;
  filter: blur(64px);
  transition: all 0.5s;
}

.primary-glow {
  background-color: rgba(0, 153, 255, 0.05);
}

.secondary-glow {
  background-color: rgba(255, 184, 0, 0.05);
}

.gradient-glow {
  background: linear-gradient(135deg, rgba(0, 153, 255, 0.1) 0%, rgba(255, 184, 0, 0.1) 100%);
}

.group:hover .primary-glow {
  background-color: rgba(0, 153, 255, 0.1);
}

.group:hover .secondary-glow {
  background-color: rgba(255, 184, 0, 0.1);
}

.group:hover .gradient-glow {
  background: linear-gradient(135deg, rgba(0, 153, 255, 0.2) 0%, rgba(255, 184, 0, 0.2) 100%);
}

.service-icon-box {
  width: 48px;
  height: 48px;
  background-color: #000000;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: border-color 0.3s;
}

@media (min-width: 768px) {
  .service-icon-box {
    width: 56px;
    height: 56px;
    margin-bottom: 2rem;
  }
}

.primary-border:hover {
  border-color: rgba(0, 153, 255, 0.5);
}

.secondary-border:hover {
  border-color: rgba(255, 184, 0, 0.5);
}

.service-icon {
  width: 24px;
  height: 24px;
  transition: color 0.3s;
}

@media (min-width: 768px) {
  .service-icon {
    width: 28px;
    height: 28px;
  }
}

.primary-text-hover:hover {
  color: var(--bs-primary);
}

.secondary-text-hover:hover {
  color: var(--bs-secondary);
}

.service-line {
  width: 1rem;
  height: 1px;
}

.primary-bg {
  background-color: var(--bs-primary);
}

.secondary-bg {
  background-color: var(--bs-secondary);
}

/* 3.5. Process Section */
.section-process {
  background-color: rgba(255, 255, 255, 0.05);
  /* bg-surface */
}

.process-line {
  position: absolute;
  top: 3rem;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, transparent 0%, rgba(255, 255, 255, 0.2) 50%, transparent 100%);
  z-index: 0;
}

.process-card {
  background-color: rgba(0, 0, 0, 0.8);
  /* bg-black/80 */
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.5rem;
  border-radius: 1rem;
  transition: border-color 0.3s;
  text-align: center;
}

@media (min-width: 768px) {
  .process-card {
    padding: 2rem;
  }
}

.primary-hover:hover {
  border-color: var(--bs-primary);
}

.secondary-hover:hover {
  border-color: var(--bs-secondary);
}

.process-number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-weight: 700;
  border: 1px solid;
  transition: transform 0.3s;
}

@media (min-width: 768px) {
  .process-number {
    width: 48px;
    height: 48px;
    margin: 0 auto 1.5rem;
  }
}

.primary-bg-light {
  background-color: rgba(0, 153, 255, 0.1);
}

.primary-text {
  color: var(--bs-primary);
}

.primary-border-light {
  border-color: rgba(0, 153, 255, 0.2);
}

.primary-shadow {
  box-shadow: 0 0 15px rgba(0, 153, 255, 0.2);
}

.secondary-bg-light {
  background-color: rgba(255, 184, 0, 0.1);
}

.secondary-text {
  color: var(--bs-secondary);
}

.secondary-border-light {
  border-color: rgba(255, 184, 0, 0.2);
}

.secondary-shadow {
  box-shadow: 0 0 15px rgba(255, 184, 0, 0.2);
}

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

/* 3.6. Work Section */
.section-work {
  background-color: #080808;
}

.portfolio-card {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 1rem;
  position: relative;
  cursor: default;
}

@media (min-width: 768px) {
  .portfolio-card {
    cursor: default;
  }
}

.portfolio-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s;
}

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

@media (min-width: 768px) {
  .group:hover .portfolio-img {
    transform: scale(1.1) rotate(1deg);
  }
}

.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, transparent 100%);
  opacity: 0.8;
  transition: opacity 0.5s;
  cursor: pointer;
}

@media (min-width: 768px) {
  .portfolio-overlay {
    opacity: 0.6;
  }
}

.group:hover .portfolio-overlay {
  opacity: 0.9;
}

.secondary-overlay {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, transparent 100%);
}

.portfolio-content {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 1.5rem;
  width: 100%;
  transform: translateY(0);
  transition: transform 0.5s;
}

@media (min-width: 768px) {
  .portfolio-content {
    padding: 2rem;
    transform: translateY(1rem);
  }

  .group:hover .portfolio-content {
    transform: translateY(0);
  }
}

/* 3.7. Testimonials Section */
.section-testimonials {
  background-color: rgba(255, 255, 255, 0.02);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.review-card {
  background-color: #000000;
  padding: 1.5rem;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: border-color 0.3s;
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
}

@media (min-width: 768px) {
  .review-card {
    padding: 2rem;
  }
}

.review-quote {
  position: absolute;
  top: 2rem;
  right: 2rem;
  font-size: 3rem;
  font-family: serif;
  color: rgba(255, 255, 255, 0.05);
  line-height: 1;
}

@media (min-width: 768px) {
  .review-quote {
    font-size: 4.5rem;
  }
}

.review-stars {
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .review-stars {
    margin-bottom: 1.5rem;
  }
}

.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.75rem;
}

.primary-bg-light {
  background-color: rgba(0, 153, 255, 0.2);
}

.secondary-bg-light {
  background-color: rgba(255, 184, 0, 0.2);
}

/* 3.8. Footer */
.footer-custom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background-color: #000000;
}

.footer-title {
  font-size: 2.25rem;
  font-family: var(--font-display);
  font-weight: 700;
}

@media (min-width: 768px) {
  .footer-title {
    font-size: 6rem;
  }
}

.btn-contact-email {
  background-color: #ffffff;
  color: #000000;
  padding: 1rem 2rem;
  border-radius: 9999px;
  font-weight: 700;
  transition: transform 0.3s;
  text-decoration: none;
  font-size: 1rem;
}

@media (min-width: 768px) {
  .btn-contact-email {
    padding: 1.25rem 2.5rem;
    font-size: 1.125rem;
  }
}

.btn-contact-email:hover {
  transform: scale(1.05);
}

.btn-contact-phone {
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  padding: 1rem 2rem;
  border-radius: 9999px;
  font-weight: 700;
  transition: background-color 0.3s;
  text-decoration: none;
  font-size: 1rem;
}

@media (min-width: 768px) {
  .btn-contact-phone {
    padding: 1.25rem 2.5rem;
    font-size: 1.125rem;
  }
}

.btn-contact-phone:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  font-size: 0.75rem;
  font-family: var(--font-mono);
  color: var(--bs-gray-500);
  text-transform: uppercase;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
    padding-top: 3rem;
    gap: 2rem;
  }
}

.footer-social-link {
  color: var(--bs-gray-500);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-social-link:hover {
  color: var(--bs-primary);
}

/* 4. Group Hover Utilities (Manual translation of Tailwind groups) */

/* Portfolio Card Group Hover */
.portfolio-card:hover .portfolio-content {
  transform: translateY(0);
}

/* Process Card Group Hover */
.process-card:hover .group-hover-scale {
  transform: scale(1.1);
}

/* Button Group Hover (Arrow) */
.group:hover .group-hover-translate-x {
  transform: translateX(0.25rem);
}

/* Service Card Group Hover */
.service-card:hover .primary-border {
  border-color: rgba(0, 153, 255, 0.5);
}

.service-card:hover .secondary-border {
  border-color: rgba(255, 184, 0, 0.5);
}

.service-card:hover .primary-text-hover {
  color: var(--bs-primary);
}

.service-card:hover .secondary-text-hover {
  color: var(--bs-secondary);
}

.service-card:hover .primary-glow {
  background-color: rgba(0, 153, 255, 0.1);
}

.service-card:hover .secondary-glow {
  background-color: rgba(255, 184, 0, 0.1);
}

.service-card:hover .gradient-glow {
  background: linear-gradient(135deg, rgba(0, 153, 255, 0.2) 0%, rgba(255, 184, 0, 0.2) 100%);
}

/* Review Card Group Hover */
.primary-hover:hover {
  border-color: rgba(0, 153, 255, 0.5);
}

.secondary-hover:hover {
  border-color: rgba(255, 184, 0, 0.5);
}

/* Lucide Icons (Inline SVG styling) */
.lucide-image {
  color: var(--bs-gray-400);
  transition: color 0.3s;
}

.btn-secondary-custom:hover .lucide-image {
  color: #000000;
}

a {
  text-decoration: none;
}

.badge-custom {
  background: transparent;
  width: fit-content;
  padding: 5px 15px;
  border-radius: 20px;
  border: 1px solid #4e483a;
  font-size: 14px;
}

.service_text {
  height: 200px;
  /* background-color: red; */
  padding: 0;
}

.service_text .tilt-card-inner {
  padding: 30px;
}

.tilt-card-inner .service-icon-box {
  height: 100px;
}

.border_bottom {
  border-color: #ffffff1a !important;
}

/* 3.3. About Section */
.section-about {
  background-color: rgba(255, 255, 255, 0.02);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(4px);
}

.border-l-md {
  border-left: none;
  padding-left: 0;
}

@media (min-width: 768px) {
  .border-l-md {
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    padding-left: 2rem;
  }
}

.stat-card {
  padding: 1rem;
  border-radius: 1rem;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s;
  text-align: center;
}

@media (min-width: 768px) {
  .stat-card {
    padding: 1.5rem;
    text-align: left;
  }
}

.stat-card:nth-child(odd):hover {
  border-color: rgba(255, 184, 0, 0.3);
}

.stat-card:nth-child(even):hover {
  border-color: rgba(0, 153, 255, 0.3);
}

.stat-card:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.stat-icon {
  display: inline-block;
  width: 24px;
  height: 24px;
  transition: transform 0.3s;
}

@media (min-width: 768px) {
  .stat-icon {
    display: block;
    width: 32px;
    height: 32px;
  }
}

.group:hover .stat-icon {
  transform: scale(1.1);
}

.hero_img {
  background: linear-gradient(45deg, #000000c4, #000000ab), url(https://images.unsplash.com/photo-1517048676732-d65bc937f952?q=80&w=1974&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D) no-repeat center;
  background-size: cover;
  height: 265px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

section.hero {
  padding-top: 90px !important;
  padding: 25px;
  text-align: center;
}

.hero_img h2 {
  font-size: 50px;
  font-weight: 700;
}

/* Section Layout */

.contact-section {
  position: relative;
  width: 100%;
  max-width: 1200px;
  padding: 40px 0;
  overflow: hidden;
  margin: 0 auto;
}

/* Radial Glows */

.contact-glow-primary,
.contact-glow-secondary {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.15;
  pointer-events: none;
  z-index: -1;
}

.contact-glow-primary {
  top: 10%;
  left: 5%;
  width: 400px;
  height: 400px;
  background-color: #0099ff;
}

.contact-glow-secondary {
  bottom: 10%;
  right: 5%;
  width: 300px;
  height: 300px;
  background-color: #ffb800;
}

/* Glass Card */

.contact-card {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px;
  border-radius: 16px;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.37);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  position: relative;
  z-index: 10;
}

/* Header */

.contact-header {
  text-align: center;
  margin-bottom: 30px;
}

.contact-title {
  font-family: 'Syne', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.1;
}

.gradient-highlight {
  background: linear-gradient(135deg, #0099ff 0%, #ffb800 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.contact-subtitle {
  color: #9ca3af;
  font-size: 1rem;
}

/* Form */

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  position: relative;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.form-input {
  width: 100%;
  padding: 15px 20px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background-color: rgba(0, 0, 0, 0.3);
  color: #ffffff;
  font-size: 1rem;
  font-family: 'Outfit', sans-serif;
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s;
  appearance: none;
}

.form-input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.form-input:focus {
  border-color: #0099ff;
  box-shadow: 0 0 0 3px rgba(0, 153, 255, 0.3);
}

textarea.form-input {
  resize: vertical;
  min-height: 120px;
}

/* Submit Button */

.submit-button {
  padding: 15px 30px;
  border-radius: 9999px;
  border: none;
  background-color: #0099ff;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  transition: box-shadow 0.3s, transform 0.15s;
}

.submit-button:hover {
  box-shadow: 0 0 20px rgba(0, 153, 255, 0.6);
  transform: translateY(-2px);
}

.submit-button:active {
  transform: translateY(0);
  box-shadow: none;
}

/* Responsive */

@media (max-width: 768px) {
  .contact-card {
    padding: 30px 20px;
  }

  .contact-title {
    font-size: 2rem;
  }

  .form-input,
  .submit-button {
    font-size: 0.9rem;
    padding: 12px 15px;
  }

  .contact-glow-primary,
  .contact-glow-secondary {
    width: 250px;
    height: 250px;
    filter: blur(80px);
  }
}

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

  .contact-subtitle {
    font-size: 0.9rem;
  }

  .row.row-cols-2.row-cols-md-5.g-3.g-md-4.justify-content-between .col,
  .row.row-cols-1.row-cols-md-5.g-4.position-relative.z-10.justify-content-between .col {
    width: 100%;
  }
}

@media (min-width:601px) and (max-width:900px) {

  .row.row-cols-2.row-cols-md-5.g-3.g-md-4.justify-content-between .col,
  .row.row-cols-1.row-cols-md-5.g-4.position-relative.z-10.justify-content-between .col {
    width: 33.33%;
  }
}

/*
|--------------------------------------------------------------------------
| 3.4. Careers Page Styles
|--------------------------------------------------------------------------
*/

/* 3. Job Card Styles (Enhanced UI/UX) */
.job-card-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 15px;
}

.job-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  /* Increased gap for better separation */
  margin-top: 40px;
}

.job-card {
  position: relative;
  /* Glassmorphism/Dark Aesthetic */
  background-color: rgba(17, 17, 17, 0.8);
  /* Darker, slightly transparent */
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1.5rem;
  /* More rounded */
  padding: 35px;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  overflow: hidden;
  text-align: center;
  /* Subtle Inner Shadow for Depth */
  box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.5), 0 10px 30px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(5px);
}

/* Enhanced Hover Effect */
.job-card:hover {
  border-color: var(--bs-primary);
  box-shadow: 0 0 40px rgba(0, 153, 255, 0.4), 0 15px 40px rgba(0, 0, 0, 0.7);
  transform: translateY(-8px) scale(1.02);
  /* Lift and slight scale */
}

.job-card-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* Radial gradient from top-center */
  background: radial-gradient(circle at 50% 0%, rgba(0, 153, 255, 0.15) 0%, rgba(0, 0, 0, 0) 70%);
  transition: opacity 0.5s;
  opacity: 0;
  pointer-events: none;
}

.job-card:hover .job-card-glow {
  opacity: 1;
}

.job-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 5px;
  letter-spacing: -0.02em;
}

.job-location {
  color: var(--bs-secondary);
  font-size: 1rem;
  margin-bottom: 25px;
  display: block;
  font-weight: 500;
}

.job-details {
  margin-bottom: 35px;
  text-align: left;
  padding: 0 5px;
}

.job-detail-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* margin-bottom: 12px; */
  /* Increased spacing */
  font-size: 0.95rem;
  color: var(--bs-gray-400);
  padding: 15px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.job-detail-label {
  font-weight: 500;
  color: var(--bs-gray-300);
  font-family: var(--font-mono);
  text-transform: uppercase;
  font-size: 0.8rem;
}

.job-detail-value {
  font-weight: 400;
  color: #ffffff;
}

.job-details-divider {
  display: none;
  /* Not needed with new item styling */
}

.join-button {
  display: inline-block;
  padding: 14px 40px;
  /* Larger button */
  border-radius: 9999px;
  background: linear-gradient(to right, var(--bs-primary), #0077cc);
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(0, 153, 255, 0.5);
  /* Stronger shadow */
}
.list_styling{
  list-style: none;
  padding-left: 0;
}
.join-button:hover {
  background: linear-gradient(to right, #0077cc, var(--bs-primary));
  box-shadow: 0 0 30px rgba(0, 153, 255, 0.8);
  transform: translateY(-3px);
}
.svg_into_img{
  width: 30px;
}
@media(min-width:1200px) and (max-width:1400px){
    .hero-title {
        font-size: 5rem
    }
}
.text-sm {
    font-size: 0.875rem;
    line-height: 1.25rem;
}
h3,h2,h4,h5,h6{
	font-family: 'Syne', sans-serif !important;
}
.display-6{font-size:3rem !important}