.elementor-107 .elementor-element.elementor-element-6cdeaa4{--display:flex;}:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-df218a9 *//* ============================================
   Almiral Energy — Home Hero Section CSS
   ============================================ */

.almiral-hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 120px 20px 80px;
  box-sizing: border-box;
  direction: rtl; /* لضمان الاتجاه العربي */
  font-family: inherit;
}

.almiral-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}

.almiral-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.55) 0%,
    rgba(0, 0, 0, 0.65) 60%,
    rgba(10, 60, 45, 0.75) 100%
  );
  z-index: 1;
}

.almiral-hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  margin: 0 auto;
}

.almiral-hero-badge {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(255, 255, 255, 0.15);
  border: 0.5px solid rgba(255, 255, 255, 0.35);
  border-radius: 20px;
  font-size: 13px;
  color: #ffffff;
  letter-spacing: 0.04em;
  margin-bottom: 24px;
  backdrop-filter: blur(4px);
}

.almiral-hero-title {
  font-size: clamp(28px, 5vw, 52px);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.3;
  margin: 0 0 20px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}

.almiral-hero-title span {
  color: #4ECBA0; /* الأخضر الفاتح للتركيز */
}

.almiral-hero-sub {
  font-size: clamp(15px, 2vw, 18px);
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.75;
  max-width: 560px;
  margin: 0 auto 36px;
}

/* ── الأزرار ── */
.almiral-hero-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.almiral-hero-btn-primary {
  padding: 13px 28px;
  background: #0F6E56;
  color: #ffffff !important;
  font-size: 15px;
  font-weight: 500;
  border-radius: 8px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.15s ease, transform 0.1s ease;
  box-shadow: 0 4px 16px rgba(15, 110, 86, 0.4);
}

.almiral-hero-btn-primary:hover {
  background: #085041;
  transform: translateY(-1px);
  color: #ffffff !important;
}

.almiral-hero-btn-secondary {
  padding: 12px 28px;
  background: transparent;
  color: #ffffff !important;
  font-size: 15px;
  font-weight: 400;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  text-decoration: none;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease;
  backdrop-filter: blur(4px);
}

.almiral-hero-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.8);
  color: #ffffff !important;
}

/* ── الإحصائيات ── */
.almiral-hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: rgba(255, 255, 255, 0.1);
  border: 0.5px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  backdrop-filter: blur(8px);
  overflow: hidden;
  max-width: 500px;
  margin: 0 auto;
}

.almiral-hero-stat {
  flex: 1;
  padding: 18px 12px;
  text-align: center;
  border-left: 0.5px solid rgba(255, 255, 255, 0.2); /* الخطوط متوافقة مع اليمين لليسار */
}

.almiral-hero-stat:last-child {
  border-left: none;
}

.almiral-hero-stat-num {
  font-size: 26px;
  font-weight: 700;
  color: #4ECBA0;
  line-height: 1;
  margin-bottom: 6px;
}

.almiral-hero-stat-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.4;
}

/* ── سهم التمرير لأسفل ── */
.almiral-hero-scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  opacity: 0.6;
  transition: opacity 0.15s;
  text-decoration: none;
}

.almiral-hero-scroll:hover {
  opacity: 1;
}

.almiral-hero-scroll-line {
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, transparent, #ffffff);
}

.almiral-hero-scroll-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ffffff;
  animation: scrollBounce 1.5s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(6px); opacity: 0.4; }
}

