html,
body {
  margin: 0;
  padding: 0;
}

body {
  background-color: #f0f0f0;
  --primary-color: #0c7fbe;
  --secondary-color: #f2be31;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* Material Icons */
.material-icons {
  font-family: "Material Icons";
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-feature-settings: "liga";
  -webkit-font-smoothing: antialiased;
}

/* Icon styling */
.material-icons,
.material-icons-outlined {
  color: white;
  vertical-align: middle;
}

.header .header__top {
  background-color: var(--primary-color);
  padding: 8px 0;
}

.header .header__top .header__top__phone {
  color: white;
  font-size: 14px;
  font-weight: bold;
}

.header .header__top .header__top__email {
  color: white;
  font-size: 14px;
  font-weight: bold;
}

@media (max-width: 768px) {
  .header .header__top .header__top__email {
    font-size: 12px;
  }
}
/* Language Switcher */
.language-switcher {
  display: flex;
  gap: 5px;
  align-items: center;
}

.lang-btn {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: white;
  padding: 5px 10px;
  border-radius: 15px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 3px;
}

.lang-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
}

.lang-btn.active {
  background: var(--secondary-color);
  border-color: var(--secondary-color);
  color: var(--primary-color);
}

.lang-btn .material-icons {
  font-size: 16px;
  color: inherit;
}
/* Header Bottom Styles */
.header .header__bottom {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  padding: 15px 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: relative;
}

.header .header__bottom::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--primary-color),
    var(--secondary-color)
  );
}

.header .header__bottom .header__bottom__logo {
  width: 120px;
  height: auto;
  transition: transform 0.3s ease;
}

.header .header__bottom .header__bottom__logo:hover {
  transform: scale(1.05);
}

/* Navigation Styles */
.header .header__bottom .header__bottom__nav .header__bottom__nav__list {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 5px;
  margin: 0;
  padding: 0;
}

.header .header__bottom .header__bottom__nav .header__bottom__nav__list li {
  list-style: none;
  margin: 0;
}

.header
  .header__bottom
  .header__bottom__nav
  .header__bottom__nav__list
  .header__bottom__nav__list__item {
  color: var(--primary-color);
  font-size: 15px;
  font-weight: 600;
  display: flex;
  align-items: center;
  text-decoration: none;
  padding: 12px 20px;
  border-radius: 25px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.header
  .header__bottom
  .header__bottom__nav
  .header__bottom__nav__list
  .header__bottom__nav__list__item::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  transition: left 0.3s ease;
  z-index: -1;
}

.header
  .header__bottom
  .header__bottom__nav
  .header__bottom__nav__list
  .header__bottom__nav__list__item:hover::before {
  left: 0;
}

.header
  .header__bottom
  .header__bottom__nav
  .header__bottom__nav__list
  .header__bottom__nav__list__item
  .material-icons {
  color: var(--secondary-color);
  font-size: 18px;
  margin-right: 8px;
  transition: all 0.3s ease;
}

.header
  .header__bottom
  .header__bottom__nav
  .header__bottom__nav__list
  .header__bottom__nav__list__item:hover {
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(12, 127, 190, 0.3);
}

.header
  .header__bottom
  .header__bottom__nav
  .header__bottom__nav__list
  .header__bottom__nav__list__item:hover
  .material-icons {
  color: white;
  transform: scale(1.1);
}

/* Active State */
.header
  .header__bottom
  .header__bottom__nav
  .header__bottom__nav__list
  .header__bottom__nav__list__item.active {
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  color: white;
  box-shadow: 0 3px 10px rgba(12, 127, 190, 0.2);
}

.header
  .header__bottom
  .header__bottom__nav
  .header__bottom__nav__list
  .header__bottom__nav__list__item.active
  .material-icons {
  color: white;
}

#carouselExampleIndicators img {
  height: 500px;
  object-fit: cover;
}
@media (max-width: 768px) {
  #carouselExampleIndicators img {
    height: 300px;
  }
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
  background: none;
  border: none;
  color: var(--primary-color);
  font-size: 28px;
  cursor: pointer;
  padding: 8px;
  border-radius: 5px;
  transition: all 0.3s ease;
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
}

