/* ================= GLOBAL FONT ================= */
  * {margin:0; padding:0; box-sizing:border-box;}

*,
*::before,
*::after {
  font-family: 'Roboto Condensed', sans-serif;
}

body {
  font-family: 'Roboto Condensed', sans-serif;
}
    body {background:#0d0d0d; color:#ddd; line-height:1.6;}


/* page title */



/* ================= HOME ABOUT SECTION ================= */
.home-about-section {
  padding: 120px 0;
  background: #0a0a0a;
  position: relative;
  overflow: hidden;
  min-height: 100vh; /* Ensures minimum height */
  display: flex;
  align-items: center;
}

/* Subtle grid pattern background */
.home-about-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 40px 40px;
  animation: gridMove 30s linear infinite;
}

/* Floating light particles */
.home-about-section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.04) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.03) 0%, transparent 50%);
  animation: lightPulse 10s ease-in-out infinite alternate;
}

/* Container */
.home-about-container {
  max-width: 1300px;
  width: 100%;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 80px;
  position: relative;
  z-index: 10;
}

/* Left Content */
.home-about-content {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.home-about-title {
  font-size: 42px;
  color: #ffffff;
  margin-bottom: 20px;
  font-weight: 600;
  letter-spacing: -0.5px;
  line-height: 1.2;
  opacity: 0;
  transform: translateY(30px);
  animation: titleReveal 1.2s ease-out 0.3s forwards;
  position: relative;
}

.home-about-title::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 0;
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, #ffffff, rgba(255,255,255,0.2));
  transform: scaleX(0);
  transform-origin: left;
  animation: lineExpand 1.5s ease-out 0.8s forwards;
}

.home-about-subtitle {
  font-size: 19px;
  margin-bottom: 35px;
  color: #cccccc;
  font-weight: 300;
  letter-spacing: 1.2px;
  opacity: 0;
  transform: translateY(10px);
  animation: fadeInUp 1s ease-out 0.5s forwards;
}

/* Elegant Divider */
.content-divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, #ffffff, transparent);
  margin: 40px 0;
  opacity: 0;
  transform: scaleX(0);
  transform-origin: left;
  animation: lineExpand 1.2s ease-out 0.7s forwards;
}

.home-about-content p {
  font-size: 16.5px;
  line-height: 1.9;
  margin-bottom: 28px;
  opacity: 0;
  transform: translateY(15px);
  animation: fadeInUp 1.2s ease-out forwards;
}

.home-about-content p:nth-of-type(1) { animation-delay: 0.9s; }
.home-about-content p:nth-of-type(2) { animation-delay: 1.1s; }

/* Buttons Container */
.home-about-buttons {
  display: flex;
  gap: 20px;
  margin-top: 40px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(15px);
  animation: fadeInUp 1s ease-out 1.3s forwards;
}

.home-about-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 40px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 1.2px;
  transition: all 0.5s ease;
  position: relative;
  overflow: hidden;
}

.primary-btn {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.4);
  color: #ffffff;
}

.primary-btn:hover {
  background: rgba(255,255,255,0.08);
  border-color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.4);
}

.secondary-btn {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.5);
  color: #ffffff;
}

.secondary-btn:hover {
  background: rgba(255,255,255,0.2);
  border-color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.4);
}

.home-about-btn::after {
  content: '→';
  font-size: 20px;
  opacity: 0.8;
  transition: transform 0.4s ease;
}

.home-about-btn:hover::after {
  transform: translateX(8px);
}

/* Right Side - Single Large Image - UPDATED */
.home-about-images {
  position: relative;
  height: 600px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.home-about-image-single {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 4px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.5);
  opacity: 0;
  transform: translateY(20px);
  animation: imageReveal 1.4s ease-out 0.6s forwards, imageFloat 8s ease-in-out 1.4s infinite;
}

.home-about-image-single img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s ease, filter 1s ease;
  filter: brightness(0.92) contrast(1.08);
}

.home-about-image-single:hover img {
  transform: scale(1.06);
  filter: brightness(1.02) contrast(1.12);
}

/* Animations */
@keyframes gridMove {
  0% { transform: translate(0, 0); }
  100% { transform: translate(40px, 40px); }
}

@keyframes lightPulse {
  0% { opacity: 0.6; }
  100% { opacity: 1; }
}

