/* Fakieh Madani Font */
@font-face {
  font-family: 'Fakieh Madani Medium';
  src: url('../fonts/Fakieh.woff2') format('woff2'),
       url('../fonts/Fakieh.woff') format('woff');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Fakieh Madani';
  src: url('../fonts/Fakieh.woff2') format('woff2'),
       url('../fonts/Fakieh.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Fakieh-Madani';
  src: url('../fonts/Fakieh.woff2') format('woff2'),
       url('../fonts/Fakieh.woff') format('woff');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

a,
a:hover {
  text-decoration: none;
  color: inherit;
}

p {
  margin: 0;
}

ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

button:focus {
  outline: none !important;
}

.btn {
  outline: none !important;
  box-shadow: none !important;
}

.rest-btn {
  background: transparent;
  border: 0;
  outline: none !important;
  box-shadow: none !important;
  padding: 0;
  cursor: pointer;
  transition: none;
}

:root {
  --mainColor1: #1e3a5f;
  --mainColor2: #2d4f7c;
  --secondColor1: #c0c0c0;
  --secondColor2: #e8e8e8;
  --accentColor: #4a90e2;
  --white: #ffffff;
  --lightGray: #f5f5f5;
  --darkGray: #2c2c2c;
}

@media (min-width: 1200px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl {
    max-width: 1112px;
  }
}

body {
  font-family: "Fakieh Madani", "Fakieh-Madani", Arial, Helvetica, sans-serif;
  font-size: 16px;
  text-align: start;
  min-height: 100vh;
  background: var(--lightGray);
  color: var(--darkGray);
  direction: rtl;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Fakieh-Madani", "Fakieh Madani Medium", "Fakieh Madani", sans-serif;
  font-weight: bold;
}

/* Ensure all text elements use Fakieh Madani */
p, span, a, li, div, button, input, textarea, select, label {
  font-family: "Fakieh Madani", "Fakieh-Madani", Arial, Helvetica, sans-serif;
}

/* Specific font weights */
.font-medium {
  font-family: "Fakieh Madani Medium", sans-serif;
  font-weight: 500;
}

.font-bold {
  font-family: "Fakieh-Madani", sans-serif;
  font-weight: bold;
}

@media (max-width: 767px) {
  body {
    font-size: 14px;
  }
}

body::-webkit-scrollbar-track {
  background: var(--white);
}

body::-webkit-scrollbar-thumb {
  background: var(--mainColor1);
}

body::-webkit-scrollbar {
  width: 7px;
  height: 7px;
}

body.no-scroll {
  overflow: hidden;
}


.main-btn {
  background: transparent linear-gradient(90deg, #1e3a5f 20%, #2d4f7c 24%, #3a5f8f 45%, #4a6fa0 66%, #5a7fb0 83%) 0% 0% no-repeat padding-box;
  color: var(--white);
  border: 0;
  border-radius: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
  padding: 12px 30px;
  font-weight: 600;
}

.main-btn span {
  transition: 0.3s;
}

.main-btn svg {
  transition: 0.3s;
  margin-right: 8px;
}

.main-btn:is(:active, :hover, :focus, :focus-within, :focus-visible) {
  background: transparent linear-gradient(216deg, #4a90e2 0%, #5ba0f2 10%, #4a90e2 22%, #5ba0f2 100%) 0% 0% no-repeat padding-box;
  color: var(--white);
}

.main-btn:is(:active, :hover, :focus, :focus-within, :focus-visible) span {
  transform: translateX(-3px);
}

.main-btn:is(:active, :hover, :focus, :focus-within, :focus-visible) svg {
  transform: translateX(-3px);
}

.second-btn {
  background: transparent linear-gradient(257deg, #4a90e2 0%, #5ba0f2 100%) 0% 0% no-repeat padding-box;
  color: var(--white) !important;
  border: 0;
  border-radius: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 30px;
  font-weight: 600;
  gap: 8px;
}

.second-btn:is(:active, :hover, :focus, :focus-within, :focus-visible) {
  background: transparent linear-gradient(-257deg, #4a90e2 0%, #5ba0f2 100%) 0% 0% no-repeat padding-box;
}

.btn-outline-gray {
  color: var(--white) !important;
  border: 1px solid #E6E6E6 !important;
  font-size: 12px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 28px;
  padding: 8px 20px;
}

.btn-white {
  background: var(--white);
  border-radius: 23px;
  border: none !important;
  color: #252525;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 25px;
}

.btn-white:hover {
  background: #ebebeb !important;
}

/* Header Styles */
header {
  height: 69px;
  background: transparent;
  display: flex;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: all 0.3s ease;
}

header.transparent {
  background: transparent !important;
}

header.transparent::after {
  display: none !important;
}

header.sticky {
  position: fixed;
  animation: menu_sticky 0.7s ease-in-out;
  background: transparent linear-gradient(90deg, #1e3a5f 20%, #2d4f7c 24%, #3a5f8f 45%, #4a6fa0 66%, #5a7fb0 83%) 0% 0% no-repeat padding-box;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

header::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(24px) brightness(1) opacity(0.9);
  z-index: 1;
  display: none;
}

header.sticky::after {
  display: block;
}

header .header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 2;
}

header .header-inner .header-logo span img {
  width: 120px;
  height: auto;
}

header .header-inner .header-logo span.logo-sticky {
  display: none;
}

header.sticky .header-inner .header-logo span.main-logo {
  display: none;
}

header.sticky .header-inner .header-logo span.logo-sticky {
  display: block;
}

header .header-inner .header-menu ul {
  display: flex;
  align-items: center;
  gap: 12px;
}

@media (max-width: 1199px) {
  header .header-inner .header-menu ul {
    gap: 5px;
  }
}

header .header-inner .header-menu ul li a {
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  padding: 4px 14px;
  border-radius: 16px;
  transition: 0.3s;
}

header .header-inner .header-menu ul li a:hover {
  background: rgba(255, 255, 255, 0.24);
}

header .header-inner .header-menu ul li.active a {
  background: rgba(255, 255, 255, 0.24);
}

header .header-inner .header-menu .close-menu-toggle {
  display: none;
}

@media (max-width: 991px) {
  header .header-inner .header-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: transparent linear-gradient(to bottom, #1e3a5f 20%, #2d4f7c 24%, #3a5f8f 45%, #4a6fa0 66%, #5a7fb0 83%) 0% 0% no-repeat padding-box;
    transform: translateY(-120%);
    transition: 0.8s;
    border-radius: 0 0 100vw 100vw;
    opacity: 0;
    z-index: 999;
    padding: 20px;
    overflow-y: scroll;
  }
  
  header .header-inner .header-menu ul {
    flex-direction: column;
    align-items: center;
    gap: 25px;
    padding-top: 50px;
  }
  
  header .header-inner .header-menu.show {
    opacity: 1;
    transform: translateY(0);
    border-radius: 0;
  }
  
  header .header-inner .header-menu .close-menu-toggle {
    display: flex;
    position: absolute;
    top: 25px;
    inset-inline-end: 25px;
  }
}

header .header-inner .menu-toggle {
  display: none;
}

@media (max-width: 991px) {
  header .header-inner .menu-toggle {
    display: flex;
  }
}

@keyframes menu_sticky {
  0% {
    margin-top: -120px;
    opacity: 0;
  }
  50% {
    margin-top: -64px;
    opacity: 0;
  }
  100% {
    margin-top: 0;
    opacity: 1;
  }
}

/* Main Section */
.main-section {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url('../img/about-img.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-repeat: no-repeat;
}

.main-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(20, 20, 20, 0.5) 100%);
  z-index: 0;
}



.main-section .main-section-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  min-height: 100vh;
  text-align: center;
  padding: 100px 20px 50px;
}

@media (max-width: 767px) {
  .main-section .main-section-wrapper {
    text-align: center;
  }
}

.main-section .main-section-wrapper h1 {
  font-size: 48px;
  font-weight: 700;
  color: var(--white);
  line-height: 74px;
  margin-bottom: 20px;
}

@media (max-width: 767px) {
  .main-section .main-section-wrapper h1 {
    line-height: 50px;
    font-size: 32px;
    margin-bottom: 15px;
  }
}

.main-section .main-section-wrapper h2 {
  font-size: 26px;
  font-weight: 600;
  color: #f4c430;
  margin-bottom: 30px;
  max-width: 800px;
}

@media (max-width: 767px) {
  .main-section .main-section-wrapper h2 {
    line-height: 40px;
    font-size: 20px;
    margin-bottom: 15px;
  }
}

/* Statistics Section */
.statistices-section {
  position: relative;
  z-index: 4;
  margin-top: -137px;
}

.statistices-section .statistices-wrapper {
  border: 1px solid rgba(230, 230, 230, 0.3);
  border-radius: 74px;
  filter: drop-shadow(0 6px 6px rgba(0, 0, 0, 0.16));
  padding: 17px 42px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(to top, rgba(255, 255, 255, 0.1), rgba(249, 249, 249, 0.1));
  backdrop-filter: opacity(1) brightness(1.1) blur(30px);
}

@media (max-width: 767px) {
  .statistices-section .statistices-wrapper {
    margin-top: 30px;
    background: transparent linear-gradient(45deg, #1e3a5f 20%, #2d4f7c 24%, #3a5f8f 45%, #4a6fa0 66%, #5a7fb0 83%) 0% 0% no-repeat padding-box;
    flex-direction: column;
    backdrop-filter: none;
    gap: 20px;
    border-radius: 30px;
  }
}

.statistices-section .statistices-wrapper .statistices-box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 11.6px;
  border-inline-end: 1px solid rgba(230, 230, 230, 0.5);
  flex: 1 0 auto;
  transition: transform 0.3s;
  padding: 15px;
}

@media (max-width: 767px) {
  .statistices-section .statistices-wrapper .statistices-box {
    border-inline-end: none;
    border-bottom: 1px solid rgba(230, 230, 230, 0.3);
    padding-bottom: 15px;
    width: 100%;
  }
}

.statistices-section .statistices-wrapper .statistices-box:last-child {
  border-inline-end: none;
}

@media (max-width: 767px) {
  .statistices-section .statistices-wrapper .statistices-box:last-child {
    border-bottom: none;
  }
}

.statistices-section .statistices-wrapper .statistices-box .statistices-box-text .counter {
  font-size: 25px;
  color: var(--white);
  font-weight: 700;
  transition: 0.3s;
}

@media (max-width: 991px) {
  .statistices-section .statistices-wrapper .statistices-box .statistices-box-text .counter {
    font-size: 20px;
  }
}

.statistices-section .statistices-wrapper .statistices-box .statistices-box-text span {
  font-size: 16px;
  color: var(--white);
  transition: 0.3s;
}

@media (max-width: 991px) {
  .statistices-section .statistices-wrapper .statistices-box .statistices-box-text span {
    font-size: 14px;
  }
}

.statistices-section .statistices-wrapper .statistices-box-img {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

.statistices-section .statistices-wrapper .statistices-box-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(0) invert(1);
  transition: 0.3s;
}

.statistices-section .statistices-wrapper .statistices-box:hover {
  transform: translateX(-5px);
}

.statistices-section .statistices-wrapper .statistices-box:hover .statistices-box-img img {
  filter: brightness(0) invert(1) sepia(1) saturate(5) hue-rotate(0deg);
}

.statistices-section .statistices-wrapper .statistices-box:hover .statistices-box-img svg path {
  stroke: #f4c430;
}

.statistices-section .statistices-wrapper .statistices-box:hover .statistices-box-text .counter {
  color: #f4c430;
}

.statistices-section .statistices-wrapper .statistices-box:hover .statistices-box-text span {
  color: #f4c430;
}

/* Section Title */
.section-title {
  margin-bottom: 50px;
}

.section-title.centered {
  text-align: center;
}

.section-title h5 {
  position: relative;
  display: inline-block;
}

.section-title h5 .title {
  font-size: 32px;
  font-weight: 700;
  color: var(--mainColor1);
  position: relative;
  z-index: 2;
}

.section-title h5 .text-pattern {
  font-size: 60px;
  font-weight: 900;
  color: rgba(45, 134, 89, 0.1);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  z-index: 1;
}

@media (max-width: 767px) {
  .section-title h5 .title {
    font-size: 24px;
  }
  
  .section-title h5 .text-pattern {
    font-size: 40px;
  }
}

/* Company Fields Section */
.company-fields-section {
  padding: 100px 0;
  background: var(--white);
}

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

.field-card {
  background: var(--lightGray);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.3s;
  border: 2px solid transparent;
}

.field-card:hover {
  transform: translateY(-10px);
  border-color: var(--mainColor1);
  box-shadow: 0 10px 30px rgba(45, 134, 89, 0.2);
}

.field-card .field-icon {
  margin-bottom: 20px;
}

.field-card .field-icon svg {
  width: 60px;
  height: 60px;
}

.field-card h6 {
  font-size: 20px;
  font-weight: 700;
  color: var(--mainColor1);
  margin-bottom: 15px;
}

.field-card p {
  font-size: 14px;
  color: var(--darkGray);
  line-height: 1.6;
}

/* Who We Section */
.who-we-section {
  padding: 100px 0;
  background: var(--lightGray);
}

.who-we-section-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

@media (max-width: 991px) {
  .who-we-section-wrapper {
    grid-template-columns: 1fr;
  }
}

.who-we-section-text p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--darkGray);
  margin-bottom: 30px;
}

.who-we-section-img img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Products Section */
.products-section {
  padding: 100px 0;
  background: var(--white);
}

.products-swiper {
  padding-bottom: 50px;
}

.product-card {
  background: var(--lightGray);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.3s;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.product-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.product-card h6 {
  font-size: 20px;
  font-weight: 700;
  color: var(--mainColor1);
  padding: 20px;
  margin: 0;
}

.product-card p {
  padding: 0 20px 20px;
  color: var(--darkGray);
}

/* News Section */
.news-section {
  padding: 100px 0;
  background: var(--lightGray);
}

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

.news-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.3s;
}

.news-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.news-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.news-content {
  padding: 25px;
}

.news-date {
  font-size: 12px;
  color: #999;
  margin-bottom: 10px;
  display: block;
}

.news-content h6 {
  font-size: 20px;
  font-weight: 700;
  color: var(--mainColor1);
  margin-bottom: 15px;
}

.news-content p {
  font-size: 14px;
  color: var(--darkGray);
  line-height: 1.6;
  margin-bottom: 15px;
}

.read-more {
  color: var(--mainColor1);
  font-weight: 600;
  text-decoration: underline;
}

/* Video Section */
.video-section {
  padding: 100px 0;
  background: var(--lightGray);
}

.video-section-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

@media (max-width: 991px) {
  .video-section-wrapper {
    grid-template-columns: 1fr;
  }
}

.video-section-text p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--darkGray);
  margin-bottom: 20px;
}

