/* =========================================================
   OUTDO SYSTEM — style.css
   Premium Agency Website Stylesheet
   ========================================================= */

:root {
  --red: #e31e24;
  --red-dark: #b01519;
  --red-glow: rgba(227, 30, 36, 0.25);
  --black: #0a0a0a;
  --black2: #111111;
  --black3: #1a1a1a;
  --gray: #888;
  --gray-light: #f8f8f8;
  --white: #ffffff;
  --border: rgba(255, 255, 255, 0.08);
  --border-light: rgba(0, 0, 0, 0.08);
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  --shadow-red: 0 8px 30px rgba(227, 30, 36, 0.35);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* ---- Reset & Base ---- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  /* font-family: "Poppins", sans-serif; */
  font-family: "Inter", ui-sans-serif, system-ui, sans-serif;
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.7;
}
img {
  max-width: 100%;
  height: auto;
}
a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* ---- Typography ---- */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
}
.section-label::before {
  content: "";
  width: 24px;
  height: 2px;
  background: var(--red);
}
.section-label.light {
  color: rgba(255, 255, 255, 0.7);
}
.section-label.light::before {
  background: rgba(255, 255, 255, 0.5);
}
.section-label.mx-auto {
  justify-content: center;
}

.section-title {
  /* font-family: "Barlow Condensed", sans-serif; */
  font-family: "Inter", ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}
.section-subtitle {
  font-size: 1rem;
  color: var(--gray);
  max-width: 560px;
  margin: 0 auto;
}
.section-body {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 16px;
  line-height: 1.8;
}
.text-red {
  color: var(--red);
}

/* ---- Buttons ---- */
.btn-primary-red {
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: var(--white);
  border: none;
  border-radius: var(--radius);
  padding: 12px 28px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition);
  box-shadow: var(--shadow-red);
  position: relative;
  overflow: hidden;
}
.btn-primary-red::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), transparent);
  opacity: 0;
  transition: var(--transition);
}
.btn-primary-red:hover {
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px #e31e2480;
}
.btn-primary-red:hover::after {
  opacity: 1;
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid #e31e25f1 !important;
  border-radius: var(--radius);
  padding: 12px 28px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition);
}
.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.6);
}

.btn-white-red {
  background: var(--white);
  color: var(--red);
  border: none;
  border-radius: var(--radius);
  padding: 14px 32px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: var(--transition);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}
.btn-white-red:hover {
  transform: translateY(-2px);
  color: var(--red-dark);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
  background-color: #eef2f5;
  color: var(--red) !important;
}

.btn-outline-white-cta {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: var(--radius);
  padding: 14px 32px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
}
.btn-outline-white-cta:hover {
  background: rgb(255, 255, 255);
  color: var(--red) !important;
}

/* ---- Layout Helpers ---- */
.section-pad {
  padding: 100px 0;
}
.mb-60 {
  margin-bottom: 60px;
}

/* =========================================================
   PRELOADER
   ========================================================= */
#preloader {
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    opacity 0.5s ease,
    visibility 0.5s ease;
}
#preloader.hide {
  opacity: 0;
  visibility: hidden;
}
.preloader-inner {
  text-align: center;
}
.pre-logo {
  /* font-family: "Barlow Condensed", sans-serif; */
  font-family: "Inter", ui-sans-serif, system-ui, sans-serif;
  font-size: 2.5rem;
  font-weight: 900;
  letter-spacing: 4px;
  color: var(--white);
  margin-bottom: 24px;
}
.pre-logo span {
  color: var(--red);
}
.pre-bar {
  width: 350px;
  height: 3px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 99px;
  overflow: hidden;
}
.pre-fill {
  height: 100%;
  width: 0;
  background: var(--red);
  border-radius: 99px;
  animation: preLoad 1.3s ease forwards;
}
@keyframes preLoad {
  to {
    width: 100%;
  }
}

/* =========================================================
   NAVBAR
   ========================================================= */
#mainNav {
  padding: 20px 0;
  transition: all 0.35s ease;
  background: transparent;
  border-bottom: 1px solid transparent;
}
#mainNav.scrolled {
  padding: 12px 0;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(20px);
  border-bottom-color: var(--border);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}
.nav-logo-img {
  /* height: 50px; */
  height: 62px;
  width: auto;
  filter: brightness(0) invert(1);
}
.navbar-nav .nav-link {
  color: rgba(255, 255, 255, 0.8) !important;
  /* font-size: 0.85rem; */
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.5px;
  padding: 6px 14px !important;
  position: relative;
  transition: color 0.2s;
}
.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 14px;
  width: 0;
  height: 2px;
  background: var(--red);
  transition: width 0.3s ease;
}
.navbar-nav .nav-link:hover {
  color: var(--white) !important;
}
.navbar-nav .nav-link:hover::after {
  width: calc(100% - 28px);
}
.toggler-icon {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.toggler-icon span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
  border-radius: 2px;
}
.navbar-toggler {
  border: none;
  box-shadow: none;
  background: none;
}
.navbar-toggler:focus {
  box-shadow: none;
}
@media (max-width: 991px) {
  .navbar-collapse {
    background: rgba(10, 10, 10, 0.97);
    backdrop-filter: blur(20px);
    padding: 20px;
    margin-top: 10px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
  }
  .navbar-nav .nav-link {
    padding: 10px 16px !important;
  }
  .ms-lg-3 {
    margin-top: 12px;
  }
  .btn-primary-red {
    display: block;
    text-align: center;
  }
}

/* =========================================================
   HERO SECTION
   ========================================================= */
