

/* start variables */
:root {
  --main-color: #f7dc79;
  --secondary-color: #f7e6b4;
  --back-color: #14594b;
  --box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  --text-color: #444648;
  --padding-top: 80px;
  --padding-bottom: 80px;
}

/* fonts */
* {
  box-sizing: border-box;
}

body,
html {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'IBM Plex Sans Arabic', 'IBM Plex Sans', sans-serif;
  font-weight: 400;
  font-optical-sizing: auto;
  font-style: normal;
}

a,
ul,
li {
  text-decoration: none;
  list-style-type: none;
}

a {
  display: inline-block;
}

img {
  max-width: 100%;
}

::-webkit-scrollbar {
  width: 10px;
}
/* Track */
::-webkit-scrollbar-track {
  background: var(--back-color);
}
/* Handle */
::-webkit-scrollbar-thumb {
  background: var(--main-color);
}
/* Start Container Media Screen */
.container {
  padding: 0 15px;
  margin: auto;
}

/* Small Screens */
@media (min-width : 576px) {
  .container {
    width: 540px;
  }
}

/* Medium Secreens */
@media (min-width : 768px) {
  .container {
    width: 750px;
  }
}

/* Large Secreen */
@media (min-width : 992px) {
  .container {
    width: 970px;
  }
}

/* X-Large Secreen */
@media (min-width : 1200px) {
  .container {
    width: 1170px;
  }
}

/* XX-Large Secreen */
@media (min-width : 1400px) {
  .container {
    width: 1320px;
  }
}

/* End Container Media Screen */
/* Start landing */
.landing {
  margin-top: 93px;
  position: relative;
  background-image: url('../imges/landing_port.jpg');
  height: calc(100vh - 93px);
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.landing::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    inset: 0;
    background-color: #14594bb7;
    z-index: -1;
}
.landing .landing_content h2 {
    color: var(--main-color);
    font-size: 2rem;
    text-align: center;
}
/* End landing */

/* Start Ports Section */
.ports {
    padding: 60px 0;
    background-color: #f9f9f9; /* لون خلفية هادي يفصل السكشن */
}

.ports h2 {
    text-align: center;
    color: var(--back-color); /* لون البراند بتاعك اللي في الفوتر */
    margin-bottom: 20px;
    font-size: 2rem;
}

.ports p {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.8;
    color: #555;
}

.ports .ports_content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.ports .port_card {
  cursor: pointer;
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: 0.3s;
    text-align: center;
    border-bottom: 4px solid transparent;
}

.ports .port_card:hover {
    transform: translateY(-10px);
    border-color: var(--back-color);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.ports .port_card .icon i {
    font-size: 3rem;
    color: var(--back-color);
    margin-bottom: 20px;
}

.ports .port_card h3 {
    margin-bottom: 15px;
    color: #333;
}

.ports .port_card ul {
    list-style: none;
    padding: 0;
}

.ports .port_card ul li {
    position: relative;
    padding: 10px 20px 10px 0;
    color: #666;
    border-bottom: 1px solid #eee;
    text-align: right;
}

.ports .port_card ul li:last-child {
    border-bottom: none;
}

/* إضافة أيقونة صغيرة جنب كل نقطة في القائمة */
.ports .port_card ul li::before {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    right: 0;
    top: 12px;
    color: var(--back-color);
    font-size: 0.9rem;
}

/* Start Port Features */
.port-features {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.port-features h2 {
    text-align: center;
    color: #14594b;
    margin-bottom: 40px;
    font-size: 2rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    text-align: center;
}

.feature-box {
    background: #fff;
    padding: 30px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    border-bottom: 4px solid #f6dd7d;
    transition: transform 0.1s ease;
}

.feature-box:hover {
    transform: translateY(-5px);
}

.feature-box i {
    font-size: 2.5rem;
    color: #14594b;
    margin-bottom: 15px;
}

.feature-box h4 {
    color: #14594b;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.feature-box p {
    color: #555;
    line-height: 1.6;
    font-size: 0.95rem;
}
/* End Port Features */

/* Start Coverage Map */
.coverage-map {
    padding: 60px 0;
    background-color: #fff;
    text-align: center;
}

.coverage-map h2 {
    color: #14594b;
    margin-bottom: 15px;
    font-size: 2rem;
}

.coverage-map p {
    color: #555;
    margin-bottom: 40px;
    font-size: 1.1rem;
}

.map-container {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    border: 3px solid #f6dd7d;
    max-width: 1000px;
    margin: 0 auto;
}

.map-container iframe {
    display: block;
    width: 100%;
}
/* End Coverage Map */

/* Start CTA Ports */
.cta-ports {
    padding: 60px 0;
    background-color: #14594b;
    text-align: center;
    color: #fff;
}

.cta-ports h2 {
    margin-bottom: 15px;
    font-size: 2.2rem;
    color: #f6dd7d;
}

.cta-ports p {
    margin-bottom: 30px;
    font-size: 1.1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.btn-primary {
    display: inline-block;
    background-color: #f6dd7d;
    color: #14594b;
    padding: 12px 35px;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: bold;
    border-radius: 5px;
    transition: 0.3s ease;
}

.btn-primary:hover {
    background-color: #fff;
    color: #14594b;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
/* End CTA Ports */
/* End Ports Section */
/* start Footer */
footer {
  background-image: url(../imges/back_footer.png);
  background-repeat: no-repeat;
  padding: 40px 0;
  background-color: #f2f5f7;
  text-align: center;
}

.footer_content ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 500;
  font-size: 1.2rem;
}

.footer_content ul li img {
  max-width: 150px;
}


.footer_content span {
  font-weight: bold;
  width: fit-content;
  font-size: 1.1rem;
  display: inline-block;
  margin: 15px auto;
}

.footer_content strong {
  color: #14594b;
  font-size: 0.800rem;
}

@media (max-width: 767px) {
  .footer_content ul {
    flex-direction: column;
    gap: 25px;
    margin-bottom: 30px;
  }
}

/* End Footer */