.video-section-text p strong {
  color: var(--mainColor1);
  font-weight: 700;
}

.video-features {
  margin-top: 25px;
  padding-right: 25px;
  list-style: none;
}

.video-features li {
  padding: 10px 0;
  padding-right: 30px;
  position: relative;
  font-size: 16px;
  color: var(--darkGray);
  line-height: 1.8;
}

.video-features li:before {
  content: "✓";
  position: absolute;
  right: 0;
  color: var(--mainColor1);
  font-weight: 700;
  font-size: 20px;
}

.video-section-video {
  position: relative;
}

.video-container {
  position: relative;
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15), 0 5px 15px rgba(0, 0, 0, 0.1);
  background: #000;
  border: 3px solid rgba(45, 134, 89, 0.1);
  transition: all 0.3s ease;
}

.video-container:hover {
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2), 0 8px 20px rgba(0, 0, 0, 0.15);
  border-color: rgba(45, 134, 89, 0.3);
  transform: translateY(-5px);
}

.video-container video {
  width: 100%;
  height: auto;
  display: block;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.video-container:hover video {
  transform: scale(1.02);
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.5) 0%, rgba(45, 134, 89, 0.3) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.4s ease;
  border-radius: 25px;
  backdrop-filter: blur(2px);
  overflow: hidden;
}