.hero-section {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  background: var(--black);
  overflow: hidden;
  padding-top: 100px;
}
.hero-bg-shapes {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}
.shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.shape-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(227, 30, 36, 0.15), transparent 70%);
  top: -200px;
  right: -100px;
  animation: floatShape 8s ease-in-out infinite;
}
.shape-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(227, 30, 36, 0.08), transparent 70%);
  bottom: -100px;
  left: -100px;
  animation: floatShape 10s ease-in-out infinite reverse;
}
.shape-3 {
  width: 200px;
  height: 200px;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.04),
    transparent 70%
  );
  top: 40%;
  left: 30%;
  animation: floatShape 12s ease-in-out infinite;
}
.shape-4 {
  width: 100px;
  height: 100px;
  background: var(--red);
  opacity: 0.06;
  border-radius: 20px;
  top: 20%;
  right: 30%;
  transform: rotate(45deg);
  animation: spinSlow 20s linear infinite;
}
@keyframes floatShape {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-30px) scale(1.05);
  }
}
@keyframes spinSlow {
  to {
    transform: rotate(405deg);
  }
}

.hero-section .container {
  position: relative;
  z-index: 1;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(227, 30, 36, 0.1);
  border: 1px solid rgba(227, 30, 36, 0.3);
  color: var(--red);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1px;
  padding: 6px 16px;
  border-radius: 99px;
  margin-bottom: 24px;
  text-transform: uppercase;
}
.badge-dot {
  width: 6px;
  height: 6px;
  background: var(--red);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(227, 30, 36, 0.5);
  }
  50% {
    box-shadow: 0 0 0 6px rgba(227, 30, 36, 0);
  }
}
.hero-headline {
  /* font-family: "Barlow Condensed", sans-serif; */
  font-family: "Inter", ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(2.8rem, 6vw, 5rem);
  /* font-weight: 900; line-height: 1.0; */
  font-weight: 700;
  line-height: 1;
  letter-spacing: -1px;
  margin-bottom: 20px;
}

.hero-sub {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 28px;
  max-width: 500px;
  line-height: 1.7;
}
.hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 36px;
}
.hero-features span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
}
.hero-features .bi-check-circle-fill {
  color: var(--red);
  font-size: 0.9rem;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* Hero Visual */
.hero-visual {
  position: relative;
  height: 480px;
}
.hero-orb {
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(
    circle at 40% 40%,
    rgba(227, 30, 36, 0.2),
    rgba(0, 0, 0, 0.8)
  );
  border: 1px solid rgba(227, 30, 36, 0.2);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: orbPulse 4s ease-in-out infinite;
}
@keyframes orbPulse {
  0%,
  100% {
    box-shadow: 0 0 40px rgba(227, 30, 36, 0.15);
  }
  50% {
    box-shadow: 0 0 80px rgba(227, 30, 36, 0.3);
  }
}
.hero-card {
  position: absolute;
  background: rgba(20, 20, 20, 0.9);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  font-weight: 600;
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow);
  animation: float 4s ease-in-out infinite;
}
.hero-card i {
  font-size: 1.3rem;
  color: var(--red);
}
.hc-1 {
    top: 150px;
    left: 10px;
    animation-delay: 0s;
}
.hc-2 {
    top: 50%;
    right: -45px;
    transform: translateY(-50%);
    animation-delay: 1.5s;
}
.hc-3 {
    bottom: 192px;
    left: 20px;
    animation-delay: 0.8s;
}
@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}
.hc-2 {
  animation-name: float2;
}
@keyframes float2 {
  0%,
  100% {
    transform: translateY(-50%);
  }
  50% {
    transform: translateY(calc(-50% - 12px));
  }
}
.hero-rocket {
    position: absolute;
    font-size: 3rem;
    top: 167px;
    right: 126px;
    animation: rocketFloat 3s ease-in-out infinite;
}
@keyframes rocketFloat {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(5deg);
  }
}

.hero-scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  z-index: 1;
}
.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, rgba(227, 30, 36, 0.8), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0% {
    transform: scaleY(0);
    transform-origin: top;
  }
  50% {
    transform: scaleY(1);
    transform-origin: top;
  }
  51% {
    transform: scaleY(1);
    transform-origin: bottom;
  }
  100% {
    transform: scaleY(0);
    transform-origin: bottom;
  }
}

/* =========================================================
   STATS SECTION
   ========================================================= */
.stats-section {
  padding: 60px 0;
  background: linear-gradient(135deg, var(--black2), var(--black3));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat-item {
  text-align: center;
  padding: 30px 20px;
  border-right: 1px solid var(--border);
  position: relative;
}
.stat-item:last-child {
  border-right: none;
}
.stat-item::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 2px;
  background: var(--red);
  opacity: 0;
  transition: opacity 0.3s;
}
.stat-item:hover::before {
  opacity: 1;
}
.stat-number {
  /* font-family: "Barlow Condensed", sans-serif; */
  font-family: "Inter", ui-sans-serif, system-ui, sans-serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--red);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}
.stat-sub {
  font-size: 0.75rem;
  color: var(--gray);
}
@media (max-width: 767px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stat-item:nth-child(2) {
    border-right: none;
  }
  .stat-item:nth-child(1),
  .stat-item:nth-child(2) {
    border-bottom: 1px solid var(--border);
  }
}

/* =========================================================
   ABOUT SECTION
   ========================================================= */