@keyframes titleReveal {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes lineExpand {
  to { transform: scaleX(1); opacity: 1; }
}

@keyframes imageFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

@keyframes imageReveal {
  to { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 1200px) {
  .home-about-container { 
    gap: 60px; 
    grid-template-columns: 1fr 1fr;
  }
  .home-about-title { font-size: 38px; }
  .home-about-images { height: 550px; }
}

@media (max-width: 992px) {
  .home-about-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 60px;
  }
  
  .home-about-content {
    max-width: 700px;
    margin: 0 auto;
  }
  
  .home-about-title::after {
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    transform-origin: center;
  }
  
  .content-divider { 
    margin: 40px auto; 
    transform-origin: center;
  }
  
  .home-about-buttons { 
    justify-content: center; 
  }
  
  .home-about-images { 
    height: 500px;
    max-width: 700px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .home-about-section { 
    padding: 80px 0; 
    min-height: auto; 
  }
  
  .home-about-container { 
    padding: 0 30px; 
  }
  
  .home-about-title { 
    font-size: 32px; 
  }
  
  .home-about-subtitle {
    font-size: 17px;
  }
  
  .home-about-buttons { 
    flex-direction: column; 
    align-items: center;
    gap: 15px;
  }
  
  .home-about-btn { 
    width: 280px; 
    padding: 15px 35px;
  }
  
  .home-about-images { 
    height: 450px; 
  }
}

@media (max-width: 576px) {
  .home-about-section { 
    padding: 60px 0; 
  }
  
  .home-about-container { 
    padding: 0 20px; 
  }
  
  .home-about-title { 
    font-size: 28px; 
  }
  
  .home-about-title::after { 
    width: 50px; 
  }
  
  .home-about-subtitle {
    font-size: 16px;
  }
  
  .home-about-content p {
    font-size: 15.5px;
  }
  
  .home-about-images { 
    height: 380px; 
  }
  
  .home-about-btn { 
    width: 100%;
    max-width: 280px;
    padding: 14px 30px; 
    font-size: 14px; 
  }
}


/* /homepage servies section */

/* ================= HOME COUNTER ================= */
/* ================= HOME COUNTER ================= */
.home-counter {
  background: #0a0a0a;
  padding: 80px 5%; /* reduced padding for small screens */
  text-align: center;
  color: #fff;
}

.home-counter-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.home-counter-item {
  flex: 1 1 220px; /* min width for small screens */
  background: #1a1a1a;
  padding: 30px 20px;
  border-radius: 15px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.home-counter-item:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 15px 40px rgba(255, 255, 255, 0.2);
}

.home-counter-item h3 {
  font-size: 50px;
  font-family: 'Bree Serif', serif;
  margin-bottom: 10px;
  color: #FFD700;
  transition: transform 0.3s ease, color 0.3s ease;
}

.home-counter-item p {
  font-size: 18px;
  font-family: 'Roboto Condensed', sans-serif;
  color: #fff;
  margin-top: 5px;
  transition: color 0.3s ease;
}

.home-counter-item:hover h3 {
  transform: scale(1.2);
  color: #fff;
}

.home-counter-item:hover p {
  color: #FFD700;
}

/* RESPONSIVE STYLES */
@media (max-width:1024px){
  .home-counter-container {
    gap: 25px;
  }
  .home-counter-item h3 {
    font-size: 45px;
  }
  .home-counter-item p {
    font-size: 16px;
  }
}

@media (max-width:768px){
  .home-counter-container {
    flex-direction: column; /* stack counters vertically */
    gap: 20px;
  }
  .home-counter-item {
    flex: 1 1 100%;
    padding: 25px 15px;
  }
  .home-counter-item h3 {
    font-size: 40px;
  }
  .home-counter-item p {
    font-size: 15px;
  }
}

@media (max-width:480px){
  .home-counter {
    padding: 60px 5%;
  }
  .home-counter-item h3 {
    font-size: 36px;
  }
  .home-counter-item p {
    font-size: 14px;
  }
}





/* ================= HOME PROCESS SECTION ================= */
/* ================= HOME PROCESS SECTION ================= */
/* ================= HOME PROCESS SECTION ================= */
.home-process {
  background: 
    radial-gradient(circle at 20% 30%, rgba(255, 215, 0, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(255, 215, 0, 0.02) 0%, transparent 50%),
    linear-gradient(135deg, #0a0a0a 0%, #121212 30%, #0a0a0a 100%);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
  font-family: 'Roboto Condensed', sans-serif;
}

/* Remove heavy animations on mobile for performance */
@media (prefers-reduced-motion: reduce) {
  .home-process * {
    animation: none !important;
    transition: none !important;
  }
}

/* Animated background particles - Desktop only */
.home-process::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 15% 20%, rgba(255, 215, 0, 0.08) 0%, transparent 2%),
    radial-gradient(circle at 85% 25%, rgba(255, 215, 0, 0.06) 0%, transparent 2%),
    radial-gradient(circle at 25% 75%, rgba(255, 215, 0, 0.05) 0%, transparent 2%),
    radial-gradient(circle at 75% 80%, rgba(255, 215, 0, 0.04) 0%, transparent 2%);
  background-size: 300px 300px;
  animation: particleFloat 20s linear infinite;
  z-index: 1;
}

/* Subtle grid overlay - Desktop only */
.home-process::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(rgba(255, 215, 0, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 215, 0, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  animation: gridMove 40s linear infinite;
  z-index: 1;
  pointer-events: none;
}

.home-process-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  z-index: 2;
}

/* ================= HEADER SECTION ================= */
.home-process-header {
  text-align: center;
  margin-bottom: 100px;
  position: relative;
}

.section-badge {
  display: inline-block;
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 3px;
  color: #FFD700;
  background: rgba(255, 215, 0, 0.1);
  padding: 8px 25px;
  border-radius: 30px;
  margin-bottom: 20px;
  text-transform: uppercase;
  animation: badgePulse 3s ease-in-out infinite;
}

.title-wrapper {
  position: relative;
  display: inline-block;
}

.home-process-title {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 52px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 15px;
  position: relative;
  letter-spacing: 1px;
  line-height: 1.2;
}

.home-process-title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, transparent, #FFD700, transparent);
  animation: lineGlow 2s ease-in-out infinite;
}

.home-process-subtitle {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 22px;
  color: #aaa;
  max-width: 600px;
  margin: 30px auto 0;
  font-weight: 300;
  letter-spacing: 0.5px;
  line-height: 1.5;
}

.highlight {
  color: #FFD700;
  font-weight: 500;
  position: relative;
  display: inline-block;
}

.highlight::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background: #FFD700;
  transform: scaleX(0);
  transform-origin: left;
  animation: highlightExpand 2s ease-out infinite;
}