.video-overlay:hover {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(45, 134, 89, 0.35) 100%);
  backdrop-filter: blur(1px);
}

.video-overlay.hidden {
  opacity: 0;
  pointer-events: none;
  display: none;
}

.video-preview-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.video-preview-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.video-overlay-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.play-button {
  background: transparent;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
  filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.3));
}

.play-button svg circle {
  transition: all 0.3s ease;
}

.play-button:hover {
  transform: scale(1.15);
  filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.4));
}

.play-button:hover svg circle {
  fill: rgba(255, 255, 255, 1);
  transform: scale(1.05);
}

.play-button:active {
  transform: scale(1.05);
}

.play-button svg path {
  transition: all 0.3s ease;
}

.play-button:hover svg path {
  fill: var(--mainColor2);
}

/* Footer */
footer {
  background: transparent linear-gradient(90deg, #1e3a5f 20%, #2d4f7c 24%, #3a5f8f 45%, #4a6fa0 66%, #5a7fb0 83%) 0% 0% no-repeat padding-box;
  color: var(--white);
  padding: 60px 0 30px;
}

.footer-inner {
  margin-bottom: 30px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 50px;
}

.footer-top .logo img {
  width: 150px;
  height: auto;
}

.go-top {
  position: fixed;
  bottom: 30px;
  left: 30px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.go-top.show {
  opacity: 1;
  visibility: visible;
}

.go-top:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.footer-menu {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
}

.menu-list h5 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
}

.menu-list ul li {
  margin-bottom: 10px;
}

.menu-list ul li a {
  color: rgba(255, 255, 255, 0.8);
  transition: 0.3s;
}

.menu-list ul li a:hover {
  color: var(--white);
  padding-right: 10px;
}

.working-hours {
  margin-top: 15px;
}

.footer-copyright {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-copyright p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  margin-bottom: 10px;
}

.footer-developer {
  margin-top: 15px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
}

.developer-link {
  color: rgba(255, 255, 255, 0.9);
  transition: all 0.3s ease;
  text-decoration: none;
}

.developer-link:hover {
  color: var(--secondColor1);
  text-decoration: underline;
}

.developer-link strong {
  font-weight: 700;
  color: var(--white);
}

.img-fluid {
  max-width: 100%;
  height: auto;
}

.list-unstyled {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* Page Heading */
.page-heading {
  padding: 150px 0 100px;
  text-align: center;
  color: var(--white);
  position: relative;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Background Image Layer */
.page-heading::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../img/page-heading-bg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  z-index: 0;
}

/* Green Overlay Layer */
.page-heading::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(45, 134, 89, 0.75), rgba(45, 134, 89, 0.85));
  z-index: 1;
}

