/* =============================================
   DEVORA — Vanilla CSS Design System
   RTL Arabic layout, no wp-content dependencies
   ============================================= */

/* ---------- FONTS ---------- */
@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@400;500;600;700;800&display=swap');

/* ---------- VARIABLES ---------- */
:root {
  --primary: #3a3464;
  --primary-dark: #182333;
  --accent: #5ba3f5;
  --accent-dark: #3a86d9;
  --text: #333333;
  --text-light: #666666;
  --bg: #ffffff;
  --bg-light: #f5f5f5;
  --bg-dark: #efefef;
  --border: #e3e3e3;
  --white: #ffffff;
  --shadow: 0 2px 16px rgba(24, 35, 51, 0.12);
  --shadow-lg: 0 10px 40px rgba(24, 35, 51, 0.18);
  --radius: 12px;
  --radius-sm: 6px;
  --radius-full: 100px;
  --transition: 0.3s ease;
  --font: 'Cairo', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; background: var(--bg); }
body {
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.7;
  color: var(--text);
  direction: rtl;
  background: var(--bg);
  overflow-x: hidden;
  padding-top: 80px; /* Space for the full-width fixed header */
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color var(--transition); }
ul { list-style: none; }
h1, h2, h3, h4, h5, h6 { font-weight: 700; line-height: 1.3; color: var(--primary); }
h1 { font-size: 48px; }
h2 { font-size: 36px; }
h3 { font-size: 28px; }
h4 { font-size: 22px; }
h5 { font-size: 18px; }
h6 { font-size: 16px; }
p { margin-bottom: 1rem; }

/* ---------- UTILITIES ---------- */
.container { max-width: 1180px; margin: 0 auto; padding: 0 20px; }
.section { padding: 80px 0; }
.section-sm { padding: 50px 0; }
.text-center { text-align: center; }
.text-right { text-align: right; }
.text-white { color: var(--white) !important; }
.bg-primary { background: var(--primary); }
.bg-light { background: var(--bg-light); }
.clearfix::after { content: ''; display: table; clear: both; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* Grid */
.grid { display: grid; gap: 30px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }

/* ---------- SECTION HEADINGS ---------- */
.section-title {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
}

.section-title.reveal.visible.animated h2 {
  animation: titleFloat 3s ease-in-out infinite;
}

.section-title .sub-title {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 10px;
}

.section-title h2 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
  background: linear-gradient(135deg, var(--primary) 30%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-title p {
  color: var(--text-light);
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

.section-title .underline {
  width: 80px;
  height: 5px;
  background: linear-gradient(90deg, var(--accent) 0%, var(--primary) 100%);
  margin: 20px auto 0;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
}

.section-title .underline::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  animation: shimmer 2s infinite;
}

.section-title:hover h2 {
  transform: translateY(-5px);
  color: var(--accent);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes titleFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes shimmer {
  100% { left: 100%; }
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; border-radius: var(--radius-full);
  font-family: var(--font); font-size: 16px; font-weight: 600;
  cursor: pointer; border: 2px solid transparent;
  transition: all var(--transition); text-decoration: none;
}
.btn-primary { background: var(--accent); color: var(--white); border: none; box-shadow: 0 4px 12px rgba(91, 163, 245, 0.25); }
.btn-primary:hover { background: var(--accent-dark); transform: translateY(-3px); box-shadow: 0 8px 24px rgba(91, 163, 245, 0.35); }
.btn-outline { background: transparent; color: var(--accent); border-color: var(--accent); }
.btn-outline:hover { background: var(--accent); color: var(--white); }
.btn-white { background: var(--white); color: var(--accent); border: none; box-shadow: 0 4px 12px rgba(0,0,0,0.06); }
.btn-white:hover { background: var(--white); color: var(--accent-dark); transform: translateY(-4px); box-shadow: 0 10px 25px rgba(24, 35, 51, 0.12); }

/* =============================================
   ACTION BAR (top strip)
   ============================================= */
#Action_bar {
  background: var(--primary);
  padding: 8px 30px;
  font-size: 14px;
  color: rgba(255,255,255,0.9);
}
#Action_bar .action-inner {
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px;
  max-width: none;
}
#Action_bar .container {
  max-width: none; padding: 0;
}
#Action_bar .contact-details { display: flex; gap: 24px; align-items: center; }
#Action_bar .contact-details a {
  color: rgba(255,255,255,0.9); display: flex; align-items: center; gap: 6px; font-size: 14px;
}
#Action_bar .contact-details a:hover { color: var(--accent); }
#Action_bar .social-links { display: flex; gap: 12px; }
#Action_bar .social-links a {
  color: rgba(255,255,255,0.7); font-size: 16px; transition: color var(--transition);
}
#Action_bar .social-links a:hover { color: var(--accent); }
#Action_bar .action-sep { color: rgba(255,255,255,0.3); }

/* =============================================
   HEADER / NAV
   ============================================= */
#Header {
  position: sticky;
  top: 0;
  z-index: 1000;
}
#Top_bar {
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.08);
  height: 80px;
  margin: 0;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}
#Top_bar.scrolled { 
  background: rgba(255, 255, 255, 0.6);
  box-shadow: 0 8px 32px rgba(24, 35, 51, 0.15); 
  height: 70px;
  margin: 0;
}
#Top_bar .nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 30px; height: 100%;
}
#logo { display: flex; align-items: center; text-decoration: none; }
#logo img { max-height: 55px; width: auto; }
#logo .text-logo {
  font-size: 28px; font-weight: 800; color: var(--primary);
  display: flex; align-items: center; gap: 4px;
}
#logo .text-logo span { color: var(--accent); }

/* Main menu */
#menu { display: flex; align-items: center; }
#menu ul { display: flex; gap: 4px; align-items: center; }
#menu ul li { position: relative; }
#menu ul li a {
  display: flex; align-items: center;
  padding: 10px 16px; font-size: 16px; font-weight: 600;
  color: var(--primary); border-radius: var(--radius-sm);
  transition: all var(--transition); white-space: nowrap;
}
#menu ul li a:hover,
#menu ul li.active > a { color: var(--accent); background: rgba(91, 163, 245, 0.06); }
#menu ul li a::after {
  content: ''; position: absolute; bottom: 0; right: 50%; left: 50%;
  height: 2px; background: var(--accent); transition: all var(--transition); border-radius: 2px;
}
#menu ul li a:hover::after,
#menu ul li.active > a::after { right: 16px; left: 16px; }

/* Submenu */
#menu ul li ul {
  position: absolute; top: 100%; right: 0;
  min-width: 200px; background: var(--white);
  border-radius: var(--radius-sm); box-shadow: var(--shadow-lg);
  padding: 8px; display: none; flex-direction: column; gap: 2px;
}
#menu ul li:hover > ul,
#menu ul li.hover > ul { display: flex; }
#menu ul li ul li a { font-size: 15px; font-weight: 500; padding: 8px 14px; border-radius: var(--radius-sm); }
#menu ul li ul li a::after { display: none; }

/* Mobile hamburger */
.responsive-menu-toggle {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 8px; background: none; border: none;
}
.responsive-menu-toggle span {
  display: block; width: 26px; height: 3px;
  background: var(--primary); border-radius: 2px; transition: all var(--transition);
}
.responsive-menu-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(6px, 6px); }
.responsive-menu-toggle.open span:nth-child(2) { opacity: 0; }
.responsive-menu-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); }

/* =============================================
   HERO SLIDER
   ============================================= */
.hero-slider {
  position: relative; overflow: hidden;
  height: 600px; background: var(--primary);
}
@media (max-width: 768px) { .hero-slider { height: 480px; } }
@media (max-width: 480px) { .hero-slider { height: 420px; } }

.hero-slide {
  position: absolute; inset: 0;
  display: flex; align-items: center;
  opacity: 0; transition: opacity 0.8s ease;
  background-size: cover; background-position: center;
}
.hero-slide.active { opacity: 1; z-index: 1; }
.hero-slide .overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to left, rgba(24, 35, 51, 0.85) 0%, rgba(24, 35, 51, 0.4) 60%, transparent 100%);
}
.hero-slide .slide-content {
  position: relative; z-index: 2;
  max-width: 600px; padding: 0 40px;
  text-align: right;
}
.hero-slide .slide-content h1 {
  font-size: clamp(28px, 5vw, 52px); color: var(--white); font-weight: 800;
  margin-bottom: 16px; animation: slideInRight 0.8s ease forwards;
}
.hero-slide .slide-content p {
  font-size: 20px; color: rgba(255,255,255,0.88);
  margin-bottom: 30px; animation: slideInRight 0.8s 0.15s ease both;
}
.hero-slide .slide-content .btn {
  animation: slideInRight 0.8s 0.3s ease both;
}
.hero-slide h1 span { color: var(--accent); }

/* Hero dots */
.hero-dots {
  position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 10px; z-index: 10;
}
.hero-dot {
  width: 12px; height: 12px; background: rgba(255,255,255,0.5);
  border-radius: 50%; cursor: pointer; transition: all var(--transition);
  border: none;
}
.hero-dot.active { background: var(--accent); transform: scale(1.2); }

/* Hero arrows */
.hero-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  z-index: 10; background: rgba(255,255,255,0.2); color: var(--white);
  border: none; width: 48px; height: 48px; border-radius: 50%;
  font-size: 20px; cursor: pointer; transition: all var(--transition);
  display: flex; align-items: center; justify-content: center; backdrop-filter: blur(4px);
}
.hero-arrow:hover { background: var(--accent); transform: translateY(-50%) scale(1.05); }
.hero-arrow.prev { right: 24px; }
.hero-arrow.next { left: 24px; }

/* =============================================
   STATS / COUNTERS
   ============================================= */
.stats-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}
.stats-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px;
  position: relative; z-index: 1;
}
.stat-item { text-align: center; color: var(--white); padding: 20px; }
.stat-item .stat-icon {
  font-size: 48px; margin-bottom: 16px;
  display: inline-block; animation: statFloat 3s ease-in-out infinite;
}
.stat-item .stat-number {
  font-size: 52px; font-weight: 800; color: var(--accent);
  line-height: 1; display: flex; align-items: baseline; justify-content: center; gap: 4px;
}
.stat-item .stat-number .suffix { font-size: 28px; }
.stat-item .stat-label { font-size: 17px; font-weight: 500; margin-top: 10px; color: rgba(255,255,255,0.85); }