/* ================= PROCESS LINE WRAPPER ================= */
.process-line-wrapper {
  position: relative;
  /* padding: 50px 0; */
}

/* Desktop connecting line */
.animated-line {
  position: absolute;
  top: 100px;
  left: 50px;
  right: 50px;
  height: 2px;
  background: linear-gradient(90deg, 
    transparent 0%, 
    #FFD700 20%, 
    #FFD700 80%, 
    transparent 100%);
  z-index: 1;
  animation: lineFlow 3s linear infinite;
  opacity: 0.3;
  display: block;
}

/* Mobile vertical connecting line */
.mobile-process-line {
  display: none;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 30px;
  width: 2px;
  background: linear-gradient(to bottom, 
    transparent 0%, 
    #FFD700 10%, 
    #FFD700 90%, 
    transparent 100%);
  z-index: 1;
  opacity: 0.3;
}

/* ================= PROCESS STEPS GRID ================= */
.home-process-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  position: relative;
  z-index: 2;
}

/* ================= INDIVIDUAL STEP STYLES ================= */
.home-process-step {
  background: rgba(20, 20, 20, 0.8);
  border-radius: 20px;
  padding: 40px 25px;
  text-align: center;
  transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  border: 1px solid rgba(255, 215, 0, 0.1);
  backdrop-filter: blur(10px);
  overflow: hidden;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Mobile connector dots */
.mobile-connector {
  display: none;
  position: absolute;
  left: -25px;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  background: #FFD700;
  border-radius: 50%;
  z-index: 2;
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.home-process-step::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.1), transparent);
  transition: left 0.7s ease;
}

.home-process-step:hover::before {
  left: 100%;
}

.home-process-step:hover {
  transform: translateY(-20px) scale(1.05);
  background: rgba(255, 215, 0, 0.05);
  border-color: rgba(255, 215, 0, 0.3);
  box-shadow: 
    0 25px 50px rgba(0, 0, 0, 0.4),
    0 0 40px rgba(255, 215, 0, 0.15),
    inset 0 0 30px rgba(255, 215, 0, 0.05);
}

