/* @import url('https://fonts.googleapis.com/css2?family=Cairo:wght@400;600;700;800;900&display=swap'); */
@font-face {
  font-family: 'Cairo';
  src: url('../fonts/Cairo-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Cairo';
  src: url('../fonts/Cairo-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Cairo';
  src: url('../fonts/Cairo-ExtraBold.woff2') format('woff2');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

:root {
  --color-main: #006766;
  --color-second: #EFD69D;
  --color-accent: #F59E0B;
  --color-text: #1F2937;
  --color-text-light: #4B5563;
  --color-bg: #F8F8F8;
  --color-white: #FFFFFF;
  
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-hover: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  
  --container-width: 1200px;
  --header-height: 80px;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-family: 'Cairo', sans-serif;
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
}

body {
  direction: rtl;
  text-align: right;
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  color: var(--color-main);
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 1rem;
}

h1 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 900; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.5rem); font-weight: 800; }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
p { margin-bottom: 1rem; color: var(--color-text-light); }

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

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Layout */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 5rem 0;
}


/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 2rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  text-align: center;
  cursor: pointer;
  transition: all var(--transition-normal);
  border: none;
  gap: 0.5rem;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.2);
  transition: all var(--transition-normal);
  z-index: -1;
}

.btn:hover::before {
  width: 100%;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-primary {
  background-color: var(--color-main);
  color: var(--color-white);
}

.btn-accent {
  background-color: var(--color-accent);
  color: var(--color-white);
  box-shadow: 0 4px 14px 0 rgba(245, 158, 11, 0.39);
}

.btn-outline {
  background-color: transparent;
  color: var(--color-main);
  border: 2px solid var(--color-main);
}
.btn-outline:hover {
  background-color: var(--color-main);
  color: var(--color-white);
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  background-color: var(--color-white);
  box-shadow: var(--shadow-sm);
  z-index: 1000;
  transition: all var(--transition-normal);
  display: flex;
  align-items: center;
}

.header.scrolled {
  height: 70px;
  box-shadow: var(--shadow-md);
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.logo a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--color-main);
}

.logo img {
  height: 40px;
  width: auto;
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links a {
  font-weight: 600;
  color: var(--color-text);
  position: relative;
  padding: 0.5rem 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-accent);
  transition: width var(--transition-normal);
}

.nav-links a.active, .nav-links a:hover {
  color: var(--color-main);
}

.nav-links a:hover::after, .nav-links a.active::after {
  width: 100%;
  right: auto;
  left: 0;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Mobile Menu Button */
.menu-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1001;
}

.menu-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: var(--color-main);
  margin-bottom: 5px;
  transition: all var(--transition-fast);
  border-radius: 3px;
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}
.menu-toggle.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Mobile Drawer */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 400px;
  height: 100vh;
  background-color: var(--color-white);
  box-shadow: -5px 0 15px rgba(0,0,0,0.1);
  z-index: 999;
  transition: right var(--transition-normal);
  padding: 6rem 2rem 2rem;
  display: flex;
  flex-direction: column;
}

.mobile-drawer.open {
  right: 0;
}

.mobile-drawer .nav-links {
  flex-direction: column;
  gap: 1.5rem;
}

.mobile-drawer .nav-links a {
  font-size: 1.25rem;
  display: block;
}

.drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.5);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
  backdrop-filter: blur(3px);
}

.drawer-overlay.open {
  opacity: 1;
  visibility: visible;
}

@media (max-width: 992px) {
  .header .nav-links { display: none; }
  .header .nav-actions .btn { display: none; }
  .menu-toggle { display: block; }
}

/* Animations */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.fade-in {
  opacity: 0;
  transition: opacity 1s ease;
}

.fade-in.active {
  opacity: 1;
}

.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
.stagger-5 { transition-delay: 0.5s; }
.stagger-6 { transition-delay: 0.6s; }

/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  color: white;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-normal);
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 2px 2px 20px rgba(37, 211, 102, 0.4);
}

.whatsapp-float svg {
  width: 35px;
  height: 35px;
  fill: currentColor;
}

.pulse {
  animation: pulse-animation 2s infinite;
}

