body{
    background: linear-gradient(to bottom, #e52d27, #2b2b2b);

}

/* Scrollbar */
::-webkit-scrollbar {
    width: 12px;
    height: 12px;
}

::-webkit-scrollbar-thumb {
    background: #ff7043;
    border-radius: 10px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.4);
}.language-dropdown

::-webkit-scrollbar-thumb:hover {
    background: #ff4c4c;
}

/* 3D Scrollbar Track */
::-webkit-scrollbar-track {
    background: linear-gradient(145deg, #f1f1f1, #e0e0e0);
    border-radius: 10px;
}
.cursor {
    position: absolute;
    width: 25px;
    height: 25px;
    background-color: #ff7043;
    border-radius: 50%;
    pointer-events: none;
    transition: width 0.2s, height 0.2s, background-color 0.2s, box-shadow 0.2s;
    transform: translate(-50%, -50%);
    will-change: transform;
  }

  .cursor.clicking {
    width: 40px;
    height: 40px;
    background-color: #ff3d00;
    box-shadow: 0 0 15px rgba(255, 61, 0, 0.8), 0 0 25px rgba(255, 61, 0, 0.6);
  }

  .cursor.hovering {
    width: 30px;
    height: 30px;
    background-color: #ff5722;
    box-shadow: 0 0 10px rgba(255, 87, 34, 0.7), 0 0 20px rgba(255, 87, 34, 0.4);
  }

  /* Add smooth trail effect */
  .trail {
    position: absolute;
    width: 15px;
    height: 15px;
    background-color: #ff7043;
    border-radius: 50%;
    pointer-events: none;
    opacity: 0.5;
    animation: trailEffect 0.6s linear infinite;
    will-change: transform;
  }

  @keyframes trailEffect {
    0% {
      transform: scale(1);
      opacity: 0.5;
    }
    50% {
      transform: scale(0.7);
      opacity: 0.3;
    }
    100% {
      transform: scale(1);
      opacity: 0;
    }
  }


/* Fixed Navbar at the top */
.top-navbar {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    background-color: #333;
    color: white;
    padding: 10px 0;
}

/* Navbar styling */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    /*width: 40px;*/
    height: 40px;
    margin-right: 10px;
}

.logo span {
    font-size: 1.5rem;
    font-weight: bold;
}

.countdown {
    font-size: 1.2rem;
}

.cta-button {
    background-color: #e52d27;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 1rem;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s;
}

.cta-button:hover {
    background-color: #b31217;
}
/* Existing CSS */

.toggle-timer {
    background-color: #333;
    color: white;
    border: none;
    padding: 5px 10px;
    font-size: 1rem;
    cursor: pointer;
}

.toggle-timer:hover {
    background-color: #444;
}

/* Optional: Hide the timer initially */
#countdown-container {
    display: none;
}


/* Responsive Styling */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        align-items: center;
    }

    .cta-button {
        margin-top: 10px;
    }
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    /*width: 40px;*/
    height: 40px;
    margin-right: 10px;
}

.logo span {
    font-size: 1.5rem;
    font-weight: bold;
}

.cta-button {
    background-color: #e52d27;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 1rem;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s;
}

.cta-button:hover {
    background-color: #b31217;
}

@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        align-items: center;
    }

    .cta-button {
        margin-top: 10px;
    }
}

header {
    padding: 60px 20px;
    text-align: center;
    
}

header h1 {
    font-size: 3rem;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
}