/* ── موبايل ── */
@media (max-width: 768px) {
  .almiral-hero {
    min-height: 100svh;
    padding: 100px 20px 70px;
  }
  .almiral-hero-btns {
    flex-direction: column;
    gap: 12px;
    margin-bottom: 40px;
  }
  .almiral-hero-btn-primary,
  .almiral-hero-btn-secondary {
    width: 100%;
    max-width: 280px;
  }
  .almiral-hero-stat-num {
    font-size: 20px;
  }
  .almiral-hero-stat-label {
    font-size: 11px;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-107b37c *//* ============================================
   Almiral Energy — Short About Section CSS
   ============================================ */

.almiral-about-short {
  padding: 100px 20px;
  background-color: #ffffff;
  direction: ltr;
  font-family: inherit;
}

.about-short-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 60px;
}

.about-short-image {
  flex: 1;
}

.about-short-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.about-short-content {
  flex: 1;
}

.section-subtitle {
  color: #0F6E56;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 12px;
}

.section-title {
  color: #11181f;
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 700;
  margin: 0 0 20px;
}

.about-short-desc {
  color: #6c7c8c;
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 30px;
}

.almiral-btn-primary {
  display: inline-block;
  padding: 12px 28px;
  background: #0F6E56;
  color: #ffffff !important;
  font-size: 15px;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.almiral-btn-primary:hover {
  background: #085041;
}

/* Mobile */
@media (max-width: 992px) {
  .about-short-container {
    flex-direction: column;
    text-align: center;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-13b7cec *//* ============================================
   Almiral Energy — Services Section CSS (English)
   ============================================ */

.almiral-services-section {
  padding: 100px 20px;
  background-color: #f8fafc; /* لون رمادي/أزرق فاتح جداً يبرز الكروت البيضاء */
  font-family: inherit;
  direction: ltr; /* اتجاه اللغة الإنجليزية */
}

.services-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* ── Section Header ── */
.services-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-subtitle {
  color: #0F6E56;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 12px;
}

.section-title {
  color: #11181f;
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 700;
  margin: 0;
}

/* ── Grid Layout ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

/* ── Service Card ── */
.service-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 40px 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
  border-bottom: 3px solid transparent;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(15, 110, 86, 0.1);
  border-bottom-color: #0F6E56; /* خط أخضر يظهر بالأسفل عند الوقوف بالماوس */
}

/* ── Icons ── */
.service-icon {
  width: 70px;
  height: 70px;
  background: rgba(15, 110, 86, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  color: #0F6E56;
  font-size: 28px;
  transition: all 0.3s ease;
}

.service-card:hover .service-icon {
  background: #0F6E56;
  color: #ffffff;
}

/* ── Typography ── */
.service-title {
  color: #11181f;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 15px;
}

.service-desc {
  color: #6c7c8c;
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 25px;
  flex-grow: 1; /* لجعل زر (Read More) دائماً في الأسفل */
}

/* ── Link / Button ── */
.service-link {
  color: #0F6E56;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.3s ease;
}

.service-link:hover {
  gap: 12px; /* السهم يتحرك لليمين قليلاً كتأثير حركي */
}

/* ── Mobile Adjustments ── */
@media (max-width: 768px) {
  .almiral-services-section {
    padding: 70px 20px;
  }
  .service-card {
    padding: 30px 20px;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-d53dfdc *//* ============================================
   Almiral Energy — Why Choose Us CSS (English)
   ============================================ */

.almiral-why-us {
  padding: 100px 20px;
  background-color: #ffffff;
  font-family: inherit;
  direction: ltr; /* English Direction */
  overflow: hidden;
}

.why-us-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 60px;
}

/* ── Left Content ── */
.why-us-content {
  flex: 1;
}

.section-subtitle {
  color: #0F6E56;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 12px;
}

.section-title {
  color: #11181f;
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 20px;
}

.why-us-desc {
  color: #6c7c8c;
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 40px;
}

/* Features List */
.why-us-features {
  list-style: none;
  padding: 0;
  margin: 0 0 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.why-us-features li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.feature-icon {
  width: 50px;
  height: 50px;
  background: #f0f7f5;
  color: #0F6E56;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.feature-text h4 {
  color: #11181f;
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 6px;
}

.feature-text p {
  color: #6c7c8c;
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

/* Outline Button */
.almiral-btn-outline {
  display: inline-block;
  padding: 12px 28px;
  background: transparent;
  color: #0F6E56;
  font-size: 15px;
  font-weight: 600;
  border-radius: 8px;
  border: 2px solid #0F6E56;
  text-decoration: none;
  transition: all 0.3s ease;
}

.almiral-btn-outline:hover {
  background: #0F6E56;
  color: #ffffff;
}

/* ── Right Content (Image) ── */
.why-us-image-wrapper {
  flex: 1;
  position: relative;
}

.why-us-image {
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  display: block;
}

.floating-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: #0F6E56;
  color: #ffffff;
  padding: 24px 32px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(15, 110, 86, 0.3);
  display: flex;
  align-items: center;
  gap: 16px;
  border: 4px solid #ffffff;
}

.badge-num {
  font-size: 40px;
  font-weight: 700;
  line-height: 1;
}

.badge-text {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.3;
}

/* ── Mobile Adjustments ── */
@media (max-width: 992px) {
  .why-us-container {
    flex-direction: column;
  }
  .floating-badge {
    left: 20px;
    bottom: -20px;
    padding: 16px 24px;
  }
  .badge-num {
    font-size: 32px;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-69a3fd8 *//* ============================================
   Almiral Energy — Call To Action CSS (English)
   ============================================ */

.almiral-cta-section {
  padding: 100px 20px;
  /* تدرج لوني أخضر فخم يكسر اللون الأبيض في الصفحة */
  background: linear-gradient(135deg, #0F6E56 0%, #085041 100%);
  text-align: center;
  direction: ltr; /* English Direction */
  font-family: inherit;
  margin-top: 50px; /* مسافة بينه وبين القسم اللي قبله */
}

.cta-container {
  max-width: 800px;
  margin: 0 auto;
}

.cta-content h2 {
  color: #ffffff;
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  margin: 0 0 20px;
  line-height: 1.3;
}

.cta-content p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
  line-height: 1.6;
  margin: 0 0 40px;
}

/* ── الأزرار ── */
.cta-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.cta-buttons .btn-primary {
  padding: 14px 32px;
  background: #ffffff;
  color: #0F6E56 !important;
  font-size: 16px;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.cta-buttons .btn-primary:hover {
  background: #f0f7f5;
  transform: translateY(-3px);
}

.cta-buttons .btn-secondary {
  padding: 14px 32px;
  background: transparent;
  color: #ffffff !important;
  font-size: 16px;
  font-weight: 600;
  border-radius: 8px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.cta-buttons .btn-secondary:hover {
  border-color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-3px);
}

/* ── الموبايل ── */
@media (max-width: 768px) {
  .almiral-cta-section {
    padding: 70px 20px;
  }
  .cta-buttons {
    flex-direction: column;
    width: 100%;
  }
  .cta-buttons .btn-primary,
  .cta-buttons .btn-secondary {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
}/* End custom CSS */