@keyframes pulse-animation {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
  70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ------------------------------ Hero ------------------------------------ */

/* ===== Hero V3 Full ===== */
.hero-v3-section {
  padding: calc(var(--header-height) + 3rem) 0 5rem;
  background:
    radial-gradient(circle at top right, rgba(0, 103, 102, 0.10), transparent 32%),
    radial-gradient(circle at bottom left, rgba(239, 214, 157, 0.28), transparent 28%),
    linear-gradient(135deg, #fcfcfc 0%, #f6f8f8 100%);
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) {
  .hero-v3-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
  }
}

.hero-v3-container {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3rem;
  align-items: center;
}

.hero-v3-content {
  text-align: right;
}

.hero-v3-title {
  font-size: clamp(2.2rem, 4.3vw, 3.8rem);
  line-height: 1.22;
  margin-bottom: 1rem;
  color: var(--color-main);
}

.hero-v3-text {
  font-size: 1.5rem;
  line-height: 2;
  color: var(--color-text-light);
  max-width: 650px;
  margin-bottom: 1.8rem;
  /* font-weight: bold; */
}

.rokn {
  color: var(--color-main);
  font-weight: bold;
}

.hero-v3-btn {
  min-width: 220px;
  box-shadow: 0 12px 30px rgba(0, 103, 102, 0.24);
  animation: heroV3BtnFloat 2.8s ease-in-out infinite;
}

.hero-v3-btn:hover {
  animation-play-state: paused;
}

@keyframes heroV3BtnFloat {
  0%, 100% {
    transform: translateY(0);
    box-shadow: 0 12px 30px rgba(0, 103, 102, 0.24);
  }
  50% {
    transform: translateY(-6px);
    box-shadow: 0 18px 38px rgba(0, 103, 102, 0.30);
  }
}

.hero-v3-visual {
  position: relative;
}

.hero-v3-media {
  position: relative;
  min-height: 620px;
  width: 100%;
}

.hero-v3-image-wrap {
  position: absolute;
  inset: 90px 40px 70px 40px;
  border-radius: 34px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background-color: var(--color-white);
  z-index: 2;
}

.hero-v3-image-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 34px;
  padding: 2px;
  background: linear-gradient(135deg, rgba(0,103,102,0.35), rgba(245,158,11,0.35));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: 2;
}

.hero-v3-image-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.12), transparent 45%);
  pointer-events: none;
  z-index: 1;
}

.hero-v3-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Floating Questions */
.hero-v3-question {
  position: absolute;
  max-width: 240px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: var(--color-text);
  border: 1px solid rgba(255,255,255,0.65);
  border-right: 4px solid var(--color-accent);
  border-radius: 18px;
  padding: 1rem 1.1rem;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.8;
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.10);
  z-index: 3;
  opacity: 0;
  transform: translateY(20px) scale(0.96);
  animation:
    heroV3QuestionReveal 0.8s ease forwards,
    heroV3QuestionFloat 4.8s ease-in-out infinite;
}

.hero-v3-question-1 {
  top: 50px;
  right: 10px;
  animation-delay: 0.15s, 1s;
}

.hero-v3-question-2 {
  top: 45%;
  left: -10px;
  animation-delay: 0.45s, 1.3s;
}

.hero-v3-question-3 {
  bottom: 25px;
  right: 70px;
  animation-delay: 0.75s, 1.6s;
}

@keyframes heroV3QuestionReveal {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes heroV3QuestionFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* Decorative Orbs */
.hero-v3-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.45;
  z-index: 0;
}

.hero-v3-orb-1 {
  width: 180px;
  height: 180px;
  top: 50px;
  left: 10px;
  background: rgba(239, 214, 157, 0.65);
}

.hero-v3-orb-2 {
  width: 220px;
  height: 220px;
  bottom: 35px;
  right: 5px;
  background: rgba(0, 103, 102, 0.18);
}

/* Stats */
.hero-v3-stats {
  grid-column: 1 / -1;
  margin-top: 0.5rem;
}

