/* Global Styles */
:root {
  --primary-color: #0ea5e9;
  --secondary-color: #0284c7;
  --accent-color: #38bdf8;
  --text-dark: #0f172a;
  --text-light: #64748b;
  --bg-color: #f8fafc;
  --white: #ffffff;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.1);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1);

  --card-bg: #ffffff;
  --header-bg: rgba(255, 255, 255, 0.95);
  --border-color: #e2e8f0;
  --gradient-hero: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: "Cairo", sans-serif;
  background-color: var(--bg-color);
  color: var(--text-color);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.2;
  margin-bottom: 1rem;
  font-weight: 700;
}

.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  font-size: 1rem;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.btn-primary {
  background-color: var(--primary-color);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(14, 165, 233, 0.4);
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(14, 165, 233, 0.6);
}

.btn-outline {
  background-color: transparent;
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.btn-outline:hover {
  background-color: var(--primary-color);
  color: var(--white);
}

.btn-light {
  background-color: var(--white);
  color: var(--primary-color);
}

.btn-light:hover {
  background-color: var(--bg-color);
  transform: scale(1.05);
}

/* Header */
.header {
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: var(--shadow-sm);
  padding: 1rem 0;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--text-color);
}

.logo span {
  color: var(--primary-color);
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links a {
  font-weight: 600;
  color: var(--text-color);
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  right: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: width 0.3s;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.mobile-menu-btn {
  display: none;
  font-size: 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-color);
}

/* Hero Section */
.hero {
  padding: 180px 0 100px;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-hero);
  z-index: -1;
}

.hero-bg::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 800px;
  height: 800px;
  background: radial-gradient(
    circle,
    rgba(14, 165, 233, 0.1) 0%,
    rgba(255, 255, 255, 0) 70%
  );
  border-radius: 50%;
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  color: var(--dark-bg);
}

.hero-content p {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 2.5rem;
  max-width: 500px;
}

.badge {
  background-color: rgba(14, 165, 233, 0.1);
  color: var(--primary-color);
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1rem;
  display: inline-block;
}

.hero-btns {
  display: flex;
  gap: 1rem;
}

/* Hero Image / Abstract UI */
.hero-image {
  position: relative;
  height: 400px;
}

.ui-card {
  background: var(--white);
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  position: absolute;
}

.main-card {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  padding: 20px;
  z-index: 1;
  display: flex;
  flex-direction: column;
}

.card-header {
  border-bottom: 1px solid #f1f5f9;
  padding-bottom: 15px;
  margin-bottom: 20px;
}

.dots {
  display: flex;
  gap: 6px;
}

.dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #cbd5e1;
}

.dots span:nth-child(1) {
  background-color: #ef4444;
}
.dots span:nth-child(2) {
  background-color: #f59e0b;
}
.dots span:nth-child(3) {
  background-color: #22c55e;
}

.chart-placeholder {
  display: flex;
  align-items: flex-end;
  justify-content: space-around;
  height: 150px;
  margin-bottom: 20px;
}

.bar {
  width: 40px;
  background: linear-gradient(
    to top,
    var(--primary-color),
    var(--accent-color)
  );
  border-radius: 8px 8px 0 0;
  opacity: 0.8;
}

.info-row {
  margin-top: auto;
}

.line {
  height: 12px;
  background-color: #f1f5f9;
  border-radius: 6px;
  margin-bottom: 10px;
  width: 100%;
}

.line.short {
  width: 60%;
}

.floating-card {
  padding: 15px 25px;
  display: flex;
  align-items: center;
  gap: 15px;
  z-index: 2;
  animation: float 6s ease-in-out infinite;
}

.floating-card i {
  font-size: 1.5rem;
  color: var(--primary-color);
}

.floating-card span {
  font-weight: 700;
  color: var(--text-color);
}

.card-1 {
  top: 10%;
  right: -20px;
  animation-delay: 0s;
}

.card-2 {
  bottom: 10%;
  left: -20px;
  animation-delay: 3s;
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(0px);
  }
}

/* Features Section */
.features {
  padding: 100px 0;
  background-color: var(--white);
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  font-size: 2.5rem;
  color: var(--dark-bg);
}

