* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Cairo', sans-serif;
}

body {
    background-color: #1a1a1a;
    color: #ffffff;
    direction: rtl;
}

/* Navigation Bar */
.navbar {
    background-color: #3c2f2f;
    padding: 1rem;
    display: flex;
    justify-content: space-around;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.navbar .logo {
    font-size: 1.8rem;
    font-weight: bold;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 1.5rem;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.3s;
}

nav ul li a:hover,
nav ul li a.active {
    color: #3498DB;
}

.hamburger {
    display: none;
    cursor: pointer;
}

.hamburger .line {
    width: 25px;
    height: 1px;
    background-color: #ffffff;
    display: block;
    margin: 7px auto;
    transition: all 0.3s ease-in-out;
}

.hamburger-active {
    transition: all 0.3s ease-in-out;
    transition-delay: 0.6s;
    transform: rotate(45deg);
}

.hamburger-active .line:nth-child(2) {
    width: 0px;
}

.hamburger-active .line:nth-child(1),
.hamburger-active .line:nth-child(3) {
    transition-delay: 0.3s;
}

.hamburger-active .line:nth-child(1) {
    transform: translateY(12px);
}

.hamburger-active .line:nth-child(3) {
    transform: translateY(-5px) rotate(90deg);
}

/* responsive lines */
.menubar {
    position: fixed;
    top: 0;
    left: -60%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    width: 60%;
    height: 100vh;
    padding: 20% 0;
    background-color: #3c2f2f;
    transition: all 0.5s ease-in-out;
    z-index: 2;
}

.active {
    left: 0;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.menubar ul {
    padding: 0;
    list-style: none;
    text-align: center;
}

.menubar ul li {
    margin-bottom: 32px;
}

.menubar ul li a {
    text-decoration: none;
    color: white;
    font-size: 1.2rem;
    font-weight: 500;
    padding: 10px 20px;
    border-radius: 5px;
    display: block;
}

.menubar ul li a:hover {
    background-color: #3498DB;
}

/* Header */
.header {
    position: relative;
    height: 70vh;
    overflow: hidden;
}

.header-overlay {
    position: relative;
    z-index: 1;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7));
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.header:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../img/PUBG\ _India\ Map\ -\ Vishal\ Klair\ \(1\).jpeg') no-repeat center center/cover;
    z-index: 0;
}

.header-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: #ffffff;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
}

.header-content p {
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: #e0e0e0;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
}

.animated-title {
    animation: slideIn 1s ease-in-out;
}

.animated-text {
    animation: slideIn 1.2s ease-in-out;
}

.animated-btn {
    animation: slideIn 1.4s ease-in-out;
}

@keyframes slideIn {
    0% { opacity: 0; transform: translateY(50px); }
    100% { opacity: 1; transform: translateY(0); }
}
/* Button - Animated Button */
.btn {
    display: inline-block;
    padding: 15px 30px;
    font-size: 1.2rem;
    font-family: 'Cairo', sans-serif;
    color: #ffffff;
    background-color: #3498DB;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.animated-btn {
    position: relative;
    overflow: hidden;
    animation: pulse 2s infinite;
}

.animated-btn:hover {
    background-color: #2980B9;
    box-shadow: 0 6px 15px rgba(52, 152, 219, 0.5);
    transform: translateY(-2px);
}

.animated-btn:active {
    transform: translateY(2px);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.animated-btn:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.animated-btn:hover:before {
    width: 200px;
    height: 200px;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(52, 152, 219, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(52, 152, 219, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(52, 152, 219, 0);
    }
}

/* Who We Are - Improved */
.who-we-are {
    padding: 60px 20px;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    background-color: #1a1a1a;
}

.who-we-are-content {
    position: relative;
}

.who-we-are-icon {
    font-size: 3rem;
    color: #3498DB;
    margin-bottom: 20px;
}

.who-we-are h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #ffffff;
}

.who-we-are p {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #e0e0e0;
}

/* Features - Improved */
.features {
    background-color: #3c2f2f;
    padding: 60px 20px;
    text-align: center;
}

.features h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #ffffff;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background-color: #ffffff;
    color: #1a1a1a;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-card i {
    font-size: 2.5rem;
    color: #3498DB;
    margin-bottom: 15px;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.feature-card p {
    font-size: 1rem;
}

/* Games - Improved */
.games {
    padding: 60px 20px;
    text-align: center;
    background-color: #1a1a1a;
}

.games h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #ffffff;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.game-card {
    background-color: #ffffff;
    color: #1a1a1a;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s;
}

.game-card:hover {
    transform: scale(1.05);
}

.game-card img {
    width: 10%;
    height: 150px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
}

.game-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.game-card .btn {
    padding: 15px 30px;
    font-size: 1.2rem;
}


/* Charge Section - New Design */
.charge {
    padding: 60px 20px;
    min-height: 80vh;
    position: relative;
    overflow: hidden;
}

.charge-overlay {
    position: relative;
    z-index: 1;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7));
    padding: 40px;
    border-radius: 10px;
    max-width: 1200px;
    margin: 0 auto;
}

.charge:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../img/PUBG\ _India\ Map\ -\ Vishal\ Klair\ \(1\).jpeg') no-repeat center center/cover;
    z-index: 0;
}

.charge h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #ffffff;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
}

.charge-intro {
    font-size: 1.2rem;
    color: #e0e0e0;
    margin-bottom: 30px;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
}