/* =============================================
   STATS BANNER CUSTOM
   ============================================= */
.stats-banner-wrapper {
    position: relative;
    margin-bottom: 80px;
}
.stats-purple-bg {
    background: #5ba3f5;
    padding: 30px 0 40px !important;
    text-align: center;
    color: var(--white);
}
.stats-purple-bg .section-title {
    margin-bottom: 30px !important;
}
.new-stats-grid .stat-number {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}
.new-stats-grid .stat-number .suffix {
    font-size: 38px;
    color: #ffffff !important;
    line-height: 1;
}
.stats-purple-bg .section-title h2 {
    color: var(--white) !important;
    background: none !important;
    -webkit-text-fill-color: var(--white) !important;
    background-clip: border-box !important;
}
.stats-purple-bg .section-title .sub-title {
    color: var(--white) !important;
    opacity: 0.9;
}
.stats-header h2 {
    color: var(--white);
    font-size: 32px;
    margin-bottom: 15px;
}
.stats-divider {
    width: 80px;
    height: 3px;
    background: rgba(255,255,255,0.2);
    margin: 0 auto 70px;
    border-radius: 2px;
}
.new-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.new-stats-grid .stat-item {
    padding: 0;
}
.new-stats-grid .stat-number {
    font-size: 56px;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
    margin-bottom: 10px;
    display: block;
}
.new-stats-grid .stat-label {
    font-size: 20px;
    color: var(--white);
    font-weight: 700;
}

/* Overlapping Banner */
.yellow-overlap-banner {
    background: linear-gradient(135deg, #182333 0%, #1e293b 100%);
    border-radius: 24px;
    padding: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: -100px;
    position: relative;
    z-index: 5;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}
.banner-right-content {
    flex: 1;
    max-width: 60%;
    text-align: right;
}
.banner-subtext {
    font-size: 14px;
    color: #555;
    display: block;
    margin-bottom: 8px;
}
.banner-title {
    font-size: 32px;
    color: #222;
    margin-bottom: 20px;
    font-weight: 700;
}
.banner-desc {
    font-size: 16px;
    color: #444;
    line-height: 1.8;
    margin-bottom: 30px;
}
.banner-actions {
    display: flex;
    gap: 15px;
    align-items: center;
}
.btn-dark {
    background: #182333;
    color: var(--white);
    display: inline-flex;
    align-items: center;
    padding: 14px 32px;
    border-radius: var(--radius-full);
    font-family: var(--font);
    font-size: 16px;
    font-weight: 600;
    transition: all var(--transition);
}
.btn-dark:hover {
    background: #0f172a;
    color: var(--white);
    transform: translateY(-2px);
}
.banner-left-image {
    flex: 1;
    max-width: 35%;
    display: flex;
    justify-content: center;
}
.banner-left-image img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 15px 30px rgba(0,0,0,0.15));
    animation: statFloat 4s ease-in-out infinite;
}

@media (max-width: 900px) {
    .new-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    .yellow-overlap-banner {
        flex-direction: column;
        padding: 30px;
        margin-top: -80px;
    }
    .banner-right-content, .banner-left-image {
        max-width: 100%;
    }
    .banner-left-image {
        margin-top: 30px;
    }
}
@media (max-width: 540px) {
    .new-stats-grid {
        grid-template-columns: 1fr;
    }
}

@keyframes statFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* =============================================
   SERVICES
   ============================================= */
.services-section { background: var(--bg-light); }

.service-card {
  background: var(--white); border-radius: var(--radius);
  padding: 36px 28px; text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transition: all var(--transition);
  position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; top: 0; right: 0; left: 0;
  height: 4px; background: var(--accent);
  transform: scaleX(0); transform-origin: right;
  transition: transform var(--transition);
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.service-card:hover::before { transform: scaleX(1); }

.service-card .icon-wrap {
  width: 80px; height: 80px; border-radius: 50%;
  background: rgba(91, 163, 245, 0.1); color: var(--accent);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px; font-size: 36px;
  transition: all var(--transition);
}
.service-card:hover .icon-wrap { background: var(--accent); color: var(--white); }
.service-card h3 { font-size: 20px; margin-bottom: 12px; color: var(--primary); }
.service-card p { font-size: 15px; color: var(--text-light); line-height: 1.7; margin: 0; }
.service-card .card-link {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 20px; font-weight: 600; color: var(--accent); font-size: 15px;
}
.service-card .card-link:hover { gap: 10px; }

/* =============================================
   ABOUT / WHY US
   ============================================= */
.why-us-section { background: var(--white); }
.why-us-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
.why-us-img {
  height: 580px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.why-us-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: transform 0.5s ease;
}
.why-us-img:hover img { transform: scale(1.03); }

.why-us-content h2 { font-size: 34px; margin-bottom: 16px; }
.why-us-content .lead {
  font-size: 18px; color: var(--text-light); margin-bottom: 30px;
  line-height: 1.8;
}

.feature-list { display: flex; flex-direction: column; gap: 20px; }
.feature-item {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 16px; border-radius: var(--radius-sm);
  transition: background var(--transition);
}
.feature-item:hover { background: var(--bg-light); }
.feature-item .feat-icon {
  flex-shrink: 0; width: 48px; height: 48px; border-radius: 10px;
  background: rgba(91, 163, 245, 0.1); color: var(--accent);
  display: flex; align-items: center; justify-content: center; font-size: 22px;
}
.feature-item h4 { font-size: 17px; margin-bottom: 4px; }
.feature-item p { font-size: 14px; color: var(--text-light); margin: 0; }

/* =============================================
   TESTIMONIALS
   ============================================= */
.testimonials-section { background: var(--bg-light); }

.testimonials-slider { position: relative; overflow: hidden; }
.testimonials-track {
  display: flex; gap: 30px;
  transition: transform 0.6s cubic-bezier(0.77, 0, 0.175, 1);
}
.testimonial-card {
  min-width: calc(33.333% - 20px);
  background: var(--white); border-radius: var(--radius);
  padding: 32px; box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  position: relative;
}
.testimonial-card::before {
  content: '\201C'; position: absolute; top: 16px; right: 24px;
  font-size: 80px; color: var(--accent); opacity: 0.15;
  font-family: Georgia, serif; line-height: 1;
}
.testimonial-card .quote { font-size: 16px; line-height: 1.8; color: var(--text); margin-bottom: 24px; }
.testimonial-card .author { display: flex; align-items: center; gap: 14px; }
.testimonial-card .author-img {
  width: 52px; height: 52px; border-radius: 50%; overflow: hidden;
  border: 3px solid var(--accent);
}
.testimonial-card .author-img img { width: 100%; height: 100%; object-fit: cover; }
.testimonial-card .author-name { font-weight: 700; font-size: 16px; color: var(--primary); }
.testimonial-card .author-role { font-size: 13px; color: var(--text-light); }
.testimonial-card .stars { color: #f5c518; font-size: 14px; margin-top: 2px; }

.testimonials-controls {
  display: flex; align-items: center; justify-content: center; gap: 12px; margin-top: 30px;
}
.test-dot {
  width: 10px; height: 10px; background: var(--border);
  border-radius: 50%; cursor: pointer; border: none;
  transition: all var(--transition);
}
.test-dot.active { background: var(--accent); transform: scale(1.3); }

/* =============================================
   BLOG
   ============================================= */
.blog-section { background: var(--white); }

.blog-card {
  border-radius: var(--radius); overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transition: all var(--transition);
  background: var(--white);
}
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.blog-card .card-img {
  overflow: hidden; height: 200px;
}
.blog-card .card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease;
}
.blog-card:hover .card-img img { transform: scale(1.06); }
.blog-card .card-body { padding: 24px; }
.blog-card .card-meta {
  display: flex; gap: 16px; font-size: 13px;
  color: var(--text-light); margin-bottom: 12px;
}
.blog-card .card-meta .category {
  color: var(--accent); font-weight: 600;
  background: rgba(91, 163, 245, 0.08); padding: 2px 10px; border-radius: 20px;
}
.blog-card h3 { font-size: 18px; margin-bottom: 10px; line-height: 1.5; }
.blog-card h3 a { color: var(--primary); }
.blog-card h3 a:hover { color: var(--accent); }
.blog-card p { font-size: 14px; color: var(--text-light); margin: 0; }

/* =============================================
   CLIENTS LOGOS
   ============================================= */
.clients-section { 
  background: var(--bg-light); 
  padding: 80px 0; 
  overflow: hidden;
}
.clients-track-full {
  overflow: hidden;
  position: relative;
  width: 100%;
  padding: 30px 0;
  display: flex;
  flex-wrap: nowrap; /* Prevent stacking into multiple rows */
  direction: ltr; /* Force LTR for the ticker container to make math easier for infinite loop */
  /* Smooth fade at edges */
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.clients-inner {
  display: flex;
  flex-shrink: 0;
  gap: 40px;
  align-items: center;
  padding-right: 40px;
  animation: slideTicker 40s linear infinite;
  min-width: 100%;
  justify-content: space-around;
}

/* Pause on hover */
.clients-track-full:hover .clients-inner {
  animation-play-state: paused;
}

.client-box {
  flex: 0 0 auto;
  width: 180px; /* Increased from 150px */
  height: 120px; /* Increased from 100px */
  background: #fff;
  border: 1px solid #eee;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 4px 12px rgba(0,0,0,0.03);
  cursor: pointer;
}

.client-box img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.4s ease;
}

.client-box:hover {
  transform: translateY(-10px) scale(1.05);
  border-color: var(--accent);
  box-shadow: 0 20px 40px rgba(91, 163, 245, 0.15);
}

.client-box:hover img {
  transform: scale(1.1);
}

@keyframes slideTicker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .client-box {
    width: 120px;
    height: 80px;
  }
  .clients-inner {
    gap: 20px;
    padding-right: 20px;
  }
}

/* Adjustments for mobile */
@media (max-width: 768px) {
  .client-box { width: 110px; height: 110px; padding: 15px; border-radius: 12px; }
  .clients-inner { gap: 20px; }
}

/* =============================================
   FOOTER
   ============================================= */