.section-header p {
  color: var(--text-light);
  font-size: 1.1rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.feature-card {
    background: var(--bg-color);
    padding: 30px;
    border-radius: 16px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    display: block;
    color: inherit;
    text-decoration: none;
}

.feature-card:hover {
  background: var(--white);
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(14, 165, 233, 0.1);
}

.icon-box {
  width: 60px;
  height: 60px;
  background-color: rgba(14, 165, 233, 0.1);
  color: var(--primary-color);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}

.feature-card:hover .icon-box {
  background-color: var(--primary-color);
  color: var(--white);
  transform: rotateY(180deg);
}

.feature-card h3 {
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.feature-card ul {
  list-style: none;
}

.feature-card ul li {
  padding-right: 20px;
  position: relative;
  margin-bottom: 0.5rem;
  color: var(--text-light);
  font-size: 0.95rem;
}

.feature-card ul li::before {
  content: "✓";
  position: absolute;
  right: 0;
  color: var(--primary-color);
  font-weight: bold;
}

/* CTA Section */
/* Professional CTA Section */
.cta {
    background: linear-gradient(135deg, #0284c7 0%, #0ea5e9 100%);
    padding: 100px 0;
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
    isolation: isolate; /* Create new stacking context */
}

/* Background Pattern Animation */
.cta::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    top: -50%;
    left: -50%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 60%);
    opacity: 0.6;
    animation: rotatePulse 15s linear infinite;
    z-index: -1;
}

.cta::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-image: 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.05'%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");
    z-index: -1;
}

@keyframes rotatePulse {
    0% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(180deg) scale(1.1); }
    100% { transform: rotate(360deg) scale(1); }
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    background: rgba(255, 255, 255, 0.1); /* Glassmorphism */
    padding: 50px;
    border-radius: 24px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.cta h2 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.cta p {
    margin-bottom: 3rem;
    font-size: 1.25rem;
    opacity: 0.95;
    line-height: 1.6;
    font-weight: 500;
}

.cta .btn {
    padding: 18px 45px;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: var(--white);
    color: var(--primary-color);
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.cta .btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 15px rgba(0,0,0,0.2);
    background: #f8fafc;
}

/* Footer */
.footer {
  background-color: var(--dark-bg);
  color: #94a3b8;
  padding: 80px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 4rem;
  margin-bottom: 3rem;
}

.footer h3 {
  color: var(--white);
  margin-bottom: 1.5rem;
}

.footer-col ul li {
  margin-bottom: 0.8rem;
}

.footer-col ul li a:hover {
  color: var(--primary-color);
  padding-right: 5px;
}

.contact-info li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-info i {
  color: var(--primary-color);
  width: 20px;
}

.social-links {
  margin-top: 1.5rem;
  display: flex;
  gap: 15px;
}

.social-links a {
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--white);
  transition: all 0.3s ease;
}