.page-heading .container {
  position: relative;
  z-index: 2;
}

.page-heading-wrapper {
  position: relative;
  z-index: 2;
}

@media (max-width: 767px) {
  .page-heading {
    padding: 120px 0 80px;
    min-height: 300px;
  }
  
  .page-heading::after {
    background-attachment: scroll;
  }
}

.page-heading-wrapper h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--white);
}

.page-heading-wrapper h2 {
  font-size: 24px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 767px) {
  .page-heading-wrapper h1 {
    font-size: 32px;
  }
  .page-heading-wrapper h2 {
    font-size: 18px;
  }
}

/* About Content Section */
.about-content-section {
  padding: 100px 0;
  background: var(--white);
}

/* About Section */
.about-section {
  padding: 100px 0;
  background: var(--white);
}

.about-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

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

.about-text .section-title {
  margin-bottom: 40px;
}

.about-text p {
  font-size: 18px;
  line-height: 1.9;
  color: var(--darkGray);
  margin-bottom: 25px;
}

.about-text p strong {
  color: var(--mainColor1);
  font-weight: 700;
}

.vision-mission-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 40px;
  margin-bottom: 80px;
}

@media (max-width: 767px) {
  .vision-mission-grid {
    grid-template-columns: 1fr;
  }
}

.vm-card {
  background: var(--lightGray);
  border-radius: 20px;
  padding: 50px 40px;
  text-align: center;
  transition: all 0.3s;
}

