@font-face {
    font-family: 'sahel';
    src: url('./fonts/Shabnam-Bold.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

:root {
    --swiper-theme-color:#ffffff !important
}

.swiper-pagination-bullet {
    background-color: #929292 !important; 
    opacity: 1;
  }
  
  .swiper-pagination-bullet-active {
    background-color: #ffffff !important;
  }

body {
    font-family: "sahel", sans-serif !important;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    direction: rtl;
    color: #ffffff;
    background-color: #000000;
}

h1 {
    text-shadow: 2px 2px 4px #000000;
}

header {
    /* background-color: #202020; */
    display: flex;
    justify-content: space-between;
    align-items: center;
    backdrop-filter: blur(10px);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

header .logo img {
    width: 90px;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.8rem;
    color: var(--dark-blue);
    cursor: pointer;
}

.big {
    min-width: 450px;
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
        z-index: 10;
    }

    .big {
        min-width: 200px !important;
        width: 100%;
    }

    .menu {
        position: absolute;
        top: 0;
        right: 0;
        height: 100vh;
        width: 200px;
        border-radius: 5px;
        background: rgb(0, 0, 0);
        transform: translateX(100%);
        transition: transform 0.3s ease;
        z-index: 100;
        padding: 1.5rem;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
    }

    .menu a {
        color: rgb(255, 255, 255);
    }

    .nav-list a::after {
        background: rgb(224, 224, 224);
    }
    
    .menu.open {
        transform: translateX(0%);
    }

    .nav-list {
        flex-direction: column;
        gap: 1.5rem;
        z-index: 9999;
    }
}

header nav ul {
    list-style: none;
    display: flex;
    padding: 0;
    margin: 0;
}

header nav ul li {
    margin: 0 15px;
}

header nav ul li a {
    font-size: 15px;
    color: #f1f1f1;
    text-decoration: none;
    font-weight: bold;
    position: relative;
    transition: all 0.3s ease;
}

header nav ul li a:hover::after {
    width: 100%;
}

header nav ul li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: white;
    transition: width 0.3s ease;
}



header .auth a {
    font-size: 12px;
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
    border: 1px solid white;
    padding: 6px 12px;
    border-radius: 20px;
    transition: background-color 0.3s;
    margin: 0px 15px;
}

header .auth a:hover {
    border: 1px solid black;
    background-color: #ffffff;
    color: #000000;
}

.slider-container {
    max-width: 700px;
    width: 90%;
}

.slider-container img {
    min-height: 400px;
    border-radius: 12px;
}

section.hero {
    display: flex;
    justify-content: center;
}


.hero {
    padding: 100px 0;
    text-align: right;
    color: #ffffff;
}

.hero .overlay {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.hero .container {
    width: 95%;
    position: relative;
    z-index: -10;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.hero .slider {
    width: 45%;
}

.hero .slides {
    display: flex;
    overflow: hidden;
    border-radius: 15px;
}

.hero .slide {
    min-width: 100%;
    transition: transform 0.5s ease;
}

.hero .slide img {
    width: 100%;
    height: 100%;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.hero .intro {
    width: 45%;
}

.hero .intro h1 {
    font-size: 46px;
    color: #ffffff;
    margin: 2px 0px;
}
.hero .intro h2 {
    font-size: 25px;
    color: #ffffff;
    margin: 2px 0px;
}
.hero .intro p {
    color: #afafaf;
    font-size: 15px;
    margin: 2px 0px;
}

.counter-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 50px;
  }

  .counter-box {
    flex: 1 1 200px;
    background: #202020;
    border-radius: 15px;
    padding: 30px 20px;
    transition: 0.3s;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .counter-box:hover {
    background: rgba(0, 0, 0, 0.062);
  }

  .counter-box i {
    font-size: 36px;
    margin-bottom: 15px;
    color: #ffffff;
  }

  .counter-box img {
    margin-bottom: 15px;
  }

  .counter-number {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 5px;
  }

  .counter-label {
    font-size: 16px;
  }

.statistics, .gallery, .features {
    margin: 6em 20px;
    padding: 40px 20px;
    border-radius: 15px;
}

.statistics h2, .features h2 {
    text-align: center;
    margin-bottom: 30px;
    color: #f5b078;
}

/* .stats-boxes {
    display: flex;
    justify-content: space-between;
}

.stat-box {
    background-color: rgba(22, 55, 43, 0.8);
    color: #f5b078;
    padding: 10px;
    border-radius: 10px;
    width: 27%;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    font-size: 20px;
} */

.gallery .container {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.small-box, .large-box {
    background-color: rgba(22, 55, 43, 0.8);
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.small-box {
    width: 30%;
}

.large-box {
    width: 65%;
}

.gallery img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}


.swiper {
    width: 100%;
    max-width: 1200px;
    margin: auto;
  }

  .swiper-slide {
    overflow: hidden;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    cursor: pointer;
  }

  .swiper-slide img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: 0.3s;
  }

  .caption {
    padding: 10px 10px 30px 10px;
    font-size: 16px;
    color: #ffffff;
  }

  .swiper-pagination {
    margin-top: 15px;
    text-align: center;
    position: relative;
  }
  
  .swiper-pagination-bullet {
    background-color: #d1d1d1;
    opacity: 1;
    width: 8px;
    height: 8px;
  }

  .swiper-horizontal>.swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction {
    bottom: 0px !important;
    top: 255px !important;
    left: 0;
    width: 100%;
}

.footer-container {
    padding-top: 3em;
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    color: #fff;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-sections {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.footer-section h3 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    position: relative;
    padding-bottom: 10px;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    right: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background: var(--light-red);
    transition: width 0.3s ease;
}

.footer-section:hover h3::after {
    width: 70px;
}

.footer-section p {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.footer-links {
    text-decoration: none;    
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    display: block;
    position: relative;
}

.footer-links a:hover {
    color: var(--light-red);
    padding-right: 20px;
}

.footer-links a:hover::before {
    opacity: 1;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: gray;
    transform: translateY(-3px);
}

.contact-info {
    margin-top: 20px;
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.newsletter-form {
    margin-top: 20px;
}

.newsletter-form input {
    width: 100%;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    border-radius: 5px;
    color: #fff;
    margin-bottom: 10px;
}

.newsletter-form button {
    background: var(--light-red);
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    background: #ff4444;
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    color: #999;
}

.footer-bottom p{
    margin: 0;
    padding: 10px;
}

@media (max-width: 900px) {
    .footer-sections {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {

    .footer-sections {
        grid-template-columns: repeat(1, 1fr);
    }
    .mobile-none {
        display: none;
    }
    .footer-bottom {
        font-size: 0.5em;
    }

    .form {
        flex-direction: column !important;
    }

    .btn {
        min-width: 68vw;
        width: 100% !important;
    }

    .hero .slider {
        width: 90%;
    }

    .hero .container {
        display: flex;
        flex-direction: column-reverse;
        justify-content: center;
        align-items: center;
    }
    
    .hero, .features {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .hero .intro, .features .details, .features .image {
        width: 100%;
    }

    .statistics .stats-boxes, .gallery .container {
        flex-direction: column;
        align-items: center;
    }

    .stat-box, .small-box, .large-box {
        width: 100%;
        margin-bottom: 20px;
    }
}

/* form */
.form-box {
    flex: 1;
    padding: 40px;
    color: #fff;
  }

  .form-box h2 {
    margin-bottom: 30px;
    font-size: 28px;
  }

  .input-group {
    position: relative;
    margin-bottom: 25px;
  }

  .input-group input {
    font-family: "sahel", sans-serif !important;
    width: 90%;
    padding: 14px 45px 14px 15px;
    border-radius: 30px;
    border: none;
    background: #1e1e1e;
    color: #fff;
    font-size: 16px;
    outline: none;
    box-shadow: inset 0 0 10px rgba(255, 255, 255, 0.05);
  }

  .input-group i {
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    color: #aaa;
  }

  .btn {
    font-family: "sahel", sans-serif !important;
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 30px;
    background: #ffffff;
    color: #000000;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s ease;
  }

  .btn:hover {
    background: #cccccc77;
    color: #ffffff7e;
  }

  .side-box {
    background-image: 
      linear-gradient(to bottom right, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
      url(/static/img/1.webp);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ccc;
    font-size: 18px;
    text-align: center;
    padding: 30px;
  }
  

.form {
    display: flex;
    flex-direction: row;
    max-width: 1300px;
    margin: 2em;
}