.social-links a:hover {
  background-color: var(--primary-color);
  transform: scale(1.1);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
  font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 992px) {
  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-btns {
    justify-content: center;
  }

  .hero-image {
    margin-top: 3rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links,
  .header-actions .btn {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
  }

  /* Mobile Menu Active State would go here in JS toggle */

  .hero-content h1 {
    font-size: 2.5rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* Inner Pages Styles */
.page-header {
    margin-top: 80px; /* offset for fixed header */
    background: var(--gradient-hero);
    padding: 60px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header h1 {
    font-size: 2.5rem;
    color: var(--dark-bg);
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 10px;
    color: var(--text-light);
    font-size: 0.9rem;
    position: relative;
    z-index: 1;
}

.breadcrumb a {
    color: var(--primary-color);
}

.breadcrumb span {
    color: #cbd5e1;
}

.content-section {
    padding: 80px 0;
    background-color: var(--white);
    min-height: 60vh;
}

.policy-content {
    max-width: 900px;
    margin: 0 auto;
    background: var(--white);
}

.policy-content h2 {
    color: var(--primary-dark);
    margin-top: 2.5rem;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    border-bottom: 2px solid #f1f5f9;
    padding-bottom: 10px;
}

.policy-content h3 {
    color: var(--dark-bg);
    margin-top: 2rem;
    font-size: 1.4rem;
}

.policy-content ul {
    list-style: none;
    margin-bottom: 2rem;
    padding-right: 1.5rem;
}

.policy-content ul li {
    margin-bottom: 1rem;
    position: relative;
    padding-right: 25px;
}

.policy-content ul li::before {
    content: '•';
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.5rem;
    position: absolute;
    right: -15px;
    top: -5px;
}

.policy-content p {
    margin-bottom: 1.5rem;
}

/* Contact Page Styles */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    margin-top: 2rem;
}

.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-card {
    background: var(--bg-color);
    padding: 25px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    background: var(--white);
}

.info-card i {
    width: 50px;
    height: 50px;
    background: rgba(14, 165, 233, 0.1);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.info-card h4 {
    margin-bottom: 0.2rem;
    font-size: 1.1rem;
}

.info-card p, .info-card a {
    color: var(--text-light);
    font-size: 0.95rem;
}

.contact-form-box {
    background: var(--white);
    padding: 40px;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
}

.contact-form-box h2 {
    margin-bottom: 2rem;
    color: var(--dark-bg);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-size: 0.95rem;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.1);
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.error-message {
    color: #ef4444;
    font-size: 0.85rem;
    margin-top: 5px;
    display: none;
}

.form-control.error {
    border-color: #ef4444;
    background-color: #fef2f2;
}

.form-control.success {
    border-color: #22c55e;
}

/* About Page Styles */
/* About Page Styles - Professional Redesign */
.about-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    margin-bottom: 6rem;
    position: relative;
}

.about-text .badge {
    margin-bottom: 1.5rem;
}

.about-text h2 {
    font-size: 2.5rem;
    color: var(--dark-bg);
    margin-bottom: 1.5rem;
    line-height: 1.3;
    font-weight: 700;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.about-image {
    position: relative;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    background: var(--white);
    padding: 10px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 6rem;
    text-align: center;
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    position: relative;
    z-index: 2;
}

.stat-item {
    padding: 20px;
}

.stat-item h3 {
    font-size: 3rem;
    color: var(--primary-color);
    margin: 10px 0;
    font-weight: 800;
}

.stat-item p {
    color: var(--text-light);
    font-size: 1.1rem;
    font-weight: 500;
}

/* Why Choose Us - Enhanced */
.why-us-section {
    padding: 100px 0;
    background-color: #f8fafc;
    position: relative;
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.why-us-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: none;
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.why-us-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.why-us-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(14, 165, 233, 0.2);
}

.why-us-card:hover::before {
    opacity: 1;
}

.why-us-card:hover h3,
.why-us-card:hover p,
.why-us-card:hover .icon {
    color: var(--white);
}

.why-us-card .icon {
    width: 60px;
    height: 60px;
    background-color: rgba(14, 165, 233, 0.1);
    color: var(--primary-color);
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.why-us-card:hover .icon {
    background-color: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.why-us-card h3 {
    margin-bottom: 1rem;
    color: var(--dark-bg);
    font-size: 1.3rem;
    transition: color 0.3s ease;
}

.why-us-card p {
    color: var(--text-light);
    line-height: 1.7;
    transition: color 0.3s ease;
}

/* FAQ Styles - Modern */
.faq-section {
    padding: 100px 0;
    background-color: var(--white);
}

.faq-container {
    max-width: 900px;
    margin: 3rem auto 0;
}

.faq-item {
    background: var(--white);
    margin-bottom: 1.5rem;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    box-shadow: none;
    transition: all 0.3s ease;
}

.faq-item.active {
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
    transform: scale(1.02);
}

.faq-question {
    padding: 25px 30px;
    width: 100%;
    text-align: right;
    border: none;
    background: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: inherit;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--dark-bg);
    transition: all 0.3s ease;
}

.faq-question i {
    width: 30px;
    height: 30px;
    background: #f1f5f9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    color: var(--text-light);
    transition: all 0.3s ease;
}

.faq-item.active .faq-question {
    color: var(--primary-color);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
    background: var(--primary-color);
    color: var(--white);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0, 1, 0, 1);
    padding: 0 30px;
    color: var(--text-light);
    line-height: 1.8;
}

.faq-item.active .faq-answer {
    padding: 0 30px 30px;
}

@media (max-width: 992px) {
    .contact-grid, .about-section {
        grid-template-columns: 1fr;
    }
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .service-layout {
        grid-template-columns: 1fr;
    }
    .service-sidebar {
        position: static;
        margin-bottom: 2rem;
    }
}

/* Service Detail Page Styles */
.service-layout {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 3rem;
    align-items: start;
}

.service-sidebar {
    background: var(--white);
    padding: 20px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    position: sticky;
    top: 100px;
}

.service-sidebar h3 {
    padding-bottom: 15px;
    border-bottom: 1px solid #e2e8f0;
    margin-bottom: 15px;
    color: var(--dark-bg);
}

.service-nav {
    list-style: none;
}

.service-nav li {
    margin-bottom: 5px;
}

.service-nav a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    border-radius: 8px;
    color: var(--text-light);
    transition: all 0.3s ease;
    font-weight: 600;
}

.service-nav a:hover,
.service-nav a.active {
    background-color: rgba(14, 165, 233, 0.1);
    color: var(--primary-color);
}

.service-nav a i {
    width: 25px;
}

.service-content-wrapper {
    background: var(--white);
    border-radius: 16px;
    padding: 40px;
    box-shadow: var(--shadow-md);
}

.service-main-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--white);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 10px 20px rgba(14, 165, 233, 0.3);
}

.service-content-wrapper h2 {
    font-size: 2.2rem;
    color: var(--dark-bg);
    margin-bottom: 1.5rem;
}

.service-description {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.service-features-list h3 {
    margin-bottom: 1.5rem;
    color: var(--dark-bg);
}

.service-features-list ul {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 15px;
    transition: all 0.3s ease;
}

.service-features-list li:hover {
    transform: translateX(-5px);
    background: #f1f5f9;
}

.service-features-list li i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.detailed-info {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #e2e8f0;
}

/* Professional Testimonials Section */
.testimonials-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(#e2e8f0 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.3;
    pointer-events: none;
}

.testimonials-slider {
    position: relative;
    max-width: 1100px;
    margin: 4rem auto 0;
    z-index: 2;
}

.testimonials-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    gap: 30px;
    cursor: grab; /* Enable grab cursor */
    touch-action: pan-y; /* Allow vertical scroll but handle horizontal in JS */
}

.testimonials-track:active {
    cursor: grabbing; /* Show grabbing when active */
}

.testimonial-slide {
    min-width: 100%;
    /* Keep 100% for mobile, override for desktop */
}

@media (min-width: 768px) {
    .testimonial-slide {
        min-width: calc(50% - 15px); /* Account for gap */
    }
}

.testimonial-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 24px;
    box-shadow: 0 10px 40px -10px rgba(0,0,0,0.08); /* Premium Shadow */
    border: 1px solid rgba(255,255,255,0.5);
    height: 100%;
    position: relative;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px -10px rgba(14, 165, 233, 0.15);
    border-color: rgba(14, 165, 233, 0.3);
}