.vm-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.vm-icon {
  margin-bottom: 30px;
}

.vm-card h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--mainColor1);
  margin-bottom: 20px;
}

.vm-card p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--darkGray);
}

.values-section {
  margin-top: 80px;
}

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

.value-card {
  background: var(--lightGray);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.3s;
  border: 2px solid transparent;
}

.value-card:hover {
  transform: translateY(-10px);
  border-color: var(--secondColor1);
  box-shadow: 0 10px 30px rgba(244, 196, 48, 0.2);
}

.value-icon {
  margin-bottom: 20px;
}

.value-card h6 {
  font-size: 20px;
  font-weight: 700;
  color: var(--mainColor1);
  margin-bottom: 15px;
}

.value-card p {
  font-size: 14px;
  color: var(--darkGray);
  line-height: 1.6;
}

/* Services Content Section */
.services-content-section {
  padding: 100px 0;
  background: var(--white);
}

.service-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  margin-bottom: 100px;
}

.service-item.reverse {
  direction: ltr;
}

.service-item.reverse .service-content {
  direction: rtl;
}

@media (max-width: 991px) {
  .service-item,
  .service-item.reverse {
    grid-template-columns: 1fr;
    direction: rtl;
  }
}

.service-content {
  padding: 40px;
}

.service-number {
  font-size: 80px;
  font-weight: 900;
  color: rgba(45, 134, 89, 0.1);
  line-height: 1;
  margin-bottom: 20px;
}

