/* Hero Section Styles */
body,
html {
  margin: 0;
  padding: 0;
  font-family: "Cairo", sans-serif; /* Arabic-friendly font */
  direction: rtl; /* Right-to-left for Arabic */
  scroll-behavior: smooth;
 
}

.hero-section {
  width: 100%;
  position: relative; /* For positioning content on top of the image */
  overflow: hidden;
}

.hero-section picture,
.hero-section img {
  width: 100%;
  height: auto;
  display: block;
}

.hero-content {
  position: absolute;
  top: 50%;
  right: 10%; /* Adjust as needed for desktop */
  transform: translateY(-50%);
  color: #333; /* Adjust text color based on image, may need to be white or dark */
  text-align: right;
}

/* ✅ Reduce hero height only on desktop screens */
@media (min-width: 992px) {
  .hero-section {
    height: 60vh; /* You can change to 50vh or 70vh as needed */
  }

  .hero-section picture,
  .hero-section img {
    height: 100%;
    object-fit: cover;
  }
}

.logo {
  margin-bottom: 20px;
}

.logo-style {
  font-size: 24px; /* Adjust as needed */
  font-weight: bold;
  color: #e7a93c; /* Gold-like color from image */
}

.logo-clinic {
  font-size: 24px; /* Adjust as needed */
  font-weight: bold;
  color: #fab12f; /* Teal-like color from image */
}

.logo-arabic {
  font-size: 18px; /* Adjust as needed */
  color: #fab12f; /* Teal-like color from image */
}

.hero-text p {
  font-size: 36px; /* Adjust as needed */
  font-weight: bold;
  margin: 5px 0;
  line-height: 1.2;
  color: #fab12f; /* Dark teal from image */
}

/* Mobile specific styles */
@media (max-width: 768px) {
  .hero-content {
    top: auto; /* Reset top positioning */
    bottom: 15%; /* Position from bottom for mobile */
    right: 50%;
    transform: translateX(50%);
    width: 80%; /* Adjust width for mobile */
    text-align: center; /* Center text on mobile */
  }

  .logo {
    margin-bottom: 15px;
  }

  .logo-style,
  .logo-clinic {
    font-size: 20px; /* Smaller font for mobile */
  }

  .logo-arabic {
    font-size: 16px; /* Smaller font for mobile */
  }

  .hero-text p {
    font-size: 28px; /* Smaller font for mobile */
  }
}

/* Adjustments for very small screens if necessary */
@media (max-width: 480px) {
  .hero-text p {
    font-size: 22px;
  }
  .logo-style,
  .logo-clinic {
    font-size: 18px;
  }
  .logo-arabic {
    font-size: 14px;
  }
}


/* ------------------------------------------------------------------
   NAVBAR — CLEAN, OPTIMIZED & FULLY STICKY
-------------------------------------------------------------------*/
.main-navbar {
  width: 100%;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  
  padding: 12px 0;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);

  position: sticky !important;
  top: 0;
  z-index: 9999;

  font-family: 'Cairo', sans-serif;
  animation: fadeDown 0.6s ease;
}

/* Fade animation */
@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Navbar layout */
.nav-container {
 max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
      display: flex;
      justify-content: space-between;
      align-items: center;
}


/* Links */
.nav-links {
  list-style: none;
  display: flex;
  gap: 30px;
  margin: 0;
}

/* Text styling */
.nav-links li a {
  text-decoration: none;
  color: #d88b1a;
  font-size: 18px;
  font-weight: 700;
  position: relative;
  padding-bottom: 4px;
}

/* Hover underline animation */
.nav-links li a::after {
  content: "";
  width: 0%;
  height: 2px;
  background: #d88b1a; /* Brand color */
  position: absolute;
  bottom: 0;
  right: 0;
  transition: 0.3s;
}

.nav-links li a:hover::after {
  width: 100%;
}

.nav-links li a:hover {
  color: #ec8723;
}

/* ------------------------------------------------------------------
   MOBILE MENU
-------------------------------------------------------------------*/
.nav-toggle {
  display: none;
  font-size: 30px;
  cursor: pointer;
}

@media (max-width: 768px) {
  .nav-links {
    position: absolute;
    top: 70px;
    right: 0;
    background: white;
    width: 100%;
    flex-direction: column;
    text-align: center;
    display: none;
    padding: 20px 0;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
  }

  .nav-links.show {
    display: flex;
  }

  .nav-toggle {
    display: block;
  }
}


/* Services Section - Updated for Web/Mobile Split */
.services-section {
  padding: 40px 20px;
  background-color: #fff;
  direction: rtl;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Web View Layout */
.web-layout {
  display: flex;
  align-items: center;
  gap: 60px;
}

.text-content {
  flex: 1;
  text-align: right;
}

.logo-container {
  display: flex;
  justify-content: center; /* Centers horizontally */
  align-items: center; /* Centers vertically if container has height */
  margin: 30px auto 10px;
  margin-top: 10px; /* Centers container and adds top/bottom spacing */
}

.logo-container img {
  max-width: 220px; /* ✅ Increase to desired size */
  height: auto;
  display: block;
  
}

/* Text Styling */
.text-content h1 {
  font-size: 2.5rem;
  color: #fab12f;
  margin-bottom: 15px;
}

.text-content h2 {
  font-size: 1.8rem;
  color: #fab12f;
  margin-bottom: 25px;
}

.text-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #333;
  margin-bottom: 30px;
}