.about-section {
  background: var(--black);
}
.about-visual-wrap {
  position: relative;
  padding: 40px;
}
.about-img-main {
  /* background: linear-gradient(135deg, #1a1a1a, #0a0a0a); */
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 1;
}
.about-img-inner {
  padding: 40px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-icon-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  width: 100%;
}
.aig-item {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--gray);
  transition: var(--transition);
  cursor: default;
}
.aig-item:hover {
  background: rgba(227, 30, 36, 0.1);
  border-color: rgba(227, 30, 36, 0.4);
  color: var(--red);
  transform: scale(1.05);
}
.aig-item.red {
  background: rgba(227, 30, 36, 0.1);
  border-color: rgba(227, 30, 36, 0.3);
  color: var(--red);
}

.about-since-badge {
  position: absolute;
  top: -20px;
  left: -20px;
  background: var(--red);
  border-radius: var(--radius);
  padding: 20px;
  text-align: center;
  box-shadow: var(--shadow-red);
}
.since-year {
  display: block;
  /* font-family: "Barlow Condensed", sans-serif; */
  font-family: "Inter", ui-sans-serif, system-ui, sans-serif;
  font-size: 2rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}
.since-text {
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
}

.about-stat-float {
  position: absolute;
  background: rgba(20, 20, 20, 0.95);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow);
}
.about-stat-float i {
  font-size: 1.5rem;
  color: var(--red);
}
.about-stat-float strong {
  display: block;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.about-stat-float span {
  font-size: 0.75rem;
  color: var(--gray);
}
.af-1 {
  bottom: 20px;
  right: -20px;
}
.af-2 {
  bottom: 120px;
  right: -20px;
}

.about-pillars {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 28px;
}
.pillar {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: var(--transition);
}
.pillar:hover {
  background: rgba(227, 30, 36, 0.05);
  border-color: rgba(227, 30, 36, 0.2);
}
.pillar-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: rgba(227, 30, 36, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--red);
}
.pillar h5 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--white);
}
.pillar p {
  font-size: 0.82rem;
  color: var(--gray);
  margin: 0;
  line-height: 1.6;
}

/* =========================================================
   SERVICES SECTION
   ========================================================= */
.services-section {
  background: var(--black2);
  position: relative;
  overflow: hidden;
}
.services-bg-accent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--red), transparent);
}
.service-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  height: 100%;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  cursor: default;
}
.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(227, 30, 36, 0.05), transparent);
  opacity: 0;
  transition: var(--transition);
}
.service-card:hover {
  border-color: rgba(227, 30, 36, 0.4);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(227, 30, 36, 0.15);
}
.service-card:hover::before {
  opacity: 1;
}
.service-card:hover .sc-icon {
  background: var(--red);
  color: var(--white);
}
.service-card:hover .sc-arrow {
  opacity: 1;
  transform: translateX(0);
}
.sc-icon {
  width: 56px;
  height: 56px;
  background: rgba(227, 30, 36, 0.1);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--red);
  margin-bottom: 16px;
  transition: var(--transition);
}
.service-card h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--white);
}
.service-card p {
  font-size: 0.82rem;
  color: var(--gray);
  line-height: 1.6;
  margin: 0;
}
.sc-arrow {
  position: absolute;
  bottom: 20px;
  right: 20px;
  width: 32px;
  height: 32px;
  background: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: var(--white);
  opacity: 0;
  transform: translateX(8px);
  transition: var(--transition);
}

/* =========================================================
   WHY CHOOSE US
   ========================================================= */
.why-section {
  background: var(--black3);
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.why-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 20px;
  transition: var(--transition);
  cursor: default;
}
.why-card:hover {
  background: rgba(227, 30, 36, 0.06);
  border-color: rgba(227, 30, 36, 0.3);
  transform: translateY(-4px);
}
.why-icon {
  font-size: 1.8rem;
  color: var(--red);
  margin-bottom: 12px;
}
.why-card h5 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.why-card p {
  font-size: 0.8rem;
  color: var(--gray);
  margin: 0;
  line-height: 1.6;
}
@media (max-width: 767px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .why-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================================================
   PROCESS SECTION
   ========================================================= */
.process-section {
  background: var(--black);
}
.process-timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  position: relative;
}
.process-timeline::before {
  display: none;
}
.process-step {
  position: relative;
  cursor: default;
}
.ps-number {
  /* font-family: "Barlow Condensed", sans-serif; */
  font-family: "Inter", ui-sans-serif, system-ui, sans-serif;
  font-size: 4rem;
  font-weight: 900;
  color: rgba(227, 30, 36, 0.1);
  line-height: 1;
  margin-bottom: -67px;
  margin-right: 15px;
  letter-spacing: 5px;
  text-align: end;
}
.ps-content {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  transition: var(--transition);
}
.process-step:hover .ps-content {
  border-color: rgba(227, 30, 36, 0.3);
  background: rgba(227, 30, 36, 0.04);
  transform: translateY(-4px);
}
.ps-icon {
  width: 48px;
  height: 48px;
  background: rgba(227, 30, 36, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--red);
  margin-bottom: 14px;
}
.ps-content h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.ps-content p {
  font-size: 0.82rem;
  color: var(--gray);
  margin: 0;
  line-height: 1.6;
}
.process-line {
  display: none;
}
@media (max-width: 991px) {
  .process-timeline {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 575px) {
  .process-timeline {
    grid-template-columns: 1fr;
  }
}

/* =========================================================
   PORTFOLIO
   ========================================================= */
.gkt-education{
  background-image: url(../img/gkt-education.jpg) !important;
  background-position: top;
  background-repeat: no-repeat;
  background-size: cover;
}

.passport-planner{
  background-image: url(../img/pasport-planner.jpg) !important;
  background-position: top;
  background-repeat: no-repeat;
  background-size: cover;
}
.kubeglobal{
  background-image: url(../img/kubeglobal.jpg) !important;
  background-position: top;
  background-repeat: no-repeat;
  background-size: cover;
}
.lotus-caslle{
  background-image:url(../img/desgin-4.jpg) !important;
  background-position: top;
  background-repeat: no-repeat;
  background-size: contain;
}
.lovely-bathconcept{
 background-image:url(../img/desgin-3.jpg) !important;
  background-position: top;
  background-repeat: no-repeat;
  background-size: contain;
}
.hilton{
  background-image:url(../img/desgin-2.jpg) !important;
  background-position: top;
  background-repeat: no-repeat;
  background-size: contain;
}

.bathinda-glass{
  background-image:url(../img/desgin-1.jpg) !important;
  background-position: top;
  background-repeat: no-repeat;
  background-size: contain;
}

.grace-img{
  background-image:url(../img/grace-img.jpg) !important;
  background-position: top;
  background-repeat: no-repeat;
  background-size: cover;
}


.portfolio-section {
  background: var(--black2);
}
.portfolio-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 40px;
}
.pf-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  color: var(--gray);
  border-radius: 99px;
  padding: 8px 20px;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}