.step-number {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 70px;
  font-weight: 800;
  color: rgba(255, 215, 0, 0.05);
  position: absolute;
  top: -15px;
  right: 20px;
  transition: all 0.5s ease;
  line-height: 1;
}

.home-process-step:hover .step-number {
  color: rgba(255, 215, 0, 0.15);
  transform: translateY(-10px) scale(1.1);
}

/* Icon wrapper with animation */
.step-icon-wrapper {
  position: relative;
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.step-icon-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(255, 215, 0, 0.1);
  border-radius: 50%;
  animation: iconPulse 2s ease-in-out infinite;
  animation-delay: calc(var(--step) * 0.2s);
}

.step-icon {
  font-size: 40px;
  position: relative;
  z-index: 2;
  transition: all 0.5s ease;
  filter: drop-shadow(0 5px 15px rgba(255, 215, 0, 0.3));
}

.home-process-step:hover .step-icon {
  transform: scale(1.3) rotateY(360deg);
  filter: drop-shadow(0 10px 20px rgba(255, 215, 0, 0.5));
}

.step-title {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 24px;
  font-weight: 600;
  color: #FFD700;
  margin-bottom: 15px;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  text-align: center;
}

.home-process-step:hover .step-title {
  color: #fff;
  letter-spacing: 1px;
}

.step-description {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 15px;
  color: #aaa;
  line-height: 1.7;
  transition: all 0.3s ease;
  flex-grow: 1;
  margin: 0;
  text-align: center;
}

.home-process-step:hover .step-description {
  color: #fff;
}

/* Step progress indicator */
.step-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, #FFD700, #ffed4e);
  transition: width 0.6s ease;
}

.home-process-step:hover .step-progress {
  width: 100%;
}

/* ================= ANIMATIONS ================= */
@keyframes stepEntrance {
  0% {
    opacity: 0;
    transform: translateY(50px) rotateX(-90deg);
  }
  100% {
    opacity: 1;
    transform: translateY(0) rotateX(0);
  }
}

.home-process-step {
  animation: stepEntrance 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  opacity: 0;
  transform-style: preserve-3d;
}

.home-process-step:nth-child(1) { 
  animation-delay: 0.1s; 
  --step: 1;
}
.home-process-step:nth-child(2) { 
  animation-delay: 0.2s; 
  --step: 2;
}
.home-process-step:nth-child(3) { 
  animation-delay: 0.3s; 
  --step: 3;
}
.home-process-step:nth-child(4) { 
  animation-delay: 0.4s; 
  --step: 4;
}
.home-process-step:nth-child(5) { 
  animation-delay: 0.5s; 
  --step: 5;
}

@keyframes particleFloat {
  0% {
    transform: translateY(0) translateX(0);
  }
  25% {
    transform: translateY(-30px) translateX(30px);
  }
  50% {
    transform: translateY(0) translateX(60px);
  }
  75% {
    transform: translateY(30px) translateX(30px);
  }
  100% {
    transform: translateY(0) translateX(0);
  }
}

@keyframes gridMove {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(50px, 50px);
  }
}

@keyframes badgePulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.2);
  }
  50% {
    box-shadow: 0 0 0 10px rgba(255, 215, 0, 0);
  }
}

@keyframes lineGlow {
  0%, 100% {
    opacity: 0.3;
  }
  50% {
    opacity: 1;
    box-shadow: 0 0 20px #FFD700;
  }
}

@keyframes highlightExpand {
  0%, 100% {
    transform: scaleX(0);
  }
  50% {
    transform: scaleX(1);
  }
}

@keyframes lineFlow {
  0% {
    background-position: -200px 0;
  }
  100% {
    background-position: 200px 0;
  }
}

@keyframes iconPulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.3;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.5;
  }
}

/* ================= RESPONSIVE BREAKPOINTS ================= */

/* Large Desktop: 1440px and above */
@media (min-width: 1440px) {
  .home-process-container {
    max-width: 1400px;
    padding: 0 60px;
  }
  
  .home-process-steps {
    gap: 30px;
  }
}

/* Laptop: 1024px to 1439px */
@media (max-width: 1200px) {
  .home-process-steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
  }
  
  .animated-line {
    display: none;
  }
  
  .home-process-step {
    min-height: 300px;
  }
}