.service-content h3 {
  font-size: 32px;
  font-weight: 700;
  color: var(--mainColor1);
  margin-bottom: 15px;
}

.service-intro {
  font-size: 20px;
  font-weight: 600;
  color: var(--secondColor1);
  margin-bottom: 20px;
}

.service-content p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--darkGray);
  margin-bottom: 30px;
}

.service-features {
  list-style: none;
  padding: 0;
}

.service-features li {
  padding: 10px 0;
  padding-right: 30px;
  position: relative;
  font-size: 16px;
  color: var(--darkGray);
  line-height: 1.6;
}

.service-features li:before {
  content: "✓";
  position: absolute;
  right: 0;
  color: var(--mainColor1);
  font-weight: 700;
  font-size: 20px;
}

.service-image {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: transform 0.3s;
}

.service-image:hover img {
  transform: scale(1.05);
}

/* Products Content Section */
.products-content-section {
  padding: 100px 0;
  background: var(--white);
}

.product-category {
  margin-bottom: 100px;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 30px;
}

.product-item-card {
  background: var(--lightGray);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.3s;
  border: 2px solid transparent;
}

.product-item-card:hover {
  transform: translateY(-10px);
  border-color: var(--mainColor1);
  box-shadow: 0 10px 30px rgba(45, 134, 89, 0.2);
}

.product-item-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.product-item-card h6 {
  font-size: 20px;
  font-weight: 700;
  color: var(--mainColor1);
  padding: 20px 20px 10px;
  margin: 0;
}

.product-item-card p {
  padding: 0 20px 10px;
  color: var(--darkGray);
  font-size: 14px;
}

.product-info {
  display: block;
  padding: 0 20px 20px;
  font-size: 12px;
  color: #999;
  font-style: italic;
}

/* News Content Section */
.news-content-section {
  padding: 100px 0;
  background: var(--white);
}

.news-list {
  max-width: 900px;
  margin: 0 auto;
}

.news-article {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 40px;
  margin-bottom: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid #e0e0e0;
}

.news-article:last-child {
  border-bottom: none;
}

@media (max-width: 767px) {
  .news-article {
    grid-template-columns: 1fr;
  }
}

.news-article-image {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.news-article-image img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.news-article-content h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--mainColor1);
  margin-bottom: 20px;
}

.news-article-content p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--darkGray);
  margin-bottom: 15px;
}

.news-article-content ul {
  margin: 20px 0;
  padding-right: 25px;
}

.news-article-content ul li {
  padding: 8px 0;
  padding-right: 25px;
  position: relative;
  font-size: 16px;
  color: var(--darkGray);
  line-height: 1.6;
}

.news-article-content ul li:before {
  content: "•";
  position: absolute;
  right: 0;
  color: var(--mainColor1);
  font-weight: 700;
  font-size: 20px;
}

/* Contact Content Section */
.contact-content-section {
  padding: 100px 0;
  background: var(--white);
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

@media (max-width: 991px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
  }
}

.contact-form-wrapper,
.contact-info-wrapper {
  background: var(--lightGray);
  border-radius: 20px;
  padding: 40px;
}

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

.form-group label {
  display: block;
  font-size: 16px;
  font-weight: 600;
  color: var(--mainColor1);
  margin-bottom: 10px;
}

.form-control {
  width: 100%;
  padding: 12px 20px;
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  font-size: 16px;
  font-family: "Fakieh Madani", sans-serif;
  transition: all 0.3s;
  background: var(--white);
}