.pf-btn:hover,
.pf-btn.active {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.portfolio-item {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  transition: var(--transition);
}
.portfolio-item.hidden {
  display: none;
}
.pi-inner {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  cursor: pointer;
}
.pi-mockup {
  font-size: 4rem;
  opacity: 0.2;
  transition: var(--transition);
}
.pi-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.566);
  backdrop-filter: blur(4px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 20px;
  opacity: 0;
  transform: translateY(10px);
  transition: var(--transition);
}
.pi-inner:hover .pi-overlay {
  opacity: 1;
  transform: translateY(0);
}
.pi-inner:hover .pi-mockup {
  opacity: 0.05;
  transform: scale(1.1);
}
.pi-cat {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 6px;
}
.pi-overlay h5 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 4px;
}
.pi-overlay p {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.7);
  margin: 0 0 12px;
  line-height: 1.5;
}
.pi-link {
  width: 36px;
  height: 36px;
  background: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--white);
  transition: var(--transition);
}
.pi-link:hover {
  transform: scale(1.1);
}
@media (max-width: 1199px) {
  .portfolio-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 767px) {
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .portfolio-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================================================
   CASE STUDIES
   ========================================================= */
.cases-section {
  background: var(--black);
}
.case-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  height: 100%;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.case-card.featured {
  background: rgba(227, 30, 36, 0.06);
  border-color: rgba(227, 30, 36, 0.3);
}
.case-card:hover {
  border-color: rgba(227, 30, 36, 0.4);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(227, 30, 36, 0.1);
}
.case-num {
  /* font-family: "Barlow Condensed", sans-serif; */
  font-family: "Inter", ui-sans-serif, system-ui, sans-serif;
  font-size: 5rem;
  font-weight: 900;
  color: rgba(227, 30, 36, 0.08);
  position: absolute;
  top: 10px;
  right: 20px;
  line-height: 1;
}
.case-icon {
  font-size: 2.5rem;
  color: var(--red);
  margin-bottom: 12px;
}
.case-card h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 20px;
}
.case-block {
  margin-bottom: 16px;
}
.cb-label {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 99px;
  margin-bottom: 6px;
}
.cb-label.challenge {
  background: rgba(255, 100, 0, 0.15);
  color: #ff6400;
}
.cb-label.solution {
  background: rgba(0, 150, 255, 0.15);
  color: #0096ff;
}
.cb-label.results {
  background: rgba(0, 200, 100, 0.15);
  color: #00c864;
}
.case-block p {
  font-size: 0.83rem;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
  line-height: 1.6;
}
.case-stats {
  display: flex;
  gap: 16px;
  margin-top: 8px;
}
.case-stats > div {
  text-align: center;
}
.case-stats strong {
  display: block;
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--red);
  line-height: 1;
}
.case-stats span {
  font-size: 0.72rem;
  color: var(--gray);
}

/* =========================================================
   TESTIMONIALS
   ========================================================= */
.testimonials-section {
  background: var(--black2);
  position: relative;
  overflow: hidden;
}
.testimonials-section::before {
  content: '"';
  position: absolute;
  font-size: 20rem;
  font-family: serif;
  color: rgba(227, 30, 36, 0.04);
  top: -40px;
  left: 40px;
  line-height: 1;
  pointer-events: none;
}
.testimonialSwiper {
  padding-bottom: 60px !important;
}
.testi-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  margin: 10px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}
.testi-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--red);
}
.testi-stars {
  color: #ffc107;
  font-size: 1rem;
  margin-bottom: 16px;
  letter-spacing: 2px;
}
.testi-card > p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.8;
  margin-bottom: 24px;
  font-style: italic;
}
.testi-client {
  display: flex;
  align-items: center;
  gap: 14px;
}
.tc-avatar {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--white);
}
.testi-client strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
}
.testi-client span {
  font-size: 0.78rem;
  color: var(--gray);
}
.swiper-button-prev,
.swiper-button-next {
  color: var(--red) !important;
  background: rgba(227, 30, 36, 0.1);
  width: 44px !important;
  height: 44px !important;
  border-radius: 50%;
  border: 1px solid rgba(227, 30, 36, 0.3);
  transition: var(--transition);
}
.swiper-button-prev::after,
.swiper-button-next::after {
  font-size: 0.9rem !important;
}
.swiper-button-prev:hover,
.swiper-button-next:hover {
  background: var(--red);
  border-color: var(--red);
  color: white !important;
}
.swiper-pagination-bullet {
  background: var(--gray) !important;
}
.swiper-pagination-bullet-active {
  background: var(--red) !important;
}