.mobile-menu-toggle:hover {
  background-color: rgba(12, 127, 190, 0.1);
  color: var(--secondary-color);
}

.mobile-menu-toggle .material-icons {
  color: inherit;
}
html[lang="ar"] .mobile-menu-toggle {
  right: auto;
  left: 15px;
}

/* Mobile Navigation */
.mobile-nav {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: white;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  border-radius: 0 0 10px 10px;
  transform: translateY(-100%);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
}

.mobile-nav.active {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.mobile-nav__list {
  display: flex;
  flex-direction: column;
  padding: 0;
  margin: 0;
}

.mobile-nav__item {
  display: flex;
  align-items: center;
  padding: 15px 20px;
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  border-bottom: 1px solid #f0f0f0;
  transition: all 0.3s ease;
}

.mobile-nav__item:last-child {
  border-bottom: none;
}

.mobile-nav__item:hover {
  background-color: rgba(12, 127, 190, 0.1);
  color: var(--secondary-color);
}

.mobile-nav__item.active {
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  color: white;
}

.mobile-nav__item .material-icons {
  margin-right: 12px;
  font-size: 20px;
  color: inherit;
}

/* Responsive Design */
@media (max-width: 991px) {
  .header .header__bottom .header__bottom__logo {
    width: 100px;
  }

  .header .header__bottom {
    position: relative;
  }
}

@media (max-width: 768px) {
  .header .header__bottom .header__bottom__logo {
    width: 80px;
  }

  .mobile-menu-toggle {
    right: 10px;
  }

  .language-switcher {
    gap: 3px;
  }

  .lang-btn {
    padding: 4px 8px;
    font-size: 11px;
  }
}

/* Arabic Font Support */
html[lang="ar"] {
  font-family: "Cairo", "Arial", sans-serif;
}

html[lang="ar"] body {
  font-family: "Cairo", "Arial", sans-serif;
}

/* RTL Support */
html[dir="rtl"] {
  direction: rtl !important;
  text-align: right !important;
}
html[dir="rtl"] .text-start {
  text-align: right !important;
}
html[dir="rtl"] .text-end {
  text-align: left !important;
}

.section-title {
  color: var(--primary-color);
  font-size: 42px;
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 25px;
  position: relative;
  letter-spacing: 2px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.section-title::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--secondary-color),
    var(--primary-color)
  );
  border-radius: 2px;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--primary-color),
    var(--secondary-color)
  );
  border-radius: 2px;
}

.section-description {
  color: #6c757d;
  font-size: 14px;
  text-align: center;
  max-width: 390px;
  margin: 0 auto;
  line-height: 1.2;
  font-weight: 400;
  margin-bottom: 50px;
  position: relative;
  font-style: italic;
}

.section-description::before {
  content: "";
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background: linear-gradient(
    90deg,
    var(--secondary-color),
    var(--primary-color)
  );
  border-radius: 1px;
}

/* Services Section */
#services {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

#services::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(
    90deg,
    var(--primary-color),
    var(--secondary-color)
  );
}

#services::after {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 40%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(12, 127, 190, 0.05) 0%,
    transparent 70%
  );
  transform: rotate(15deg);
}

.service-item {
  background: white;
  padding: 50px 35px 20px;
  border-radius: 25px;
  text-align: center;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  margin-bottom: 40px;
  height: 100%;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.service-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(12, 127, 190, 0.08),
    rgba(242, 190, 49, 0.08)
  );
  transition: left 0.6s ease;
}

.service-item::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--primary-color),
    var(--secondary-color)
  );
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.service-item:hover::before {
  left: 0;
}

.service-item:hover::after {
  transform: scaleX(1);
}

