:root{
    --main-color: #2A509A;
    --second-color: #F5F5f5;
}
.cairo {
    font-family: "Cairo", sans-serif;
    font-optical-sizing: auto;
    font-weight: weight;
    font-style: normal;
    font-variation-settings:
      "slnt" 0;
  }
  

body{
    margin: 0px;
    padding: 0px;
    font-family: "Cairo", sans-serif;
    direction: rtl;
}

.icon-image {
  width: 100px;
}

.call-button {
  background-color: var(--main-color);
  color: var(--second-color);
  border-radius: 50px;
  padding: 10px 20px;
  transition: all 0.3s ease;
  margin-right: 20px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
}

.call-button:hover {
  background-color: #ff5f5f;
  transform: translateY(-5px);
  box-shadow: 0px 6px 14px rgba(0, 0, 0, 0.3);
}

.navbar-nav .nav-link {
  position: relative;
  margin-left: 20px;
  font-size: 18px;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--main-color);
}

.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 2px;
  bottom: -2px;
  right: 0;
  background-color: var(--main-color);
  transform-origin: bottom left;
  transition: transform 0.25s ease-out;
}

.navbar-nav .nav-link:hover::after {
  transform: scaleX(1);
  transform-origin: bottom right;
}

.sticky-top {
  background-color: rgba(255, 255, 255, 0.8);
  transition: background-color 0.3s ease;
}

.sticky-top:hover {
  background-color: rgba(255, 255, 255, 0.9);
}

.carousel-item {
  height: 100vh;
  position: relative;
  animation: slideIn 1s ease;
}

@media (max-width:768px) {
  .carousel-item {
    height: 70vh;
  }
}

.cover-image {
  width: 100%;
  height: 100vh;
  background-size: cover;
  background-position: center;
  animation: fadeIn 1s ease;
}

.black-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.75);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.text-content {
  color: white;
  max-width: 600px;
  text-align: center;
  animation: fadeInUp 1s ease-in-out;
}

.text-content h1 {
  font-size: 48px;
  color: var(--main-color);
  margin-bottom: 20px;
}

.text-content h3 {
  margin-bottom: 30px;
}

.buttons {
  margin-top: 20px;
}