/* =========================================================
   INDUSTRIES
   ========================================================= */
.industries-section {
  background: var(--black3);
}
.industries-grid {
  display: grid;
  grid-template-columns: repeat(9, 1fr);
  gap: 12px;
}
.industry-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 12px;
  text-align: center;
  transition: var(--transition);
  cursor: default;
}
.industry-item i {
  display: block;
  font-size: 1.8rem;
  color: var(--red);
  margin-bottom: 8px;
  transition: var(--transition);
}
.industry-item span {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gray);
}
.industry-item:hover {
  background: rgba(227, 30, 36, 0.08);
  border-color: rgba(227, 30, 36, 0.3);
  transform: translateY(-4px);
}
.industry-item:hover i {
  transform: scale(1.15);
}
.industry-item:hover span {
  color: var(--white);
}
@media (max-width: 1199px) {
  .industries-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}
@media (max-width: 767px) {
  .industries-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 480px) {
  .industries-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* =========================================================
   TEAM
   ========================================================= */
.team-section {
  background: var(--black);
}
.team-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  cursor: default;
}
.team-card:hover {
  border-color: rgba(227, 30, 36, 0.3);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(227, 30, 36, 0.1);
}
.tc-img {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  color: rgba(255, 255, 255, 0.3);
}
.tc-info {
  padding: 24px;
  text-align: center;
}
.tc-info h5 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 4px;
}
.tc-info > span {
  font-size: 0.8rem;
  color: var(--red);
  font-weight: 600;
}
.tc-socials {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 16px;
}
.tc-socials a {
  width: 34px;
  height: 34px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: var(--gray);
  transition: var(--transition);
}
.tc-socials a:hover {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}

/* =========================================================
   FAQ
   ========================================================= */
.faq-section {
  background: var(--black2);
}
.faq-item {
  margin-bottom: 10px;
}
.faq-q {
  width: 100%;
  text-align: left;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--white);
  padding: 18px 20px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition);
  gap: 12px;
}
.faq-q:not(.collapsed) {
  background: rgba(227, 30, 36, 0.1);
  border-color: rgba(227, 30, 36, 0.4);
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  color: var(--red);
}
.faq-q:not(.collapsed) .bi-chevron-down {
  transform: rotate(180deg);
}
.faq-q .bi-chevron-down {
  transition: transform 0.3s ease;
  font-size: 0.8rem;
  min-width: 16px;
}
.faq-a {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(227, 30, 36, 0.2);
  border-top: none;
  border-radius: 0 0 var(--radius) var(--radius);
  padding: 16px 20px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
}

/* =========================================================
   CTA SECTION
   ========================================================= */
.cta-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #c8181e, #8b0000, #500000);
  position: relative;
  overflow: hidden;
}
.cta-bg-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.cta-shape {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  filter: blur(60px);
}
.cs-1 {
  width: 400px;
  height: 400px;
  top: -200px;
  right: -100px;
}
.cs-2 {
  width: 300px;
  height: 300px;
  bottom: -150px;
  left: -50px;
}
.cta-headline {
  /* font-family: "Barlow Condensed", sans-serif; */
  font-family: "Inter", ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 900;
  color: var(--white);
  margin: 16px 0;
  line-height: 1.1;
  letter-spacing: -1px;
}
.cta-headline span {
  color: rgba(255, 255, 255, 0.7);
}
.cta-sub {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 36px;
}
.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

/* =========================================================
   CONTACT SECTION
   ========================================================= */
.contact-section {
  background: var(--black);
}
.contact-info {
  margin-bottom: 28px;
}
.ci-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  transition: var(--transition);
}
.ci-item:hover {
  border-color: rgba(227, 30, 36, 0.3);
}
.ci-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: rgba(227, 30, 36, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--red);
}
.ci-item span {
  display: block;
  font-size: 0.75rem;
  color: var(--gray);
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.ci-item strong {
  font-size: 0.9rem;
  color: var(--white);
}
.ci-item strong a {
  color: var(--white);
  transition: color 0.2s;
}
.ci-item strong a:hover {
  color: var(--red);
}

.contact-socials {
  display: flex;
  gap: 10px;
  margin-bottom: 24px;
}
.cs-link {
  width: 42px;
  height: 42px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--gray);
  transition: var(--transition);
}
.cs-link:hover {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
  transform: translateY(-2px);
}

.map-placeholder {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 8px;
  min-height: 160px;
}
.map-placeholder i {
  font-size: 2.5rem;
  color: var(--red);
}
.map-placeholder span {
  font-size: 0.9rem;
  font-weight: 600;
}
.map-link {
  font-size: 0.8rem;
  color: var(--red);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: opacity 0.2s;
}
.map-link:hover {
  opacity: 0.8;
}