.testimonial-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 24px 24px 0 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.testimonial-card:hover::after {
    opacity: 1;
}

.quote-icon {
    font-size: 3.5rem;
    color: var(--primary-color);
    opacity: 0.1;
    position: absolute;
    top: 25px;
    left: 25px;
    pointer-events: none;
}

.testimonial-text {
    font-size: 1.05rem;
    color: #475569;
    line-height: 1.8;
    margin: 1.5rem 0 2rem;
    font-style: normal;
    font-weight: 500;
    position: relative;
    z-index: 1;
}

.client-info {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    border-top: 1px solid #f1f5f9;
    padding-top: 1.5rem;
}

.client-avatar {
    width: 55px;
    height: 55px;
    background: #f1f5f9;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.client-details h4 {
    color: #1e293b;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.client-details span {
    color: var(--primary-color);
    font-size: 0.85rem;
    font-weight: 600;
}

.slider-dots {
    margin-top: 3rem;
}

.dot {
    width: 10px;
    height: 10px;
    background-color: #cbd5e1;
    opacity: 0.5;
    transition: all 0.3s ease;
}

.dot.active {
    background-color: var(--primary-color);
    width: 30px;
    border-radius: 100px;
    opacity: 1;
}

/* Slider Navigation Buttons */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--white);
    border: 1px solid rgba(0,0,0,0.05); /* Subtle border */
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    color: var(--primary-color);
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10;
    opacity: 0; /* Hidden by default, shown on hover */
    visibility: hidden;
}