.buttons .btn {
  margin-right: 10px;
  padding: 10px 20px;
  background-color: var(--main-color);
  color: #fff;
  border: none;
  border-radius: 5px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.buttons .btn:hover {
  background-color: #ff5f5f;
  box-shadow: 0px 6px 14px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
  .text-content {
    max-width: 100%;
    text-align: center;
  }

  .buttons {
    flex-direction: column;
    margin-top: 15px;
  }

  .buttons .btn {
    margin: 10px 0;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideIn {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}  
  .feature-box-1 {
    padding: 32px;
    box-shadow: 0 0 30px rgba(31, 45, 61, 0.125);
    margin: 15px 0;
    position: relative;
    z-index: 1;
    border-radius: 10px;
    overflow: hidden;
    -moz-transition: ease all 0.35s;
    -o-transition: ease all 0.35s;
    -webkit-transition: ease all 0.35s;
    transition: ease all 0.35s;
    top: 0;
  }
  .feature-box-1 * {
    -moz-transition: ease all 0.35s;
    -o-transition: ease all 0.35s;
    -webkit-transition: ease all 0.35s;
    transition: ease all 0.35s;
  }
  .feature-box-1 .icon {
    width: 70px;
    height: 70px;
    line-height: 70px;
    background: #fc5356;
    color: #ffffff;
    text-align: center;
    border-radius: 50%;
    margin-bottom: 22px;
    font-size: 27px;
  }
  .feature-box-1 .icon i {
    line-height: 70px;
  }
  .feature-box-1 h5 {
    color: #20247b;
    font-weight: 600;
  }
  .feature-box-1 p {
    margin: 0;
  }
  .feature-box-1:after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: auto;
    right: 0;
    border-radius: 10px;
    width: 0;
    background: var(--main-color);
    color: var(--second-color);
    z-index: -1;
    -moz-transition: ease all 0.35s;
    -o-transition: ease all 0.35s;
    -webkit-transition: ease all 0.35s;
    transition: ease all 0.35s;
  }
  .feature-box-1:hover {
    top: -5px;
  }
  .feature-box-1:hover h5 {
    color: #ffffff;
  }
  .feature-box-1:hover p {
    color: rgba(255, 255, 255, 0.8);
  }
  .feature-box-1:hover:after {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    left: 0;
    right: auto;
  }
  .section {
      padding: 100px 0;
      position: relative;
  }
  .section-title {
      padding-bottom: 45px;
  }
  .section-title h2 {
      font-weight: 700;
      color: #20247b;
      font-size: 45px;
      margin: 0 0 15px;
      border-left: 5px solid #fc5356;
      padding-left: 15px;
  }
  .icon img{
    width: 42px;
    height: 42px;
  }
  .main-wrapper {
    background-color: #f8f9fa; /* Changed to light background for better readability */
    padding: 40px;
}

.content-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between; /* Improved spacing between grid items */
}

.grid-item {
    width: 48%; /* Adjusted for better spacing */
    margin-bottom: 20px;
}

.service-card {
    background-color: #ffffff;
    border-radius: 15px;
    padding: 25px;
    text-align: right;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.service-card img {
    max-width: 100%;
    border-radius: 10px;
    margin-bottom: 15px;
}

.service-card h1 {
    font-size: 22px;
    margin: 10px 0;
    color: #20247b;
}

.service-card h2 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #555;
}

.service-card p {
    font-size: 16px;
    color: #777;
}

.service-card ul {
    list-style-type: none;
    padding: 0;
    margin: 15px 0;
}

.service-card ul li {
    font-size: 16px;
    color: #555;
    margin-bottom: 10px;
}

.service-card strong {
    color: #20247b;
}

@media (max-width: 768px) {
    .grid-item {
        width: 100%;
        margin-bottom: 20px;
    }
    
    .service-card h1,
    .service-card h2,
    .service-card p {
        font-size: 16px;
    }
    
    .service-card ul {
        padding-left: 10px;
    }
}

.g-6,
.gx-6 {
  --bs-gutter-x: 4.5rem;
}
.g-6,
.gy-6 {
  --bs-gutter-y: 4.5rem;
}
@media (min-width: 576px) {
  .g-sm-6,
  .gx-sm-6 {
    --bs-gutter-x: 4.5rem;
  }
  .g-sm-6,
  .gy-sm-6 {
    --bs-gutter-y: 4.5rem;
  }
}
@media (min-width: 768px) {
  .g-md-6,
  .gx-md-6 {
    --bs-gutter-x: 4.5rem;
  }
  .g-md-6,
  .gy-md-6 {
    --bs-gutter-y: 4.5rem;
  }
}
@media (min-width: 992px) {
  .g-Universal-6,
  .gx-Universal-6 {
    --bs-gutter-x: 4.5rem;
  }
  .g-Universal-6,
  .gy-Universal-6 {
    --bs-gutter-y: 4.5rem;
  }
}
@media (min-width: 1200px) {
  .g-xl-6,
  .gx-xl-6 {
    --bs-gutter-x: 4.5rem;
  }
  .g-xl-6,
  .gy-xl-6 {
    --bs-gutter-y: 4.5rem;
  }
}
@media (min-width: 1400px) {
  .g-xxl-6,
  .gx-xxl-6 {
    --bs-gutter-x: 4.5rem;
  }
  .g-xxl-6,
  .gy-xxl-6 {
    --bs-gutter-y: 4.5rem;
  }
}
.mb-6 {
  margin-bottom: 4.5rem !important;
}
.py-6 {
  padding-top: 4.5rem !important;
  padding-bottom: 4.5rem !important;
}
.w-100px {
  width: 100px !important;
}
.h-100px {
  height: 100px !important;
}
@media (min-width: 576px) {
  .mb-sm-6 {
    margin-bottom: 4.5rem !important;
  }
  .py-sm-6 {
    padding-top: 4.5rem !important;
    padding-bottom: 4.5rem !important;
  }
}
@media (min-width: 768px) {
  .mb-md-6 {
    margin-bottom: 4.5rem !important;
  }
  .py-md-6 {
    padding-top: 4.5rem !important;
    padding-bottom: 4.5rem !important;
  }
}
@media (min-width: 992px) {
  .mb-Universal-6 {
    margin-bottom: 4.5rem !important;
  }
  .py-Universal-6 {
    padding-top: 4.5rem !important;
    padding-bottom: 4.5rem !important;
  }
}
@media (min-width: 1200px) {
  .mb-xl-6 {
    margin-bottom: 4.5rem !important;
  }
  .py-xl-6 {
    padding-top: 4.5rem !important;
    padding-bottom: 4.5rem !important;
  }
}
@media (min-width: 1400px) {
  .mb-xxl-6 {
    margin-bottom: 4.5rem !important;
  }
  .py-xxl-6 {
    padding-top: 4.5rem !important;
    padding-bottom: 4.5rem !important;
  }
}
.g-6,
.gx-6 {
  --bs-gutter-x: 4.5rem;
}
.g-6,
.gy-6 {
  --bs-gutter-y: 4.5rem;
}
@media (min-width: 576px) {
  .g-sm-6,
  .gx-sm-6 {
    --bs-gutter-x: 4.5rem;
  }
  .g-sm-6,
  .gy-sm-6 {
    --bs-gutter-y: 4.5rem;
  }
}
@media (min-width: 768px) {
  .g-md-6,
  .gx-md-6 {
    --bs-gutter-x: 4.5rem;
  }
  .g-md-6,
  .gy-md-6 {
    --bs-gutter-y: 4.5rem;
  }
}
@media (min-width: 992px) {
  .g-Universal-6,
  .gx-Universal-6 {
    --bs-gutter-x: 4.5rem;
  }
  .g-Universal-6,
  .gy-Universal-6 {
    --bs-gutter-y: 4.5rem;
  }
}
@media (min-width: 1200px) {
  .g-xl-6,
  .gx-xl-6 {
    --bs-gutter-x: 4.5rem;
  }
  .g-xl-6,
  .gy-xl-6 {
    --bs-gutter-y: 4.5rem;
  }
}
@media (min-width: 1400px) {
  .g-xxl-6,
  .gx-xxl-6 {
    --bs-gutter-x: 4.5rem;
  }
  .g-xxl-6,
  .gy-xxl-6 {
    --bs-gutter-y: 4.5rem;
  }
}
.py-6 {
  padding-top: 4.5rem !important;
  padding-bottom: 4.5rem !important;
}
.fs-7 {
  font-size: 0.875rem !important;
}
.w-100px {
  width: 100px !important;
}
.w-150px {
  width: 150px !important;
}
.w-200px {
  width: 200px !important;
}
.h-100px {
  height: 100px !important;
}
.h-150px {
  height: 150px !important;
}
.h-200px {
  height: 200px !important;
}
@media (min-width: 576px) {
  .py-sm-6 {
    padding-top: 4.5rem !important;
    padding-bottom: 4.5rem !important;
  }
}
@media (min-width: 768px) {
  .py-md-6 {
    padding-top: 4.5rem !important;
    padding-bottom: 4.5rem !important;
  }
}
@media (min-width: 992px) {
  .py-Universal-6 {
    padding-top: 4.5rem !important;
    padding-bottom: 4.5rem !important;
  }
}
@media (min-width: 1200px) {
  .py-xl-6 {
    padding-top: 4.5rem !important;
    padding-bottom: 4.5rem !important;
  }
}
@media (min-width: 1400px) {
  .py-xxl-6 {
    padding-top: 4.5rem !important;
    padding-bottom: 4.5rem !important;
  }
}
.hcf-author-1 .hcf-author-img,
.hcf-author-1 .hcf-author-meta {
  transition: transform 350ms cubic-bezier(0.16, 0.32, 0.21, 0.93);
}
.hcf-author-1:hover .hcf-author-img {
  transform: translateX(48px);
}
.hcf-author-1:hover .hcf-author-meta {
  transform: translateX(-8px);
}
.how-section1{
  margin-top:-15%;
  padding: 10%;
}
.how-section1 h4{
  color: #ffa500;
  font-weight: bold;
  font-size: 30px;
}
.how-section1 .subheading{
  color: #3931af;
  font-size: 20px;
}
.how-section1 .row
{
  margin-top: 10%;
}
.how-img 
{
  text-align: center;
}
.how-img img{
  width: 40%;
}

@media (max-width: 768px) {
  .grid-item {
      flex: 1 1 94%;
      margin: auto;
      max-width: 100%;
  }
}
a{
  text-decoration: none;
}
.special{
  position: fixed;
  bottom: 20px; 
  right: 20px; 
  padding: 10px 20px;
  z-index: 10000;
}
img{
  width: 100%;
}
.how-section1 img{
  width: 175px;
  height: 175px;
  margin-top: 30px;
}
@media (max-width:768px){
  .carousel-item{
    height: 65vh;
  }
}
@media (max-width: 768px) {
  .text-content h1 {
      font-size: 2.5rem; 
  }

  .text-content h3 {
      font-size: 1.5rem;
  }
}

@media (max-width: 576px) {
  .text-content h1 {
      font-size: 1.5rem; 
  }

  .text-content h3 {
      font-size: 0.875rem; 
  }
}
@media (max-width: 992px) {
  .section-title h2 {
      font-size: 2rem; 
  }
  
  .section-title p {
      font-size: 1.125rem; 
  }
}

@media (max-width: 768px) {
  .feature-box-1 {
      padding: 15px; 
  }
  
  .section-title h2 {
      font-size: 1.75rem; 
  }
  
  .section-title p {
      font-size: 1rem; 
  }
}

@media (max-width: 576px) {
  .section-title h2 {
      font-size: 1.5rem; 
  }
  
  .section-title p {
      font-size: 0.875rem; 
  }
  
  .feature-box-1 h5 {
      font-size: 1.25rem; 
  }
  
  .feature-box-1 p {
      font-size: 0.875rem;
  }
}
.co-main{
  color: var(--main-color);
}
@media (max-width: 1199.98px) {
  .bsb-service-6 {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .bsb-service-6 .text-secondary {
    font-size: 1rem; 
  }

  .bsb-service-6 .co-main {
    font-size: 1.5rem;
  }

  .bsb-service-6 .card-body {
    padding: 1.5rem; 
  }
}

@media (max-width: 991.98px) {
  .bsb-service-6 .row {
    margin-left: 0;
    margin-right: 0;
  }

  .bsb-service-6 .card {
    margin-bottom: 1.5rem; 
  }

  .bsb-service-6 .card-body {
    padding: 1rem; 
  }
}

@media (max-width: 767.98px) {
  .bsb-service-6 {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }

  .bsb-service-6 .text-secondary {
    font-size: 0.875rem;
  }

  .bsb-service-6 .co-main {
    font-size: 1.25rem; 
  }

  .bsb-service-6 .card {
    margin-bottom: 1rem;
  }

  .bsb-service-6 .card-body {
    padding: 0.75rem; 
  }

  .bsb-service-6 .card svg {
    width: 24px;
    height: 24px; 
  }
}

@media (max-width: 575.98px) {
  .bsb-service-6 .row {
    flex-direction: column;
  }
}
@media (max-width: 991px) {
  .how-section1 .row {
      margin-bottom: 2rem;
  }

  .how-img {
      text-align: center;
  }
}

@media (max-width: 767px) {
  .how-section1 {
      padding: 1rem;
  }

  h4 {
      font-size: 1.25rem;
  }

  .subheading {
      font-size: 1.1rem;
  }
}
@media (max-width: 1199px) {
  .red {
      height: 8px; /* Adjust height for smaller screens */
  }

  .title-big h3 {
      font-size: 1.5rem; /* Slightly smaller font size */
  }

  .description-p {
      font-size: 0.9rem;
  }

}

@media (max-width: 991px) {
  #about-section {
      padding-top: 4rem;
      padding-bottom: 4rem;
  }

  .col-Universal-6 {
      margin-bottom: 2rem;
  }

  .title-big h3 {
      font-size: 1.25rem; /* Smaller font size */
  }

  .description-p {
      font-size: 0.9rem;
  }

}

@media (max-width: 767px) {
  #about-section {
      padding-top: 2rem;
      padding-bottom: 2rem;
  }

  .title-big h3 {
      font-size: 1rem;
  }

  .description-p {
      font-size: 0.8rem;
  }


  .potoaboutwrap img {
      width: 100%;
      height: auto;
  }
  @media (max-width: 768px) {
    .call-button {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        margin-right: 0; 
        border-radius: 0; 
        padding: 15px 0; 
        text-align: center !important;
        z-index: 9999; 
    }
}
}
.footer {
  background-color: black;
  color: white;
  padding: 20px 0;
  position: relative;
  bottom: 0;
  width: 100%;
  text-align: center;
  z-index: 1000;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.footer-text {
  margin: 0;
  font-size: 14px;
}

.footer-link {
  color: #f0c38e;
  text-decoration: none;
  margin-top: 10px;
  font-size: 14px;
}

.footer-link:hover {
  text-decoration: underline;
}
.Style-logo{
  font-size: 28px !important;
  font-family: Helvetica, sans-serif;
  font-weight: 700;
  color: var(--main-color);
}