.contact-form-wrap {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
}
.form-group {
  margin-bottom: 0;
}
.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}
.form-control {
  background: rgba(255, 255, 255, 0.06) !important;
  border: 1px solid var(--border) !important;
  border-radius: var(--radius) !important;
  color: var(--white) !important;
  padding: 12px 16px !important;
  font-size: 0.88rem !important;
  font-family: "Poppins", sans-serif !important;
  transition: var(--transition) !important;
}
.form-control::placeholder {
  color: rgba(255, 255, 255, 0.3) !important;
}
.form-control:focus {
  background: rgba(255, 255, 255, 0.08) !important;
  border-color: rgba(227, 30, 36, 0.5) !important;
  box-shadow: 0 0 0 3px rgba(227, 30, 36, 0.15) !important;
  outline: none;
}
select.form-control option {
  background: var(--black2);
  color: var(--white);
}
textarea.form-control {
  resize: none;
}

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer {
  /* background: #050505; */
  border-top: 1px solid var(--border);
  background-image: url(../img/footer-bg.jpg) !important; 
  background-position: center !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
}
.footer-top {
  padding: 70px 0 50px;
}
.footer-logo {
  height: 55px;
  width: auto;
  margin-bottom: 16px;
}
.footer-brand p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.7;
  max-width: 280px;
}
.footer-socials {
   display:flex;
    gap:18px;
    flex-wrap:wrap;
}
.footer-socials a {
  width:40px;
    height:40px;
    border:1.5px solid #ff1e1e;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    text-decoration:none;
    font-size:22px;
    transition:all .3s ease;
    background:rgba(255,255,255,0.02);
}
.footer-socials a:hover {
  background:#ff1e1e;
    color:#fff;
    transform:translateY(-4px);
    box-shadow:0 0 20px rgba(255,30,30,.4);
}
.footer-heading {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
}
.footer-heading::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 39px;
  height: 2px;
  background: var(--red);
}
.footer-links li {
  margin-bottom: 10px;
}
.footer-links a {
  font-size: 16px;
  color: rgb(255, 255, 255);
  transition: color 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.footer-links a::before {
  /* content: "→"; */
  font-size: 0.7rem;
  color: var(--red);
  opacity: 0;
  transform: translateX(-4px);
  transition: var(--transition);
}
.footer-links a:hover {
  color: #e31e24;
}



.footer-links a:hover::before {
  opacity: 1;
  transform: translateX(0);
}
.footer-contact li {
  /* display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 12px; */
   display:flex;
    align-items: start;
    gap:15px;
    margin-bottom:20px;
}
.footer-contact li i {
  /* color: var(--red);
  min-width: 16px;
  margin-top: 2px; */
   width:38px;
    height:38px;
    border:1px solid #ff1e1e;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#ff1e1e;
    font-size:20px;
    flex-shrink:0;
}
.footer-contact li a {
  color: rgba(255, 255, 255, 0.45);
  transition: color 0.2s;
}
.footer-contact li a:hover {
  color: var(--red) !important;
}

  .footer-bottom {
    border-top: 1px solid rgb(197 14 14);
    padding: 17px 0;
        background: #040509;

}
.footer-bottom p {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.984);
  margin: 0;
}

/* =========================================================
   BACK TO TOP
   ========================================================= */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 46px;
  height: 46px;
  background: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white !important;
  font-size: 1.1rem;
  z-index: 999;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: var(--transition);
  box-shadow: var(--shadow-red);
}
.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.back-to-top:hover {
  color: var(--white);
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(227, 30, 36, 0.5);
}

/* =========================================================
   RESPONSIVE ADJUSTMENTS
   ========================================================= */

/* =========================================================
   AOS CUSTOM OVERRIDES
   ========================================================= */
[data-aos] {
  pointer-events: none;
}
[data-aos].aos-animate {
  pointer-events: auto;
}

:root {
  --red: #e31e24;
  --red-dark: #c81920;
  --red-glow: rgba(227, 30, 36, 0.18);

  /* Light Theme */
  --black: #f4f6f8;
  --black2: #ffffff;
  --black3: #eef2f5;

  --gray: #6b7280;
  --gray-light: #fafafa;

  --white: #1f2937;

  --border: rgba(0, 0, 0, 0.08);
  --border-light: rgba(0, 0, 0, 0.05);

  --shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  --shadow-red: 0 8px 30px rgba(227, 30, 36, 0.18);

  --radius: 12px;
  --radius-lg: 20px;
  --transition: 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
}

body {
  background: #f4f6f8;
  color: #1f2937;
}

#mainNav.scrolled {
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.navbar-nav .nav-link {
  color: #374151 !important;
}

.navbar-nav .nav-link:hover {
  color: var(--red) !important;
}

.nav-logo-img {
  filter: none;
}

.service-card,
.why-card,
.team-card,
.case-card,
.contact-form-wrap,
.testi-card,
.pillar,
.ci-item {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.about-section {
  background: #f4f6f8;
}

.services-section {
  background: #ffffff;
}

.why-section {
  background: #eef2f5;
}

.process-section {
  background: #f4f6f8;
}

.portfolio-section {
  background: #ffffff;
}

.cases-section {
  background: #eef2f5;
}

.testimonials-section {
  background: #ffffff;
}

.industries-section {
  background: #f4f6f8;
}

.team-section {
  background: #ffffff;
}

.faq-section {
  background: #eef2f5;
}

.contact-section {
  background: #f4f6f8;
}

.section-body,
.hero-sub,
.pillar p,
.why-card p,
.service-card p,
.case-block p,
.footer-brand p {
  color: #6b7280;
}

.hero-section {
  background:
    radial-gradient(
      circle at top right,
      rgba(227, 30, 36, 0.08),
      transparent 40%
    ),
    #f4f6f8;
}

.hero-grid {
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.03) 1px, transparent 1px);
}

.site-footer {
  background: #111111;
}

label {
  color: #000000 !important;
}

.nav-logo {
  height: 50px;
  transition: all 0.3s ease;
}

.logo-sticky {
  display: none;
}

/* Sticky Navbar */
.navbar.scrolled .logo-default {
  display: none;
}