.form-control:focus {
  outline: none;
  border-color: var(--mainColor1);
  box-shadow: 0 0 0 3px rgba(45, 134, 89, 0.1);
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

.contact-info-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 40px;
}

.contact-info-card {
  background: var(--white);
  border-radius: 15px;
  padding: 25px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  transition: all 0.3s;
}

.contact-info-card:hover {
  transform: translateX(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-icon {
  flex-shrink: 0;
}

.contact-info-card h6 {
  font-size: 18px;
  font-weight: 700;
  color: var(--mainColor1);
  margin-bottom: 10px;
}

.contact-info-card p {
  font-size: 16px;
  color: var(--darkGray);
  margin: 5px 0;
}

.map-wrapper {
  margin-top: 40px;
}

.map-wrapper h6 {
  font-size: 20px;
  font-weight: 700;
  color: var(--mainColor1);
  margin-bottom: 20px;
}

.map-container {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Article Content Section */
.article-content-section {
  padding: 100px 0;
  background: var(--white);
}

.article-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

.article-header {
  margin-bottom: 40px;
  text-align: center;
  padding-bottom: 30px;
  border-bottom: 2px solid #e0e0e0;
}

.article-date {
  display: inline-block;
  font-size: 14px;
  color: var(--mainColor1);
  background: rgba(45, 134, 89, 0.1);
  padding: 8px 20px;
  border-radius: 25px;
  margin-bottom: 20px;
  font-weight: 600;
}

.article-header h2 {
  font-size: 32px;
  font-weight: 700;
  color: var(--mainColor1);
  line-height: 1.4;
  margin: 0;
}

@media (max-width: 767px) {
  .article-header h2 {
    font-size: 24px;
  }
}

.article-main-image {
  margin: 40px 0;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.article-main-image img {
  width: 100%;
  height: auto;
  display: block;
}

.article-body {
  margin: 40px 0;
}

.article-body p {
  font-size: 18px;
  line-height: 1.9;
  color: var(--darkGray);
  margin-bottom: 25px;
}

.article-body p.lead {
  font-size: 20px;
  font-weight: 600;
  color: var(--mainColor1);
  line-height: 1.8;
}

.article-body h3 {
  font-size: 26px;
  font-weight: 700;
  color: var(--mainColor1);
  margin: 40px 0 20px;
}

.article-body ul {
  margin: 25px 0;
  padding-right: 30px;
}

.article-body ul li {
  padding: 12px 0;
  padding-right: 30px;
  position: relative;
  font-size: 17px;
  color: var(--darkGray);
  line-height: 1.8;
}

.article-body ul li:before {
  content: "•";
  position: absolute;
  right: 0;
  color: var(--mainColor1);
  font-weight: 700;
  font-size: 24px;
}

.article-body ul li strong {
  color: var(--mainColor1);
  font-weight: 700;
}

/* Article Gallery */
.article-gallery {
  margin: 60px 0;
  padding-top: 40px;
  border-top: 2px solid #e0e0e0;
}

.article-gallery h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--mainColor1);
  margin-bottom: 30px;
  text-align: center;
}

.gallery-swiper {
  padding-bottom: 50px;
}

.gallery-item {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

.gallery-item:hover {
  transform: translateY(-5px);
}

.gallery-item img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
}

.gallery-swiper .swiper-button-next,
.gallery-swiper .swiper-button-prev {
  color: var(--mainColor1);
  background: var(--white);
  width: 45px;
  height: 45px;
  border-radius: 50%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.gallery-swiper .swiper-button-next:after,
.gallery-swiper .swiper-button-prev:after {
  font-size: 18px;
  font-weight: 700;
}

.gallery-swiper .swiper-pagination-bullet {
  background: var(--mainColor1);
  opacity: 0.5;
}

.gallery-swiper .swiper-pagination-bullet-active {
  opacity: 1;
}

/* Article Footer */
.article-footer {
  margin-top: 60px;
  padding-top: 40px;
  border-top: 2px solid #e0e0e0;
  text-align: center;
}

.article-footer .btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  font-size: 16px;
  font-weight: 600;
}

@media (max-width: 767px) {
  .article-body p {
    font-size: 16px;
  }
  
  .article-body p.lead {
    font-size: 18px;
  }
  
  .article-body h3 {
    font-size: 22px;
  }
  
  .gallery-item img {
    height: 250px;
  }
}

/* Hero Section Additional Styles */
.hero-description {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 30px;
  line-height: 1.8;
}

.hero-contact {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  font-size: 18px;
  font-weight: 600;
  padding: 12px 25px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 30px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-link:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
  color: var(--white);
}

.contact-link svg {
  width: 20px;
  height: 20px;
}

.hero-location {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
  margin-top: 10px;
}

.hero-location svg {
  width: 18px;
  height: 18px;
}

/* Services Section */
.services-section {
  padding: 100px 0;
  background: var(--white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.service-card {
  background: var(--lightGray);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  border-color: var(--mainColor1);
}

.service-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--mainColor1), var(--mainColor2));
  border-radius: 50%;
  color: var(--white);
  transition: all 0.3s ease;
}

.service-card:hover .service-icon {
  transform: scale(1.1) rotate(5deg);
}

.service-card h6 {
  font-size: 22px;
  font-weight: 700;
  color: var(--mainColor1);
  margin-bottom: 15px;
}

.service-card p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--darkGray);
}