/* CTA Button */
.cta-button {
  background-color: #fab12f;
  color: white;
  border: none;
  padding: 15px 40px;
  font-size: 1.2rem;
  border-radius: 30px;
  cursor: pointer;
  font-family: "Cairo", sans-serif;
  transition: background-color 0.3s;
}

/* Mobile View Overrides */
@media (max-width: 768px) {
  .web-layout {
    flex-direction: column-reverse;
    gap: 30px;
  }

  .text-content {
    text-align: center;
  }

  /* Web/Desktop view */
  .logo-img {
    max-width: 280px; /* bigger logo */
    height: auto;
  }

  /* Mobile view */
  @media (max-width: 768px) {
    .logo-img {
      max-width: 180px; /* optional small logo on mobile */
    }
  }

  .text-content h1 {
    font-size: 2rem;
  }

  .text-content h2 {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .services-section {
    padding: 40px 15px;
  }

  .text-content h1 {
    font-size: 1.8rem;
  }

  .text-content h2 {
    font-size: 1.3rem;
  }

  .cta-button {
    padding: 12px 30px;
    font-size: 1rem;
  }
}
/* Booking Section */
.booking-section {
  padding: 60px 0;
  background-color: #f8fafc;
  direction: rtl;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.booking-content {
  display: flex;
  gap: 30px;
  align-items: center; /* This ensures vertical alignment */
}

.booking-image-wrapper {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 20px;
}

.booking-image-wrapper img {
  width: 75%;
  height: 100%;
  object-fit: contain;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08); /* Soft subtle shadow */
  border: 1px solid rgba(250, 177, 47, 0.2); /* Very light golden hint */
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); /* Smooth easing */
}

.booking-image-wrapper img:hover {
  transform: translateY(-8px) scale(1.02); /* Lift + tiny zoom */
  box-shadow: 0 15px 35px rgba(250, 177, 47, 0.15); /* Subtle golden glow */
  border-color: rgba(250, 177, 47, 0.4); /* Border gets slightly more golden */
}


.booking-image {
  width: 95%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 77, 74, 0.1);
  object-fit: cover;
  max-height: 400px; /* Reduced height */
}

.booking-form-wrapper {
  flex: 1;
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 77, 74, 0.08);
  height: fit-content; /* Make form height fit its content */
}

.booking-form-wrapper,
.doctors-section .doctor-card img {
  box-shadow: 0 8px 30px rgba(0,0,0,0.06);
}


h1 {
  color: #fab12f;
  font-size: 1.8rem; /* Slightly smaller */
  margin-bottom: 15px;
}

.form-description {
  color: #5a6d78;
  line-height: 1.6;
  margin-bottom: 20px;
  font-size: 0.95rem;
}

.booking-form {
  display: flex;
  flex-direction: column;
  gap: 20px; /* Reduced gap */
}

.form-group label {
  display: block;
  margin-bottom: 6px; /* Reduced */
  color: #fab12f;
  font-weight: 600;
  font-size: 0.9rem;
}

.form-group input,
.form-group select {
  width: 100% !important; /* Force full width to override inline styles */
  padding: 12px 15px;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  font-family: "Cairo", sans-serif;
  transition: all 0.3s;
  font-size: 0.9rem;
  box-sizing: border-box;
  background-color: white;
  appearance: none;
}

.form-group input:focus,
.form-group select:focus {
  border-color: #fab12f;
  outline: none;
  box-shadow: 0 0 0 3px rgba(80, 158, 154, 0.1);
}

.submit-btn {
  background: #fab12f;
  color: white;
  border: none;
  padding: 14px; /* Reduced padding */
  font-size: 1rem; /* Smaller font */
  border-radius: 8px;
  cursor: pointer;
  font-family: "Cairo", sans-serif;
  font-weight: 600;
  margin-top: 5px; /* Reduced margin */
  transition: all 0.3s;
}

.submit-btn:hover {
  background: #a4a4a4;
  transform: translateY(-2px);
}

/* Mobile View */
@media (max-width: 768px) {
  .booking-section {
    padding: 40px 0;
  }

  .booking-content {
    display: flex; /* make sure it's flex */
    flex-direction: column-reverse; /* ✅ form first, image second */
    gap: 30px;
    align-items: center;
  }

  .booking-image-wrapper {
    display: block;
    width: 100%;
    text-align: center;
    margin-top: 20px;
  }

  .booking-image-wrapper img {
    width: 100%;
    height: auto;
    border-radius: 12px;
  }

  .booking-form-wrapper {
    width: 100%;
    padding: 25px 20px;
    margin-top: 0;
  }

  h1 {
    font-size: 1.6rem;
  }
}