/* Tablet Landscape: 768px to 1023px */
@media (max-width: 992px) {
  .home-process {
    padding: 100px 0;
  }
  
  .home-process-container {
    padding: 0 30px;
  }
/*   
  .home-process-header {
    margin-bottom: 20px;
  } */
  
  .home-process-title {
    font-size: 42px;
  }
  
  .home-process-subtitle {
    font-size: 20px;
    padding: 0 20px;
  }
  
  .home-process-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .home-process-step {
    padding: 35px 20px;
    min-height: 280px;
  }
  
  .step-icon-wrapper {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
  }
  
  .step-icon {
    font-size: 35px;
  }
  
  .step-title {
    font-size: 22px;
    margin-bottom: 12px;
  }
  
  .step-description {
    font-size: 14.5px;
  }
  
  .step-number {
    font-size: 60px;
    top: -10px;
    right: 15px;
  }
}

/* Tablet Portrait & Large Mobile: 576px to 767px */
@media (max-width: 768px) {
  .home-process {
    padding: 80px 0;
  }
  
  .home-process-container {
    padding: 0 25px;
  }
  
  .home-process-header {
    margin-bottom: 60px;
  }
  
  .home-process-title {
    font-size: 36px;
  }
  
  .home-process-title::after {
    width: 80px;
    height: 3px;
    bottom: -12px;
  }
  
  .home-process-subtitle {
    font-size: 18px;
    padding: 0;
  }
  
  .section-badge {
    font-size: 13px;
    padding: 6px 20px;
    letter-spacing: 2px;
  }
  
  .home-process-step {
    padding: 30px 20px;
    min-height: 260px;
  }
  
  .step-icon-wrapper {
    width: 65px;
    height: 65px;
  }
  
  .step-icon {
    font-size: 32px;
  }
  
  .step-title {
    font-size: 20px;
  }
  
  .step-description {
    font-size: 14px;
    line-height: 1.6;
  }
  
  /* Reduce animations on mobile for performance */
  .home-process::before,
  .home-process::after {
    animation: none;
    opacity: 0.5;
  }
}

/* Mobile: 375px to 575px */
@media (max-width: 576px) {
  .home-process {
    padding: 60px 0;
  }
  
  .home-process-container {
    padding: 0 20px;
  }
  
  .home-process-header {
    margin-bottom: 50px;
  }
  
  .home-process-title {
    font-size: 32px;
  }
  
  .home-process-subtitle {
    font-size: 16px;
    margin-top: 20px;
  }
  
  .section-badge {
    font-size: 12px;
    padding: 5px 18px;
    letter-spacing: 1.5px;
    margin-bottom: 15px;
  }
  
  .home-process-steps {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
    gap: 15px;
  }
  
  /* Mobile vertical layout with connecting line */
  .process-line-wrapper {
    padding: 20px 0 0 0;
  }
  
  .mobile-process-line {
    display: block;
    left: 45px;
  }
  
  .home-process-step {
    text-align: left;
    padding: 25px 25px 25px 70px;
    min-height: auto;
    align-items: flex-start;
    border-radius: 15px;
    margin-left: 30px;
    position: relative;
  }
  
  .mobile-connector {
    display: block;
    left: -31px;
    top: 50%;
  }
  
  .step-icon-wrapper {
    position: absolute;
    left: -55px;
    top: 50%;
    transform: translateY(-50%);
    margin: 0;
    width: 50px;
    height: 50px;
  }
  
  .step-icon {
    font-size: 24px;
  }
  
  .step-number {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 40px;
    color: rgba(255, 215, 0, 0.1);
  }
  
  .step-title {
    font-size: 18px;
    text-align: left;
    margin-bottom: 8px;
  }
  
  .step-description {
    font-size: 13.5px;
    text-align: left;
    line-height: 1.5;
  }
  
  /* Reduce hover effects on mobile */
  .home-process-step:hover {
    transform: translateY(-5px) scale(1.02);
  }
  
  .home-process-step:hover .step-icon {
    transform: scale(1.2);
  }
  
  /* Remove background animations on mobile for better performance */
  .home-process::before,
  .home-process::after {
    display: none;
  }
}

