:root {
    --primary-yellow: #FFCB05;
    --dark-blue: #1A2942;
    --light-gray: #F5F5F5;
    --white: #FFFFFF;
    --accent-blue: #3498db;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--dark-blue);
    background-color: var(--light-gray);
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Header Styles */
.top-bar {
    background-color: var(--dark-blue);
    padding: .5rem 0;
}

.language-selector {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 5px;
}

.lang-btn {
    background: none;
    border: none;
    color: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    padding: 5px 10px;
    margin: 0 2px;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.lang-btn img {
    margin-right: 5px;
    width: 20px;
    height: auto;
}

.lang-btn:hover,
.lang-btn.active {
    background-color: var(--primary-yellow);
    color: var(--dark-blue);
}

.main-nav {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.main-nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 40px;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1000;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--dark-blue);
    margin: 5px 0;
    transition: all 0.3s ease;
}

.menu {
    display: flex;
    list-style-type: none;
    transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out;
}

.menu li {
    margin-left: 20px;
}

.menu a {
    text-decoration: none;
    color: var(--dark-blue);
    font-weight: 600;
    transition: color 0.3s ease;
    position: relative;
    display: flex;
    align-items: center;
}

.menu a i {
    margin-right: 5px;
}

.menu a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--primary-yellow);
    transition: width 0.3s ease;
}

.menu a:hover::after {
    width: 100%;
}

/* Hero Section */
#hero {
    position: relative;
    background: url('poss.jpg') no-repeat center center/cover;
    height: calc(100vh - 110px);
    color: var(--white);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

#hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(26, 41, 66, 0.7);
}

#particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

#hero .container {
    position: relative;
    z-index: 1;
}

#hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease-out;
}

#hero p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease-out 0.5s backwards;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    background-color: var(--primary-yellow);
    color: var(--dark-blue);
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    transition: all 0.3s ease;
    animation: fadeInUp 1s ease-out 1s backwards;
}

.cta-button i {
    margin-right: 10px;
}

.cta-button:hover {
    background-color: var(--accent-blue);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.floating-icon {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: floatUpDown 2s ease-in-out infinite;
}

.floating-icon i {
    font-size: 24px;
    color: var(--white);
}


/* RTL Styles */
body.rtl {
    direction: rtl;
    text-align: right;
}

.rtl .language-selector,
.rtl .menu {
    justify-content: flex-start;
}

.rtl .menu li {
    margin-left: 0;
    margin-right: 20px;
}

.rtl .menu a i {
    margin-right: 0;
    margin-left: 5px;
}

.rtl .cta-button i {
    margin-right: 0;
    margin-left: 10px;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes floatUpDown {
    0%, 100% {
        transform: translate(-50%, 0);
    }
    50% {
        transform: translate(-50%, -10px);
    }
}

/* Responsive Styles */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .menu {
        position: fixed;
        top: -100%;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: var(--dark-blue);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        opacity: 0;
        transition: top 0.5s ease-in-out, opacity 0.5s ease-in-out;
    }

    .menu.active {
        top: 0;
        opacity: 1;
    }

    .menu li {
        margin: 20px 0;
    }

    .menu a {
        color: var(--white);
        font-size: 1.5rem;
    }

    #hero h1 {
        font-size: 2.5rem;
    }

    #hero p {
        font-size: 1.2rem;
    }

    .language-selector {
        justify-content: center;
    }

    .language-selector a {
        margin: 0 10px;
    }
}
.sc-why-choose-us {
    position: relative;
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--dark-blue) 0%, #0a1422 100%);
    overflow: hidden;
}

.sc-particles-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.sc-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.sc-section-title {
    text-align: center;
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 4rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
}

.sc-section-title::after {
    content: '';
    display: block;
    width: 100px;
    height: 4px;
    background-color: var(--primary-yellow);
    margin: 20px auto 0;
}

.sc-card-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}