/* Doctors Section Styles */
.doctors-section {
  padding: 20px 0;
  background: #f9f9f9;
  direction: rtl;
}

/* Keep your container full width */
.doctors-section .container {
  max-width: 100%;
  padding: 0;
}

/* Title stays same */
.doctors-section .section-title {
  text-align: center;
  font-size: 2rem;
  color: #fab12f;
  margin-bottom: 40px;
  font-weight: 700;
}

/* Restore full-slider behavior */
.doctors-grid {
  display: flex;
  overflow-x: scroll;          /* Horizontal scroll */
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  gap: 20px;
  padding: 0 20px;
  cursor: grab;
  scroll-padding: 20px;
}

/* SHOW scrollbar on desktop */
.doctors-grid::-webkit-scrollbar {
  height: 10px;           /* make it visible */
}

.doctors-grid::-webkit-scrollbar-track {
  background: #eee;
  border-radius: 10px;
}

.doctors-grid::-webkit-scrollbar-thumb {
  background: #c8c8c8;
  border-radius: 10px;
}

.doctors-grid::-webkit-scrollbar-thumb:hover {
  background: #a5a5a5;
}
/* Card stays full-size (no cropping) */
.doctor-card {
  flex: 0 0 auto;
  width: 450px;     /* Keep true size */
  height: auto;     /* Let height adapt */
  border-radius: 20px;
  overflow: hidden;
  scroll-snap-align: start;
  position: relative;
  transition: transform 0.3s ease;
  padding: 0;       /* Remove padding so image fills card */
  background: #fff;
}

/* Optional hover effect */
.doctor-card:hover {
  transform: scale(1.03);
}

/* The wrapper must NOT crop */
.doctor-image-wrapper {
  width: 100%;
  height: auto;
}

/* IMPORTANT: No cropping at all */
.doctor-image {
  width: 100%;
  height: auto;           /* Keep true aspect ratio */
  object-fit: contain;    /* Show entire poster */
  display: block;
}

/* Prevent zoom cropping */
.doctor-card:hover .doctor-image {
  transform: none;        /* Disable zoom so text stays readable */
}

/* Info stays hidden */
.doctor-info {
  display: none;
}

