/* Loading Spinner */
#loading-spinner {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.9);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.5s ease;
}

.spinner {
  width: 50px;
  height: 50px;
  border: 5px solid #f3f3f3;
  border-top: 5px solid #309cac;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Base Styles */
:root {
  --primary-color: #309cac;
  --secondary-color: #1e7fa5;
  --accent-color: #309cac;
  --light-color: #f8f9fa;
  --dark-color: #383e45;
  --text-color: #4d4d4d;
  --text-light: #6c757d;
  --white: #ffffff;
  --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Tajawal", "Arial", sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--white);
  direction: rtl;
  text-align: right;
  overflow-x: hidden;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0.5em;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.btn {
  display: inline-block;
  background-color: var(--primary-color);
  color: var(--white);
  padding: 10px 20px;
  border-radius: 5px;
  font-weight: 500;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  text-align: center;
  font-size: 1rem;
}

/* WhatsApp Sticky Button */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  background-color: #25d366; /* WhatsApp green */
  color: white;
  border-radius: 50%;
  text-align: center;
  font-size: 30px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.whatsapp-float:hover {
  background-color: #128c7e; /* Darker green on hover */
  transform: scale(1.1);
}

/* Pulse Animation */
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

.whatsapp-float {
  animation: pulse 2s infinite;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .whatsapp-float {
    width: 50px;
    height: 50px;
    font-size: 25px;
    bottom: 15px;
    left: 15px;
  }
}

.btn:hover {
  background-color: var(--secondary-color);
  transform: translateY(-3px);
  box-shadow: var(--box-shadow);
}

.section-title {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  position: relative;
  color: var(--primary-color);
  text-align: center;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  right: 50%;
  transform: translateX(50%);
  width: 80px;
  height: 3px;
  background-color: var(--accent-color);
}

/* Top Bar */
.top-bar {
  background-color: var(--dark-color);
  color: var(--white);
  padding: 8px 0;
  font-size: 0.8rem;
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.top-contact {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.top-contact a {
  display: flex;
  align-items: center;
  gap: 5px;
  transition: var(--transition);
  white-space: nowrap;
}

.top-contact a:hover {
  color: var(--primary-color);
}

.top-contact i {
  color: white;
  font-size: 0.9rem;
}

.search-box {
  display: flex;
  align-items: center;
  margin-top: 5px;
}

.search-box input {
  padding: 5px 10px;
  border: none;
  border-radius: 5px;
  width: 150px;
  font-size: 0.8rem;
}

.search-box button {
  background-color: var(--primary-color);
  color: var(--white);
  border: none;
  padding: 5px 10px;
  border-radius: 0 5px 5px 0;
  cursor: pointer;
  font-size: 0.8rem;
  margin-right: 5px;
  border-radius: 5px;
}

/* Header */
.header {
  background-color: var(--white);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 10px 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.logo-text h1 {
  font-size: 1.2rem;
  color: var(--primary-color);
  margin-bottom: 3px;
}

.logo-text p {
  font-size: 0.7rem;
  color: var(--text-light);
}

.nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  height: 100vh;
  background-color: var(--white);
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  padding: 70px 20px 20px;
  z-index: 999;
  overflow-y: auto;
}

.nav.active {
  right: 0;
}

.nav ul {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.nav a {
  font-weight: 500;
  color: var(--dark-color);
  transition: var(--transition);
  position: relative;
  padding: 8px 0;
  display: block;
  font-size: 1.1rem;
}

.nav a:hover {
  color: var(--primary-color);
}

.nav a::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: var(--transition);
}

.nav a:hover::after {
  width: 100%;
  left: 0;
}

.mobile-menu-btn {
  display: block;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--primary-color);
  z-index: 1000;
}

.mobile-menu-btn .close-icon {
  display: none;
}

.mobile-menu-btn.active .menu-icon {
  display: none;
}

.mobile-menu-btn.active .close-icon {
  display: block;
}

/* Slider */
.slider {
  position: relative;
  height: 400px;
  overflow: hidden;
  margin-bottom: 30px;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: var(--transition);
  background-size: cover;
  background-position: center;
}

.slide.active {
  opacity: 1;
}

.slide-content {
  position: absolute;
  bottom: 50px;
  right: 20px;
  left: 20px;
  background-color: rgba(0, 0, 0, 0.7);
  color: var(--white);
  padding: 20px;
  border-radius: 10px;
  max-width: 500px;
  margin: 0 auto;
}

.slide-content h2 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.slide-content p {
  margin-bottom: 15px;
  font-size: 0.9rem;
}

.slider-controls {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.slider-controls button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: none;
  background-color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: var(--transition);
}

.slider-controls button.active {
  background-color: var(--primary-color);
}

/* About Section */
.about {
  padding: 50px 0;
  background-color: var(--light-color);
}

.about-content {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.about-text {
  flex: 1;
}

.about-text h2 {
  color: var(--primary-color);
  margin-bottom: 15px;
}

.about-text p {
  margin-bottom: 15px;
  line-height: 1.8;
  font-size: 0.95rem;
}

.about-image {
  flex: 1;
}

.about-image img {
  border-radius: 10px;
  box-shadow: var(--box-shadow);
  width: 100%;
  height: auto;
}

/* Services Section */
.services {
  padding: 50px 0;
  background-color: var(--white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.service-card {
  background-color: var(--light-color);
  padding: 20px 15px;
  border-radius: 8px;
  text-align: center;
  transition: var(--transition);
  box-shadow: var(--box-shadow);
}

.service-card:hover {
  transform: translateY(-5px);
  background-color: var(--primary-color);
  color: var(--white);
}

.service-card:hover .service-icon {
  background-color: var(--white);
  color: var(--primary-color);
}

.service-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 15px;
  background-color: var(--primary-color);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  transition: var(--transition);
}

.service-card h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.service-card p {
  font-size: 0.9rem;
}

/* Insurance Section */
.insurance {
  padding: 40px 0;
  background-color: var(--light-color);
}

.insurance-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 20px;
}

.insurance-logos img {
  max-height: 60px;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: var(--transition);
}

.insurance-logos img:hover {
  filter: grayscale(0);
  opacity: 1;
}

/* Map Selector */
.map-selector {
  padding: 40px 0;
  background-color: var(--light-color);
}

.map-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 20px;
}

.map-locations {
  flex: 1;
}

.location-card {
  background-color: var(--white);
  border-radius: 8px;
  padding: 12px;
  margin-bottom: 12px;
  box-shadow: var(--box-shadow);
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
}

.location-card:hover,
.location-card.active {
  border-color: var(--primary-color);
}

.location-card h4 {
  color: var(--primary-color);
  margin-bottom: 8px;
  font-size: 1rem;
}

.location-card p {
  color: var(--text-light);
  margin-bottom: 5px;
  font-size: 0.85rem;
}

.location-card .time {
  color: var(--primary-color);
  font-weight: 500;
  font-size: 0.85rem;
}

.map-display {
  flex: 2;
  height: 300px;
  background-color: #ddd;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
}

.map-display iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Contact Section */
.contact {
  padding: 50px 0;
  background-color: var(--white);
}

.contact .container {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact-info {
  flex: 1;
}

.info-item {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
  align-items: flex-start;
}

.info-item i {
  font-size: 1.1rem;
  color: var(--primary-color);
  margin-top: 3px;
}

.info-item h3 {
  font-size: 1.1rem;
  margin-bottom: 5px;
  color: var(--primary-color);
}

.info-item p {
  color: var(--text-light);
  margin-bottom: 5px;
  font-size: 0.9rem;
}

.contact-form {
  flex: 1;
  background-color: var(--light-color);
  padding: 20px;
  border-radius: 8px;
  box-shadow: var(--box-shadow);
}

.contact-form h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: var(--primary-color);
  text-align: center;
}

.form-group {
  margin-bottom: 15px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-family: inherit;
  font-size: 0.9rem;
  transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(37, 150, 190, 0.2);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

/* Footer */
.footer {
  background-color: var(--dark-color);
  color: var(--white);
  padding: 30px 0 15px;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 25px;
  margin-bottom: 30px;
}

.footer-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}

.footer-logo img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  border-radius: 8px;
}

.footer-logo p {
  font-size: 0.9rem;
  opacity: 0.8;
}

.footer-links {
  text-align: center;
}

.footer-links h4,
.footer-contact h4 {
  font-size: 1.1rem;
  margin-bottom: 15px;
  position: relative;
  padding-bottom: 8px;
}

.footer-links h4::after,
.footer-contact h4::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 50%;
  transform: translateX(50%);
  width: 40px;
  height: 2px;
  background-color: var(--accent-color);
}

.footer-links ul li {
  margin-bottom: 8px;
}

.footer-links a {
  opacity: 0.8;
  transition: var(--transition);
  font-size: 0.9rem;
}

.footer-links a:hover {
  opacity: 1;
  color: var(--accent-color);
}

.footer-contact {
  text-align: center;
}

.footer-contact p {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  opacity: 0.8;
  font-size: 0.9rem;
}

.footer-contact i {
  color: var(--accent-color);
}

.copyright {
  text-align: center;
  padding-top: 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.8rem;
  opacity: 0.7;
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 20px;
  left: 20px;
  width: 40px;
  height: 40px;
  background-color: var(--primary-color);
  color: white;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background-color: var(--secondary-color);
}

/* Responsive Design */
@media (min-width: 576px) {
  .slide-content {
    right: 30px;
    left: auto;
    max-width: 400px;
  }

  .about-content {
    flex-direction: row;
  }

  .footer-content {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  .top-bar {
    font-size: 0.9rem;
    padding: 10px 0;
  }

  .top-contact {
    gap: 20px;
  }

  .search-box input {
    width: 200px;
  }

  .logo img {
    width: 60px;
    height: 60px;
  }

  .logo-text h1 {
    font-size: 1.5rem;
  }

  .logo-text p {
    font-size: 0.8rem;
  }

  .nav {
    position: static;
    width: auto;
    height: auto;
    background-color: transparent;
    box-shadow: none;
    padding: 0;
  }

  .nav ul {
    flex-direction: row;
    gap: 20px;
  }

  .nav a {
    padding: 5px 0;
    font-size: 1rem;
  }

  .mobile-menu-btn {
    display: none;
  }

  .slider {
    height: 500px;
  }

  .slide-content {
    bottom: 80px;
    right: 50px;
    max-width: 500px;
    padding: 30px;
  }

  .slide-content h2 {
    font-size: 2rem;
  }

  .slide-content p {
    font-size: 1rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .services-grid {
    gap: 30px;
  }

  .service-card {
    padding: 30px 20px;
  }

  .service-icon {
    width: 70px;
    height: 70px;
    font-size: 1.5rem;
  }

  .service-card h3 {
    font-size: 1.3rem;
  }

  .map-container {
    flex-direction: row;
  }

  .map-display {
    height: 400px;
  }

  .contact .container {
    flex-direction: row;
  }

  .footer-content {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-logo,
  .footer-links,
  .footer-contact {
    text-align: right;
  }

  .footer-links h4::after,
  .footer-contact h4::after {
    right: 0;
    transform: none;
  }
}

@media (min-width: 992px) {
  .container {
    padding: 0 20px;
  }

  .about-content {
    gap: 50px;
  }

  .contact .container {
    gap: 50px;
  }

  .contact-form {
    padding: 30px;
  }
}
/* Blog Section */
.blog {
  padding: 50px 0;
  background-color: var(--light-color);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.blog-card {
  background-color: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.blog-image {
  height: 200px;
  overflow: hidden;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-card:hover .blog-image img {
  transform: scale(1.05);
}

.blog-content {
  padding: 20px;
}

.blog-date {
  display: block;
  color: var(--primary-color);
  font-size: 0.85rem;
  margin-bottom: 10px;
}

.blog-content h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.blog-content h3 a {
  color: var(--dark-color);
  transition: var(--transition);
}

.blog-content h3 a:hover {
  color: var(--primary-color);
}

.blog-content p {
  color: var(--text-light);
  margin-bottom: 15px;
  font-size: 0.9rem;
}

.read-more {
  color: var(--primary-color);
  font-weight: 500;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 5px;
}

.view-all {
  text-align: center;
  margin-top: 30px;
}

@media (min-width: 768px) {
  .blog-grid {
    gap: 30px;
  }

  .blog-content {
    padding: 25px;
  }

  .blog-content h3 {
    font-size: 1.3rem;
  }
}
/* Blog Page */
.blog-page {
  padding: 50px 0;
  background-color: var(--light-color);
}

.page-title {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 30px;
  text-align: center;
  position: relative;
}

.page-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  right: 50%;
  transform: translateX(50%);
  width: 80px;
  height: 3px;
  background-color: var(--accent-color);
}

.blog-page-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

/* Pagination */
.pagination {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 40px;
}

.pagination a {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border-radius: 5px;
  background-color: var(--white);
  color: var(--dark-color);
  transition: var(--transition);
}

.pagination a:hover,
.pagination a.active {
  background-color: var(--primary-color);
  color: var(--white);
}

/* Blog Post Page */
.blog-post {
  padding: 50px 0;
  background-color: var(--light-color);
}

.post-header {
  margin-bottom: 30px;
  text-align: center;
}

.post-date {
  display: block;
  color: var(--primary-color);
  margin-bottom: 10px;
  font-size: 0.9rem;
}

.post-title {
  font-size: 1.8rem;
  color: var(--dark-color);
  margin-bottom: 15px;
}

.post-meta {
  display: flex;
  justify-content: center;
  gap: 20px;
  color: var(--text-light);
  font-size: 0.9rem;
}

.post-meta i {
  color: var(--primary-color);
  margin-left: 5px;
}

.post-image {
  margin-bottom: 30px;
  border-radius: 8px;
  overflow: hidden;
}

.post-image img {
  width: 100%;
  height: auto;
  display: block;
}

.post-content {
  line-height: 1.8;
  margin-bottom: 40px;
}

.post-content h2 {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin: 25px 0 15px;
}

.post-content h3 {
  font-size: 1.3rem;
  margin: 20px 0 10px;
}

.post-content p,
.post-content li {
  margin-bottom: 15px;
}

.post-content ul,
.post-content ol {
  margin-right: 20px;
  margin-bottom: 20px;
}

.post-content li {
  margin-bottom: 8px;
}

.post-note {
  background-color: rgba(37, 150, 190, 0.1);
  border-right: 3px solid var(--primary-color);
  padding: 15px;
  margin: 20px 0;
  border-radius: 0 5px 5px 0;
}

.post-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid #eee;
  margin-top: 30px;
}

.post-tags {
  margin-bottom: 15px;
}

.post-tags a {
  color: var(--primary-color);
  margin-left: 5px;
}

.post-share {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}

.post-share a {
  display: inline-flex;
  width: 35px;
  height: 35px;
  background-color: var(--primary-color);
  color: white;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.post-share a:hover {
  background-color: var(--secondary-color);
  transform: translateY(-3px);
}

/* Related Posts */
.related-posts {
  margin-top: 50px;
}

.related-posts h3 {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid #eee;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.related-card {
  background-color: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.related-card:hover {
  transform: translateY(-5px);
}

.related-card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
}

.related-card h4 {
  padding: 15px;
  font-size: 1.1rem;
}

.related-card a {
  color: var(--dark-color);
}

.related-card a:hover {
  color: var(--primary-color);
}

@media (min-width: 768px) {
  .post-title {
    font-size: 2.2rem;
  }

  .post-content {
    font-size: 1.05rem;
  }

  .related-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .related-card img {
    height: 200px;
  }
}
.top-bar {
  background-color: #2c3e50;
  color: white;
  padding: 10px 0;
  font-family: "Tajawal", sans-serif;
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
}

/* Search box - left */
.search-box {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 30px;
  padding: 5px 15px;
  flex: 1;
  max-width: 300px;
}

.search-box input {
  background: transparent;
  border: none;
  color: white;
  padding: 5px 10px;
  width: 100%;
}

.search-box input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.search-box button {
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  padding: 0 5px;
}

/* Phone number - center */
.top-contact {
  display: flex;
  justify-content: center;
  flex: 1;
}

.highlighted-number a {
  display: inline-flex;
  align-items: center;
  color: white;
  text-decoration: none;
  font-weight: 700;
  background-color: #309cac;
  padding: 8px 25px;
  border-radius: 30px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  white-space: nowrap;
}

.highlighted-number a:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  color: white;
}

.highlighted-number i {
  font-size: 1.2rem;
  margin-left: 8px;
}

.phone-number {
  font-size: 1.3rem;
  margin: 0 5px;
}

/* Email - right */
.top-email {
  display: flex;
  justify-content: flex-end;
  flex: 1;
}

.top-email a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
  white-space: nowrap;
  display: flex;
  align-items: center;
}

.top-email a:hover {
  color: white;
}

.top-email i {
  margin-left: 5px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .top-bar .container {
    flex-wrap: wrap;
    gap: 10px;
  }

  .search-box,
  .top-contact,
  .top-email {
    flex: 100%;
    max-width: 100%;
    justify-content: center;
  }

  .top-email {
    order: 3;
  }

  .highlighted-number a {
    padding: 8px 20px;
  }
}
/* Email - left */
.top-email {
  display: flex;
  justify-content: flex-start; /* Changed from flex-end */
  flex: 1;
}

/* Search box - right */
.search-box {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 30px;
  padding: 5px 15px;
  flex: 1;
  max-width: 300px;
  justify-content: flex-end; /* Added to align search to right */
}

/* Responsive adjustments remain the same */
@media (max-width: 768px) {
  .top-bar .container {
    flex-wrap: wrap;
    gap: 10px;
  }

  .search-box,
  .top-contact,
  .top-email {
    flex: 100%;
    max-width: 100%;
    justify-content: center;
  }

  .search-box {
    order: 3;
  }
}