.hero-v3-stats .stat-box {
  background-color: rgba(255,255,255,0.94);
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.hero-v3-stats .stat-box:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

/* Responsive */
@media (max-width: 1200px) {
  .hero-v3-question {
    max-width: 210px;
    font-size: 0.95rem;
  }

  .hero-v3-image-wrap {
    inset: 100px 25px 80px 25px;
  }
}

@media (max-width: 992px) {
  .hero-v3-section {
    padding: calc(var(--header-height) + 2rem) 0 4rem;
  }

  .hero-v3-container {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    align-items: stretch;
  }

  .hero-v3-content {
    order: 1;
    width: 100%;
    text-align: right;
  }

  .hero-v3-visual {
    order: 2;
    width: 100%;
    
  }

  .hero-v3-stats {
    order: 3;
    width: 100%;
    margin-top: 0.25rem;
  }

  .hero-v3-media {
    min-height: 560px;
  }

  .hero-v3-image-wrap {
    inset: 110px 20px 90px 20px;
  }

  .hero-v3-question-1 {
    top: 15px;
    right: 15px;
  }

  .hero-v3-question-2 {
    top: auto;
    bottom: 135px;
    left: 10px;
  }

  .hero-v3-question-3 {
    bottom: 20px;
    right: 20px;
  }

  .hero-v3-btn {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .hero-v3-media {
    min-height: 500px;
  }

  .hero-v3-image-wrap {
    inset: 120px 12px 90px 12px;
    border-radius: 24px;
  }

  .hero-v3-question {
    max-width: 180px;
    font-size: 0.88rem;
    padding: 0.85rem 0.95rem;
    border-radius: 14px;
  }

  .hero-v3-stats {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

@media (max-width: 576px) {
  .hero-v3-title {
    font-size: 2rem;
  }
  .hero-v3-visual{
    margin-top: -30px;
  }

  .hero-v3-text {
    font-size: 1rem;
    line-height: 1.9;
  }

  .hero-v3-media {
    min-height: 430px;
  }

  .hero-v3-image-wrap {
    inset: 95px 0 80px 0;
  }

  .hero-v3-question {
    max-width: 150px;
    font-size: 0.8rem;
    line-height: 1.6;
    padding: 0.75rem 0.85rem;
  }

  

  .hero-v3-question-1 {
    top: 50px;
    right: 8px;
  }

  .hero-v3-question-2 {
    left: 0;
    bottom: 120px;
  }

  .hero-v3-question-3 {
    right: 10px;
    bottom: 50px;
  }
}



/* ------------------------------ Hero ------------------------------------ */


/* --- Why Us Section --- */
.why-us-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.features-list {
  margin-top: 2rem;
}

.features-list li {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.feature-icon {
  width: 50px;
  height: 50px;
  background-color: rgba(245, 158, 11, 0.1);
  color: var(--color-accent);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--transition-normal);
}

.features-list li:hover .feature-icon {
  background-color: var(--color-accent);
  color: var(--color-white);
  transform: translateY(-5px);
}

.feature-icon svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.service-content h3 {
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
  color: var(--color-text);
}

/* --- Services Detail Layout (Alternating Cards) --- */
.service-detail-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 5rem;
  background-color: var(--color-white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.service-detail-card:nth-child(even) {
  direction: ltr; /* Flip layout occasionally */
}
.service-detail-card:nth-child(even) .service-detail-content {
  direction: rtl; /* Text stays RTL */
}
.service-detail-img img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}
.service-detail-content {
  padding: 3rem;
}
.service-features {
  margin: 1.5rem 0;
}
.service-features li {
  position: relative;
  padding-right: 1.5rem;
  margin-bottom: 0.5rem;
}
.service-features li::before {
  content: '✓';
  position: absolute;
  right: 0;
  color: var(--color-accent);
  font-weight: bold;
}

@media (max-width: 992px) {
  .service-detail-card {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .service-detail-card:nth-child(even) {
    direction: rtl; 
  }
  .service-detail-img img {
    height: 250px;
  }
  .service-detail-content {
    padding: 2rem;
  }
}

.features-list h4 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: var(--color-text);
}

.why-us-image {
  position: relative;
  text-align: center;
  max-width: 500px;
  margin: 0 auto;
}

.why-us-image img {
  border-radius: 20px;
  position: relative;
  z-index: 2;
  box-shadow: var(--shadow-lg);
}

.circle-blob {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 120%;
  background-color: var(--color-second);
  border-radius: 50%;
  z-index: 1;
  opacity: 0.3;
  filter: blur(40px);
}

/* --- How We Work Section --- */
.bg-light {
  background-color: var(--color-white);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  counter-reset: step-counter;
}

.step-card {
  text-align: center;
  padding: 2rem;
  position: relative;
  background-color: var(--color-bg);
  border-radius: 20px;
  transition: all var(--transition-normal);
}

.step-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-md);
  background-color: var(--color-white);
}

.step-number {
  width: 70px;
  height: 70px;
  background-color: var(--color-main);
  color: var(--color-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: 800;
  margin: 0 auto 1.5rem;
  position: relative;
  box-shadow: 0 10px 20px rgba(0, 103, 102, 0.2);
}

.step-card h3 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

/* ---------------------------------------------Before and after --------------------------------------- */

html,
body {
  overflow-x: hidden;
}

.rk-showcase {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(0, 103, 102, 0.10), transparent 28%),
    radial-gradient(circle at bottom left, rgba(239, 214, 157, 0.20), transparent 28%),
    linear-gradient(180deg, #fbfdfd 0%, #f5f8f8 100%);
}

.rk-showcase-head {
  margin-bottom: 2rem;
}

.rk-showcase-viewport {
  width: 100%;
  overflow: hidden;
  position: relative;
  direction: ltr;
}

.rk-showcase-track {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 2rem;
  width: max-content;
  padding: 0 4vw;
  will-change: transform;
  direction: ltr;
}

.rk-showcase-card {
  flex: 0 0 auto;
  width: min(78vw, 450px);
  height: 450px;
  border-radius: 28px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(0, 103, 102, 0.08);
  box-shadow: 0 20px 45px rgba(0, 103, 102, 0.12);
  transform: scale(0.94);
  opacity: 0.85;
  transition:
    transform 0.35s ease,
    opacity 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.rk-showcase-card.is-active {
  transform: scale(1);
  opacity: 1;
  box-shadow: 0 28px 60px rgba(0, 103, 102, 0.18);
  border-color: rgba(245, 158, 11, 0.24);
}

.rk-showcase-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: center;
  background: #fff;
  filter: none !important;
  opacity: 1 !important;
}

.rk-showcase-progress {
  width: min(620px, calc(100% - 2rem));
  height: 10px;
  margin: 1.5rem auto 0;
  background: rgba(0, 103, 102, 0.10);
  border-radius: 999px;
  overflow: hidden;
}

.rk-showcase-progress-fill {
  display: block;
  width: 0%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--color-main), var(--color-accent));
  transition: width 0.08s linear;
}

/* Mobile + Tablet Portrait + Touch devices */
@media (max-width: 992px), (orientation: portrait) {
  .rk-showcase-viewport {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    touch-action: pan-x;
  }

  .rk-showcase-viewport::-webkit-scrollbar {
    display: none;
  }

  .rk-showcase-track {
    padding: 0;
    gap: 0;
    will-change: auto;
  }

  .rk-showcase-card {
    width: 100vw;
    height: auto;
    min-height: 0;
    border-radius: 0;
    box-shadow: none;
    border: none;
    background: transparent;
    transform: none !important;
    opacity: 1;
    scroll-snap-align: start;
  }

  .rk-showcase-card.is-active {
    box-shadow: none;
    border-color: transparent;
  }

  .rk-showcase-image {
    width: 100%;
    height: auto;
    aspect-ratio: auto;
    object-fit: contain;
    background: transparent;
  }

  .rk-showcase-progress {
    width: calc(100% - 1rem);
    margin-top: 1rem;
  }
}

/* Small mobile fine tuning */
@media (max-width: 576px) {
  .rk-showcase-progress {
    width: calc(100% - 1rem);
  }
}



/* ---------------------------------------------Before and after --------------------------------------- */

/* Connect lines for steps (desktop only) */
@media (min-width: 992px) {
  .step-card:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 35px;
    left: -50%;
    width: 100%;
    height: 2px;
    background: dashed 2px var(--color-second);
    z-index: 0;
  }
}