.sc-card {
    width: calc(25% - 30px);
    height: 350px;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sc-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.sc-card-content {
    position: relative;
    height: 100%;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    transition: background 0.3s ease;
}

.sc-card:hover .sc-card-content {
    background: rgba(255, 255, 255, 0.2);
}

.sc-card i {
    font-size: 3rem;
    color: var(--primary-yellow);
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.sc-card:hover i {
    transform: scale(1.2);
}

.sc-card h3 {
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.sc-card:hover h3 {
    color: var(--primary-yellow);
}

.sc-card p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

@media (max-width: 1200px) {
    .sc-card {
        width: calc(50% - 30px);
    }
}

@media (max-width: 768px) {
    .sc-card {
        width: 100%;
    }
}


.features-section {
    position: relative;
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--light-gray) 0%, #e0e0e0 100%);
    overflow: hidden;
  }
  
  .features-particles-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
  }
  
  .features-section .container {
    position: relative;
    z-index: 2;
  }
  
  .features-section .section-title {
    text-align: center;
    font-size: 3rem;
    color: var(--dark-blue);
    margin-bottom: 4rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
  }
  
  .features-section .section-title::after {
    content: '';
    display: block;
    width: 100px;
    height: 4px;
    background-color: var(--primary-yellow);
    margin: 20px auto 0;
  }
  
  .features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }
  
  .feature-item {
    background: var(--white);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
  }
  
  .feature-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
  }
  
  .feature-item h3 {
    font-size: 1.5rem;
    color: var(--dark-blue);
    margin-bottom: 15px;
  }
  
  .feature-item p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
  }
  
  @media (max-width: 1200px) {
    .features-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  @media (max-width: 768px) {
    .features-grid {
      grid-template-columns: 1fr;
    }
  }


  .store-types-section {
    background-color: var(--light-gray);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
  }
  
  .store-types-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255,203,5,0.1) 0%, rgba(26,41,66,0.1) 100%);
    z-index: 1;
  }
  
  .store-types-section .container {
    position: relative;
    z-index: 2;
  }
  
  .store-types-section .section-title {
    text-align: center;
    font-size: 3rem;
    color: var(--dark-blue);
    margin-bottom: 4rem;
    text-transform: uppercase;
    letter-spacing: 2px;
  }
  
  .store-types-section .section-title::after {
    content: '';
    display: block;
    width: 100px;
    height: 4px;
    background-color: var(--primary-yellow);
    margin: 20px auto 0;
  }
  
  .store-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
  }
  
  .store-item {
    background-color: var(--white);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  }
  
  .store-item::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, var(--primary-yellow) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  
  .store-item:hover::before {
    opacity: 0.1;
  }
  
  .store-item:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
  }
  
  .store-icon {
    font-size: 3rem;
    color: var(--primary-yellow);
    margin-bottom: 20px;
    transition: all 0.3s ease;
    position: relative;
  }
  
  .store-item:hover .store-icon {
    transform: scale(1.2);
  }
  
  .store-item h3 {
    font-size: 1.2rem;
    color: var(--dark-blue);
    margin-bottom: 15px;
    transition: all 0.3s ease;
  }
  
  .store-item:hover h3 {
    color: var(--primary-yellow);
  }
  
  @media (max-width: 768px) {
    .store-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  @media (max-width: 480px) {
    .store-grid {
      grid-template-columns: 1fr;
    }
  }

  .contact-cta-section {
    background: linear-gradient(135deg, var(--dark-blue) 0%, #0a1422 100%);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
  }
  
  .cta-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1;
  }
  
  .cta-content {
    flex: 0 0 60%;
    padding: 2rem;
  }
  
  .cta-title {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
  }
  
  .cta-subtitle {
    font-size: 1.5rem;
    color: var(--primary-yellow);
    margin-bottom: 2rem;
  }
  
  .cta-button {
    display: inline-flex;
    align-items: center;
    background-color: var(--primary-yellow);
    color: var(--dark-blue);
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
  }
  
  .cta-button:hover {
    background-color: var(--white);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(255, 203, 5, 0.3);
  }
  
  .button-text {
    position: relative;
    z-index: 1;
  }
  
  .button-icon {
    margin-left: 10px;
    position: relative;
    z-index: 1;
  }
  
  .cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.7s;
  }
  
  .cta-button:hover::before {
    left: 100%;
  }
  
  .cta-decoration {
    flex: 0 0 40%;
    position: relative;
    height: 300px;
  }
  
  .decoration-circle,
  .decoration-square,
  .decoration-triangle {
    position: absolute;
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
  }
  
  .decoration-circle {
    width: 150px;
    height: 150px;
    border: 15px solid var(--primary-yellow);
    border-radius: 50%;
    top: 20%;
    left: 10%;
  }
  
  .decoration-square {
    width: 100px;
    height: 100px;
    background-color: var(--primary-yellow);
    top: 50%;
    right: 20%;
    animation-delay: -2s;
  }
  
  .decoration-triangle {
    width: 0;
    height: 0;
    border-left: 75px solid transparent;
    border-right: 75px solid transparent;
    border-bottom: 130px solid var(--primary-yellow);
    bottom: 10%;
    left: 30%;
    animation-delay: -4s;
  }
  
  @keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
  }
  
  @media (max-width: 768px) {
    .cta-container {
      flex-direction: column;
      text-align: center;
    }
  
    .cta-content {
      flex: 0 0 100%;
      margin-bottom: 2rem;
    }
  
    .cta-decoration {
      flex: 0 0 100%;
      height: 200px;
    }
  
    .cta-title {
      font-size: 2.5rem;
    }
  
    .cta-subtitle {
      font-size: 1.2rem;
    }
  }

  .about-us-section {
    background-color: var(--light-gray);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
  }
  
  .about-us-section::before,
  .about-us-section::after {
    content: '';
    position: absolute;
    border-radius: 50%;
  }
  
  .about-us-section::before {
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background-color: var(--primary-yellow);
    opacity: 0.1;
  }
  
  .about-us-section::after {
    bottom: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    background-color: var(--dark-blue);
    opacity: 0.05;
  }
  
  .about-us-section .container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    z-index: 1;
    flex-wrap: wrap;
  }
  
  .about-content {
    flex: 1 1 400px;
    margin-right: 2rem;
    margin-bottom: 2rem;
  }
  
  .section-title {
    font-size: 2.5rem;
    color: var(--dark-blue);
    margin-bottom: 1.5rem;
    position: relative;
  }
  
  .section-title::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background-color: var(--primary-yellow);
    margin-top: 0.5rem;
  }
  
  .about-description {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 2rem;
    line-height: 1.6;
  }
  
  .key-features {
    display: flex;
    justify-content: space-between;
    margin-bottom: 2rem;
    flex-wrap: wrap;
  }
  
  .feature {
    text-align: center;
    flex: 1 1 30%;
    margin-bottom: 1rem;
  }
  
  .feature i {
    font-size: 2.5rem;
    color: var(--primary-yellow);
    margin-bottom: 1rem;
  }
  
  .feature h3 {
    font-size: 1.1rem;
    color: var(--dark-blue);
  }
  
  .cta-button {
    display: inline-block;
    background-color: var(--primary-yellow);
    color: var(--dark-blue);
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
  }
  
  .cta-button:hover {
    background-color: var(--dark-blue);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }
  
  .about-video {
    flex: 1 1 400px;
  }
  
  .video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
  }
  
  .video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 10px;
  }
  
  @media (max-width: 992px) {
    .about-content,
    .about-video {
      flex: 1 1 100%;
    }
  
    .about-content {
      margin-right: 0;
    }
  }
  
  @media (max-width: 768px) {
    .key-features {
      flex-direction: column;
    }
  
    .feature {
      margin-bottom: 1.5rem;
    }
  }
  
  @media (max-width: 480px) {
    .section-title {
      font-size: 2rem;
    }
  
    .about-description {
      font-size: 1rem;
    }
  }