.testimonials-slider:hover .slider-btn {
    opacity: 1;
    visibility: visible;
}

.slider-btn:hover {
    background: var(--primary-color);
    color: var(--white);
    box-shadow: 0 8px 16px rgba(14, 165, 233, 0.25);
    transform: translateY(-50%) scale(1.1);
}

.slider-btn:active {
    transform: translateY(-50%) scale(0.95);
}

.prev-btn {
    right: -25px; /* RTL: Start is Right */
}

.next-btn {
    left: -25px; /* RTL: End is Left */
}

@media (max-width: 768px) {
    .slider-btn {
        display: none; /* Hide buttons on mobile, use swipe/dots */
    }
}

/* Professional Footer Redesign */
.footer {
    background-color: #0f172a; /* Slate 900 */
    color: #94a3b8;
    padding: 80px 0 0;
    font-family: 'Cairo', sans-serif;
    position: relative;
    border-top: 5px solid var(--primary-color);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 0.8fr 1.2fr 1.2fr;
    gap: 2rem;
    margin-bottom: 4rem;
}

.footer-col h3 {
    color: #ffffff;
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 40px;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 2px;
}

.footer-col p {
    line-height: 1.8;
    margin-bottom: 2rem;
    color: #cbd5e1;
    font-size: 0.95rem;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.05);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.05);
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
    border-color: var(--primary-color);
    box-shadow: 0 5px 15px rgba(14, 165, 233, 0.3);
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 14px;
}

.footer-col ul li a {
    color: #cbd5e1;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
}

.footer-col ul li a:hover {
    color: #ffffff;
    transform: translateX(-5px);
    padding-right: 5px;
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.contact-info li i {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-top: 5px;
}

.contact-info li span, 
.contact-info li a {
    color: #cbd5e1;
    line-height: 1.6;
}

.footer-bottom {
    background-color: #020617; /* Slate 950 */
    padding: 25px 0;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-bottom p {
    color: #64748b;
    font-size: 0.9rem;
    margin: 0;
}

@media (max-width: 991px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

/* About Page Specific Styles */
.about-ui-card {
    position: relative;
    height: 400px;
    width: 100%;
    transform: none;
}

/* Mobile Responsiveness (Phones) */
@media (max-width: 576px) {
    /* General Typography */
    h1 { font-size: 2rem !important; }
    h2 { font-size: 1.75rem !important; }
    
    .page-header {
        padding: 40px 0;
        margin-top: 60px; /* Adjust for smaller fixed header if necessary */
    }

    .page-header h1 {
        font-size: 2rem;
    }

    /* About Section */
    .about-section {
        gap: 3rem;
        margin-bottom: 3rem;
    }

    .about-text h2 {
        font-size: 1.8rem;
    }

    .about-ui-card {
        height: 300px; /* Reduce height on mobile */
    }

    /* Stats Grid */
    .stats-grid {
        grid-template-columns: 1fr; /* Single column */
        gap: 1.5rem;
        margin-top: 3rem;
        padding: 25px;
    }

    .stat-item h3 {
        font-size: 2.5rem;
    }

    /* Why Us Section */
    .why-us-section {
        padding: 60px 0;
    }

    .why-us-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-top: 3rem;
    }

    .why-us-card {
        padding: 30px 20px;
    }

    /* FAQ Section */
    .faq-section {
        padding: 60px 0;
    }
    
    .faq-question {
        padding: 20px;
        font-size: 1rem;
    }

    /* Footer */
    .footer {
        padding-top: 60px;
    }

    .footer-col h3 {
        font-size: 1.25rem;
    }
}