#Footer {
  background: #182333;
  color: rgba(255,255,255,0.85);
  padding: 70px 0 0;
  position: relative;
}
#Footer::before {
  content: ''; position: absolute; inset: 0;
  background: rgba(24, 35, 51, 0.92);
}
#Footer .footer-inner { position: relative; z-index: 1; }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 50px; margin-bottom: 60px;
}
.footer-col h4 { color: var(--white); font-size: 18px; margin-bottom: 22px; position: relative; padding-bottom: 12px; }
.footer-col h4::after {
  content: ''; position: absolute; bottom: 0; right: 0;
  width: 40px; height: 3px; background: var(--accent); border-radius: 2px;
}
.footer-col p { font-size: 15px; line-height: 1.9; color: rgba(255,255,255,0.7); }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  color: rgba(255,255,255,0.7); font-size: 15px; transition: all var(--transition);
  display: flex; align-items: center; gap: 8px;
}
.footer-col ul li a::before { content: '←'; color: var(--accent); font-size: 12px; }
.footer-col ul li a:hover { color: var(--accent); gap: 14px; }

.footer-logo img { width: 160px; height: auto; max-height: 70px; margin-bottom: 20px; object-fit: contain; }
.footer-soc { display: flex; gap: 12px; margin-top: 24px; }
.footer-soc a {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,0.1); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; transition: all var(--transition);
}
.footer-soc a:hover { background: var(--accent); transform: translateY(-3px); }

.footer-contact-item {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 16px; color: rgba(255,255,255,0.7); font-size: 15px;
}
.footer-contact-item .icon {
  width: 36px; height: 36px; border-radius: 8px;
  background: rgba(91, 163, 245, 0.15); color: var(--accent);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}

.footer-copy {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 24px 0; display: flex; align-items: center; justify-content: space-between;
  position: relative; z-index: 1; flex-wrap: wrap; gap: 10px;
}
.footer-copy p { color: rgba(255,255,255,0.6); font-size: 14px; margin: 0; }
.footer-copy nav { display: flex; gap: 20px; }
.footer-copy nav a { color: rgba(255,255,255,0.6); font-size: 13px; }
.footer-copy nav a:hover { color: var(--accent); }

/* =============================================
   FLOATING BUTTONS
   ============================================= */
.floating-buttons {
  position: fixed; bottom: 24px; right: 20px;
  display: flex; flex-direction: column; gap: 14px; z-index: 999;
}
.float-btn {
  width: 52px; height: 52px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; text-decoration: none; transition: all var(--transition);
  box-shadow: 0 4px 16px rgba(0,0,0,0.2); cursor: pointer; border: none;
}
.float-btn:hover { transform: scale(1.12) translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,0.25); }
.float-btn-wa { background: #25D366; color: var(--white); }
.float-btn-call { background: var(--accent); color: var(--white); }
.float-btn-top {
  background: var(--primary-dark); color: var(--white);
  opacity: 0; pointer-events: none; transform: translateY(20px);
  transition: all var(--transition);
}
.float-btn-top.visible { opacity: 1; pointer-events: auto; transform: translateY(0); }

/* Pulse animation for WhatsApp */
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.5); }
  70% { box-shadow: 0 0 0 14px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}
.float-btn-wa { animation: pulse 2.5s infinite; }

/* =============================================
   ANIMATIONS / SCROLL REVEAL
   ============================================= */
.reveal {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

@keyframes slideInRight {
  from { opacity: 0; transform: translateX(50px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-in-up { animation: fadeInUp 0.6s ease forwards; }

/* =============================================
   SIDE SLIDE MENU (mobile)
   ============================================= */
#Side_slide {
  position: fixed; top: 0; right: -280px; bottom: 0;
  width: 280px; background: var(--primary-dark); z-index: 2000;
  transition: right var(--transition); overflow-y: auto; padding: 30px 24px;
}
#Side_slide.open { right: 0; }
.side-slide-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.5);
  z-index: 1999; display: none;
}
.side-slide-overlay.active { display: block; }
#Side_slide .close-btn {
  background: none; border: none; color: var(--white);
  font-size: 26px; cursor: pointer; display: flex; margin-left: auto;
  padding: 0 4px;
}
#Side_slide .side-logo { margin-bottom: 30px; }
#Side_slide .side-logo img { max-height: 50px; }
#Side_slide nav ul li { border-bottom: 1px solid rgba(255,255,255,0.1); }
#Side_slide nav ul li a {
  display: block; padding: 14px 0; color: rgba(255,255,255,0.85);
  font-size: 16px; font-weight: 600; transition: color var(--transition);
}
#Side_slide nav ul li a:hover { color: var(--accent); }
#Side_slide .side-contact { margin-top: 30px; }
#Side_slide .side-contact a {
  display: flex; align-items: center; gap: 10px;
  color: rgba(255,255,255,0.7); font-size: 15px; margin-bottom: 14px;
}
#Side_slide .side-contact a:hover { color: var(--accent); }

/* =============================================
   OUR TEAM
   ============================================= */
.team-section { background: var(--bg-light); padding: 80px 0; }
.team-icon {
  width: 60px; height: 40px; background: var(--white);
  border-radius: 20px; display: flex; align-items: center; justify-content: center;
  margin: 0 auto 15px; font-size: 20px; color: var(--primary);
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}
.team-grid { display: flex; flex-direction: column; align-items: center; gap: 30px; margin-top: 40px; }
.team-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 20px; }
.team-member-pill {
  display: flex; align-items: center; gap: 15px; justify-content: space-between;
  background: var(--bg); border-radius: 50px;
  padding: 8px 8px 8px 30px; /* RTL padding: top right bottom left -> Right image means it's the second element in HTML */
  box-shadow: 0 5px 15px rgba(0,0,0,0.03);
  border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  min-width: 260px;
}
.team-member-pill:hover, .team-member-pill.active-pill {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.08); /* slight hover lift effect */
  border-color: var(--accent);
}
.team-img {
  width: 70px; height: 70px; border-radius: 50%;
  overflow: hidden; flex-shrink: 0;
}
.team-img img {
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(60%); transition: filter var(--transition);
}
.team-member-pill:hover .team-img img, .team-member-pill.active-pill .team-img img {
  filter: grayscale(0%);
}
.team-info { text-align: right; flex-grow: 1; padding-right: 20px; }
.team-info h3 { font-size: 18px; margin-bottom: 2px; color: var(--primary); }
.team-info p { font-size: 13px; color: var(--text-light); margin: 0; font-weight: 500; }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 35px; }
}

@media (max-width: 900px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .why-us-inner { grid-template-columns: 1fr; }
  .why-us-img { max-width: 500px; margin: 0 auto; height: 350px; }
}

@media (max-width: 768px) {
  h1 { font-size: 32px; }
  h2 { font-size: 26px; }
  h3 { font-size: 22px; }
  body { font-size: 15px; }
  .section { padding: 55px 0; }
  #menu { display: none; }
  .responsive-menu-toggle { display: flex; }
  .testimonial-card { min-width: 100%; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-copy { flex-direction: column; text-align: center; }
  #Action_bar .contact-details { gap: 14px; font-size: 13px; }
  
  .team-grid { gap: 15px; margin-top: 30px; }
  .team-row { flex-direction: column; width: 100%; gap: 15px; }
  .team-member-pill { min-width: unset; width: 100%; padding: 6px 6px 6px 20px; }
  .team-img { width: 60px; height: 60px; }
  .team-info h3 { font-size: 16px; }
  .team-info p { font-size: 12px; }
}

@media (max-width: 540px) {
  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-slider { height: 380px; }
  .hero-slide .slide-content h1 { font-size: 24px; }
  .hero-slide .slide-content p { font-size: 15px; }
}

/* =============================================
   ICON LIBRARY (simple CSS icons)
   ============================================= */
.icon { display: inline-block; font-style: normal; }

/* =============================================
   PAGE SUBHEADER (inner pages hero bar)
   ============================================= */
.page-subheader {
  background-color: #5ba3f5;
  background-size: cover;
  background-position: center;
  padding: 50px 0 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-subheader::before {
  content: '';
  background-color: #5ba3f5;
  position: absolute; inset: 0;
  /* background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M20 0L40 20L20 40L0 20Z'/%3E%3C/g%3E%3C/svg%3E"); */
  z-index: 1;
}
.page-subheader .container {
  position: relative;
  z-index: 2;
}
.page-subheader-title {
  font-size: clamp(26px, 5vw, 40px);
  color: var(--white);
  margin-bottom: 12px;
  position: relative;
}
.breadcrumbs {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  position: relative;
}
.breadcrumbs a { color: rgba(255,255,255,0.7); }
.breadcrumbs a:hover { color: var(--accent); }
.breadcrumbs span { color: var(--primary); }

/* =============================================
   PAGE HERO (about us full hero)
   ============================================= */
.page-hero {
  min-height: 340px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  position: relative;
}
.page-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to left, rgba(58,52,100,0.88) 0%, rgba(58,52,100,0.65) 100%);
}
.page-hero-content {
  position: relative; z-index: 1;
  color: var(--white);
}
.page-hero-content h1 {
  font-size: clamp(24px, 4vw, 42px);
  color: var(--white);
}

/* =============================================
   ABOUT PAGE
   ============================================= */
.about-values-section { padding: 70px 0; }
.about-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.value-card {
  padding: 35px 25px;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
}
.value-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.value-card img { margin: 0 auto 18px; }
.value-card h4 { color: var(--primary); font-size: 20px; margin-bottom: 10px; }
.value-card p { color: var(--text-light); font-size: 15px; line-height: 1.75; margin: 0; }