.charge-content {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

.charge-packages {
    flex: 2;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
}

.package-card {
    background-color: #3c2f2f;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    text-align: center;
    cursor: pointer;
    transition: transform 0.3s, background-color 0.3s;
}

.package-card:hover {
    transform: translateY(-5px);
    background-color: #4a3d3d;
}

.package-card.selected {
    background-color: #3498DB;
    color: #ffffff;
}

.package-card h3 {
    font-size: 1.3rem;
    color: #ffffff;
    margin-bottom: 10px;
}

.package-card p {
    font-size: 1.1rem;
    color: #e0e0e0;
}

.charge-form {
    flex: 1;
    min-width: 300px;
    background-color: #3c2f2f;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.form-group {
    margin-bottom: 15px;
    text-align: right;
}

.form-group label {
    display: block;
    font-size: 1.1rem;
    color: #ffffff;
    margin-bottom: 5px;
}

.form-group input {
    width: 100%;
    padding: 10px;
    border-radius: 5px;
    border: none;
    font-size: 1rem;
    background-color: #ffffff;
    color: #1a1a1a;
}

.form-group input:focus {
    outline: none;
    box-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
}
/* Guarantee Section - New Design */
.guarantee {
    padding: 60px 20px;
    min-height: 80vh;
    position: relative;
    overflow: hidden;
}

.guarantee-overlay {
    position: relative;
    z-index: 1;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7));
    padding: 40px;
    border-radius: 10px;
    max-width: 1200px;
    margin: 0 auto;
}

.guarantee:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../img/PUBG\ _India\ Map\ -\ Vishal\ Klair\ \(1\).jpeg') no-repeat center center/cover;
    z-index: 0;
}

.guarantee h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #ffffff;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
}

.guarantee-intro {
    font-size: 1.2rem;
    color: #e0e0e0;
    margin-bottom: 30px;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
}

.guarantee-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.guarantee-card {
    background-color: #3c2f2f;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    text-align: center;
    width: 250px;
    transition: transform 0.3s;
}

.guarantee-card:hover {
    transform: translateY(-5px);
}

.guarantee-card i {
    font-size: 2rem;
    color: #3498DB;
    margin-bottom: 10px;
}

.guarantee-card h3 {
    font-size: 1.3rem;
    color: #ffffff;
    margin-bottom: 10px;
}

.guarantee-card p {
    font-size: 1rem;
    color: #e0e0e0;
    line-height: 1.4;
}
/* Contact Section - New Design */
.contact {
    padding: 60px 20px;
    min-height: 80vh;
    position: relative;
    overflow: hidden;
}

.contact-overlay {
    position: relative;
    z-index: 1;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7));
    padding: 40px;
    border-radius: 10px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../img/PUBG\ _India\ Map\ -\ Vishal\ Klair\ \(1\).jpeg') no-repeat center center/cover;
    z-index: 0;
}

.contact h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #ffffff;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
}

.contact-intro {
    font-size: 1.2rem;
    color: #e0e0e0;
    margin-bottom: 30px;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
    margin-bottom: 30px;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
}

.contact-content {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

.contact-form {
    flex: 1;
    min-width: 300px;
    background-color: #3c2f2f;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.contact-methods {
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.contact-card {
    background-color: #3c2f2f;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    text-align: center;
    width: 200px;
    transition: transform 0.3s;
}

.contact-card:hover {
    transform: translateY(-5px);
}

.contact-card i {
    font-size: 2rem;
    color: #a19a9a;
    margin-bottom: 10px;
}

.contact-card h3 {
    font-size: 1.2rem;
    color: #ffffff;
    margin-bottom: 10px;
}

.contact-card a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
}

.contact-card a:hover {
    color: #3498DB;
}

.form-group {
    margin-bottom: 15px;
    text-align: right;
}

.form-group label {
    display: block;
    font-size: 1.1rem;
    color: #ffffff;
    margin-bottom: 5px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border-radius: 5px;
    border: none;
    font-size: 1rem;
    background-color: #ffffff;
    color: #1a1a1a;
}

.form-group textarea {
    height: 100px;
    resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    box-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
}
/* Footer */
.footer {
    background-color: #1a1a1a;
    padding: 30px 20px;
    text-align: center;
}

.footer-links {
    margin-top: 20px;
}

.footer-links a {
    color: #ffffff;
    margin: 0 15px;
    text-decoration: none;
    font-size: 1.5rem;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #e0e0e0;
}

.footer-links .fab {
    transition: transform 0.3s;
}

.footer-links a:hover .fab {
    transform: scale(1.2);
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 768px) {
    nav ul {
        display: none;
    }

    .hamburger {
        display: block;
    }

    .header-content h1 {
        font-size: 2rem;
    }

    .who-we-are h2,
    .features h2,
    .games h2 {
        font-size: 2rem;
    }

    .who-we-are {
        margin-top: 80px;
        height: auto; /* جعل الارتفاع ديناميكي */
        padding: 40px 20px;
    }

    .features {
        padding-bottom: 80px; /* زيادة المسافة تحت المميزات */
    }

    .features-grid {
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    }

    .games {
        margin-top: 80px; /* زيادة المسافة على الجوال */
        padding-top: 40px; /* مساحة إضافية من فوق */
    }
    .game-card img {
        width:40%
    }
         .charge h2 {
        font-size: 2rem;
    }

    .charge-intro {
        font-size: 1rem;
    }

    .charge-content {
        flex-direction: column;
    }

    .charge-packages {
        grid-template-columns: 1fr 1fr;
    }

    .charge-form {
        width: 100%;
    }
  .guarantee h2 {
        font-size: 2rem;
    }

    .guarantee-intro {
        font-size: 1rem;
    }

    .guarantee-card {
        width: 100%;
        margin-bottom: 20px;
    }
    .contact h2 {
        font-size: 2rem;
    }

    .contact-intro {
        font-size: 1rem;
    }

    .contact-content {
        flex-direction: column;
    }

    .contact-form,
    .contact-card {
        width: 100%;
    }

    .contact-card {
        margin-bottom: 20px;
    }
}
