/* Base Style */
body {
  font-family: 'Poppins', 'Cairo', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #fafafa;
  color: #2c2c2c;
  line-height: 1.7;
}

body.rtl {
  direction: rtl;
  text-align: right;
}

/* Header Styling */
header {
  background: linear-gradient(135deg, #8B2635 0%, #2B8A9C 100%);
  color: white;
  padding: 15px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  box-shadow: 0 4px 15px rgba(139, 38, 53, 0.3);
  position: sticky;
  top: 0;
  z-index: 1000;
}

header svg {
  height: 50px;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

/* Navigation */
nav {
  display: flex;
  align-items: center;
  gap: 25px;
}

nav a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
  padding: 8px 16px;
  border-radius: 25px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

nav a::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

nav a:hover::before {
  left: 100%;
}

nav a:hover,
nav a.active {
  background-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.lang-switch {
  font-weight: bold;
  border-left: 2px solid rgba(255, 255, 255, 0.5);
  padding-left: 15px;
  margin-left: 10px;
}

/* RTL Navigation adjustments */
.rtl .lang-switch {
  border-left: none;
  border-right: 2px solid rgba(255, 255, 255, 0.5);
  padding-right: 15px;
  margin-right: 10px;
  padding-left: 0;
  margin-left: 0;
}

.rtl nav a::before {
  left: 100%;
}

.rtl nav a:hover::before {
  left: -100%;
}

/* Hero Section */
.hero {
  padding: 100px 30px;
  text-align: center;
  background: linear-gradient(135deg, #2B8A9C 0%, #8B2635 100%);
  color: white;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="80" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grain)"/></svg>');
  opacity: 0.1;
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  color: white;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 1;
}

.hero p {
  font-size: 1.3rem;
  margin-bottom: 40px;
  opacity: 0.9;
  position: relative;
  z-index: 1;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

/* Main Content */
.section {
  padding: 80px 30px;
  max-width: 1200px;
  margin: auto;
}

h1, h2, h3 {
  color: #8B2635;
  margin-bottom: 25px;
  font-weight: 600;
}

h2 {
  font-size: 2.5rem;
  text-align: center;
  position: relative;
  padding-bottom: 20px;
  margin-bottom: 60px;
}

h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #8B2635, #2B8A9C);
  border-radius: 2px;
}

/* Services Grid */
.services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
  margin-top: 50px;
}

.service-box {
  background: white;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(139, 38, 53, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(43, 138, 156, 0.1);
  text-align: center;
}

.service-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #8B2635, #2B8A9C);
}

.service-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(139, 38, 53, 0.2);
}

.service-icon {
  font-size: 3rem;
  color: #2B8A9C;
  margin-bottom: 20px;
}

.service-box h3 {
  color: #8B2635;
  margin-bottom: 20px;
  font-size: 1.5rem;
}

.service-box p {
  color: #555;
  line-height: 1.8;
  font-size: 1.1rem;
}

.service-box ul {
  text-align: left;
  margin-top: 20px;
}

/* RTL service box adjustments */
.rtl .service-box {
  text-align: right;
}

.rtl .service-box ul {
  text-align: right;
}

/* Features Section */
.features {
  background: linear-gradient(135deg, rgba(43, 138, 156, 0.05) 0%, rgba(139, 38, 53, 0.05) 100%);
  padding: 80px 30px;
  margin: 80px 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

.feature-item {
  text-align: center;
  padding: 30px 20px;
}

.feature-icon {
  font-size: 2.5rem;
  color: #8B2635;
  margin-bottom: 20px;
}

.feature-item h4 {
  color: #2B8A9C;
  font-size: 1.3rem;
  margin-bottom: 15px;
}

/* Contact Section */
.contact-section {
  background: linear-gradient(135deg, #8B2635 0%, #2B8A9C 100%);
  color: white;
  padding: 80px 30px;
  text-align: center;
}

.contact-section h2 {
  color: white;
  margin-bottom: 40px;
}

.contact-section h2::after {
  background: white;
}

.contact-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  max-width: 1000px;
  margin: auto;
}

.contact-item {
  text-align: center;
}

.contact-item i {
  font-size: 2rem;
  margin-bottom: 15px;
  color: rgba(255, 255, 255, 0.9);
}

.contact-item h4 {
  color: white;
  margin-bottom: 10px;
}

.contact-item p {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 15px 35px;
  background: linear-gradient(135deg, #8B2635, #2B8A9C);
  color: white;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.btn-secondary {
  background: transparent;
  border: 2px solid white;
  color: white;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.btn:hover::before {
  left: 100%;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(139, 38, 53, 0.3);
}

.btn-secondary:hover {
  background: white;
  color: #8B2635;
}

/* Footer */
footer {
  background: linear-gradient(135deg, #2B8A9C 0%, #8B2635 100%);
  color: white;
  text-align: center;
  padding: 40px 30px;
  font-size: 16px;
  position: relative;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="footerGrain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100%" height="100%" fill="url(%23footerGrain)"/></svg>');
  opacity: 0.1;
}

footer p {
  margin: 0;
  position: relative;
  z-index: 1;
}

/* Lists */
ul {
  list-style: none;
  padding: 0;
}

ul li {
  margin-bottom: 10px;
  padding-left: 20px;
  position: relative;
  color: #555;
}

ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #2B8A9C;
  font-weight: bold;
}

/* RTL list adjustments */
.rtl ul li {
  padding-left: 0;
  padding-right: 20px;
}

.rtl ul li::before {
  left: auto;
  right: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
  header {
      padding: 10px 20px;
      flex-direction: column;
      gap: 15px;
  }
  
  nav {
      flex-wrap: wrap;
      gap: 15px;
  }
  
  .hero h1 {
      font-size: 2.5rem;
  }
  
  .hero p {
      font-size: 1.1rem;
  }
  
  .services {
      grid-template-columns: 1fr;
      gap: 30px;
  }
  
  .section {
      padding: 60px 20px;
  }

  .hero-buttons {
      flex-direction: column;
      align-items: center;
  }

  h2 {
      font-size: 2rem;
  }
}

/* Animations */
@keyframes fadeInUp {
  from {
      opacity: 0;
      transform: translateY(30px);
  }
  to {
      opacity: 1;
      transform: translateY(0);
  }
}

.service-box {
  animation: fadeInUp 0.8s ease-out;
}

/* Smooth Scrolling */
html {
  scroll-behavior: smooth;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, #8B2635, #2B8A9C);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(135deg, #2B8A9C, #8B2635);
}

/* ----------------------------------------------------------------------------- */
/* Additional styles for about page */
.about-intro {
  background: linear-gradient(135deg, rgba(43, 138, 156, 0.05) 0%, rgba(139, 38, 53, 0.05) 100%);
  padding: 60px 30px;
  margin: 0;
  border-radius: 0;
}

.about-intro p {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #555;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.company-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin: 60px 0;
  text-align: center;
}

.stat-item {
  padding: 30px 20px;
  background: white;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(139, 38, 53, 0.1);
  transition: transform 0.3s ease;
  position: relative;
  overflow: hidden;
}

.stat-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #8B2635, #2B8A9C);
}

.stat-item:hover {
  transform: translateY(-5px);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: #8B2635;
  margin-bottom: 10px;
}

.stat-label {
  font-size: 1.1rem;
  color: #2B8A9C;
  font-weight: 500;
}

.mission-vision {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 40px;
  margin: 60px 0;
}

.mission-box, .vision-box {
  background: white;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(139, 38, 53, 0.1);
  position: relative;
  overflow: hidden;
}

.mission-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #8B2635, #2B8A9C);
}

.vision-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #2B8A9C, #8B2635);
}

.mission-box h3, .vision-box h3 {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
  font-size: 1.5rem;
}

.mission-box i, .vision-box i {
  font-size: 2rem;
  color: #8B2635;
}

.team-section {
  background: linear-gradient(135deg, rgba(43, 138, 156, 0.05) 0%, rgba(139, 38, 53, 0.05) 100%);
  padding: 80px 30px;
  margin: 80px 0;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.team-member {
  background: white;
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(139, 38, 53, 0.1);
  transition: transform 0.3s ease;
}

.team-member:hover {
  transform: translateY(-5px);
}

.team-member img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin-bottom: 15px;
  background: linear-gradient(135deg, #8B2635, #2B8A9C);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2rem;
  margin: 0 auto 15px;
}

.team-member h4 {
  color: #8B2635;
  margin-bottom: 5px;
}

.team-member p {
  color: #2B8A9C;
  font-size: 0.9rem;
}

.locations-served {
  background: white;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(139, 38, 53, 0.1);
  margin: 40px 0;
}

.locations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.location-item {
  background: linear-gradient(135deg, rgba(43, 138, 156, 0.1) 0%, rgba(139, 38, 53, 0.1) 100%);
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  transition: transform 0.3s ease;
}

.location-item:hover {
  transform: translateY(-3px);
}

.location-item i {
  font-size: 1.5rem;
  color: #8B2635;
  margin-bottom: 10px;
}

.location-item span {
  color: #2B8A9C;
  font-weight: 500;
}

.contact-cta {
  background: linear-gradient(135deg, #8B2635 0%, #2B8A9C 100%);
  color: white;
  padding: 60px 30px;
  text-align: center;
  border-radius: 20px;
  margin: 60px 0;
}

.contact-cta h3 {
  color: white;
  margin-bottom: 20px;
  font-size: 2rem;
}

.contact-cta p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  opacity: 0.9;
}

.contact-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  background: rgba(255, 255, 255, 0.2);
  color: white;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.contact-btn:hover {
  background: white;
  color: #8B2635;
  transform: translateY(-2px);
}

.contact-btn i {
  font-size: 1.2rem;
}

@media (max-width: 768px) {
  .mission-vision {
    grid-template-columns: 1fr;
  }
  
  .company-stats {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .contact-buttons {
    flex-direction: column;
    align-items: center;
  }
}

/* --------------------------------------------------------------------------------------- */
/* Additional styles for services page */
.services-hero {
  background: linear-gradient(135deg, #2B8A9C 0%, #8B2635 100%);
  color: white;
  padding: 80px 30px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.services-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="80" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grain)"/></svg>');
  opacity: 0.1;
}

.services-hero h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.services-hero p {
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  opacity: 0.9;
}

.service-category {
  margin: 80px 0;
  padding: 60px 30px;
  background: white;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(139, 38, 53, 0.1);
  position: relative;
  overflow: hidden;
}

.service-category::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #8B2635, #2B8A9C);
}

.service-category-header {
  text-align: center;
  margin-bottom: 50px;
}

.service-category h2 {
  font-size: 2.5rem;
  color: #8B2635;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.service-category h2 i {
  font-size: 2rem;
  color: #2B8A9C;
}

.service-category-intro {
  font-size: 1.1rem;
  color: #555;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.8;
}

.service-details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.service-detail-card {
  background: linear-gradient(135deg, rgba(43, 138, 156, 0.05) 0%, rgba(139, 38, 53, 0.05) 100%);
  padding: 30px;
  border-radius: 15px;
  border: 1px solid rgba(43, 138, 156, 0.1);
  transition: all 0.3s ease;
}

.service-detail-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(139, 38, 53, 0.15);
}

.service-detail-card h4 {
  color: #8B2635;
  font-size: 1.3rem;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.service-detail-card h4 i {
  color: #2B8A9C;
  font-size: 1.2rem;
}

.service-detail-card p {
  color: #8B2635;
  line-height: 1.7;
  margin-bottom: 15px;
}

.service-features {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.service-features li {
  padding: 8px 0;
  color: #666;
  position: relative;
  padding-left: 25px;
}

.service-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #2B8A9C;
  font-weight: bold;
}

.pricing-info {
  background: linear-gradient(135deg, #8B2635 0%, #2B8A9C 100%);
  color: white;
  padding: 20px;
  border-radius: 10px;
  margin-top: 20px;
  text-align: center;
}

.pricing-info h5 {
  color: white;
  margin-bottom: 10px;
}

.pricing-info p {
  margin: 0;
  font-size: 0.9rem;
  opacity: 0.9;
}

.cta-section {
  background: linear-gradient(135deg, #8B2635 0%, #2B8A9C 100%);
  color: white;
  padding: 80px 30px;
  text-align: center;
  margin: 80px 0;
  border-radius: 20px;
}

.cta-section h3 {
  color: white;
  font-size: 2.2rem;
  margin-bottom: 20px;
}

.cta-section p {
  font-size: 1.2rem;
  margin-bottom: 40px;
  opacity: 0.9;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  background: rgba(255, 255, 255, 0.2);
  color: white;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.cta-btn:hover {
  background: white;
  color: #8B2635;
  transform: translateY(-2px);
}

.process-section {
  background: linear-gradient(135deg, rgba(43, 138, 156, 0.05) 0%, rgba(139, 38, 53, 0.05) 100%);
  padding: 80px 30px;
  margin: 80px 0;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.process-step {
  background: white;
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(139, 38, 53, 0.1);
  position: relative;
}

.process-step::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #8B2635, #2B8A9C);
}

.step-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #8B2635, #2B8A9C);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  margin: 0 auto 20px;
}

.process-step h4 {
  color: #8B2635;
  margin-bottom: 15px;
}

.process-step p {
  color: #666;
  line-height: 1.6;
}

.testimonial-section {
  background: white;
  padding: 80px 30px;
  margin: 80px 0;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(139, 38, 53, 0.1);
}

.testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.testimonial {
  background: linear-gradient(135deg, rgba(43, 138, 156, 0.05) 0%, rgba(139, 38, 53, 0.05) 100%);
  padding: 30px;
  border-radius: 15px;
  border-left: 4px solid #2B8A9C;
}

.testimonial-text {
  font-style: italic;
  color: #555;
  line-height: 1.7;
  margin-bottom: 20px;
}

.testimonial-author {
  font-weight: 600;
  color: #8B2635;
}

.testimonial-service {
  color: #2B8A9C;
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .services-hero h1 {
    font-size: 2rem;
  }
  
  .service-category h2 {
    font-size: 2rem;
    flex-direction: column;
    gap: 10px;
  }
  
  .service-details {
    grid-template-columns: 1fr;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
}
/* -----------GALLERY-------------------- */

.gallery-hero {
  background: linear-gradient(135deg, #2B8A9C 0%, #8B2635 100%);
  color: white;
  padding: 80px 30px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.gallery-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="80" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grain)"/></svg>');
  opacity: 0.1;
}

.gallery-hero h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.gallery-hero p {
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  opacity: 0.9;
}

.gallery-categories {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  margin: 40px 0;
  padding: 0 30px;
}

.category-filter {
  padding: 12px 25px;
  background: white;
  border: 2px solid #2B8A9C;
  color: #2B8A9C;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
}

.category-filter:hover,
.category-filter.active {
  background: linear-gradient(135deg, #8B2635, #2B8A9C);
  color: white;
  transform: translateY(-2px);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  padding: 0 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.gallery-item {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(139, 38, 53, 0.1);
  transition: all 0.3s ease;
  position: relative;
}

.gallery-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(139, 38, 53, 0.2);
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-item-content {
  padding: 25px;
}

.gallery-item h3 {
  color: #8B2635;
  margin-bottom: 10px;
  font-size: 1.3rem;
}

.gallery-item p {
  color: #555;
  line-height: 1.6;
  margin-bottom: 15px;
}

.gallery-item-meta {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 0.9rem;
  color: #2B8A9C;
  font-weight: 500;
}

.gallery-item-meta i {
  margin-right: 5px;
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(139, 38, 53, 0.9), rgba(43, 138, 156, 0.9));
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  padding: 20px;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.overlay-content h4 {
  color: white;
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.overlay-content p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
}

.stats-section {
  background: linear-gradient(135deg, rgba(43, 138, 156, 0.05) 0%, rgba(139, 38, 53, 0.05) 100%);
  padding: 80px 30px;
  margin: 80px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.stat-card {
  background: white;
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(139, 38, 53, 0.1);
  transition: transform 0.3s ease;
  position: relative;
  overflow: hidden;
}

.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #8B2635, #2B8A9C);
}

.stat-card:hover {
  transform: translateY(-5px);
}

.stat-icon {
  font-size: 2.5rem;
  color: #2B8A9C;
  margin-bottom: 15px;
}

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: #8B2635;
  margin-bottom: 10px;
}

.stat-label {
  color: #555;
  font-size: 1rem;
}

.testimonial-gallery {
  background: white;
  padding: 80px 30px;
  margin: 80px 0;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(139, 38, 53, 0.1);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.testimonial-card {
  background: linear-gradient(135deg, rgba(43, 138, 156, 0.05) 0%, rgba(139, 38, 53, 0.05) 100%);
  padding: 30px;
  border-radius: 15px;
  border-left: 4px solid #2B8A9C;
  position: relative;
}

.testimonial-content {
  font-style: italic;
  color: #555;
  line-height: 1.7;
  margin-bottom: 20px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, #8B2635, #2B8A9C);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  font-weight: bold;
}

.author-info h5 {
  color: #8B2635;
  margin-bottom: 5px;
}

.author-info p {
  color: #2B8A9C;
  font-size: 0.9rem;
  margin: 0;
}

@media (max-width: 768px) {
  .gallery-hero h1 {
      font-size: 2rem;
  }
  
  .gallery-grid {
      grid-template-columns: 1fr;
      padding: 0 20px;
  }
  
  .gallery-categories {
      padding: 0 20px;
  }
  
  .stats-grid {
      grid-template-columns: repeat(2, 1fr);
  }
}

/* ---------------Contact us -------------------------- */

/* Contact Hero Section */
.contact-hero {
  background: linear-gradient(135deg, #2B8A9C 0%, #8B2635 100%);
  color: white;
  padding: 80px 30px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.contact-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="80" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grain)"/></svg>');
  opacity: 0.1;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.contact-hero h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  color: white;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.contact-hero p {
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto;
  opacity: 0.9;
}

/* Contact Info Grid */
.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin: 60px 0;
}

.contact-info-card {
  background: white;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(139, 38, 53, 0.1);
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.contact-info-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #8B2635, #2B8A9C);
}

.contact-info-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(139, 38, 53, 0.2);
}

.contact-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #8B2635, #2B8A9C);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 2rem;
  color: white;
}

.contact-info-card h3 {
  color: #8B2635;
  margin-bottom: 15px;
  font-size: 1.5rem;
}

.contact-info-card p {
  color: #666;
  margin-bottom: 20px;
  line-height: 1.6;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-details a {
  color: #2B8A9C;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.contact-details a:hover {
  color: #8B2635;
}

.address, .hours {
  display: flex;
  flex-direction: column;
  gap: 5px;
  text-align: center;
}

.address strong, .hours strong {
  color: #8B2635;
}

.address span, .hours span {
  color: #666;
}

/* Contact Form Section */
.contact-form-section {
  background: linear-gradient(135deg, rgba(43, 138, 156, 0.05) 0%, rgba(139, 38, 53, 0.05) 100%);
  padding: 80px 0;
}

.contact-form {
  max-width: 800px;
  margin: 40px auto 0;
  background: white;
  padding: 50px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(139, 38, 53, 0.1);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: #8B2635;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  font-size: 16px;
  transition: border-color 0.3s ease;
  box-sizing: border-box;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #2B8A9C;
}

.form-group textarea {
  resize: vertical;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.checkbox-group input[type="checkbox"] {
  width: auto;
  margin-top: 2px;
}

.checkbox-group label {
  margin-bottom: 0;
  font-size: 14px;
  line-height: 1.5;
}

.form-submit-btn {
  width: 100%;
  padding: 15px;
  font-size: 18px;
  margin-top: 20px;
}

/* Quick Contact Section */
.quick-contact-section {
  padding: 80px 0;
}

.quick-contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.quick-contact-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 30px 20px;
  background: white;
  border-radius: 15px;
  text-decoration: none;
  box-shadow: 0 5px 20px rgba(139, 38, 53, 0.1);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.quick-contact-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(139, 38, 53, 0.2);
}

.quick-contact-btn.whatsapp {
  border-color: #25D366;
}

.quick-contact-btn.whatsapp:hover {
  background: #25D366;
  color: white;
}

.quick-contact-btn.phone {
  border-color: #2B8A9C;
}

.quick-contact-btn.phone:hover {
  background: #2B8A9C;
  color: white;
}

.quick-contact-btn.email {
  border-color: #8B2635;
}

.quick-contact-btn.email:hover {
  background: #8B2635;
  color: white;
}

.quick-contact-btn.appointment {
  border-color: #FF6B35;
}

.quick-contact-btn.appointment:hover {
  background: #FF6B35;
  color: white;
}

.quick-contact-btn i {
  font-size: 2rem;
  margin-bottom: 10px;
}

.quick-contact-btn span {
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 5px;
}

.quick-contact-btn small {
  font-size: 0.9rem;
  opacity: 0.8;
}

/* FAQ Section */
.faq-section {
  background: white;
  padding: 80px 0;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.faq-item {
  background: linear-gradient(135deg, rgba(43, 138, 156, 0.05) 0%, rgba(139, 38, 53, 0.05) 100%);
  padding: 30px;
  border-radius: 15px;
  border-left: 4px solid #2B8A9C;
  transition: transform 0.3s ease;
}

.faq-item:hover {
  transform: translateY(-3px);
}

.faq-item h4 {
  color: #8B2635;
  margin-bottom: 15px;
  font-size: 1.2rem;
}

.faq-item p {
  color: #666;
  line-height: 1.6;
  margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .contact-hero h1 {
    font-size: 2rem;
  }

  .contact-info-grid {
    grid-template-columns: 1fr;
  }

  .contact-form {
    padding: 30px 20px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .quick-contact-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }
}


.hero-slider {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.hero-slider .slide {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.hero-slider .slide.active {
  opacity: 1;
  z-index: 1;
}

.hero-slider .overlay {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0,0,0,0.4), rgba(0,0,0,0.6));
  display: flex;
  justify-content: center;
  align-items: center;
}

.slide-content {
  color: white;
  text-align: center;
  max-width: 800px;
  padding: 40px;
  animation: fadeInUp 1s ease;
}

.slide-content h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  font-weight: 700;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.6);
}

.slide-content p {
  font-size: 1.3rem;
  margin-bottom: 30px;
  opacity: 0.9;
}

@media (max-width: 768px) {
  .slide-content h1 {
    font-size: 2.2rem;
  }

  .slide-content p {
    font-size: 1rem;
  }
}