.navbar.scrolled .logo-sticky {
  display: block;
}

.navbar .nav-link.active {
  color: #ca2e34 !important;
  font-weight: 600;
}

/* ========================================= */

.hero-visual {
  position: relative;
  width: 100%;
  height: 750px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Center Logo Circle */
.hero-center {
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  box-shadow: 0 0 80px rgba(255, 0, 60, 0.15);
}

.hero-center img {
  max-width: 180px;
}

/* Orbit Ring */
.orbit-ring {
  position: absolute;
  width: 470px;
  height: 470px;
  border-radius: 50%;
  border: 2px dashed rgba(255, 60, 60, 0.35);
  z-index: 1;
  animation: spinSlow 30s linear infinite;
}

/* Cards */
.hero-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 15px;
  background: rgba(20, 20, 20, 0.9);
  backdrop-filter: blur(15px);
  padding: 18px 24px;
  border-radius: 20px;
  min-width: 220px;
  z-index: 3;
}

.hero-card .icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 0, 60, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-card i {
  color: #ff2b4f;
  font-size: 1.5rem;
}

.hero-card h6 {
  color: #fff;
  margin: 0;
  font-weight: 700;
}

.hero-card span {
  color: #bdbdbd;
  font-size: 0.85rem;
}

/* Card Positions */
.card-1 {
  top: 103px;
  left: 32px;
}

.card-2 {
  top: 254px;
  right: -85px;
}

.card-3 {
  bottom: 203px;
  left: -26px;
}

/* Floating Icons */
.float-icon {
  position: absolute;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.float-icon i {
  color: #ff2b4f;
  font-size: 1.8rem;
}

.fi-1 {
  left: 0px;
  top: 300px;
}

.fi-2 {
  right: 16px;
  bottom: 245px;
}

.fi-3 {
  bottom: 100px;
  left: 50%;
  bottom: 109px ;
  transform: translateX(-50%);
}

/* Rocket */
.rocket {
  position: absolute;
  top: 70px;
  right: 80px;
  font-size: 70px;
  z-index: 4;
  animation: rocketFloat 3s ease-in-out infinite;
}

/* Bottom Feature Strip */
.feature-strip {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(20px);
  border-radius: 25px;
  padding: 25px;
  display: flex;
  justify-content: space-between;
  z-index: 3;
}

.feature-item {
  text-align: center;
  flex: 1;
}

.feature-item i {
  font-size: 2rem;
  color: #ff2b4f;
  margin-bottom: 10px;
}

.feature-item h6 {
  color: #fff;
  margin-bottom: 5px;
}

.feature-item small {
  color: #bdbdbd;
}

/* Mobile */
@media (max-width: 991px) {
  .hero-visual {
    height: auto;
    padding: 40px 0;
  }

  .orbit-ring,
  .rocket,
  .float-icon,
  .feature-strip {
    display: none;
  }

  .hero-center {
    width: 250px;
    height: 250px;
  }

  .hero-card {
    position: relative;
    margin: 15px 0;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
  }
}

/*  portfolio css  */

/* =========================================================
       EXTRA CSS — portfolio-index.html
       Only for layout patterns not in about.css
       ========================================================= */

/* --- Services Grid Cards --- */
.svc-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
  transition: var(--trans);
  height: 100%;
  box-shadow: var(--shadow);
}
.svc-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red), var(--red-dark));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--trans);
}
.svc-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(227, 30, 36, 0.12);
  border-color: rgba(227, 30, 36, 0.25);
}
.svc-card:hover::after {
  transform: scaleX(1);
}
.svc-icon-wrap {
  width: 64px;
  height: 64px;
  background: var(--red-light);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--red);
  margin-bottom: 20px;
  transition: var(--trans);
}
.svc-card:hover .svc-icon-wrap {
  background: var(--red);
  color: #fff;
}
.svc-card h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}
.svc-card p {
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 20px;
}
.svc-features {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.svc-features li {
  font-size: 0.8rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
}
.svc-features li i {
  color: var(--red);
  font-size: 0.85rem;
}

/* --- Process Steps --- */
.process-section {
  background: var(--dark2) !important;
  position: relative;
  overflow: hidden;
}
.process-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at 50% 0%,
    rgba(227, 30, 36, 0.12),
    transparent 60%
  );
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.ps-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  transition: var(--trans);
  backdrop-filter: blur(10px);
}
.ps-card:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(227, 30, 36, 0.35);
}
.ps-num {
  font-size: 4.5rem;
  font-weight: 900;
  color: rgba(227, 30, 36, 0.08);
  position: absolute;
  top: 8px;
  right: 16px;
  line-height: 1;
  pointer-events: none;
}
.ps-icon {
  font-size: 2rem;
  color: var(--red);
  margin-bottom: 16px;
}
.ps-card h4 {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}
.ps-card p {
  font-size: 0.83rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
  margin: 0;
}
@media (max-width: 991px) {
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 575px) {
  .process-grid {
    grid-template-columns: 1fr;
  }
}

/* --- Portfolio Cards --- */
.pf-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--trans);
  box-shadow: var(--shadow);
  height: 100%;
  position: relative;
    overflow: hidden;
    border-radius: 15px;
}



.pf-card img{
    width: 100%;
    display: block;
}

.pf-title{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 15px 15px 15px 30px ;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.923));
    text-align: start;
}

.portfolio-h{
  height: 313px !important;
}