.about-story-section { padding: 70px 0; }
.about-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-story-text h5 { color: var(--text-light); font-size: 16px; font-weight: 500; }
.about-story-text h2 { font-size: 34px; margin-top: 6px; }
.about-story-text p { color: var(--text-light); line-height: 1.9; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.service-card img { margin: 0 auto 16px; max-height: 80px; }
.service-card h4 { font-size: 17px; margin-bottom: 8px; }
.service-card p { font-size: 14px; color: var(--text-light); line-height: 1.7; }
.service-card .btn { margin-top: 14px; font-size: 14px; padding: 10px 22px; }

/* =============================================
   CTA BANNER (reused across pages)
   ============================================= */
.cta-banner {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  padding: 70px 0;
  text-align: center;
}
.cta-content h2 { color: var(--white); font-size: clamp(22px, 4vw, 36px); margin-bottom: 14px; }
.cta-content p { color: rgba(255,255,255,0.8); font-size: 17px; margin-bottom: 28px; }
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-whatsapp { background: #25D366; color: var(--white); border-color: #25D366; }
.btn-whatsapp:hover { background: #1ebe5d; border-color: #1ebe5d; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(37,211,102,0.4); }

/* =============================================
   CONTACT PAGE
   ============================================= */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.contact-info h3 { color: var(--primary); font-size: 26px; margin-bottom: 10px; }
.contact-info p { color: var(--text-light); }
.contact-info h4 { font-size: 17px; }
.contact-detail-item {
  display: flex; align-items: flex-start; gap: 12px;
  margin-bottom: 14px; color: var(--text);
}
.contact-detail-item i { color: var(--accent); font-size: 18px; margin-top: 3px; flex-shrink: 0; }
.contact-detail-item a { color: var(--text); }
.contact-detail-item a:hover { color: var(--accent); }

.contact-social-links { display: flex; gap: 12px; margin-top: 12px; flex-wrap: wrap; }
.social-icon-btn {
  width: 42px; height: 42px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 17px; transition: all var(--transition);
}
.social-icon-btn.facebook { background: #1877f2; }
.social-icon-btn.instagram { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.social-icon-btn.twitter { background: #1da1f2; }
.social-icon-btn.youtube { background: #ff0000; }
.social-icon-btn:hover { transform: translateY(-3px) scale(1.08); box-shadow: 0 6px 18px rgba(0,0,0,0.2); }

.contact-form-wrapper h3 { color: var(--primary); font-size: 24px; margin-bottom: 8px; }
.contact-form-wrapper p { color: var(--text-light); margin-bottom: 24px; }
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-label { font-size: 14px; font-weight: 600; color: var(--primary); }
.form-input {
  width: 100%; padding: 13px 16px;
  border: 2px solid var(--border); border-radius: var(--radius-sm);
  font-family: var(--font); font-size: 15px; color: var(--text);
  background: var(--white); transition: border-color var(--transition);
  direction: rtl; outline: none;
}
.form-input:focus { border-color: var(--accent); }
textarea.form-input { resize: vertical; }
select.form-input { cursor: pointer; }

/* =============================================
   FAQ ACCORDION
   ============================================= */
.faq-accordion { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  border: 2px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.faq-item.active { border-color: var(--accent); box-shadow: 0 4px 20px rgba(91, 163, 245, 0.12); }
.faq-question {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px; background: var(--white); border: none;
  font-family: var(--font); font-size: 16px; font-weight: 600;
  color: var(--primary); cursor: pointer; text-align: right;
  gap: 16px; transition: background var(--transition);
}
.faq-question:hover { background: rgba(91, 163, 245, 0.04); }
.faq-item.active .faq-question { color: var(--accent); }
.faq-icon { flex-shrink: 0; color: var(--accent); transition: transform var(--transition); }
.faq-item.active .faq-icon { transform: rotate(180deg); }
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  background: var(--bg-light);
}
.faq-item.active .faq-answer { max-height: 400px; }
.faq-answer p { padding: 20px 24px; color: var(--text-light); line-height: 1.9; margin: 0; }

/* =============================================
   POLICY / TERMS CONTENT
   ============================================= */
.policy-content h2 {
  font-size: 22px; color: var(--primary);
  margin: 30px 0 10px; border-bottom: 2px solid var(--accent);
  padding-bottom: 8px; display: inline-block;
}
.policy-content ul { list-style: disc; padding-right: 24px; margin-bottom: 16px; }
.policy-content ul li { margin-bottom: 6px; color: var(--text-light); }
.policy-content a { color: var(--accent); }

/* =============================================
   SERVICES LISTING PAGE
   ============================================= */
.services-grid-full { display: flex; flex-direction: column; gap: 30px; }
.service-card-full {
  display: grid; grid-template-columns: 160px 1fr;
  gap: 30px; align-items: start;
  background: var(--white); border-radius: var(--radius);
  padding: 30px; box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transition: all var(--transition);
}
.service-card-full:hover { transform: translateX(-4px); box-shadow: var(--shadow-lg); border-right: 4px solid var(--accent); }
.service-card-icon img { max-height: 120px; margin: 0 auto; }
.service-card-body h3 { font-size: 22px; margin-bottom: 10px; }
.service-card-body h3 a { color: var(--primary); }
.service-card-body h3 a:hover { color: var(--accent); }
.service-card-body p { color: var(--text-light); line-height: 1.8; margin-bottom: 16px; }

/* =============================================
   SERVICE DETAIL PAGE
   ============================================= */
.service-detail-section { padding: 70px 0; }
.service-detail-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: start;
}
.service-detail-content .service-tag {
  display: inline-block; background: rgba(91, 163, 245, 0.1); color: var(--accent);
  padding: 4px 14px; border-radius: 20px; font-size: 13px; font-weight: 600;
  margin-bottom: 12px;
}
.service-detail-content h2 { font-size: 32px; margin-bottom: 6px; }
.service-detail-content p { color: var(--text-light); line-height: 1.9; }
.service-detail-content h3 { font-size: 20px; margin: 20px 0 12px; }
.service-features-list { display: flex; flex-direction: column; gap: 10px; }
.service-features-list li {
  display: flex; align-items: center; gap: 10px;
  font-size: 15px; color: var(--text);
}
.service-features-list li i { color: var(--accent); flex-shrink: 0; }
.service-detail-image img { width: 100%; border-radius: var(--radius); box-shadow: var(--shadow); }

/* =============================================
   BLOG (LISTING PAGE)
   ============================================= */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.blog-card { border-radius: var(--radius); overflow: hidden; box-shadow: 0 4px 20px rgba(0,0,0,0.07); background: var(--white); transition: all var(--transition); }
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.blog-card-image { overflow: hidden; height: 210px; }
.blog-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.blog-card:hover .blog-card-image img { transform: scale(1.06); }
.blog-card-content { padding: 22px; }
.blog-cat-badge {
  display: inline-block; background: rgba(91, 163, 245, 0.1); color: var(--accent);
  padding: 3px 12px; border-radius: 20px; font-size: 12px; font-weight: 700;
  margin-bottom: 10px;
}
.blog-card-content h3 { font-size: 17px; line-height: 1.5; margin-bottom: 10px; }
.blog-card-content h3 a { color: var(--primary); }
.blog-card-content h3 a:hover { color: var(--accent); }
.blog-card-content p { font-size: 14px; color: var(--text-light); line-height: 1.7; margin-bottom: 16px; }
.blog-card-footer { 
  display: flex; align-items: center; justify-content: space-between; 
  padding-top: 15px; border-top: 1px solid var(--border); margin-top: 15px;
  flex-wrap: wrap; gap: 10px;
}
.blog-meta-item { font-size: 13px; color: var(--text-light); display: flex; align-items: center; gap: 6px; }
.blog-meta-item i { color: var(--accent); }
.blog-read-more { font-size: 14px; font-weight: 700; color: var(--accent); display: inline-flex; align-items: center; transition: all var(--transition); }
.blog-read-more:hover { color: var(--accent-dark); transform: translateX(-5px); }

/* =============================================
   SERVICES (MODERN ZIG-ZAG LAYOUT)
   ============================================= */
.service-row {
  display: flex; align-items: center; gap: 60px; margin-bottom: 100px;
}
.service-row.row-reverse { flex-direction: row-reverse; }
.service-content-col, .service-image-col { flex: 1; width: 50%; }

.service-premium-card {
  background: #fff; padding: 40px; border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.05); border: 1px solid #f0f0f0;
}
.service-card-icon-box {
  width: 60px; height: 60px; background: #ebf5ff; border-radius: 14px;
  display: flex; align-items: center; justify-content: center; margin-bottom: 25px;
}
.service-card-icon-box img { width: 32px; height: 32px; object-fit: contain; }
.service-card-icon-box i { font-size: 24px; color: var(--accent); }

.service-row-title { font-size: 2.2rem; margin-bottom: 20px; color: var(--primary); }
.service-row-desc { font-size: 1.05rem; line-height: 1.8; color: var(--text-light); margin-bottom: 25px; }

.service-features-check { list-style: none; padding: 0; margin: 0 0 30px; }
.service-features-check li { 
  display: flex; align-items: center; gap: 12px; margin-bottom: 12px;
  font-size: 15px; color: var(--text); font-weight: 500;
}
.service-features-check li i { color: var(--accent); font-size: 18px; }

.service-row-image-wrapper { 
  border-radius: 25px; overflow: hidden; box-shadow: 0 20px 50px rgba(0,0,0,0.1);
  transition: transform var(--transition);
}
.service-row-image-wrapper:hover { transform: translateY(-10px); }
.service-row-main-img { width: 100%; height: 450px; object-fit: cover; display: block; }

.btn-primary-outline {
  padding: 12px 25px; border: 2px solid var(--accent); color: var(--accent);
  background: transparent; font-weight: 700; border-radius: 30px;
}
.btn-primary-outline:hover { background: var(--accent); color: #fff; }

@media (max-width: 992px) {
  .service-row { flex-direction: column !important; gap: 40px; }
  .service-content-col, .service-image-col { width: 100%; }
  .service-row-main-img { height: 350px; }
  .service-row-title { font-size: 1.8rem; }
}

/* =============================================
   PORTFOLIO (LISTING PAGE)
   ============================================= */
.portfolio-filter-btn {
  padding: 9px 22px; border-radius: var(--radius-full);
  border: 2px solid var(--border); background: var(--white);
  font-family: var(--font); font-size: 15px; font-weight: 600;
  color: var(--primary); cursor: pointer; transition: all var(--transition);
}
.portfolio-filter-btn:hover,
.portfolio-filter-btn.active { background: var(--accent); border-color: var(--accent); color: var(--white); }

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.portfolio-item { border-radius: var(--radius); overflow: hidden; }
.portfolio-item-inner { position: relative; overflow: hidden; border-radius: var(--radius); }
.portfolio-item-inner img { width: 100%; height: 260px; object-fit: cover; transition: transform 0.5s ease; display: block; }
.portfolio-item-inner:hover img { transform: scale(1.08); }
.portfolio-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(24, 35, 51, 0.92) 0%, transparent 60%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 22px; opacity: 0; transition: opacity var(--transition);
}
.portfolio-item-inner:hover .portfolio-overlay { opacity: 1; }
.portfolio-overlay h4 { color: var(--white); font-size: 17px; margin-bottom: 4px; }
.portfolio-overlay p { color: rgba(255,255,255,0.75); font-size: 13px; margin: 0; }

/* =============================================
   REQUEST QUOTE / CONTACT FORMS
   ============================================= */
.section-subtitle { color: var(--text-light); font-size: 16px; max-width: 600px; margin: 8px auto 0; }

/* =============================================
   RESPONSIVE — MULTI-PAGE
   ============================================= */
@media (max-width: 1024px) {
  .about-values-grid { grid-template-columns: repeat(3, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .about-values-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .about-story-grid { grid-template-columns: 1fr; gap: 30px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .form-row { grid-template-columns: 1fr; }
  .service-detail-grid { grid-template-columns: 1fr; gap: 30px; }
  .service-detail-image { order: -1; }
  .services-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .blog-grid { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .service-card-full { grid-template-columns: 1fr; }
  .service-card-icon { display: none; }
}

@media (max-width: 540px) {
  .portfolio-grid { grid-template-columns: 1fr; }
  .cta-buttons { flex-direction: column; align-items: center; }
}

/* =============================================
   BLOG SINGLE PAGE
   ============================================= */
.blog-single-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 50px;
  align-items: start;
}

/* Article */
.article-featured-img {
  position: relative; border-radius: var(--radius); overflow: hidden; margin-bottom: 28px;
}
.article-featured-img img { width: 100%; max-height: 420px; object-fit: cover; }
.article-category-badge {
  position: absolute; top: 20px; right: 20px;
  background: var(--accent); color: var(--white);
  padding: 5px 16px; border-radius: 20px; font-size: 13px; font-weight: 700;
}
.article-meta {
  display: flex; flex-wrap: wrap; gap: 18px;
  color: var(--text-light); font-size: 14px; margin-bottom: 24px;
  padding-bottom: 20px; border-bottom: 2px solid var(--border);
}
.article-meta i { color: var(--accent); margin-left: 5px; }

.article-body { line-height: 2; color: var(--text); }
.article-body h2 {
  font-size: 22px; color: var(--primary); margin: 30px 0 12px;
  padding-right: 14px; border-right: 4px solid var(--accent);
}
.article-body p { margin-bottom: 18px; font-size: 16px; }
.article-body ul { padding-right: 22px; margin-bottom: 18px; list-style: disc; }
.article-body ul li { margin-bottom: 8px; color: var(--text-light); }
.article-body img { border-radius: var(--radius-sm); margin: 20px 0; }

.article-tags {
  display: flex; flex-wrap: wrap; gap: 8px; align-items: center;
  margin-top: 30px; padding-top: 20px; border-top: 2px solid var(--border);
}
.tags-label { font-weight: 700; color: var(--primary); font-size: 14px; }
.article-tag {
  background: var(--bg-light); color: var(--text-light);
  padding: 4px 14px; border-radius: 20px; font-size: 13px;
  border: 1px solid var(--border); transition: all var(--transition);
}
.article-tag:hover { background: var(--accent); color: var(--white); border-color: var(--accent); }

.article-share {
  display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
  margin-top: 20px; padding: 20px; background: var(--bg-light); border-radius: var(--radius-sm);
}
.share-label { font-weight: 700; color: var(--primary); font-size: 15px; white-space: nowrap; }
.share-buttons { display: flex; gap: 10px; }
.share-btn {
  width: 40px; height: 40px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 16px; transition: all var(--transition);
}
.share-btn:hover { transform: translateY(-2px) scale(1.08); }
.share-fb { background: #1877f2; }
.share-tw { background: #1da1f2; }
.share-wa { background: #25D366; }
.share-li { background: #0077b5; }

.article-nav {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px; margin-top: 30px;
  padding-top: 20px; border-top: 2px solid var(--border);
}
.article-nav-btn {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--primary); font-weight: 600; font-size: 15px;
  transition: color var(--transition);
}
.article-nav-btn:hover { color: var(--accent); }

/* Sidebar */
.blog-sidebar { position: sticky; top: 100px; }
.sidebar-widget {
  background: var(--white); border-radius: var(--radius);
  padding: 24px; margin-bottom: 24px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}
.widget-title {
  font-size: 18px; color: var(--primary); margin-bottom: 18px;
  padding-bottom: 10px; border-bottom: 2px solid var(--accent);
  display: inline-block;
}
.sidebar-search { display: flex; gap: 8px; }
.sidebar-search .form-input { flex: 1; padding: 10px 14px; }
.sidebar-search-btn {
  background: var(--accent); color: var(--white); border: none;
  border-radius: var(--radius-sm); padding: 0 14px; cursor: pointer;
  font-size: 16px; transition: background var(--transition);
}
.sidebar-search-btn:hover { background: var(--accent-dark); }

.sidebar-cats { display: flex; flex-direction: column; gap: 6px; }
.sidebar-cats li a {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 14px; border-radius: var(--radius-sm);
  color: var(--text); font-size: 15px; transition: all var(--transition);
  border: 1px solid transparent;
}
.sidebar-cats li a:hover { background: rgba(91, 163, 245, 0.06); color: var(--accent); border-bottom-color: var(--accent); }
.cat-count {
  background: var(--bg-light); color: var(--text-light);
  font-size: 12px; padding: 2px 8px; border-radius: 10px;
}

.recent-posts { display: flex; flex-direction: column; gap: 14px; }
.recent-post-item { display: flex; gap: 12px; align-items: flex-start; }
.recent-post-img { width: 70px; height: 60px; border-radius: var(--radius-sm); overflow: hidden; flex-shrink: 0; }
.recent-post-img img { width: 100%; height: 100%; object-fit: cover; }
.recent-post-info a { font-size: 14px; color: var(--primary); line-height: 1.4; display: block; margin-bottom: 4px; }
.recent-post-info a:hover { color: var(--accent); }
.recent-post-info span { font-size: 12px; color: var(--text-light); }

.sidebar-cta {  color: var(--white); text-align: center; }
.sidebar-cta h4 { color: var(--white); font-size: 18px; margin-bottom: 8px; }
.sidebar-cta p { color: rgba(255,255,255,0.8); font-size: 14px; margin-bottom: 16px; }

/* =============================================
   SERVICE SINGLE PAGE — INFO BOX + PROCESS
   ============================================= */
.service-info-box {
  background: var(--bg-light); border-radius: var(--radius);
  padding: 24px; margin-top: 24px;
}
.service-info-box h4 { font-size: 18px; color: var(--primary); margin-bottom: 16px; }
.service-info-box ul { display: flex; flex-direction: column; gap: 10px; }
.service-info-box li {
  display: flex; justify-content: space-between;
  border-bottom: 1px dashed var(--border); padding-bottom: 10px;
}
.info-label { font-weight: 600; color: var(--primary); font-size: 14px; }
.info-value { color: var(--text-light); font-size: 14px; }

.process-steps {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px;
}
.process-step {
  text-align: center; padding: 30px 20px;
  background: var(--white); border-radius: var(--radius);
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  position: relative; transition: all var(--transition);
}
.process-step:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.step-number {
  position: absolute; top: -16px; right: 50%; transform: translateX(50%);
  background: var(--accent); color: var(--white);
  width: 34px; height: 34px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 14px;
}
.step-icon {
  width: 70px; height: 70px; border-radius: 50%;
  background: rgba(91, 163, 245, 0.1); color: var(--accent);
  display: flex; align-items: center; justify-content: center;
  font-size: 30px; margin: 14px auto 18px;
  transition: all var(--transition);
}
.process-step:hover .step-icon { background: var(--accent); color: var(--white); }
.process-step h4 { font-size: 17px; margin-bottom: 8px; }
.process-step p { font-size: 14px; color: var(--text-light); margin: 0; line-height: 1.7; }

/* =============================================
   RESPONSIVE — SINGLE PAGES
   ============================================= */
@media (max-width: 1024px) {
  .blog-single-layout { grid-template-columns: 1fr; }
  .blog-sidebar { position: static; }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 1024px) {
  .blog-single-layout { grid-template-columns: 1fr; }
  .blog-sidebar { position: static; }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .process-steps { grid-template-columns: 1fr; }
  .article-nav { flex-direction: column; }
}

/* =============================================
   DESIGN ENHANCEMENTS
   ============================================= */

/* Smoother card shadows */
.service-card, .blog-card, .stat-card, .testimonial-card {
  transition: transform 0.3s cubic-bezier(.4,0,.2,1), box-shadow 0.3s cubic-bezier(.4,0,.2,1);
}

/* Gradient bottom border on featured cards */
.service-card:hover {
  border-bottom: 3px solid var(--accent);
}

/* Improved section headings */
.section-title h2 { font-size: clamp(24px, 4vw, 36px); }
.section-title .underline {
  background: linear-gradient(90deg, var(--accent), var(--primary));
  height: 4px; width: 60px; margin: 12px auto 0;
}

/* CTA banner — match home page CTA */
.cta-banner {
  background: linear-gradient(135deg, var(--accent) 0%, #5ba3f5 100%);
  position: relative; overflow: hidden;
  text-align: center;
  padding: 80px 0;
  color: var(--white);
}

.cta-banner h2 {
  color: var(--white);
  font-size: 36px;
  margin-bottom: 16px;
}

.cta-banner p {
  font-size: 19px;
  max-width: 600px;
  margin: 0 auto 32px;
  opacity: 0.9;
}
.cta-banner::before {
  content: '';
  position: absolute; top: -40%; left: 50%; transform: translateX(-50%);
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(91, 163, 245, 0.18) 0%, transparent 70%);
  pointer-events: none;
}

/* Section fade-in animation */
@keyframes fadeUp {
  from { opacity:0; transform: translateY(24px); }
  to   { opacity:1; transform: translateY(0); }
}
.section-title { animation: fadeUp 0.6s ease both; }

/* Improved btn-whatsapp */
.btn-whatsapp {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; border-radius: var(--radius-full);
  font-family: var(--font); font-size: 16px; font-weight: 600;
  background: #25D366; color: var(--white);
  transition: all var(--transition); text-decoration: none;
  border: 2px solid #25D366;
}
.btn-whatsapp:hover { background: #1dba59; border-color: #1dba59; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(37,211,102,0.35); }

/* Better form focus ring */
.form-input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(91, 163, 245, 0.12);
}

/* Page subheader enhanced */
.page-subheader {
  padding: 60px 0 50px;
  background: linear-gradient(135deg, var(--primary) 0%, #4e4794 100%);
  text-align: center; position: relative; overflow: hidden;
}
.page-subheader::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--accent), transparent, var(--accent));
}
.page-subheader-title {
  color: var(--white); font-size: clamp(28px, 5vw, 48px);
  font-weight: 800; margin-bottom: 12px;
}
.breadcrumbs { color: rgba(255,255,255,0.7); font-size: 15px; }
.breadcrumbs a { color: rgba(255,255,255,0.7); transition: color var(--transition); }
.breadcrumbs a:hover { color: var(--accent); }
.breadcrumbs span { color: var(--primary); font-weight: 600; }

/* Sidebar search refinement */
.sidebar-search { position: relative; }
.sidebar-search .form-input { padding-right: 40px; border-radius: 30px; border-color: #eee; }
.sidebar-search .form-input:focus { border-color: var(--accent); }
.sidebar-search .sidebar-search-btn { position: absolute; right: 10px; top: 50%; transform: translateY(-50%); background: none; color: #999; width: auto; height: auto; padding: 0; }
.sidebar-search .sidebar-search-btn:hover { color: var(--accent); background: none; }

/* Responsive Grid for Blog Listing */
@media (max-width: 1024px) {
  .blog-main-content .blog-grid { grid-template-columns: 1fr !important; }
}

@media (max-width: 768px) {
  .blog-single-layout { grid-template-columns: 1fr; gap: 30px; }
  .blog-main-content .blog-grid { grid-template-columns: 1fr !important; }
  body { padding-top: 70px; }
}

/* ── 1024px ────────────────────────── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }

  /* Hero */
  .hero-slide .slide-content { max-width: 80%; padding: 0 30px; }
  .hero-slide .slide-content p { font-size: 17px; }
}

/* ── 768px ─────────────────────────── */
@media (max-width: 768px) {

  /* Action bar — hide on mobile to save space */
  #Action_bar { display: none; }

  /* Header — compact */
  #Top_bar { 
    margin: 0; 
    width: 100%;
    height: 65px;
    border-radius: 0;
  }
  #Top_bar .nav-inner { height: 100%; padding: 0 14px; }
  #logo img { max-height: 42px; }

  /* Hide the CTA button in header on mobile */
  #Top_bar .header-cta { display: none; }

  /* Hamburger always visible */
  .responsive-menu-toggle { display: flex; }

  /* Desktop nav hidden */
  #menu { display: none; }

  /* Typography scale */
  h1 { font-size: 32px; }
  h2 { font-size: 26px; }
  h3 { font-size: 22px; }

  /* Section padding */
  .section { padding: 50px 0; }
  .section-sm { padding: 34px 0; }
  .container { padding: 0 16px; }

  /* Section title */
  .section-title { margin-bottom: 30px; }
  .section-title h2 { font-size: 24px; }

  /* Hero */
  .hero-slider { height: 400px; }
  .hero-slide .slide-content { padding: 0 16px; max-width: 100%; }
  .hero-slide .slide-content h1 { font-size: clamp(22px, 6vw, 32px); margin-bottom: 10px; }
  .hero-slide .slide-content p { font-size: 15px; margin-bottom: 20px; }
  .hero-slide .slide-content .btn { padding: 12px 24px; font-size: 15px; }
  .hero-arrow { width: 38px; height: 38px; font-size: 16px; }

  /* Stats grid */
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .stat-card { padding: 22px 16px; }
  .stat-number { font-size: 36px; }

  /* Services grid (homepage) */
  .services-grid { grid-template-columns: 1fr; max-width: 100%; }
  .service-card { padding: 24px 20px; }

  /* Why us  */
  .why-grid { grid-template-columns: 1fr; gap: 20px; }
  .why-item { flex-direction: row; align-items: flex-start; gap: 16px; }

  /* Testimonials */
  .testimonials-grid > div,
  .testimonials-track { grid-template-columns: 1fr !important; }

  /* Clients */
  .clients-inner img { height: 44px; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  #Footer { padding: 50px 0 0; }
  .footer-copy { flex-direction: column; align-items: center; text-align: center; gap: 8px; }
  .footer-copy nav { flex-wrap: wrap; justify-content: center; gap: 12px; }

  /* CTA banner */
  .cta-banner { padding: 50px 0; }
  .cta-buttons { flex-direction: column; align-items: center; gap: 14px; }
  .cta-content h2 { font-size: 24px; }

  /* Page subheader */
  .page-subheader { padding: 40px 0 34px; }
  .page-subheader-title { font-size: 26px; }
  .breadcrumbs { font-size: 13px; }

  /* About page */
  .about-story-grid { grid-template-columns: 1fr; gap: 28px; }
  .about-values-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr; gap: 30px; }
  .form-row { grid-template-columns: 1fr; }

  /* Services full listing */
  .services-grid-full { gap: 20px; }
  .service-card-full { grid-template-columns: 1fr; padding: 22px; gap: 16px; }
  .service-card-icon { display: none; }

  /* Service detail */
  .service-detail-section { padding: 40px 0; }
  .service-detail-grid { grid-template-columns: 1fr; gap: 24px; }
  .service-detail-image { order: -1; }

  /* Blog listing */
  .blog-grid { grid-template-columns: 1fr; gap: 20px; }

  /* Blog single */
  .blog-single-layout { grid-template-columns: 1fr; }
  .blog-sidebar { position: static; }
  .article-featured-img img { max-height: 240px; }
  .article-meta { gap: 10px; font-size: 13px; }
  .article-body h2 { font-size: 18px; }
  .article-body p { font-size: 15px; }

  /* Portfolio */
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .portfolio-item-inner img { height: 180px; }

  /* Grid utilities  */
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }

  /* Process steps */
  .process-steps { grid-template-columns: 1fr 1fr; gap: 24px; }

  /* Service info box */
  .service-info-box li { flex-direction: column; gap: 4px; }

  /* Floating buttons — smaller + tighter */
  .floating-buttons { bottom: 16px; left: 14px; gap: 10px; }
  .float-btn { width: 44px; height: 44px; font-size: 18px; }
}

/* ── 480px ─────────────────────────── */
@media (max-width: 480px) {
  .hero-slider { height: 350px; }
  .hero-slide .slide-content h1 { font-size: 20px; }
  .hero-slide .slide-content p { font-size: 14px; }
  .hero-slide .slide-content .btn { padding: 10px 18px; font-size: 14px; }
  .hero-arrow { display: none; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .stat-card { padding: 18px 12px; }
  .stat-number { font-size: 30px; }
  .stat-label { font-size: 13px; }

  .portfolio-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }

  .cta-content h2 { font-size: 20px; }
  .section-title h2 { font-size: 20px; }

  .page-subheader-title { font-size: 22px; }

  .btn { padding: 12px 22px; font-size: 14px; }
  .btn-whatsapp { padding: 12px 22px; font-size: 14px; }

  .blog-card-footer { flex-direction: column; align-items: flex-start; gap: 8px; }

  .share-buttons { flex-wrap: wrap; }

  /* Floating buttons even smaller on tiny screens */
  .float-btn { width: 40px; height: 40px; font-size: 17px; }
  .floating-buttons { bottom: 12px; left: 10px; gap: 8px; }

  /* Footer copy */
  .footer-copy nav { gap: 8px; font-size: 12px; }
}

/* ── 360px ─────────────────────────── */
@media (max-width: 360px) {
  .container { padding: 0 12px; }
  .hero-slide .slide-content h1 { font-size: 18px; }
  .hero-slider { height: 320px; }
  .service-card { padding: 18px 14px; }
  h1 { font-size: 26px; }
  h2 { font-size: 21px; }
}

/* =============================================
   SPLIT HERO SLIDER — devora.net style
   ============================================= */
.hero-split-slider {
  position: relative; background: #ffffff;
  overflow: hidden; min-height: 650px ; display: flex;
}
.hss-slide {
  display: none; width: 100%; min-height: 650px; align-items: stretch;
  background-size: cover; background-position: center; background-repeat: no-repeat;
  position: relative;
}
.hss-slide.active { display: flex; }

.hss-centered-container {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
}

.hss-content-middle {
  text-align: center;
  max-width: 800px;
  color: #fff;
  z-index: 2;
}

/* LEFT panel - deprecated */
.hss-left {
  display: none;
}
.hss-illustration {
  position: relative; z-index: 1; width: 88%; max-width: 440px;
  display: flex; align-items: center; justify-content: center;
  padding: 30px; animation: hssFloat 3.5s ease-in-out infinite;
}
.hss-illustration img {
  width: 100%; height: auto; max-height: 420px; object-fit: none;
  filter: drop-shadow(0 16px 40px rgba(0,0,0,0.28));
}
@keyframes hssFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* RIGHT panel - deprecated or updated for centered content if needed */
.hss-right {
  display: none;
}
.hss-label {
  display: inline-block; color: var(--accent); font-size: 22px;
  font-weight: 700; letter-spacing: 1px; margin-bottom: 12px;
}
.hss-label::before {
  content: ''; display: inline-block; width: 32px; height: 3px;
  background: var(--accent); vertical-align: middle; margin-left: 10px; border-radius: 2px;
}
.hss-content-middle h1 {
  font-size: clamp(32px, 5vw, 52px); color: #fff;
  font-weight: 800; line-height: 1.3; margin-bottom: 20px;
}
.hss-content-middle h1 span {
  display: block;
  font-size: clamp(22px, 4vw, 36px);
  color: #fff;
  margin-top: 12px;
  font-weight: 500;
}
.hss-content-middle p {
  font-size: clamp(16px, 2vw, 18px); color: rgba(255,255,255,0.9); line-height: 1.7;
  max-width: 680px; margin: 0 auto 30px;
}
.hss-content-middle .hss-actions {
  justify-content: center;
}
.hss-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* Hero action button */
.btn-hss {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 34px; border-radius: var(--radius-full);
  background: var(--accent); color: #fff; font-family: var(--font);
  font-size: 16px; font-weight: 700; text-decoration: none;
  border: 2px solid var(--accent); transition: all var(--transition);
  box-shadow: 0 4px 12px rgba(91, 163, 245, 0.2);
}
.btn-hss:hover { 
  background: var(--accent-dark); 
  border-color: var(--accent-dark);
  transform: translateY(-4px); 
  box-shadow: 0 10px 25px rgba(91, 163, 245, 0.35); 
}
.btn-hss i { font-size: 18px; }

/* Nav arrows */
.hss-nav { display: none; position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%); gap: 10px; z-index: 10; }
.hss-arrow {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--accent); color: #fff; border: none;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; cursor: pointer; transition: all var(--transition);
  box-shadow: 0 4px 12px rgba(91, 163, 245, 0.35);
}
.hss-arrow:hover { background: var(--accent-dark); transform: scale(1.08); }

/* Dots */
.hss-dots {
  display: none;
  position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
  gap: 8px; z-index: 10;
}
.hss-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: rgba(24, 35, 51, 0.2); border: none; cursor: pointer; transition: all var(--transition);
}
.hss-dot.active { background: var(--accent); transform: scale(1.3); }

/* Stat 3D icon images */
.stat-icon img { width: 70px; height: 70px; object-fit: contain; }

/* Mobile */
@media (max-width: 900px) { .hss-right { padding: 40px 30px; } }
@media (max-width: 768px) {
  .hero-split-slider { min-height: auto; }
  .hss-slide.active { flex-direction: column; }
  .hss-left { width: 100%; min-height: 240px; max-height: 270px; }
  .hss-illustration { width: 65%; padding: 16px; }
  .hss-illustration img { max-height: 220px; }
  .hss-right { padding: 28px 18px 72px; align-items: center; text-align: center; }
  .hss-right p { max-width: 100%; font-size: 13px; line-height: 1.7; margin-bottom: 18px; }
  .hss-right h1 { font-size: 22px; line-height: 1.4; margin-bottom: 12px; }
  .hss-label::before { display: none; }
  .hss-actions { justify-content: center; }
  .hss-nav { left: 50%; transform: translateX(-50%); bottom: 14px; }
  .hss-dots { display: none; }
}
@media (max-width: 480px) {
  .hss-left { min-height: 200px; max-height: 220px; }
  .hss-illustration img { max-height: 180px; }
  .hss-right h1 { font-size: 18px; }
  .btn-hss { padding: 10px 18px; font-size: 13px; }
}

/* Fix transparent image backgrounds in hero illustrations */
.hss-illustration { background: transparent; }
.hss-illustration img { background: transparent; mix-blend-mode: multiply; }

/* Conflict removed to allow floating navbar padding */

/* ── HSS Slide transition animations ── */
@keyframes hssSlideInRight {
  from { opacity: 0; transform: translateX(-60px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes hssSlideInLeft {
  from { opacity: 0; transform: translateX(60px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes hssPhotoIn {
  from { opacity: 0; transform: translateX(60px) scale(0.92); }
  to   { opacity: 1; transform: translateX(0) scale(1); }
}

.hss-slide.active .hss-right {
  animation: hssSlideInRight 0.65s cubic-bezier(0.4,0,0.2,1) both;
}
.hss-slide.active .hss-illustration {
  animation: hssPhotoIn 0.7s 0.1s cubic-bezier(0.4,0,0.2,1) both;
}
.hss-slide.active .hss-label {
  animation: hssSlideInRight 0.5s 0.15s ease both;
}
.hss-slide.active h1 {
  animation: hssSlideInRight 0.55s 0.2s ease both;
}
.hss-slide.active p {
  animation: hssSlideInRight 0.55s 0.3s ease both;
}
.hss-slide.active .hss-actions {
  animation: hssSlideInRight 0.55s 0.42s ease both;
}

/* Fade transition for slide switch */
.hss-slide {
  opacity: 0;
  transition: opacity 0.4s ease;
}
.hss-slide.active {
  opacity: 1;
}

/* ── Slide transition fix: use opacity + absolute positioning ── */
.hero-split-slider { position: relative; min-height: 600px; }
.hss-slide {
  position: absolute; inset: 0;
  display: flex;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.45s ease;
  min-height: 600px;
}
.hss-slide.active {
  position: relative;
  opacity: 1;
  pointer-events: auto;
}

/* =============================================
   MODERN CONTACT SECTION
   ============================================= */
.animated-contact-section { 
    background: #f8f9fe; 
    padding: 100px 0;
    position: relative; 
}
.contact-box { 
    display: flex; 
    flex-wrap: wrap; 
    background: #fff; 
    border-radius: 20px; 
    box-shadow: 0 15px 40px rgba(0,0,0,0.08); 
    overflow: hidden; 
}
.contact-info-side { 
    flex: 1; 
    min-width: 320px; 
    background: linear-gradient(135deg, var(--primary-dark) 0%, #1e293b 100%); 
    color: #fff; 
    padding: 60px 50px; 
    position: relative; 
    overflow: hidden; 
}
.contact-info-side::before { 
    content: ''; 
    position: absolute; 
    top: -50px; 
    right: -50px; 
    width: 250px; 
    height: 250px; 
    background: rgba(91, 163, 245, 0.1); 
    border-radius: 50%; 
}
.contact-info-side::after { 
    content: ''; 
    position: absolute; 
    bottom: -80px; 
    left: -80px; 
    width: 300px; 
    height: 300px; 
    background: rgba(255,255,255,0.05); 
    border-radius: 50%; 
}
.info-content { 
    position: relative; 
    z-index: 2; 
}
.info-content h2 { 
    color: #fff; 
    font-size: 32px; 
    margin-bottom: 15px; 
}
.info-content p { 
    color: rgba(255,255,255,0.8); 
    font-size: 16px; 
    margin-bottom: 50px; 
    line-height: 1.8;
}
.c-detail { 
    display: flex; 
    align-items: center; 
    gap: 18px; 
    margin-bottom: 30px; 
}
.c-detail i { 
    width: 55px; 
    height: 55px; 
    background: rgba(255,255,255,0.1); 
    border-radius: 50%; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    font-size: 22px; 
    color: var(--accent); 
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); 
}
.c-detail:hover i { 
    background: var(--accent); 
    color: #fff; 
    transform: scale(1.15) rotate(5deg); 
}
.c-detail-text span { 
    display: block; 
    font-size: 14px; 
    color: rgba(255,255,255,0.6); 
    margin-bottom: 4px; 
}
.c-detail-text a, .c-detail-text strong { 
    color: #fff; 
    font-size: 17px; 
    font-weight: 600; 
    text-decoration: none; 
    transition: color 0.3s ease;
}
.c-detail-text a:hover {
    color: var(--accent);
}
.contact-social-modern { 
    margin-top: 60px; 
    display: flex; 
    gap: 15px; 
}
.contact-social-modern a { 
    width: 45px; 
    height: 45px; 
    border-radius: 50%; 
    background: rgba(255,255,255,0.1); 
    color: #fff; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    font-size: 18px; 
    transition: all 0.3s ease; 
    text-decoration: none; 
}
.contact-social-modern a:hover { 
    background: var(--accent); 
    transform: translateY(-5px); 
    box-shadow: 0 10px 20px rgba(91, 163, 245, 0.3);
}
.contact-form-side { 
    flex: 1.5; 
    min-width: 320px; 
    padding: 60px; 
    background: #fff; 
}
.contact-form-side h3 { 
    font-size: 32px; 
    color: var(--primary); 
    margin-bottom: 15px; 
}
.contact-form-side p { 
    color: #666; 
    margin-bottom: 40px; 
    line-height: 1.8;
}
.modern-form .form-row { 
    display: flex; 
    gap: 20px; 
    margin-bottom: 20px; 
}
.modern-form .form-group { 
    width: 100%; 
    position: relative; 
}
.modern-input { 
    width: 100%; 
    background: #f4f6fa; 
    border: 2px solid transparent; 
    padding: 16px 20px; 
    border-radius: 12px; 
    font-family: var(--font); 
    font-size: 16px; 
    transition: all 0.3s ease; 
    color: #333; 
}
.modern-input:focus { 
    outline: none; 
    border-color: var(--accent); 
    background: #fff; 
    box-shadow: 0 5px 15px rgba(91, 163, 245, 0.1); 
}
.btn-modern { 
    background: var(--accent); 
    color: #fff; 
    border: none; 
    padding: 16px 36px; 
    border-radius: 12px; 
    font-size: 17px; 
    font-weight: 600; 
    cursor: pointer; 
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275); 
    display: inline-flex; 
    align-items: center; 
    justify-content: center; 
    font-family: var(--font); 
    box-shadow: 0 10px 20px rgba(91, 163, 245, 0.2); 
}
.btn-modern:hover { 
    background: var(--accent-dark); 
    transform: translateY(-4px); 
    box-shadow: 0 15px 25px rgba(91, 163, 245, 0.3); 
}
.btn-modern-wa {
    background: #ffffff; 
    color: var(--accent); 
    border: 2px solid var(--accent);
    text-decoration: none;
    padding: 14px 24px; 
    border-radius: 12px; 
    font-size: 17px; 
    font-weight: 600; 
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275); 
    display: inline-flex; 
    align-items: center; 
    font-family: var(--font); 
    box-shadow: 0 4px 12px rgba(91, 163, 245, 0.08); 
}
.btn-modern-wa:hover {
    background: var(--accent);
    transform: translateY(-4px); 
    box-shadow: 0 12px 24px rgba(91, 163, 245, 0.25);
    color: #ffffff;
}
@media (max-width: 991px) { 
    .modern-form .form-row { 
        flex-direction: column; 
        gap: 20px; 
    } 
    .contact-form-side, .contact-info-side { 
        padding: 40px 30px; 
    } 
    .contact-box {
        border-radius: 16px;
    }
}

/* =============================================
   FEATURES OVERVIEW
   ============================================= */
.features-overview {
    padding: 100px 0;
    background: #fdfdfd;
    position: relative;
    overflow: hidden;
}
.features-overview::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top center, rgba(0,0,0,0.02) 0%, transparent 70%);
    pointer-events: none;
}
.features-overview .section-title {
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}
.features-overview .sub-title {
    color: #5ba3f5;
    font-size: 15px;
    font-weight: 600;
    display: block;
    margin-bottom: 15px;
}
.features-overview h2 {
    font-size: 34px;
    color: #225ea3;
    line-height: 1.4;
    font-weight: 700;
}
.new-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
    z-index: 2;
}
.feature-card {
    background: #fff;
    border-radius: 20px;
    padding: 50px 25px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}
.feature-card h3 {
    font-size: 22px;
    color: #313136;
    margin-bottom: 40px;
    font-weight: 700;
}
.icon-blob {
    width: 65px;
    height: 65px;
    margin: 0 auto;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.icon-blob::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--blob-color);
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    animation: mutateBlob 6s ease-in-out infinite alternate;
    z-index: 1;
}
.icon-blob i {
    font-size: 28px;
    color: #161616;
    position: relative;
    z-index: 2;
}
.card-divider {
    width: 40px;
    height: 2px;
    background: #1e293b;
    margin: 35px auto;
}
.feature-card p {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
    margin: 0;
}
.features-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-top: 50px;
    position: relative;
    z-index: 2;
}
.btn-feature-contact {
    background: var(--accent);
    color: #fff;
    border: none;
    padding: 14px 40px;
    border-radius: 12px;
    font-size: 17px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
}
.btn-feature-contact:hover {
    background: var(--accent-dark);
    color: #fff;
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(91, 163, 245, 0.35);
}
.btn-feature-wa {
    background: #25D366;
    color: #fff;
    padding: 14px 28px;
    border-radius: 12px;
    font-size: 17px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
}
.btn-feature-wa:hover {
    background: #128c7e;
    color: #fff;
    transform: translateY(-3px);
}

@keyframes mutateBlob {
    0%   { border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%; }
    50%  { border-radius: 60% 40% 30% 70% / 50% 60% 50% 40%; }
    100% { border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%; }
}

@media (max-width: 991px) {
    .new-features-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 576px) {
    .new-features-grid { grid-template-columns: 1fr; }
}

/* =============================================
   FAQ SECTION
   ============================================= */
/* =============================================
   FAQ SECTION (Modern Split Layout)
   ============================================= */
.faq-section {
    padding: 100px 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.faq-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: flex-start;
}

.faq-left-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    height: 100%;
    min-height: 400px;
}

.faq-left-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.faq-left-image:hover img {
    transform: scale(1.03);
}

.faq-right-content {
    display: flex;
    flex-direction: column;
}

.faq-section-header {
    margin-bottom: 30px;
}

.faq-section-header h2 {
    font-size: 42px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 10px;
}

.faq-search-box {
    display: flex;
    align-items: center;
    background: #f8f9fa;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 12px 20px;
    margin-bottom: 30px;
    transition: all var(--transition);
}

.faq-search-box:focus-within {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(91, 163, 245, 0.1);
}

.faq-search-box i {
    color: #aaa;
    margin-left: 15px;
    font-size: 18px;
}

.faq-search-box input {
    border: none;
    background: none;
    outline: none;
    width: 100%;
    font-family: var(--font);
    font-size: 16px;
    color: var(--text);
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    transition: all var(--transition);
}

.faq-item:hover {
    border-color: var(--accent);
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.faq-item.active {
    background: rgba(91, 163, 245, 0.05);
    border-color: var(--accent);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font);
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
    text-align: right;
    transition: color 0.3s ease;
}

.faq-question .icon-toggle {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f1f5f9;
    border-radius: 6px;
    color: var(--accent);
    font-size: 14px;
    transition: all var(--transition);
    order: -1; /* Move to the right side in RTL, which is left visual */
    margin-left: 15px;
}

.faq-item.active .faq-question .icon-toggle {
    background: var(--accent);
    color: #fff;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, margin 0.4s ease;
}

.faq-answer-content {
    padding: 0 24px 20px 60px;
    color: var(--text-light);
    line-height: 1.8;
    font-size: 16px;
}

/* RTL Adjustments */
[direction="rtl"] .faq-question .icon-toggle {
    margin-left: 15px;
    margin-right: 0;
}

@media (max-width: 991px) {
    .faq-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .faq-left-image {
        min-height: 300px;
        order: -1;
    }
    .faq-section-header h2 {
        font-size: 32px;
    }
}

/* =============================================
   PAGINATION STYLING
   ============================================= */
.pagination-wrapper {
    margin-top: 50px;
    display: flex;
    justify-content: center;
}

.pagination-wrapper .pagination {
    display: flex;
    list-style: none;
    padding: 0;
    gap: 8px;
    align-items: center;
}

.pagination-wrapper .page-item .page-link {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 42px;
    padding: 0 15px;
    border-radius: 10px;
    background: #fff;
    color: #333;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 1px solid #eee;
    font-size: 15px;
}

.pagination-wrapper .page-item.active .page-link {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
    box-shadow: 0 4px 12px rgba(91, 163, 245, 0.3);
}

.pagination-wrapper .page-item:not(.active):hover .page-link {
    background: #f8fafc;
    border-color: var(--accent);
    color: var(--accent);
    transform: translateY(-2px);
}

.pagination-wrapper .page-item.disabled .page-link {
    opacity: 0.5;
    cursor: not-allowed;
    background: #f1f5f9;
}

/* Hide the "Showing X to Y of Z results" text */
.pagination-wrapper nav > div:first-child {
    display: none;
}

/* =============================================
   HOME PAGE – ARTICLES SECTION (مقالاتنا)
   ============================================= */
.home-articles-section {
    padding: 100px 0;
    background: #f8fafd;
    position: relative;
}
.home-articles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.home-article-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.06);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.home-article-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}
.home-article-img-link {
    display: block;
    text-decoration: none;
}
.home-article-img {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
}
.home-article-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.home-article-card:hover .home-article-img img {
    transform: scale(1.08);
}
.home-article-body {
    padding: 24px 28px 28px;
}
.home-article-cat {
    display: inline-block;
    background: rgba(91, 163, 245, 0.1);
    color: var(--accent);
    font-size: 13px;
    font-weight: 600;
    padding: 4px 14px;
    border-radius: 20px;
    margin-bottom: 12px;
}
.home-article-body h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
    line-height: 1.5;
}
.home-article-body h3 a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}
.home-article-body h3 a:hover {
    color: var(--accent);
}
.home-article-body > p {
    color: #666;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 18px;
}
.home-article-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 1px solid #f0f0f0;
    font-size: 13px;
    color: #888;
}
.home-article-footer i {
    margin-left: 5px;
    font-size: 12px;
}
.home-article-link {
    color: var(--accent);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 14px;
}
.home-article-link:hover {
    color: var(--accent-dark);
}