/* Small Mobile: Below 375px */
@media (max-width: 374px) {
  .home-process {
    padding: 50px 0;
  }
  
  .home-process-container {
    padding: 0 15px;
  }
  
  .home-process-title {
    font-size: 28px;
  }
  
  .home-process-subtitle {
    font-size: 15px;
  }
  
  .section-badge {
    font-size: 11px;
    padding: 4px 15px;
    letter-spacing: 1px;
  }
  
  .home-process-step {
    padding: 20px 20px 20px 60px;
    margin-left: 25px;
  }
  
  .mobile-process-line {
    left: 40px;
  }
  
  .step-icon-wrapper {
    left: -50px;
    width: 45px;
    height: 45px;
  }
  
  .step-icon {
    font-size: 22px;
  }
  
  .mobile-connector {
    left: -28px;
    width: 10px;
    height: 10px;
  }
  
  .step-number {
    font-size: 35px;
    top: 8px;
    right: 10px;
  }
  
  .step-title {
    font-size: 17px;
  }
  
  .step-description {
    font-size: 13px;
  }
}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {
  .home-process-step:hover {
    transform: none !important;
    box-shadow: none !important;
  }
  
  .home-process-step:hover .step-icon {
    transform: none !important;
  }
  
  .home-process-step:hover .step-title,
  .home-process-step:hover .step-description {
    color: inherit !important;
  }
  
  /* Add tap feedback for touch devices */
  .home-process-step:active {
    background: rgba(255, 215, 0, 0.05) !important;
    transform: scale(0.98) !important;
  }
}

/* High DPI (Retina) displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .home-process {
    background-size: 200% 200%;
  }
  
  .step-icon {
    font-size: 2em;
  }
}

/* Print styles */
@media print {
  .home-process {
    background: white !important;
    color: black !important;
    padding: 50px 0 !important;
  }
  
  .home-process-step {
    border: 1px solid #ccc !important;
    background: white !important;
    color: black !important;
    break-inside: avoid;
  }
  
  .step-title {
    color: black !important;
  }
  
  .step-description {
    color: #333 !important;
  }
  
  .home-process-step:hover {
    transform: none !important;
    box-shadow: none !important;
  }
}

/* Mobile active state */
@media (max-width: 576px) {
  .home-process-step.active {
    background: rgba(255, 215, 0, 0.08) !important;
    border-color: rgba(255, 215, 0, 0.4) !important;
    transform: translateY(-5px) !important;
  }
  
  .home-process-step.active .step-icon {
    transform: scale(1.2) !important;
  }
  
  .home-process-step.active .step-title {
    color: #FFD700 !important;
  }
}

/* Performance optimizations for mobile */
@media (max-width: 768px) {
  .home-process-step {
    will-change: transform;
    backface-visibility: hidden;
    -webkit-font-smoothing: antialiased;
  }
  
  /* Reduce blur effects on low-end devices */
  @supports not (backdrop-filter: blur(10px)) {
    .home-process-step {
      background: rgba(20, 20, 20, 0.95);
    }
  }
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
  .home-process {
    background: 
      radial-gradient(circle at 20% 30%, rgba(255, 215, 0, 0.04) 0%, transparent 50%),
      radial-gradient(circle at 80% 70%, rgba(255, 215, 0, 0.03) 0%, transparent 50%),
      linear-gradient(135deg, #000 0%, #0a0a0a 30%, #000 100%);
  }
}




/* ================= WHY CHOOSE US ================= */

.home-why-section {
  background: #0a0a0a;
  padding: 120px 0;
  position: relative;
}

.home-why-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 40px;
}

.home-why-header {
  text-align: center;
  margin-bottom: 80px;
}

.why-badge {
  display: inline-block;
  font-size: 13px;
  letter-spacing: 3px;
  color: #FFD700;
  background: rgba(255,215,0,0.12);
  padding: 8px 24px;
  border-radius: 30px;
  margin-bottom: 20px;
}

.home-why-title {
  font-size: 44px;
  color: #ffffff;
  margin-bottom: 15px;
}

.home-why-subtitle {
  font-size: 18px;
  color: #aaaaaa;
  max-width: 600px;
  margin: 0 auto;
}

/* Grid */
.home-why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* Card */
.home-why-card {
  background: #151515;
  padding: 40px 30px;
  border-radius: 16px;
  text-align: center;
  transition: all 0.4s ease;
  border: 1px solid rgba(255,215,0,0.08);
}