/* --- Custom Gallery Grid replacing the slider --- */
.ba-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}
.ba-gallery-item {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-normal);
  background-color: var(--color-white);
}
.ba-gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}
.ba-gallery-item img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform var(--transition-slow);
}
.ba-gallery-item:hover img {
  transform: scale(1.05);
}

.hero-image img {
  width: 100%;
  max-width: 480px;
  animation: float 6s ease-in-out infinite;
}

@media (max-width: 992px) {
  .why-us-grid {
    grid-template-columns: 1fr;
  }
  .why-us-image {
    order: -1;
  }
}

/* --- Areas Served Section --- */
.areas-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.area-chip {
  padding: 0.75rem 1.5rem;
  background-color: var(--color-white);
  border: 1px solid rgba(0,0,0,0.05);
  border-radius: 50px;
  font-weight: 600;
  color: var(--color-text);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
  cursor: default;
}

.area-chip:hover {
  transform: translateY(-3px);
  background-color: var(--color-main);
  color: var(--color-white);
  box-shadow: var(--shadow-md);
  border-color: var(--color-main);
}

/* --- Testimonials Section --- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.testimonial-card {
  background-color: var(--color-white);
  padding: 2.5rem 2rem;
  border-radius: 20px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
  border: 1px solid rgba(0,0,0,0.03);
  position: relative;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 6rem;
  font-family: serif;
  color: rgba(245, 158, 11, 0.1);
  line-height: 1;
}

.stars {
  color: var(--color-accent);
  margin-bottom: 1rem;
  font-size: 1.2rem;
  letter-spacing: 2px;
}

.review-text {
  font-size: 1.1rem;
  font-style: italic;
  margin-bottom: 2rem;
  color: var(--color-text);
  position: relative;
  z-index: 1;
}

.client-name {
  font-size: 1.1rem;
  color: var(--color-main);
}

/* --- FAQ Section --- */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background-color: var(--color-white);
  border-radius: 10px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: all var(--transition-normal);
}