.booking-btn {
  background: linear-gradient(135deg, #fab12f);
  color: white;
  border: none;
  padding: 12px 30px;
  border-radius: 50px;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: auto;
  align-self: center;
}

.booking-btn:hover {
  background: linear-gradient(135deg, #fab12f, #e84622);

  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(41, 128, 185, 0.3);
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .doctors-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }

  .doctor-card {
    height: 480px;
  }

  .doctor-image-wrapper {
    height: 320px;
  }
}

@media (max-width: 768px) {
  .doctors-section {
    overflow: hidden;
  }

  .doctors-grid {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 15px;
    padding: 10px 15px 20px;
    direction: ltr; /* fixes disappearing issue on mobile RTL */
  }

  .doctor-card {
    min-width: 90vw;
    height: 85vh; /* Increased height to use most of viewport */
    max-height: 900px; /* Prevents it from being too tall on very tall screens */
  }

  .doctor-card img {
    width: 150%;
    height: 150%;
    object-fit: contain;
    object-position: left;
    border-radius: initial;
  }

  .doctor-info {
    display: none !important;
  }

  /* Hide scrollbar on mobile */
  .doctors-grid::-webkit-scrollbar {
    display: none;
  }
}

@media (max-width: 480px) {
  .doctors-section .section-title {
    font-size: 1.6rem;
  }

  .doctor-card {
    min-width: 90vw;
    max-width: 90vw;
    height: 480px;
  }

  .doctor-image-wrapper {
    height: 320px;
  }

  .doctor-name {
    font-size: 1.2rem;
  }
}

/* Treatment Steps Section */
.treatment-steps .section-title {
  text-align: center;
  font-size: 2rem;
  color: #fab12f;
  margin-bottom: 40px;
  font-weight: 700;
  position: relative;
}

.treatment-steps .section-title::after {
  content: "";
  width: 100px;
  height: 4px;
  background: #fab12f;
  position: absolute;
  bottom: -12px;
  right: 50%;
  transform: translateX(50%);
  border-radius: 5px;
}


.treatment-steps {
  padding: 80px 0;
  background: linear-gradient(to left, #f5f9fc 0%, #e8f0f5 100%);
  direction: rtl;
}



.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.steps-header-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 40px;
}

.step {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.step:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 26px rgba(0,0,0,0.08);
}


.header-area {
  background: linear-gradient(to bottom, #ffffff, #f5f8fc);
}

.header-bg {
  background: linear-gradient(to bottom, #ffffff, #f6f9fc);
}


.section-title {
  color: #fab12f;
  font-size: 2.2rem;
  font-weight: 700;
  white-space: nowrap;
  margin-top: 95px;
}

.steps-wrapper {
  display: flex;
  flex-direction: column;
  gap: 15px;
  flex: 1;
}

.step {
  display: flex;
  align-items: center;
  background: white;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 77, 74, 0.08);
  position: relative;
}

.step::after {
  content: "";
  position: absolute;
  bottom: -8px;
  right: 5%;
  width: 90%;
  height: 1px;
  background: #e2e8f0;
}

.step:last-child::after {
  display: none;
}

.step-number {
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  margin-left: 20px;
  flex-shrink: 0;
}

.step-content h3 {
  color: #fab12f;
  font-size: 1.4rem;
  margin-bottom: 8px;
}

.step-content p {
  color: #fab12f;
  font-size: 1rem;
  line-height: 1.6;
}

/* Web View */
@media (min-width: 768px) {
  .steps-wrapper {
    flex-direction: row;
    gap: 20px;
  }

  .step {
    flex-direction: column;
    text-align: center;
    width: 22%;
    padding: 30px 15px;
  }

  .step::after {
    display: none;
  }

  .step-number {
    margin-left: 0;
    margin-bottom: 20px;
  }

  .step-content h3 {
    font-size: 1.3rem;
  }

  .step-content p {
    font-size: 0.95rem;
  }
}

/* Mobile View */
@media (max-width: 767px) {
  .treatment-steps {
    padding: 50px 0;
  }

  .steps-header-wrapper {
    flex-direction: column;
    gap: 30px;
  }

  .section-title {
    font-size: 1.8rem;
    white-space: normal;
    text-align: center;
    margin-top: 0;
  }

  .step {
    padding: 20px;
  }

  .step-number {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }

  .step-content h3 {
    font-size: 1.2rem;
  }

  .step-content p {
    font-size: 0.9rem;
  }
}
/* Map Section */
.map-section {
  padding: 80px 0;
  background-color: #f8fafc;
  direction: rtl;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-title {
  text-align: center;
  color: #fab12f;
  font-size: 2.2rem;
  margin-bottom: 40px;
  font-weight: 700;
}

.map-content {
  display: flex;
  gap: 40px;
}

.map-container {
  flex: 2;
  height: 450px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 77, 74, 0.1);
}

.contact-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.info-card {
  background: white;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 5px 15px rgba(0, 77, 74, 0.08);
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.info-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.info-icon img {
  width: 25px;
  height: 25px;
}

.info-content h3 {
  color: #fab12f;
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.info-content p {
  color: #5a6d78;
  font-size: 1rem;
  line-height: 1.6;
}

/* Mobile View  */
@media (max-width: 768px) {
  .map-section {
    padding: 40px 15px;
    background-color: #f9fafb; /* soft background for separation */
  }

  .section-title {
    font-size: 1.8rem;
    margin-bottom: 25px;
    text-align: center;
  }

  .map-content {
    display: flex;
    flex-direction: column;
    gap: 20px; /* 👈 adds nice spacing between map and info cards */
    align-items: center;
  }

  .map-container {
    width: 100%;
    height: 300px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  }

  .contact-info {
    width: 100%;
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  }

  .contact-info + .contact-info {
    margin-top: 15px; /* 👈 ensures spacing between consecutive cards */
  }

  .contact-info h3 {
    margin-bottom: 10px;
    color: #1b3a4b;
    font-size: 1.1rem;
  }

  .contact-info p {
    margin: 0;
    color: #333;
    line-height: 1.6;
  }
}

.confident-footer {
  background-color: #fab12f; /* light gray background */
  text-align: center;
  padding: 20px;
  font-size: 19px;
  color: #f5f9fc;
  border-top: 1px solid #ddd;
  direction: rtl; /* Arabic right-to-left text direction */
  font-family: "Arial", sans-serif;
}

/* Contact Column */
.footer-contact-col {
  flex: 0 0 280px;
}

.contact-info {
  color: #e0e0e0;
}

.clinic-name {
  font-weight: bold;
  margin-bottom: 10px;
  font-size: 1rem;
}

.phone-number {
  font-size: 1.3rem;
  color: #e7a93c;
  margin: 15px 0;
  font-weight: bold;
  direction: ltr; /* For phone numbers */
  display: inline-block;
}

.main-footer {
  background: linear-gradient(120deg, #f5bb1b 0%, #eaa123 40%, #e08e00 100%);
  padding: 40px 0 20px;
  color: #fff;
  direction: rtl;
  text-align: center;
  font-family: 'Cairo', sans-serif;
}

.footer-container {
  display: flex;
  justify-content: center;
  gap: 60px;
  max-width: 1200px;
  margin: auto;
  flex-wrap: wrap;
}

.footer-col {
  flex: 1;
  min-width: 220px;
}

.footer-col h4 {
  font-size: 1.2rem;
  margin-bottom: 15px;
  font-weight: 700;
}

.footer-col a {
  display: block;
  color: #fff;
  text-decoration: none;
  margin-bottom: 10px;
  font-size: 1rem;
  transition: opacity .2s ease;
}

.footer-col a:hover {
  opacity: 0.7;
}

.footer-logo {
  width: 140px;
  margin-bottom: 12px;
}

.footer-bottom {
  margin-top: 25px;
  padding-top: 15px;
  border-top: 1px solid rgba(255,255,255,0.4);
  font-size: 0.95rem;
  opacity: 0.9;
}

/* Mobile */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    gap: 35px;
    text-align: center;
  }

  .footer-col {
    min-width: 100%;
  }
}


/* Services Section Styles */
.services-section {
  padding: 40px 0;
  background-color: #f9f9f9;
  direction: rtl;
}

.services-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.section-title {
  text-align: center;
  font-size: 2rem;
  color: #fab12f;
  margin-bottom: 40px;
  font-weight: 700;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
}

.service-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.service-icon-circle {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #fab12f, #fab12f);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 25px auto 15px;
}

.service-icon {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.service-content {
  padding: 0 20px 25px;
  text-align: center;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.service-name {
  color: #fab12f;
  font-size: 1.3rem;
  margin-bottom: 12px;
  font-weight: 600;
}

.service-description {
  color: #7f8c8d;
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 20px;
}

.service-btn {
  background: linear-gradient(135deg, #fab12f);
  color: white;
  border: none;
  padding: 10px 25px;
  border-radius: 50px;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: auto;
  width: fit-content;
  align-self: center;
  
}

.service-btn:hover {
  background: linear-gradient(135deg, #2980b9, #1a252f);
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@media (max-width: 768px) {
  .section-title {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }

  .services-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 15px;
    padding: 10px 15px 20px;
    margin: 0 -15px;
    -webkit-overflow-scrolling: touch;
  }

  .service-card {
    min-width: 85vw;
    max-width: 85vw;
    scroll-snap-align: start;
    flex: 0 0 auto;
    margin-right: 0;
  }

  .service-icon-circle {
    width: 70px;
    height: 70px;
    margin: 20px auto 12px;
  }

  .service-icon {
    width: 35px;
    height: 35px;
  }

  .service-content {
    padding: 0 15px 20px;
  }

  .service-name {
    font-size: 1.2rem;
  }

  .service-description {
    font-size: 0.9rem;
    margin-bottom: 15px;
  }

  .service-btn {
    padding: 8px 20px;
    font-size: 0.9rem;
  }

  /* Hide scrollbar */
  .services-grid::-webkit-scrollbar {
    display: none;
  }

  .services-grid {
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
}

@media (max-width: 480px) {
  .section-title {
    font-size: 1.6rem;
  }

  .service-card {
    min-width: 82vw;
    max-width: 82vw;
  }

  .service-icon-circle {
    width: 65px;
    height: 65px;
  }
}

/* Sticky WhatsApp Button */
.sticky-whatsapp-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  z-index: 9999;
  background-color: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s;
}

.sticky-whatsapp-btn img {
  width: 32px;
  height: 32px;
}

.sticky-whatsapp-btn:hover {
  transform: scale(1.1);
}

.sticky-whatsapp-btn {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.07); }
  100% { transform: scale(1); }
}


#contact-time {
  margin-top: 10px;
}












/*================================ About Us Styles ================================*/

/* HERO */
.about-hero {
  background: #fff;
  padding: 80px 0 40px;
  text-align: center;
}

.about-hero h2 {
  font-size: 2.5rem;
  color: #fab12f;
  font-weight: 700;
}

.about-hero p {
  max-width: 650px;
  margin: 15px auto 0;
  font-size: 1.2rem;
  color: #444;
  line-height: 1.8;
}

/* ABOUT SECTION */
.about-section .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 50px;
  padding: 60px 20px;
}

.about-text {
  flex: 1;
}

.about-text h2 {
  color: #fab12f;
  margin-top: 25px;
  font-weight: 700;
}

.about-text ul {
  padding-right: 20px;
  margin-top: 10px;
}

.about-text ul li {
  margin-bottom: 10px;
  line-height: 1.7;
}

.about-image {
  flex: 1;
}

.about-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

/* VALUES SECTION */
.values-section {
  background: #ffffff;
  padding: 70px 20px;
  text-align: center;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #fab12f;
  margin-bottom: 40px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.value-card {
  padding: 25px;
  background: #f5f9fc;
  border-radius: 20px;
  box-shadow: 0 5px 18px rgba(0,0,0,0.05);
  
}

.value-card h3 {
  color: #fab12f;
  margin-bottom: 10px;
  font-weight: 700;
}

.value-card p {
  color: #555;
  line-height: 1.7;
}

.values-grid {
  direction: rtl;
}



/* ================================
   MOBILE & TABLET RESPONSIVE FIXES
   ================================ */

/* Tablet adjustments */
@media (max-width: 992px) {
  .about-hero {
    padding: 60px 20px 30px;
  }

  .about-hero h2 {
    font-size: 2.2rem;
  }

  .about-hero p {
    font-size: 1.1rem;
  }

  .about-section .container {
    padding: 40px 20px;
    gap: 30px;
  }

  .about-text h2 {
    font-size: 1.6rem;
  }

  .about-image img {
    max-width: 85%;
    margin: 0 auto;
    display: block;
  }
}

/* MOBILE PHONES */
@media (max-width: 768px) {

  /* HERO SECTION */
  .about-hero {
    padding: 50px 20px 20px;
  }

  .about-hero h2 {
    font-size: 2rem;
  }

  .about-hero p {
    font-size: 1rem;
    line-height: 1.7;
    padding: 0 10px;
  }


  /* ABOUT SECTION STACKING */
  .about-section .container {
    flex-direction: column;
    text-align: center;
    padding: 40px 15px;
    gap: 40px;
  }

  .about-image img {
    width: 100%;
    max-width: 320px;
  }

  .about-text h2 {
    font-size: 1.5rem;
    margin-bottom: 10px;
  }

  .about-text p,
  .about-text ul li {
    font-size: 1rem;
    line-height: 1.7;
  }

  .about-text ul {
    padding-right: 0;
  }


  /* VALUES SECTION */
  .values-section {
    padding: 50px 15px;
  }

  .section-title {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }

  .values-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .value-card {
    padding: 20px;
  }

  .value-card h3 {
    font-size: 1.3rem;
  }

  .value-card p {
    font-size: 0.95rem;
  }
}

/* SMALL MOBILE DEVICES */
@media (max-width: 480px) {

  .about-hero h2 {
    font-size: 1.7rem;
  }

  .about-hero p {
    font-size: 0.95rem;
  }

  .about-text h2 {
    font-size: 1.3rem;
  }

  .about-image img {
    max-width: 260px;
  }

  .values-section {
    padding: 40px 10px;
  }

  .section-title {
    font-size: 1.6rem;
  }

  .value-card {
    padding: 18px;
  }
}
















/*================================ Services Styles ================================*/
body {
  margin: 0;
  padding: 0;
  font-family: "Cairo", sans-serif;
  background: #f9f9f9;
  color: #333;
}

/* HERO */
.services-hero {
  text-align: center;
  padding: 80px 20px 40px;
  background: #fff;
}

.services-hero h1 {
  font-size: 2.6rem;
  color: #fab12f;
  font-weight: 700;
}

.services-hero p {
  max-width: 700px;
  margin: 15px auto 0;
  font-size: 1.15rem;
  line-height: 1.8;
  color: #444;
}

/* SERVICES GRID */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* <<< 3 cards per row on desktop */
  gap: 60px;
  direction: rtl;
  max-width: 1200px; /* keeps them nicely centered */
  margin: 0 auto;
  margin-bottom: 40px;
}





/* SMALLER SERVICE CARD */
.service-card {
  background: #fff;
  padding: 22px 18px;       /* MUCH SMALLER */
  border-radius: 16px;      /* Slightly smaller corners */
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: right;
  position: relative;
  overflow: hidden;
  max-width: 320px;         /* PREVENT MASSIVE WIDE CARDS */
  margin: center;             /* CENTER THEM */
  min-height: 100px;        /* CONSISTENT COMPACT HEIGHT */
}

/* Hover effect */
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 26px rgba(250, 177, 47, 0.20);
  border: 1px solid rgba(250, 177, 47, 0.35);
}

/* Gold stripe on hover */
.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 0%;
  height: 3px;
  background: #fab12f;
  transition: 0.3s ease;
}

.service-card:hover::before {
  width: 100%;
}

/* Title */
.service-card h3 {
  color: #fab12f;
  margin-bottom: 8px;
  font-size: 1.15rem;       /* Smaller title */
  font-weight: 700;
  line-height: 1.4;
}

/* Paragraph */
.service-card p {
  font-size: 0.95rem;       /* Smaller text */
  line-height: 1.6;
  color: #555;
  margin-top: 5px;
}

/* MOBILE: even tighter */
@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr 1fr;
    gap: 15px;
  }

  .service-card {
    padding: 18px 15px;
    max-width: 100%;
    min-height: 160px;
  }

  .service-card h3 {
    font-size: 1.05rem;
  }

  .service-card p {
    font-size: 0.9rem;
  }
}