.home-why-card:hover {
  transform: translateY(-12px);
  background: rgba(255,215,0,0.05);
  border-color: rgba(255,215,0,0.3);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.why-icon {
  font-size: 42px;
  margin-bottom: 20px;
}

.home-why-card h3 {
  font-size: 22px;
  color: #FFD700;
  margin-bottom: 12px;
}

.home-why-card p {
  font-size: 15.5px;
  color: #cccccc;
  line-height: 1.7;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {
  .home-why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .home-why-title {
    font-size: 38px;
  }
}

@media (max-width: 768px) {
  .home-why-section {
    padding: 90px 0;
  }

  .home-why-container {
    padding: 0 30px;
  }

  .home-why-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .home-why-title {
    font-size: 32px;
  }

  .home-why-subtitle {
    font-size: 16px;
  }
}

/* why choose us section */
/* ================= FAQ SECTION ================= */
.home-faq-section {
  background: #0a0a0a;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.home-faq-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 10% 20%, rgba(255, 215, 0, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 90% 80%, rgba(255, 215, 0, 0.02) 0%, transparent 50%);
  z-index: 1;
  pointer-events: none;
}

.home-faq-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  z-index: 2;
}

/* Header */
.home-faq-header {
  text-align: center;
  margin-bottom: 70px;
}

.faq-badge {
  display: inline-block;
  font-size: 13px;
  letter-spacing: 3px;
  color: #FFD700;
  background: rgba(255, 215, 0, 0.12);
  padding: 8px 24px;
  border-radius: 30px;
  margin-bottom: 20px;
  text-transform: uppercase;
  font-weight: 600;
}

.home-faq-title {
  font-size: 44px;
  color: #ffffff;
  margin-bottom: 15px;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.home-faq-subtitle {
  font-size: 18px;
  color: #aaaaaa;
  max-width: 600px;
  margin: 0 auto;
  font-weight: 300;
  line-height: 1.6;
}

/* FAQ Grid */
.home-faq-grid {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 50px;
}

/* FAQ Item */
.home-faq-item {
  background: rgba(20, 20, 20, 0.8);
  border-radius: 12px;
  border: 1px solid rgba(255, 215, 0, 0.1);
  overflow: hidden;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.home-faq-item:hover {
  border-color: rgba(255, 215, 0, 0.3);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* FAQ Question */
.faq-question {
  padding: 25px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: background 0.3s ease;
}

.faq-question:hover {
  background: rgba(255, 215, 0, 0.05);
}

.faq-question h3 {
  font-size: 18px;
  color: #ffffff;
  font-weight: 500;
  margin: 0;
  flex: 1;
  letter-spacing: 0.3px;
}

.faq-toggle {
  font-size: 24px;
  color: #FFD700;
  font-weight: 300;
  transition: all 0.3s ease;
  margin-left: 20px;
  min-width: 24px;
  text-align: center;
}

/* FAQ Answer */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease, padding 0.3s ease;
  background: rgba(30, 30, 30, 0.5);
  
}



.faq-answer p {
  padding: 0 30px;
  
  margin: 0;

  color: #cccccc;
  line-height: 1.7;
  font-size: 16px;
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.3s ease 0.2s, transform 0.3s ease 0.2s;
}

/* Active FAQ Item */
.home-faq-item.active {
  border-color: rgba(255, 215, 0, 0.4);
  background: rgba(255, 215, 0, 0.05);
}

.home-faq-item.active .faq-question {
  background: rgba(255, 215, 0, 0.08);
}

.home-faq-item.active .faq-toggle {
  transform: rotate(45deg);
  color: #ffffff;
}

.home-faq-item.active .faq-answer {
  max-height: 300px;
  /*padding: 20px 0;*/
  padding-bottom: 30px;
}
.home-faq-item.active .faq-answer{
    padding-bottom: 30px;
}

.home-faq-item.active .faq-answer p {
  opacity: 1;
  transform: translateY(0);
}

/* CTA */
.faq-cta {
  text-align: center;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-cta p {
  font-size: 18px;
  color: #cccccc;
  margin-bottom: 0;
}

.faq-cta a {
  color: #FFD700;
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px solid rgba(255, 215, 0, 0.3);
  transition: all 0.3s ease;
}

.faq-cta a:hover {
  color: #ffffff;
  border-bottom-color: #FFD700;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {
  .home-faq-section {
    padding: 100px 0;
  }
  
  .home-faq-title {
    font-size: 38px;
  }
  
  .faq-question h3 {
    font-size: 17px;
  }
}

@media (max-width: 768px) {
  .home-faq-section {
    padding: 80px 0;
  }
  
  .home-faq-container {
    padding: 0 30px;
  }
  
  .home-faq-header {
    margin-bottom: 50px;
  }
  
  .home-faq-title {
    font-size: 32px;
  }
  
  .home-faq-subtitle {
    font-size: 16px;
  }
  
  .faq-question {
    padding: 20px 25px;
  }
  
  .faq-question h3 {
    font-size: 16px;
  }
  
  .faq-toggle {
    font-size: 22px;
  }
  
  .faq-answer p {
    padding: 0 25px;
    font-size: 15px;
  }
}

@media (max-width: 576px) {
  .home-faq-section {
    padding: 60px 0;
  }
  
  .home-faq-container {
    padding: 0 20px;
  }
  
  .home-faq-title {
    font-size: 28px;
  }
  
  .faq-badge {
    font-size: 12px;
    padding: 6px 20px;
    letter-spacing: 2px;
  }
  
  .home-faq-subtitle {
    font-size: 15px;
  }
  
  .faq-question {
    padding: 18px 20px;
  }
  
  .faq-question h3 {
    font-size: 15px;
  }
  
  .faq-answer p {
    padding: 0 20px;
    font-size: 14px;
  }
  
  .faq-cta p {
    font-size: 16px;
  }
}


/* TESTIMONIALS SECTION */
.home-testimonials-section {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}

.testimonials-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
}

.testimonials-background .bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.3);
}

.testimonial-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0,0,0,0.9) 0%, rgba(26,26,26,0.85) 100%);
  z-index: -1;
}