.service-item:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.service-item__icon {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
  position: relative;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.service-item:hover .service-item__icon {
  transform: scale(1.15) rotate(5deg);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
}

.service-item__icon::before {
  content: "";
  position: absolute;
  top: -8px;
  left: -8px;
  right: -8px;
  bottom: -8px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
}

.service-item:hover .service-item__icon::before {
  opacity: 0.2;
}

.service-item__icon::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 50%;
  background: radial-gradient(
    circle at 30% 30%,
    rgba(255, 255, 255, 0.3),
    transparent 50%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-item:hover .service-item__icon::after {
  opacity: 1;
}

.service-item .material-icons {
  font-size: 70px;
  color: white;
  position: relative;
  z-index: 2;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.service-item:hover .material-icons {
  transform: scale(1.1);
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

/* Service Icons Colors - Using Primary Colors */
.service-item:nth-child(1) .service-item__icon {
  background: linear-gradient(135deg, var(--primary-color), #0a5a8a);
}

.service-item:nth-child(2) .service-item__icon {
  background: linear-gradient(135deg, var(--secondary-color), #d4a017);
}

.service-item:nth-child(3) .service-item__icon {
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
}

.service-item:nth-child(4) .service-item__icon {
  background: linear-gradient(
    135deg,
    var(--secondary-color),
    var(--primary-color)
  );
}

.service-item__title {
  font-size: 26px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 20px;
  transition: all 0.4s ease;
  position: relative;
}

.service-item__title::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--primary-color),
    var(--secondary-color)
  );
  transition: width 0.4s ease;
}

.service-item:hover .service-item__title::after {
  width: 60px;
}

.service-item:hover .service-item__title {
  color: var(--secondary-color);
  transform: translateY(-2px);
}

.service-item__description {
  font-size: 17px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 25px;
  transition: color 0.3s ease;
}

.service-item:hover .service-item__description {
  color: #333;
}

.service-item__features {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.feature-tag {
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  color: white;
  padding: 6px 10px;
  border-radius: 25px;
  font-size: 9px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 15px rgba(12, 127, 190, 0.3);
  position: relative;
  overflow: hidden;
}

.feature-tag::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 ease;
}

.feature-tag:hover::before {
  left: 100%;
}

.service-item:hover .feature-tag {
  transform: translateY(-3px) scale(1.08);
  box-shadow: 0 8px 25px rgba(12, 127, 190, 0.4);
}

/* Responsive Design */
@media (max-width: 768px) {
  #services {
    padding: 80px 0;
  }

  .service-item {
    padding: 40px 25px;
    margin-bottom: 30px;
  }

  .service-item__icon {
    width: 120px;
    height: 120px;
  }

  .service-item .material-icons {
    font-size: 60px;
  }

  .service-item__title {
    font-size: 22px;
  }

  .service-item__description {
    font-size: 15px;
  }

  .feature-tag {
    padding: 6px 15px;
    font-size: 12px;
  }
}

@media (max-width: 576px) {
  #services {
    padding: 60px 0;
  }

  .service-item {
    padding: 35px 20px;
    margin-bottom: 25px;
  }

  .service-item__icon {
    width: 100px;
    height: 100px;
  }

  .service-item .material-icons {
    font-size: 50px;
  }

  .service-item__title {
    font-size: 20px;
  }

  .service-item__description {
    font-size: 14px;
  }
}

#partners {
  padding: 50px 0;
  background-color: #f8f9fa;
}