/* VERY SMALL MOBILE */
@media (max-width: 480px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 150px;
    padding: 16px 14px;
  }
}


/* TITLE */
.service-card h3 {
  color: #fab12f;
  margin-bottom: 12px;
  font-size: 1.0rem;
  font-weight: 700;
  line-height: 1.4;
}

/* PARAGRAPH */
.service-card p {
  font-size: 0.85rem;
  line-height: 1.9;
  color: #555;
  margin-top: 8px;
  padding-left: 5px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .services-hero h1 {
    font-size: 2rem;
  }

  .services-hero p {
    font-size: 1rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 80px;
  }

  .service-card {
    padding: 28px 22px;
  }

  .service-card h3 {
    font-size: 1.25rem;
  }

  .service-card p {
    font-size: 1rem;
  }
}












/*============================ Contact Us ========================*/
    
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Cairo', sans-serif;
      background: #f8f9fa;
      color: #333;
      line-height: 1.6;
    }

    /* Navbar Styles */
    

    

    .nav-logo img {
      height: 60px;
      width: auto;
    }

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

    .nav-links a {
      text-decoration: none;
      color: #333;
      font-weight: 600;
      transition: color 0.3s;
      font-size: 1.1rem;
    }

    .nav-links a:hover,
    .nav-links a.active {
      color: #fab12f;
    }

    .nav-toggle {
      display: none;
      font-size: 1.5rem;
      cursor: pointer;
    }

    /* WhatsApp Button */
    .sticky-whatsapp-btn {
      position: fixed;
      bottom: 30px;
      left: 30px;
      width: 60px;
      height: 60px;
      background: #25d366;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
      z-index: 999;
      transition: transform 0.3s;
    }

    .sticky-whatsapp-btn:hover {
      transform: scale(1.1);
    }

    .sticky-whatsapp-btn img {
      width: 35px;
      height: 35px;
    }

    /* Contact Section */
    .contact-hero {
      background: white;
      padding: 80px 20px 60px;
      text-align: center;
      color: #333;
    }

    .contact-hero h1 {
      font-size: 2.5rem;
      margin-bottom: 1rem;
      font-weight: 700;
      color: #fab12f;
    }

    .contact-hero p {
      font-size: 1.2rem;
      max-width: 600px;
      margin: 0 auto;
      color: #666;
    }

    .contact-content {
      max-width: 1200px;
      margin: 40px auto 60px;
      padding: 0 20px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 30px;
    }

    .contact-info-section {
      background: white;
      border-radius: 15px;
      padding: 40px;
      box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    }

    .contact-info-section h2 {
      color: #fab12f;
      margin-bottom: 30px;
      font-size: 1.8rem;
      font-weight: 700;
    }

    .info-item {
      display: flex;
      align-items: flex-start;
      gap: 20px;
      margin-bottom: 25px;
      padding: 20px;
      background: #f8f9fa;
      border-radius: 10px;
      transition: transform 0.3s, box-shadow 0.3s;
    }

    .info-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 5px 15px rgba(250, 177, 47, 0.2);
    }

    .info-icon {
      width: 50px;
      height: 50px;
      background: #fab12f;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .info-icon svg {
      width: 25px;
      height: 25px;
      fill: white;
    }

    .info-details h3 {
      color: #333;
      margin-bottom: 8px;
      font-size: 1.2rem;
      font-weight: 700;
    }

    .info-details p {
      color: #666;
      line-height: 1.8;
      font-size: 1rem;
    }

    .contact-form-section {
      background: white;
      border-radius: 15px;
      padding: 40px;
      box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    }

    .contact-form-section h2 {
      color: #fab12f;
      margin-bottom: 30px;
      font-size: 1.8rem;
      font-weight: 700;
    }

    .form-group {
      margin-bottom: 25px;
    }

    .form-group label {
      display: block;
      margin-bottom: 8px;
      color: #333;
      font-weight: 600;
      font-size: 1rem;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
      width: 100%;
      padding: 15px;
      border: 2px solid #e0e0e0;
      border-radius: 8px;
      font-family: 'Cairo', sans-serif;
      font-size: 1rem;
      transition: border-color 0.3s;
    }

    .form-group input:focus,
    .form-group textarea:focus,
    .form-group select:focus {
      outline: none;
      border-color: #fab12f;
    }

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

    .submit-btn {
      width: 100%;
      padding: 15px;
      background: #fab12f;
      color: white;
      border: none;
      border-radius: 8px;
      font-size: 1.1rem;
      font-weight: 700;
      cursor: pointer;
      transition: background 0.3s, transform 0.3s;
      font-family: 'Cairo', sans-serif;
    }

    .submit-btn:hover {
      background: #f39c12;
      transform: translateY(-2px);
    }

    /* Map Section */
    .map-section {
      max-width: 1200px;
      margin: 0 auto 60px;
      padding: 0 20px;
    }

    .map-section h2 {
      text-align: center;
      color: #fab12f;
      margin-bottom: 30px;
      font-size: 2rem;
      font-weight: 700;
    }

    .map-container {
      border-radius: 15px;
      overflow: hidden;
      box-shadow: 0 5px 20px rgba(0,0,0,0.1);
      height: 450px;
    }

    .map-container iframe {
      width: 100%;
      height: 100%;
      border: 0;
    }

    /* Footer Styles */
    .main-footer {
      background: linear-gradient(120deg, #f5bb1b 0%, #eaa123 40%, #e08e00 100%);
      color: white;
      padding: 40px 20px 20px;
    }

    .footer-container {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 2fr 1fr 1fr;
      gap: 40px;
      margin-bottom: 30px;
    }

    .footer-col h4 {
      color: white;
      margin-bottom: 20px;
      font-size: 1.3rem;
      font-weight: 700;
    }

    .footer-logo {
      height: 80px;
      margin-bottom: 20px;
    }

    .footer-col p,
    .footer-col a {
      color: rgba(255, 255, 255, 0.95);
      line-height: 2;
      text-decoration: none;
      display: block;
      transition: color 0.3s;
    }

    .footer-col a:hover {
      color: white;
      padding-right: 5px;
    }

    .footer-bottom {
      text-align: center;
      padding-top: 20px;
      border-top: 1px solid rgba(255, 255, 255, 0.2);
      color: rgba(255, 255, 255, 0.9);
    }

    /* Tablet Responsive (768px - 1024px) */
    @media (max-width: 1024px) {
      .contact-content {
        gap: 25px;
        padding: 0 15px;
      }

      .contact-info-section,
      .contact-form-section {
        padding: 30px;
      }

      .footer-container {
        gap: 30px;
      }
    }

    /* Mobile Responsive (max-width: 768px) */
    @media (max-width: 768px) {
      .nav-links {
        position: absolute;
        top: 100%;
        right: 0;
        background: white;
        width: 100%;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
        display: none;
        gap: 0;
      }

      .nav-links li {
        width: 100%;
        border-bottom: 1px solid #f0f0f0;
      }

      .nav-links li:last-child {
        border-bottom: none;
      }

      .nav-links a {
        display: block;
        padding: 15px 10px;
        font-size: 1rem;
      }

      .nav-links.show {
        display: flex;
      }

      .nav-toggle {
        display: block;
        font-size: 1.8rem;
      }

      .nav-logo img {
        height: 50px;
      }

      .contact-hero {
        padding: 60px 15px 40px;
      }

      .contact-hero h1 {
        font-size: 1.8rem;
        margin-bottom: 0.8rem;
      }

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

      .contact-content {
        grid-template-columns: 1fr;
        margin-top: -20px;
        gap: 20px;
        padding: 0 15px;
      }

      .contact-info-section,
      .contact-form-section {
        padding: 25px 20px;
      }

      .contact-info-section h2,
      .contact-form-section h2 {
        font-size: 1.5rem;
        margin-bottom: 25px;
      }

      .info-item {
        padding: 15px;
        margin-bottom: 20px;
        gap: 15px;
      }

      .info-icon {
        width: 45px;
        height: 45px;
      }

      .info-icon svg {
        width: 22px;
        height: 22px;
      }

      .info-details h3 {
        font-size: 1.1rem;
      }

      .info-details p {
        font-size: 0.95rem;
      }

      .form-group input,
      .form-group textarea,
      .form-group select {
        padding: 12px;
        font-size: 0.95rem;
      }

      .submit-btn {
        padding: 14px;
        font-size: 1rem;
      }

      .map-section {
        padding: 0 15px;
        margin-bottom: 40px;
      }

      .map-section h2 {
        font-size: 1.6rem;
        margin-bottom: 20px;
      }

      .map-container {
        height: 300px;
      }

      .footer-container {
        grid-template-columns: 1fr;
        gap: 25px;
      }

      .footer-logo {
        height: 70px;
      }

      .footer-col h4 {
        font-size: 1.2rem;
        margin-bottom: 15px;
      }

      .footer-col p,
      .footer-col a {
        font-size: 0.95rem;
        line-height: 1.8;
      }

      .sticky-whatsapp-btn {
        width: 50px;
        height: 50px;
        bottom: 20px;
        left: 20px;
      }

      .sticky-whatsapp-btn img {
        width: 28px;
        height: 28px;
      }
    }

    /* Small Mobile (max-width: 480px) */
    @media (max-width: 480px) {
      .contact-hero h1 {
        font-size: 1.5rem;
      }

      .contact-hero p {
        font-size: 0.9rem;
      }

      .contact-info-section,
      .contact-form-section {
        padding: 20px 15px;
      }

      .contact-info-section h2,
      .contact-form-section h2 {
        font-size: 1.3rem;
      }

      .info-item {
        flex-direction: row;
        align-items: center;
        padding: 12px;
      }

      .info-icon {
        width: 40px;
        height: 40px;
      }

      .info-icon svg {
        width: 20px;
        height: 20px;
      }

      .info-details h3 {
        font-size: 1rem;
      }

      .info-details p {
        font-size: 0.9rem;
      }

      .map-section h2 {
        font-size: 1.4rem;
      }

      .map-container {
        height: 250px;
      }

      .footer-col h4 {
        font-size: 1.1rem;
      }

      .footer-col p,
      .footer-col a {
        font-size: 0.9rem;
      }

      .sticky-whatsapp-btn {
        width: 45px;
        height: 45px;
        bottom: 15px;
        left: 15px;
      }

      .sticky-whatsapp-btn img {
        width: 25px;
        height: 25px;
      }
    }
  









    