.home-testimonials-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

.home-testimonials-header {
  text-align: center;
  margin-bottom: 60px;
}

.testimonials-badge {
  display: inline-block;
  background: #FFD700;
  color: #0d0d0d;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.home-testimonials-title {
  font-family: 'Bree Serif', serif;
  font-size: 42px;
  color: #FFD700;
  margin-bottom: 15px;
}

.home-testimonials-subtitle {
  color: #bbb;
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto;
}

/* Testimonials Slider */
.testimonials-slider {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  overflow: hidden;
}

.slider-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.testimonial-slide {
  min-width: 100%;
  padding: 20px;
  box-sizing: border-box;
}

.testimonial-content {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 215, 0, 0.1);
  border-radius: 20px;
  padding: 40px;
  position: relative;
  transition: all 0.3s ease;
}

.testimonial-content:hover {
  border-color: rgba(255, 215, 0, 0.3);
  transform: translateY(-5px);
}

.quote-icon {
  font-size: 60px;
  color: #FFD700;
  opacity: 0.3;
  position: absolute;
  top: 10px;
  left: 20px;
}

.testimonial-text {
  color: #fff;
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 30px;
  font-style: italic;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 215, 0, 0.2);
}

.author-details {
  display: flex;
  flex-direction: column;
}

.author-details strong {
  color: #FFD700;
  font-size: 18px;
  margin-bottom: 5px;
}

.author-details span {
  color: #bbb;
  font-size: 14px;
}

.rating {
  color: #FFD700;
  font-size: 20px;
}

/* Slider Navigation */
.slider-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 40px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background: #FFD700;
  transform: scale(1.2);
}

.dot:hover {
  background: rgba(255, 215, 0, 0.5);
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 215, 0, 0.2);
  color: #FFD700;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slider-arrow:hover {
  background: #FFD700;
  color: #0d0d0d;
}

.prev-arrow {
  left: 10px;
}

.next-arrow {
  right: 10px;
}

/* Responsive Design */
@media (max-width: 992px) {
  .testimonial-content {
    padding: 30px;
  }
  
  .home-testimonials-title {
    font-size: 36px;
  }
}

@media (max-width: 768px) {
  .home-testimonials-section {
    padding: 80px 0;
  }
  
  .testimonial-content {
    padding: 25px;
  }
  
  .testimonial-text {
    font-size: 16px;
  }
  
  .slider-arrow {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }
  
  .prev-arrow {
    left: 5px;
  }
  
  .next-arrow {
    right: 5px;
  }
  
  .home-testimonials-title {
    font-size: 32px;
  }
}

@media (max-width: 576px) {
  .testimonial-content {
    padding: 20px;
  }
  
  .quote-icon {
    font-size: 40px;
  }
  
  .home-testimonials-title {
    font-size: 28px;
  }
}