:root {
  --navy: #0a2342;
  --green: #1abc9c;
  --black: #111;
  --white: #fff;
  --gold: #d4af37;
  --gray: #f5f5f5;
  --font-ar: 'Cairo', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; font-family: var(--font-ar); }

body {
  background: var(--white);
  color: var(--black);
  overflow-x: hidden;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  background: url('images/hero-bg.jpg') center/cover no-repeat;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
}

.hero-container {
  max-width: 1200px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--white);
  z-index: 1;
  position: relative;
  padding: 2rem;
}

.hero-text {
  flex: 1;
}
.hero-text h1 {
  font-weight: 800;
  font-size: 3rem;
  padding-bottom: 20px;
  padding-right: 20px;
  padding-left: 20px;
  padding-top: -10px;
  color: var(--gold);
    text-align: center;

}
.hero-text h3 {
  font-size: 1.5rem;
  text-align: center;
  margin: 10px 0;
}
.hero-text p {
  max-width: 450px;
  font-size: 1.1rem;
  line-height: 1.9;
  margin: 20px 0;
}
.hero-text .btn {
  background: var(--green);
  border-radius: 30px;
  padding: 12px 30px;
  color: var(--white);
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;

}
.hero-text .btn:hover {
  background: var(--gold);
  color: var(--black);
}
.hero-image {
  flex: 1;
  text-align: center;
  width: 100%;
}
.hero-image img {
  width: 80%;
}

.hero-text {
  flex: 1;
  text-align: center;    /* centers all text + button horizontally */
}

.hero-text .hero-btn,
.hero-text .btn {
  display: inline-block;
  margin-top: 20px;      /* space above button */
  text-align: center;
}
.hero-text p {
line-height: 500%;
}
/* ===== SECTIONS GENERAL ===== */

.section {
  padding: 80px 10%;
  text-align: center;
  background: var(--gray);
}
.section:nth-child(even) {
  background: var(--white);
}
.section h2 {
  color: var(--navy);
  margin-bottom: 30px;
  font-size: 2rem;
}
/* ---------- ABOUT SECTION ---------- */
.section.about h2 {
  font-size: 2rem;       /* edit this */
  font-weight: 800;
  text-align-last: center;
  padding-left: 30px;
  padding-right: 30px;
}
.section.about p {
  padding-top: 20px;
  font-weight: 550;
  font-size: 1.5rem;     /* edit this */
  line-height: 1.9;      /* edit this */
  text-align: justify;
  text-align-last: center;
  padding-left: 20px;
  padding-right: 20px;
}
.section.about ul li {
font-weight: 500;
  font-size: 1.15rem;    /* edit this */
  line-height: 1.8;      /* edit this */
  text-align: justify;
    padding-left: 20px;

}

.section.about .image img {
  width: 100%;           /* make the image take full width of its flex column */
  max-width: 550px;      /* increase this limit — adjust as you wish */
  height: auto;          /* keep proportions correct */
  border-radius: 12px;   /* keeps edges soft */
  object-fit: contain;   /* preserves aspect */
  transition: transform 0.4s ease;
}

/* ---------- BENEFITS SECTION ---------- */
.section.benefits h2 {
  font-size: 2rem;       /* edit this */
  font-weight: 550;

}
.section.benefits .benefit-card h4 {
  padding-top: 30px;
  padding-bottom: 20px;
  font-size: 1.6rem;     /* edit this */
  font-weight: bold;
}
.section.benefits .benefit-card p {
  font-size: 1.2rem;    /* edit this */
  line-height: 1.8;      /* edit this */
  text-align: justify;
  text-align-last: center;
}

/* ---------- WHY‑US SECTION ---------- */
.section.why-us h2 {
  font-size: 2rem;       /* edit this */
    font-weight: bold;

}
.section.why-us .text p {
  font-size: 1.3rem;     /* edit this */
  line-height: 1.9;      /* edit this */
  text-align: justify;
  text-align-last: center;
}
.section.why-us .points div {
  font-size: 1.15rem;    /* edit this */
  line-height: 1.8;      /* edit this */
  text-align: justify;
  text-align-last: center;
  padding-left: 10px;
  padding-right: 10px;
}

/* ---------- TESTIMONIALS SECTION ---------- */
.section.testimonials h2 {
  font-size: 2rem;       /* edit this */
    font-weight: bold;

}
.section.testimonials .testimonial p {
  font-size: 1.11rem;    /* edit this */
  line-height: 1.8;      /* edit this */
}

/* ===== ABOUT ===== */
.about .content-grid {
  display: flex;
  align-items: center;
  gap: 40px;
}

.about ul li {
  margin: 10px 0;
  list-style: '🌿 ';
}

/* ===== BENEFITS ===== */
.benefits-grid {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 20px;
}
.benefit-card {
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  width: 300px;
  padding: 20px;
  transition: transform 0.3s;
}
.benefit-card:hover {
  transform: translateY(-10px);
}
.benefit-card img {
  width: 100%;
  border-radius: 10px;
}

/* ===== WHY US ===== */
.content-grid.reverse {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  gap: 40px;
}
.points div {
  margin-bottom: 10px;
  font-weight: 600;
}
.points span {
  color: var(--green);
  margin-left: 8px;
}