.faq-item.active {
  box-shadow: var(--shadow-md);
}

.faq-question {
  width: 100%;
  text-align: right;
  padding: 1.5rem;
  background: none;
  border: none;
  font-family: inherit;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all var(--transition-normal);
}

.faq-question:hover, .faq-item.active .faq-question {
  color: var(--color-main);
}

.faq-icon {
  font-size: 1.5rem;
  font-weight: 400;
  transition: transform var(--transition-normal);
  color: var(--color-accent);
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  background-color: var(--color-white);
}

.faq-answer p {
  padding: 0 1.5rem 1.5rem;
  margin: 0;
  color: var(--color-text-light);
}

/* --- CTA Section --- */
.cta-section {
  padding: 6rem 0;
}

.cta-box {
  background: linear-gradient(135deg, var(--color-main), #009998);
  border-radius: 30px;
  padding: 4rem 2rem;
  color: var(--color-white);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.cta-box::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 300px;
  height: 300px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.cta-box::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -5%;
  width: 200px;
  height: 200px;
  background-color: rgba(245, 158, 11, 0.2);
  border-radius: 50%;
}

.cta-box h2 {
  color: var(--color-white);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: 1rem;
  position: relative;
  z-index: 2;
}

.cta-box p {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
  margin: 0 auto 2rem;
  position: relative;
  z-index: 2;
}

.cta-box .btn-outline:hover {
  background-color: var(--color-white);
  color: var(--color-main) !important;
}

/* --- Footer --- */
.footer {
  background-color: var(--color-text);
  color: var(--color-white);
  padding: 5rem 0 2rem;
  position: relative;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--color-white);
  margin-bottom: 1rem;
}

.footer-logo img {
  height: 40px;
  filter: brightness(0) invert(1);
}