/* Gallery Section */
.gallery-section {
  padding: 100px 0;
  background: var(--lightGray);
}

.gallery-swiper {
  padding-bottom: 50px;
  margin-top: 50px;
}

.gallery-item {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.gallery-item:hover {
  transform: translateY(-5px);
}

.gallery-item img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
}

/* Footer Contact */
.footer-contact {
  text-align: center;
  color: var(--white);
}

.footer-phone {
  display: block;
  color: var(--white);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  transition: color 0.3s ease;
}

.footer-phone:hover {
  color: var(--secondColor1);
}

.footer-location {
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
  margin-top: 10px;
}

/* About Features */
.about-features {
  display: flex;
  gap: 20px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px 20px;
  background: var(--lightGray);
  border-radius: 15px;
  transition: all 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--mainColor1), var(--mainColor2));
  border-radius: 50%;
  color: var(--white);
}

.feature-item span {
  font-size: 16px;
  font-weight: 600;
  color: var(--mainColor1);
}

/* Gallery Overlay */
.gallery-item {
  position: relative;
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay h6 {
  color: var(--white);
  font-size: 18px;
  font-weight: 700;
  margin: 0;
}

/* Contact Section */
.contact-section {
  padding: 100px 0;
  background: var(--white);
}

.contact-wrapper {
  max-width: 900px;
  margin: 50px auto 0;
}

.contact-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.contact-info-card {
  background: var(--lightGray);
  border-radius: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  transition: all 0.3s ease;
}

.contact-info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-icon {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--mainColor1), var(--mainColor2));
  border-radius: 15px;
  color: var(--white);
}

.contact-details h6 {
  font-size: 20px;
  font-weight: 700;
  color: var(--mainColor1);
  margin-bottom: 15px;
}

.contact-details a {
  display: block;
  color: var(--darkGray);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  transition: color 0.3s ease;
}

.contact-details a:hover {
  color: var(--mainColor1);
}

.contact-details p {
  color: var(--darkGray);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 5px;
}

/* Gallery Swiper Navigation */
.gallery-swiper .swiper-button-next,
.gallery-swiper .swiper-button-prev {
  color: var(--mainColor1);
  background: var(--white);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.gallery-swiper .swiper-button-next:after,
.gallery-swiper .swiper-button-prev:after {
  font-size: 20px;
  font-weight: 700;
}

.gallery-swiper .swiper-pagination-bullet {
  background: var(--mainColor1);
  opacity: 0.5;
}

.gallery-swiper .swiper-pagination-bullet-active {
  opacity: 1;
}

/* Active Menu Item */
header .header-menu ul li.active a {
  color: var(--secondColor1);
}

/* Smooth Scroll Offset */
section {
  scroll-margin-top: 80px;
}

@media (max-width: 767px) {
  .hero-contact {
    flex-direction: column;
    align-items: center;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .gallery-item img {
    height: 250px;
  }
  
  .about-features {
    flex-direction: column;
  }
  
  .contact-info {
    grid-template-columns: 1fr;
  }
}