header p {
    font-size: 1.2rem;
    margin: 10px 0 20px;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

header button {
    background: #000;
    color: #ff4c4c;
    border: 2px solid #ff4c4c;
    padding: 10px 20px;
    font-size: 1.1rem;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
}

header button:hover {
    background: #ff4c4c;
    color: #fff;
}

/* Hero Section Styling */
.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: linear-gradient(120deg, #ff6363, #ff7f50, #ff9966);
    justify-content: center;
    color: white;
    padding: 50px;
    min-height: 90vh;
    text-align: center;
}

.hero-title {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.hero-description {
    color:white;
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.cta-button {
    padding: 12px 24px;
    background: white;
    color: #b31217;
    border: none;
    font-size: 1.2rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.4s;
}

.cta-button:hover {
    background: #b31217;
    color: white;
}

.hero-visual {
    perspective: 600px;
    margin-top: 30px;
}

.cube {
    position: relative;
    width: 150px;
    height: 150px;
    transform-style: preserve-3d;
    transform: rotateX(-30deg) rotateY(-30deg);
    animation: rotateCube 5s infinite linear;
}

.face {
    position: absolute;
    width: 150px;
    height: 150px;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    color: white;
    border: 1px solid white;
}

.face {
    position: absolute;
    width: 150px;
    height: 150px;
    background-color: rgba(255, 255, 255, 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    font-weight: 600;
    color: white;
    border-radius: 15px;
}


.front { transform: translateZ(75px); background: #FF4C4C; }
.back { transform: rotateY(180deg) translateZ(75px); background: #FF7043; }
.left { transform: rotateY(-90deg) translateZ(75px); background: #FF5733; }
.right { transform: rotateY(90deg) translateZ(75px); background: #FF8F50; }
.top { transform: rotateX(90deg) translateZ(75px); background: #FF5C5C; }
.bottom { transform: rotateX(-90deg) translateZ(75px); background: #FF4A4A; }

@keyframes rotateCube {
    0% { transform: rotateX(0deg) rotateY(0deg); }
    100% { transform: rotateX(360deg) rotateY(360deg); }
}

@media (max-width: 768px) {
    .hero {
        padding: 30px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .cta-button {
        font-size: 1rem;
    }

    .cube {
        width: 120px;
        height: 120px;
    }

    .face {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.5rem;
    }

    .hero-description {
        font-size: 0.9rem;
    }

    .cta-button {
        font-size: 1rem;
    }

    .cube {
        width: 100px;
        height: 100px;
    }

    .face {
        font-size: 0.9rem;
    }
}

.limited-time-offer {
    text-align: center;
    padding: 60px 20px;
    color: #fff;
}

.limited-time-offer .cta-button {
    background: #000;
    color: #ff4c4c;
    margin-top: 20px;
}

.about {
    padding: 60px 20px;
    color: #fff;
    text-align: center;
}

.about-title {
    font-size: 2rem;
    margin-bottom: 20px;
}

.about-description {
    font-size: 1.1rem;
    line-height: 1.8;
}
/* General Layout */
.services, .testimonials, .research, .how-it-works {
    padding: 40px 20px;
    text-align: center;
    color: white;
}

.service-cards {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.card {
    perspective: 1000px;
    width: 200px;
    height: 250px;
}

.card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transition: transform 0.6s;
    cursor: pointer;
}

.card:hover .card-inner {
    transform: rotateY(180deg);
}

.card-front, .card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #1e1e1e;
    color: #fff!important;
    border-radius: 8px;
}

.card-back {
    transform: rotateY(180deg);
    background: #ff4c4c;
}
.card-back p{
    color: #fff!important;
}

/* Research Bar */
.research-graph {
    height: 300px;
    width: 50%;
    margin: auto;
    background: #1e1e1e;
    position: relative;
    border-radius: 8px;
}

.bar {
    background-color: #ff7043;
    width: 80px;
    margin: auto;
    height: 0;
    transition: height 2s;
    border-radius: 8px;
    text-align: center;
}

.bar::after {
    content: '95%';
    color: #fff;
}

/* Steps Animation */
.steps {
    display: flex;
    justify-content: space-around;
    margin-top: 20px;
}
/* General Section Styling */
section {
        background-repeat: round!important;
    background-origin: initial!important;
    background-position: initial!important;
    background-size: cover!important;
    background-blend-mode: overlay!important; /* Adjust blending of color and image */

    padding: 50px 20px;
    background-color: #f9f9f9;
    text-align: center;
}

h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 20px;
}

p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
}

/* Differences Table */
.comparison-table table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px auto;
}

.comparison-table th, 
.comparison-table td {
    padding: 15px;
    text-align: center;
    color: #333;
    border: 1px solid #ddd;
}

.comparison-table th {
    background-color: #333;
    color: #fff;
}

/* Subscription Section */
.subscription {
    background-color: #eef6ff;
    border-radius: 10px;
    color: #333;

}

.subscription ul {
    list-style: none;
    padding: 0;
}

.subscription li {
    padding: 10px;
    font-size: 1.1rem;
}

.cta-button {
    background-color: #0078ff;
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 1.1rem;
    cursor: pointer;
    border-radius: 5px;
}

.cta-button:hover {
    background-color: #005bb5;
}

/* Secure Payment Section */
.secure-payment .payment-icons img {
    width: 50px;
    margin: 10px;
}

/* Product Table Section */
.product-table table {
    width: 100%;
    color: #333;

    border-collapse: collapse;
    margin: 30px auto;
}

.product-table th, 
.product-table td {
    padding: 15px;
    border: 1px solid #ddd;
}

.product-table th {
    background-color: #444;
    color: #fff;
}

/* Gallery Section */
.gallery-slider {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.gallery-img {
    width: 100%;
    max-width: 300px;
    border-radius: 10px;
}

.slide {
    flex: 1;
}
/* Button Hover Animation */
.cta-button {
    position: relative;
    overflow: hidden;
    transition: background-color 0.3s, color 0.3s;
}

.cta-button::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, #ff6363, #ff7f50, #ff9966);
    transition: all 0.5s ease-in-out;
    z-index: 1;
}

.cta-button:hover {
    color: #fff;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    background: #0078ff;
    color: white;
}

/* Hover Effects for Cards */
.service-cards .card {
    background: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    transition: transform 0.3s, box-shadow 0.3s;
    padding: 20px;
    cursor: pointer;
}

.service-cards .card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Gallery Image Hover */
.gallery-img {
    transition: transform 0.3s ease, filter 0.3s ease;
}

.gallery-img:hover {
    transform: scale(1.1);
    filter: brightness(90%);
}

/* Table Row Animation */
.product-table tbody tr:hover {
    background-color: rgba(68, 170, 255, 0.1);
    transition: background-color 0.3s;
}

/* Add Smooth Animations */
@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

section {
    animation: fadeIn 1s ease-in-out;
}


.payment-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    max-width: 1200px;
    margin: 30px;
    gap: 40px;
    flex-wrap: wrap;
}

.payment-form-container {
    flex: 1;
    max-width: 50%;
    padding: 20px;
}

.payment-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.input-group {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.input-group label {
    font-weight: bold;
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.input-group input {
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    width: 250px;
    font-size: 1.2rem;
    transition: border-color 0.3s ease;
}
input[id=name],input[id=card-number] {
    width: 100%;
}

.input-group input:focus {
    border-color: #2ecc71;
    box-shadow: 0 0 5px rgba(46, 204, 113, 0.6);
}

.card-details {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Right Section: Amount and Card */
.payment-amount-container {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    padding-top:40px;
    width: 45%;
}

.payment-amount {
    text-align: right;
    font-size: 1.6rem;
    font-weight: bold;
}

.payment-amount h3 {
    color: #2ecc71;
    font-size: 2.4rem;
    margin-top: 10px;
}

.payment-card-container {
    width: 100%;
    height: 220px;
    position: relative;
    perspective: 1000px;
    margin-bottom: 30px;
}

.payment-card {
    width: 100%;
    height: 100%;
    background-color: #2ecc71;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.card-logo {
    width: 50px;
    height: auto;
}

.card-type {
    font-size: 1rem;
    text-transform: uppercase;
}

.card-number {
    font-size: 1.6rem;
    margin-top: 15px;
}

.card-details-display {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
    font-size: 1rem;
}


.cta-button:hover {
    background-color: #27ae60;
}

/* Mobile-friendly design */
@media (max-width: 1024px) {
    .payment-container {
        flex-direction: column;
        gap: 40px;
    }

    .payment-form-container,
    .payment-amount-container {
        max-width: 100%;
        align-items: center;
    }

    .payment-amount {
        text-align: center;
    }

    .card-details {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* Smaller Mobile Screens */
@media (max-width: 768px) {
    .payment-container {
        gap: 30px;
    }

    .payment-form-container {
        max-width: 100%;
    }

    .payment-amount-container {
        max-width: 100%;
    }

    .payment-card-container {
        width: 100%;
        height: auto;
    }

    .payment-amount h3 {
        font-size: 2rem;
    }

    .input-group input {
        padding: 12px;
        font-size: 1.1rem;
    }

    .cta-button {
        padding: 16px;
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .payment-form-container {
        padding: 15px;
    }

    .payment-amount {
        font-size: 1.4rem;
    }

    .payment-amount h3 {
        font-size: 1.8rem;
    }

    .cta-button {
        padding: 14px;
        font-size: 1rem;
    }

    .payment-card {
        padding: 15px;
    }

    .card-number {
        font-size: 1.4rem;
    }
}

.cta-button {
    background: linear-gradient(145deg, #ff6a00, #ee0979);
    border: none;
    border-radius: 50px;
    color: white;
    font-size: 1.2rem;
    font-weight: bold;
    padding: 15px 40px;
    cursor: pointer;
    box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.1), -4px -4px 8px rgba(255, 255, 255, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 8px 8px 16px rgba(0, 0, 0, 0.2), -8px -8px 16px rgba(255, 255, 255, 0.5);
}

.cta-button:active {
    transform: translateY(2px);
    box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2), -2px -2px 4px rgba(255, 255, 255, 0.4);
}
/* General Section Styling */
.policy_section {
    margin: 20px auto;
    padding: 20px;
    max-width: 800px;
    background-color: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }
  
  h2 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #333;
  }
  
  p {
    font-size: 16px;
    line-height: 1.6;
  }
  
  #offer_countdown{
      font-size:30px;
  }
  a {
    color: #007bff;
    text-decoration: none;
  }
  
  a:hover {
    text-decoration: underline;
  }
  
  /* Shortened Text for Preview */
  .short-text {
    display: block;
    margin-bottom: 15px;
  }
  
  /* Full Text to Show on Click */
  .full-text {
    display: none;
    margin-top: 15px;
    font-size: 15px;
    color: #333;
  }
  
  /* Read More Button */
  .read-more-btn {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 20px;
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease;
  }
  
  .read-more-btn:hover {
    background-color: #0056b3;
  }
  
  /* Main Section Styling */
.limited-time-offer {
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1000px; /* Create depth for 3D effect */
    background-color: #222;
    color: #fff;
}

.offer-content {
    background: linear-gradient(135deg, #ff6a00, #ffcc00);
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
    transform: rotateY(15deg); /* Give it a 3D tilt */
    transition: transform 0.3s ease-in-out;
    animation: float 2s ease-in-out infinite; /* Floating animation */
}

.offer-title {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 20px;
    transform: translateZ(30px); /* Pop out the title */
}

.offer-description {
    font-size: 20px;
    margin-bottom: 30px;
    transform: translateZ(20px); /* Pop out the description */
}

.timer {
    margin-bottom: 40px;
    font-size: 24px;
    font-weight: bold;
    transform: translateZ(10px); /* Make the timer appear in front */
}

.cta-button {
    padding: 15px 30px;
    background-color: #ff6347;
    color: white;
    font-size: 18px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    transform: translateZ(5px); /* Button pops out */
}

.cta-button:hover {
    background-color: #ff4500;
}

/* Timer animation */
@keyframes float {
    0% {
        transform: rotateY(15deg);
    }
    50% {
        transform: rotateY(-15deg);
    }
    100% {
        transform: rotateY(15deg);
    }
}

/* Countdown Timer Styling */
#countdown {
    background: linear-gradient(to bottom, #e52d27, #2b2b2b);
    font-weight: 700;
    font-size: 28px;
    color: #ffcc00;
    border-radius: 5px;
    padding: 5px;}

/* Responsiveness for smaller screens */
@media (max-width: 768px) {
    .offer-content {
        padding: 30px;
        font-size: 14px;
    }

    .offer-title {
        font-size: 28px;
    }

    .offer-description {
        font-size: 16px;
    }

    .timer {
        font-size: 20px;
    }

    .cta-button {
        font-size: 16px;
        padding: 12px 24px;
    }
}
body[dir="rtl"] {
    direction: rtl;
    text-align: right;
}
body[dir="ltr"] {
    direction: ltr;
    text-align: left;
}
.language-switcher {
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1000px;
}

.language-dropdown {
    font-size: 18px;
    font-weight: bold;
    padding: 12px 20px;
    border: none;
    border-radius: 12px;
    background: linear-gradient(120deg, #ff6363, #ff7f50, #ff9966);
    color: white;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
    box-shadow: 5px 5px 12px rgba(0, 0, 0, 0.2), -5px -5px 12px rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    outline: none;
    appearance: none;
}
.language-dropdown option{
    background:orange;
}
/* Hover Effect */
.language-dropdown:hover {
    transform: scale(1.08) rotateX(10deg);
    box-shadow: 8px 8px 15px rgba(0, 0, 0, 0.3), -8px -8px 15px rgba(255, 255, 255, 0.3);
}

/* Active Click Effect */
.language-dropdown:active {
    box-shadow: inset 4px 4px 6px rgba(0, 0, 0, 0.3), inset -4px -4px 6px rgba(255, 255, 255, 0.3);
    transform: scale(0.95);
}

/* General Layout */
.services, .testimonials, .research, .how-it-works {
    padding: 40px 20px;
    text-align: center;
    color: white;
}

/* Service Cards Container */
.service-cards {
    display: flex;
    flex-wrap: wrap;  /* Allows wrapping on smaller screens */
    justify-content: center;
    gap: 30px;
}

/* Flip Card Styling */
.card {
    perspective: 1000px;
    width: 200px;
    height: 250px;
}

.card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transition: transform 0.6s ease-in-out;
    cursor: pointer;
}

.card:hover .card-inner {
    transform: rotateY(180deg);
}

.card-front, .card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #1e1e1e;
    color: #fff;
    border-radius: 8px;
    font-size: 18px;
    font-weight: bold;
    padding: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.card-back {
    transform: rotateY(180deg);
    background: #ff4c4c;
}

/* Responsive Design */
@media (max-width: 768px) {
    .service-cards {
        flex-direction: column; /* Stacks cards vertically on mobile */
        align-items: center;
    }
    
    .card {
        width: 90%; /* Adjust card width for smaller screens */
        max-width: 250px;
    }
}


/* ⬛ قسم المميزات */
.feature-section {
    color:white;

    padding: 50px;
    background: linear-gradient(135deg, #ff8c00, #ff4500);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
    padding: 20px;
    color:white;

}

.feature-item {
    background: #222;
    padding: 15px;
    color:white;
    border-radius: 10px;
    transition: 0.3s;
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
}

.feature-item:hover {
    transform: scale(1.1);
    background: #ff5722;
}

/* ⬛ كيف يعمل الموقع؟ */
.how-it-works {
    padding: 50px;
    color:white;
    background: #333;
}

.how-it-works h2, .how-it-works p{
    color:white;

}
.cta-button {
    background: #ff4500;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
}

.cta-button:hover {
    background: #ff8c00;
    transform: scale(1.1);
}

/* ⬛ الأسئلة الشائعة */
.faq {
    padding: 50px;
    color:white;
    background: #222;
}
.faq h2 {
    color:white;

}

.faq-item {
    background: #444;
    padding: 20px;
    margin: 10px 0;
    color:white;
    border-radius: 8px;
}
.faq-item p,    .motivation h2 {
    color: white;
}

    /* قسم التحفيز */
    .motivation {
        padding: 50px;
        color: white;
        background: linear-gradient(135deg, #1a1a1a, #444);
        text-align: center;
    }

    .quote-animation {
        font-size: 24px;
        font-weight: bold;
        margin: 20px auto;
        max-width: 500px;
        color: #ff8c00;
        display: inline-block;
        animation: bounce 0.6s ease-in-out;
    }

    @keyframes bounce {
        0% { transform: scale(1); }
        50% { transform: scale(1.1); }
        100% { transform: scale(1); }
    }

    .motivation-btn {
        background: #ff4500;
        color: white;
        padding: 10px 20px;
        border-radius: 5px;
        cursor: pointer;
        transition: 0.3s;
    }

    .motivation-btn:hover {
        background: #ff8c00;
        transform: scale(1.1);
    }