.footer-desc {
  color: #9CA3AF;
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.footer-col h3 {
  color: var(--color-white);
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-col h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 40px;
  height: 3px;
  background-color: var(--color-accent);
  border-radius: 2px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer-links a {
  color: #9CA3AF;
  transition: all var(--transition-fast);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-links a::before {
  content: '←';
  color: var(--color-accent);
  font-size: 0.8rem;
  transition: transform var(--transition-fast);
}

.footer-links a:hover {
  color: var(--color-white);
  padding-right: 5px;
}

.footer-contact li {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  color: #9CA3AF;
  align-items: flex-start;
}

.footer-contact i {
  color: var(--color-accent);
  margin-top: 5px;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  color: #9CA3AF;
  font-size: 0.9rem;
}

.footer-bottom p {
  color: var(--color-second);
}

.footer-bottom a {
  color: var(--color-accent);
  /* text-decoration: underline; */
}

/* --- Consolidated Page Styles --- */
.page-header {
  padding: 8rem 0 4rem;
  background: linear-gradient(135deg, rgba(0, 103, 102, 0.05), rgba(0, 103, 102, 0.1));
  text-align: center;
}

/* --- Utility Classes for Inline Styles --- */
.mt-2rem { margin-top: 2rem !important; }
.mt-3rem { margin-top: 3rem !important; }
.mt-4rem { margin-top: 4rem !important; }
.pt-0 { padding-top: 0 !important; }
.p-1-5rem { padding: 1.5rem !important; }

.w-100p { width: 100% !important; }
.max-w-300 { max-width: 300px !important; }
.max-w-400 { max-width: 400px !important; }
.max-w-800 { max-width: 800px !important; }
.mx-auto { margin-left: auto !important; margin-right: auto !important; }

.d-flex { display: flex !important; }
.flex-column { flex-direction: column !important; }
.align-center { align-items: center !important; }
.justify-center { justify-content: center !important; }
.gap-1rem { gap: 1rem !important; }
.gap-2rem { gap: 2rem !important; }

.text-center { text-align: center !important; }
.fs-1-2rem { font-size: 1.2rem !important; }
.fs-1-3rem { font-size: 1.3rem !important; }
.fs-1-5rem { font-size: 1.5rem !important; }
.lh-1-6 { line-height: 1.6 !important; }
.fw-bold { font-weight: bold !important; }

.border-top-none { border-top: none !important; }
.col-main { color: var(--color-main) !important; }
.box-shadow-none { box-shadow: none !important; }
.order-0 { order: 0 !important; }
.grid-cols-1 { grid-template-columns: 1fr !important; }

.btn-outline-white {
  border-color: var(--color-white) !important;
  color: var(--color-white) !important;
}
.btn-outline-white-50 {
  border-color: rgba(255,255,255,0.5) !important;
  color: var(--color-white) !important;
}

/* --- About Page Styles --- */
.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 5rem;
}
.about-text h2 {
  margin-bottom: 1.5rem;
}
.about-text p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}
.about-image {
  position: relative;
}
.about-image img {
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
  text-align: center;
}
.stat-box {
  background-color: var(--color-bg);
  padding: 2rem;
  border-radius: 15px;
  border: 1px solid rgba(0,0,0,0.05);
}
.stat-num {
  font-size: 2.5rem;
  color: var(--color-accent);
  font-weight: 900;
  display: block;
}
.stat-txt {
  font-weight: 700;
  color: var(--color-main);
}
@media (max-width: 992px) {
  .about-content {
    grid-template-columns: 1fr;
  }
  .stats-grid {
    grid-template-columns: 1fr;
  }
}

/* --- Contact Page Styles --- */
/* --- Contact Page Styles --- */
.contact-wrap {
  display: grid;
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}

.contact-layout {
  grid-template-columns: 1.15fr 0.85fr;
  grid-template-areas: "image info";
}

.contact-info {
  grid-area: info;
  background-color: var(--color-main);
  color: var(--color-white);
  padding: 3rem;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  text-align: center;
}

.contact-info h3 {
  color: var(--color-white);
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
}

.contact-info p {
  color: rgba(255,255,255,0.85);
  margin-bottom: 2.5rem;
  font-size: 1.1rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.contact-icon {
  width: 50px;
  height: 50px;
  background-color: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--color-accent);
}

.contact-item-desc {
  font-size: 1.1rem;
  font-weight: 600;
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 3rem;
}

.social-links a {
  width: 40px;
  height: 40px;
  background-color: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  transition: all var(--transition-fast);
}

.social-links a:hover {
  background-color: var(--color-accent);
  transform: translateY(-3px);
}

.contact-image {
  grid-area: image;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  min-height: 100%;
}

.contact-image img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
}