@media (max-width: 991px) {
    .home-articles-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 576px) {
    .home-articles-grid { grid-template-columns: 1fr; }
    .home-article-img { height: 180px; }
}


/* =============================================
   HOME PAGE – EASY CONTACT US (تواصل سريع)
   ============================================= */
.home-easy-contact {
    padding: 100px 0;
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    position: relative;
    overflow: hidden;
}
.home-easy-contact::before {
    content: '';
    position: absolute;
    top: -120px;
    left: -120px;
    width: 400px;
    height: 400px;
    background: rgba(91, 163, 245, 0.08);
    border-radius: 50%;
    pointer-events: none;
}
.home-easy-contact::after {
    content: '';
    position: absolute;
    bottom: -80px;
    right: -80px;
    width: 300px;
    height: 300px;
    background: rgba(91, 163, 245, 0.05);
    border-radius: 50%;
    pointer-events: none;
}
.easy-contact-inner {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}
.easy-contact-info {
    color: #fff;
}
.easy-contact-badges {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 30px;
}
.easy-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 30px;
    color: rgba(255,255,255,0.9);
    font-size: 14px;
    font-weight: 600;
    backdrop-filter: blur(4px);
}
.easy-badge i {
    color: var(--accent);
    font-size: 16px;
}
.easy-contact-form-wrap {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 24px;
    padding: 40px;
    backdrop-filter: blur(16px);
}
.easy-form-row {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
}
.easy-form-group {
    width: 100%;
    margin-bottom: 16px;
}
.easy-form-row .easy-form-group {
    margin-bottom: 0;
}
.easy-input {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 12px;
    background: rgba(255,255,255,0.07);
    color: #fff;
    font-family: var(--font);
    font-size: 15px;
    transition: all 0.3s ease;
}
.easy-input::placeholder {
    color: rgba(255,255,255,0.45);
}
.easy-input:focus {
    outline: none;
    border-color: var(--accent);
    background: rgba(255,255,255,0.1);
    box-shadow: 0 0 0 3px rgba(91, 163, 245, 0.15);
}
.easy-submit-btn {
    width: 100%;
    padding: 16px;
    background: var(--accent);
    color: #fff;
    border: none;
    border-radius: 12px;
    font-family: var(--font);
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(91, 163, 245, 0.25);
}
.easy-submit-btn:hover {
    background: var(--accent-dark);
    transform: translateY(-3px);
    box-shadow: 0 14px 30px rgba(91, 163, 245, 0.35);
}

@media (max-width: 991px) {
    .easy-contact-inner { grid-template-columns: 1fr; gap: 40px; }
    .easy-contact-form-wrap { padding: 30px 24px; }
}
@media (max-width: 576px) {
    .easy-form-row { flex-direction: column; gap: 0; }
    .easy-form-row .easy-form-group { margin-bottom: 16px; }
}

/* =============================================
   GLOBAL CTA HOVER EFFECTS FIX
   ============================================= */
.cta-buttons a, .sidebar-cta a {
    transition: all 0.3s ease !important;
}

/* Whatsapp (Gradient Button) Hover */
.cta-buttons a[href*="whatsapp.com"]:hover, 
.sidebar-cta a[href*="whatsapp.com"]:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 24px rgba(91, 163, 245, 0.4) !important;
}

/* Other Buttons (White with Blue text/border) Hover */
.cta-buttons a:not([href*="whatsapp.com"]):hover, 
.sidebar-cta a:not([href*="whatsapp.com"]):hover {
    background: var(--accent) !important;
    color: #ffffff !important;
}