.partner-item {
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  cursor: pointer;
  /* background-color: white;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.partner-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
  background-color: white;
}

.partner-item__image {
  width: 110px;
  height: 110px;
  margin: 0 auto 15px;
  border-radius: 10px;
  overflow: hidden;
  transition: border-color 0.3s ease;
}

.partner-item:hover .partner-item__image {
  border-color: var(--secondary-color);
}

.partner-item__image img {
  width: 100%;
  height: 100%;
  transition: transform 0.3s ease;
}

.partner-item:hover .partner-item__image img {
  transform: scale(1.1);
}

.partner-item__name {
  font-size: 16px;
  font-weight: bold;
  color: var(--primary-color);
  margin: 0;
}

.partner-item__location {
  font-size: 14px;
  color: #a0b4be;
  margin: 0;
}

/* Owl Carousel Customization */
.partners-carousel .owl-nav {
  margin-top: 30px;
}

.partners-carousel .owl-nav button {
  background-color: var(--primary-color) !important;
  color: white !important;
  border-radius: 50% !important;
  width: 40px !important;
  height: 40px !important;
  font-size: 18px !important;
  margin: 0 10px !important;
  transition: background-color 0.3s ease !important;
}

.partners-carousel .owl-nav button:hover {
  background-color: var(--secondary-color) !important;
}

.partners-carousel .owl-dots {
  margin-top: 20px;
}

.partners-carousel .owl-dots .owl-dot {
  background-color: #ccc !important;
  border-radius: 50% !important;
  width: 12px !important;
  height: 12px !important;
  margin: 0 5px !important;
  transition: background-color 0.3s ease !important;
}

/* Footer Styles */
footer {
  background: linear-gradient(135deg, #053955 0%, #0c7fbe 100%);
  padding: 60px 0 20px;
  color: white;
}

.footer-section {
  margin-bottom: 40px;
}

.footer-title {
  color: var(--secondary-color);
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 30px;
  text-transform: uppercase;
  position: relative;
}

.footer-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 50px;
  height: 3px;
  background-color: var(--secondary-color);
}

html[lang="ar"] .footer-title::after {
  left: auto;
  right: 0;
}

.footer-description {
  color: #e0e0e0;

  margin: 0;
  font-weight: bold;
  font-size: 20px;
}

.footer-logo {
  margin-bottom: 20px;
}

/* Contact Info Styles */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.contact-icon {
  width: 50px;
  height: 50px;
  background-color: var(--secondary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.contact-item:hover .contact-icon {
  transform: scale(1.1);
}

.contact-icon .material-icons {
  color: white;
  font-size: 24px;
}

.contact-details h4 {
  color: var(--secondary-color);
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 5px;
}

.contact-details p {
  color: #e0e0e0;
  font-size: 14px;
  margin: 2px 0;
  line-height: 1.4;
}
.contact-details.contact-details--phones p {
  text-align: left !important;
  direction: ltr !important;
}

/* Social Media Styles */
.social-media {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: flex-start;
}

.social-link {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.social-link::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 ease;
}

.social-link:hover::before {
  left: 100%;
}

.social-link .material-icons {
  font-size: 28px;
  color: white;
  transition: transform 0.3s ease;
}

.social-link:hover {
  transform: translateY(-5px) scale(1.1);
}

.social-link:hover .material-icons {
  transform: scale(1.2);
}

/* Social Media Colors */
.social-link.facebook {
  background: linear-gradient(135deg, #1877f2, #42a5f5);
}

.social-link.twitter {
  background: linear-gradient(135deg, #1da1f2, #42a5f5);
}

.social-link.instagram {
  background: linear-gradient(135deg, #e4405f, #fd1d1d, #fcb045);
}

.social-link.linkedin {
  background: linear-gradient(135deg, #0077b5, #00a0dc);
}

.social-link.youtube {
  background: linear-gradient(135deg, #ff0000, #ff4444);
}

.social-link.whatsapp {
  background: linear-gradient(135deg, #25d366, #128c7e);
}

.social-link.telegram {
  background: linear-gradient(135deg, #0088cc, #229ed9);
}

.social-link.tiktok {
  background: linear-gradient(135deg, #000000, #ff0050);
}

/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  margin-top: 40px;
}
@media (max-width: 768px) {
  .footer-section {
    margin-top: 50px;
  }
}

.footer-bottom p {
  color: #b0b0b0;
  font-size: 14px;
  margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .footer-title {
    font-size: 24px;
    text-align: center;
  }

  .footer-title::after {
    left: 50%;
    transform: translateX(-50%);
  }

  /* .contact-item {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  } */

  .social-media {
    justify-content: center;
  }

  .social-link {
    width: 50px;
    height: 50px;
  }

  .social-link .material-icons {
    font-size: 24px;
  }
}