.contact-form {
  background-color: var(--color-white);
  padding: 3rem;
  border-radius: 20px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(0,0,0,0.05);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--color-text);
}

.form-control {
  width: 100%;
  padding: 1rem 1.2rem;
  border: 2px solid rgba(0,0,0,0.05);
  border-radius: 10px;
  font-family: inherit;
  font-size: 1rem;
  background-color: var(--color-bg);
  transition: all var(--transition-fast);
}

.form-control:focus {
  outline: none;
  border-color: var(--color-main);
  background-color: var(--color-white);
  box-shadow: 0 0 0 4px rgba(0, 103, 102, 0.1);
}

textarea.form-control {
  min-height: 150px;
  resize: vertical;
}

@media (max-width: 992px) {
  .contact-layout {
    grid-template-columns: 1fr;
    grid-template-areas:
      "info"
      "image";
  }

  .contact-info {
    padding: 2rem;
  }

  .contact-form {
    padding: 2rem;
  }

  .contact-image img {
    min-height: 320px;
    max-height: 420px;
  }
}

@media (max-width: 576px) {
  .contact-wrap {
    gap: 1.5rem;
  }

  .contact-info {
    padding: 1.5rem;
    border-radius: 16px;
  }

  .contact-info h3 {
    font-size: 1.5rem;
  }

  .contact-info p {
    font-size: 1rem;
  }

  .contact-image {
    border-radius: 16px;
  }

  .contact-image img {
    min-height: 260px;
  }
}

/* --- Blog Page Styles --- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 3rem;
  max-width: 900px;
  margin: 0 auto 5rem;
  margin-top: 10px;
}
.blog-card {
  background-color: var(--color-white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(0,0,0,0.05);
}
.blog-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}
.blog-img {
  width: 100%;
  height: 300px;
  overflow: hidden;
}
.blog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}
.blog-card:hover .blog-img img {
  transform: scale(1.05);
}
.blog-content {
  padding: 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.blog-meta {
  color: var(--color-accent);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
.blog-title {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: var(--color-main);
  line-height: 1.4;
}
.blog-excerpt {
  color: var(--color-text-light);
  margin-bottom: 2rem;
  flex: 1;
}
.read-more {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-main);
  font-weight: 700;
  transition: color var(--transition-fast);
}
.read-more::after {
  content: '←';
  font-size: 1.2rem;
  transition: transform var(--transition-fast);
}
.read-more:hover {
  color: var(--color-accent);
}
.read-more:hover::after {
  transform: translateX(-5px);
}

/* --- Single Blog Article Styles --- */
.single-blog {
  max-width: 800px;
  margin: 0 auto;
  background: var(--color-white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin-bottom: 5rem;
  margin-top: 10px;
}
.single-blog-img {
  width: 100%;
  height: 550px;
  object-fit: cover;
}
.single-blog-content {
  padding: 3rem;
}
.single-blog-meta {
  color: var(--color-accent);
  font-weight: 600;
  margin-bottom: 1rem;
  display: inline-block;
}
.single-blog-title {
  font-size: 2rem;
  color: var(--color-main);
  margin-bottom: 2rem;
  line-height: 1.4;
}
.single-blog-text {
  color: var(--color-text);
  line-height: 1.8;
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}
.single-blog-text h3 {
  color: var(--color-main);
  margin-top: 2rem;
  margin-bottom: 1rem;
}
.single-blog-text ul {
  margin-bottom: 1.5rem;
  padding-right: 2rem;
}
.single-blog-text li {
  margin-bottom: 0.5rem;
  list-style-type: disc;
}
@media (max-width: 768px) {
  .single-blog-img {
    height: 250px;
  }
  .single-blog-content {
    padding: 2rem;
  }
  .single-blog-title {
    font-size: 1.5rem;
  }
}