/* ===== TESTIMONIALS ===== */
.testimonials-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}
.testimonial {
  background: var(--white);
  border-radius: 10px;
  box-shadow: 0 3px 8px rgba(0,0,0,0.1);
  padding: 25px;
  width: 280px;
}
.testimonial span {
  display: block;
  margin-top: 10px;
  color: var(--navy);
  font-weight: bold;
}

/* ===== BUY SECTION ===== */
.buy-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--white);
  border-radius: 15px;
  padding: 40px;
  max-width: 400px;
  margin: 0 auto;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.price {
  margin: 20px;
}
.price .old {
  text-decoration: line-through;
  color: #999;
  margin-left: 10px;
}
.price .new {
  color: var(--green);
  font-weight: 700;
  font-size: 1.5rem;
}
.btn.large {
  background: var(--green);
  padding: 15px 40px;
  border-radius: 40px;
  font-size: 1.2rem;
}
.section.why-us .image img {
    width: 350px;      /* you can adjust the width as needed */
    height: auto;      /* keeps aspect ratio */
    }

/* ===== FOOTER ===== */
footer {
  background: var(--navy);
  color: var(--white);
  text-align: center;
  padding: 20px;
}

/*===================================================*/
/*Start Block4*/
.block4 {
    padding: 20px 0 50px;

    overflow: hidden;
}
.logo {
    max-width: 140px;
    margin: 30px auto;
}


.block4-head {
    color: #fff;
    position: relative;
    font-size: 50px;
    font-weight: 600;
    line-height: 1.2;
}

.block4-head span:first-of-type {
    background: #bd215e;
    font-size: .5em;
    padding: 6px 75px;
    font-weight: 300;
}


.form {
    padding: 15px 20px 10px;
    background: #e9e9e9;
    width: 100%;
    margin: auto;
    border-radius: 10px;
}

.form-head {
    font-weight:550;
    font-size: 25px;
    padding: 20px 0 50px;
    line-height: 2;
    color: #606060;
}
.block4-last {
    margin: 20px 10px;
}


.block4-price {
    margin: auto;
    width: 100%;
    height: 100%;
}
.block4-price span {
    color: #606060;
    font-size: 13px;
}

.block4-price img {
        border-radius: 12px;
    }

.block4-price2 {
    width: 93%;
    margin: auto;
}
.form-control-input {
    width: 100%;
    margin: auto;
    font-size: 23px;
    color: #111425 !important;
    resize: none;
    min-height: 85px;
    border-radius: 15px;
    border: 2px solid #111425;
}
select.form-control-input {
    height: 85px !important;
    color: #7d7c80;
}

.form-control-input::-webkit-input-placeholder {
    color: var(--green);
    font-family: gess;
}

.form-control-input:-ms-input-placeholder {
    color: var(--green);
    font-family: gess;
}

.form-control-input::placeholder {
    color: var(--green);
    font-family: gess;
}



#form-phone {
    font-family: 'Zain';
}

.form-img {
    margin: 20px auto;
    width: 40%;
}

.form-call {
    width: 100%;
    font-size: 47px;
    padding: 3px 0 10px;
    background: transparent;
}
.form-call img {
    width: 100%;
}
.form-call:hover {
    color: #606060;
    text-decoration: none
}




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


.fixed-button:hover {
    text-decoration: underline;
}

.last-img {
    margin: 25px auto 0;
    width: 91%;
}



.block5-container {
    max-width: 1400px;
    margin: auto;
    position: relative;
}
.error {
    color: #606060;
}

.block4-img {
    margin: 50px auto 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.block1-img {
    display: flex;
    align-items: center;
    justify-content: center;
}


#btnSubmit {
    background: var(--green) !important;
    border-color: var(--green) !important;
    color: #fff;
}

.block1-head2::before {
    content: "\f00c"; /* Font Awesome check mark unicode */
    font-family: "Font Awesome 5 Free"; /* Adjust based on your Font Awesome version */
    font-weight: 900; /* For solid icons */
    margin-left: 8px; /* Space between icon and text */
    margin-right: 12px;
    color: #af3333;
    font-size: 1.6em;
    /* Include the properties from your existing CSS */
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
    vertical-align: middle; 
}

/* Make sure box-sizing is inherited */
.block1-head2::before {
    box-sizing: border-box;
}

.section.about .text {
  padding-right: 15px;          /* Add space from screen edge */
  text-align: center;           /* Center the h2 and paragraph */
  max-width: 600px;             /* Optional: limit width for nice look */
  margin: 0 auto;               /* Center the whole text block */
}

.section.about h2 {
  font-size: 2em;
  margin-bottom: 20px;
  color: var(--title-color);    /* matches your color scheme if defined */
}

.section.about p {
  font-size: 1.1em;
  line-height: 1.8;
  margin-bottom: 30px;
}

/* For the list: make the items evenly indented and aligned */
.section.about ul {
  list-style-position: inside;  /* keeps bullets/text aligned neatly */
  padding: 0;                   /* remove default padding */
  margin: 0 auto;               /* center list in container */
  text-align: right;            /* keep RTL alignment clean */
  max-width: 600px;
  padding-right: 25px;          /* Add space from screen edge */

}

.section.about li {
  line-height: 1.8;
  font-size: 1.05em;
  margin-bottom: 10px;
  padding-right: 25px;          /* consistent indentation */
  text-indent: -10px;           /* lines align neatly after the bullet */
}