.pf-title h4{
    color: #fff;
    margin: 0;
    font-size: 20px;
    text-transform: capitalize;
}
.pf-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 70px rgba(227, 30, 36, 0.13);
  border-color: rgba(227, 30, 36, 0.25);
}
.pf-img {
  position: relative;
  overflow: hidden;
  height: 240px;
}
.pf-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.pf-card:hover .pf-img img {
  transform: scale(1.07);
}
.pf-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 20px;
}
.pf-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.pf-tag {
  font-size: 0.7rem;
  font-weight: 600;
  background: rgba(227, 30, 36, 0.85);
  color: #fff;
  padding: 3px 10px;
  border-radius: 99px;
}
.pf-body {
  padding: 24px;
}
.pf-body h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}
.pf-body p {
  font-size: 0.83rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 14px;
}
.pf-results {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.pf-result-item {
  font-size: 0.78rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 5px;
}
.pf-result-item strong {
  color: var(--red);
  font-size: 0.95rem;
}
.pf-techs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.pf-tech {
  font-size: 0.7rem;
  font-weight: 600;
  background: var(--bg3);
  color: var(--text-muted);
  padding: 3px 10px;
  border-radius: 6px;
}

/* --- DM Expertise Cards --- */
.dm-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: var(--trans);
  height: 100%;
  box-shadow: var(--shadow);
}
.dm-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(227, 30, 36, 0.1);
  border-color: rgba(227, 30, 36, 0.25);
}
.dm-icon {
  font-size: 2.4rem;
  color: var(--red);
  margin-bottom: 14px;
}
.dm-card h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}
.dm-card p {
  font-size: 0.83rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
}

/* --- Metrics Section --- */
.metrics-section {
  background: var(--dark2);
  position: relative;
  overflow: hidden;
}
.metrics-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at 30% 50%,
    rgba(227, 30, 36, 0.14),
    transparent 55%
  );
}
.metric-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 36px 24px;
  text-align: center;
  transition: var(--trans);
  backdrop-filter: blur(10px);
}
.metric-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(227, 30, 36, 0.35);
}
.metric-num {
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--red);
  line-height: 1;
  margin-bottom: 8px;
}
.metric-num sup {
  font-size: 1.5rem;
}
.metric-num sub {
  font-size: 1.5rem;
  font-weight: 700;
}
.metric-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 6px;
}
.metric-desc {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.6;
}

/* --- Tech Stack Pills --- */
.tech-section {
  background: var(--bg2);
}
.tech-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.tech-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 20px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  transition: var(--trans);
  cursor: default;
}
.tech-pill i {
  color: var(--red);
  font-size: 1.2rem;
}
.tech-pill:hover {
  border-color: var(--red);
  color: var(--red);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(227, 30, 36, 0.1);
}

/* --- Hero specific tweaks --- */
.hero-stat-row {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  margin-top: 32px;
}
.hs-item {
  text-align: center;
}
.hs-num {
  font-size: 2rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
}
.hs-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
}
.hs-divider {
  width: 1px;
  background: rgba(255, 255, 255, 0.12);
  align-self: stretch;
}

/* --- Back to top --- */
#backToTop {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 46px;
  height: 46px;
  background: var(--red);
  color: #fff;
  border-radius: 50%;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: var(--shadow-red);
  transition: var(--trans);
  opacity: 0;
  pointer-events: none;
  z-index: 999;
  cursor: pointer;
}
#backToTop.visible {
  opacity: 1;
  pointer-events: auto;
}
#backToTop:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 36px rgba(227, 30, 36, 0.45);
}

/* --- Dark mode --- */
@media (prefers-color-scheme: dark) {
  :root {
    --text: #f0f0f0;
    --text-muted: #aaa;
    --text-light: #777;
    --bg: #111;
    --bg2: #191919;
    --bg3: #222;
    --dark: #f0f0f0;
    --dark2: #0d0d0d;
    --border: rgba(255, 255, 255, 0.09);
    --shadow: 0 8px 40px rgba(0, 0, 0, 0.35);
    --shadow-md: 0 16px 60px rgba(0, 0, 0, 0.5);
  }
  .svc-card,
  .pf-card,
  .dm-card,
  .award-card,
  .value-card,
  .team-card,
  .stat-card,
  .mv-card,
  .ind-item,
  .tech-pill,
  .t-card,
  .related-card,
  .faq-item,
  .info-box,
  .contact-form {
    background: #1c1c1c;
  }
  .svc-card h4,
  .pf-body h4,
  .dm-card h4,
  .ps-card h4 {
    color: #f0f0f0;
  }
  #mainNav.scrolled {
    background: rgba(13, 13, 13, 0.97);
  }
  #preloader {
    background: #111;
  }
  .faq-answer {
    background: #1c1c1c;
  }
  .stat-card {
    background: #1c1c1c;
  }
  .form-group input,
  .form-group textarea,
  .form-group select {
    background: #222;
    color: #f0f0f0;
  }
}



/* --- Section bg alternation --- */
.bg-alt {
  background: var(--bg2);
}

 .form-r{
      border-radius: 0 10px 10px 0  !important;
    }


    .form-select:focus {
    background: rgba(255, 255, 255, 0.08) !important;
    border-color: rgba(227, 30, 36, 0.5) !important;
    box-shadow: 0 0 0 3px rgba(227, 30, 36, 0.15) !important;
    outline: none;
}

#service option {
    background: #fff;
    color: #333;
}

.home-slide{
  padding-top: 30px !important;
}

.prodcast-img{
      max-width: 100%;
    height: 100%;
    display: block;
    border-radius: 50%;
}

.dropdown-menu .dropdown-item {
    padding: 10px 15px;
    border-bottom: 1px solid #e9ecef;
    transition: all .3s ease;
}