:root {
    --primary: #FB3741;
    --primary-dark: #E02A34;
    --primary-light: #FF6B73;
    --dark: #1A1A1A;
    --dark-light: #2D2D2D;
    --gray: #7B7B7B;
    --light: #F7F7F7;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Tajawal', 'Segoe UI', system-ui, -apple-system, sans-serif;
}

body {
    background: linear-gradient(135deg, #0F0F0F 0%, #1A1A1A 100%);
    color: var(--light);
    min-height: 100vh;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header & Navigation */
header {
    padding: 25px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 1.8rem;
}

.logo img {
    height: 50px;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: var(--light);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a:hover {
    color: var(--primary);
}

.nav-links a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    right: 0;
    background-color: var(--primary);
    transition: width 0.3s ease;
}

.nav-links a:hover:after {
    width: 100%;
}

/* Hero Section */
.hero {
    padding: 160px 0 100px;
    position: relative;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.hero-text {
    flex: 1;
    text-align: right;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
}




.hero-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    opacity: 0.15;
    background: radial-gradient(circle at 70% 50%, var(--primary) 0%, transparent 60%);
    filter: blur(40px);
}

h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-gradient {
    background: linear-gradient(90deg, #FF3366 0%, #FB3741 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--gray);
    margin-bottom: 40px;
    line-height: 1.6;
    max-width: 500px;
}

/* Login Button */
.login-btn {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(251, 55, 65, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.login-btn:hover, .features-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(251, 55, 65, 0.4);
}

.login-btn:active {
    transform: translateY(1px);
}

.login-btn i {
    margin-right: 8px;
    font-size: 0.9rem;
}

.features-btn {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.8rem;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(251, 55, 65, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}



/* Features Section */
.features {
    padding: 100px 0;
    background: rgba(15, 15, 15, 0.6);
    border-radius: 30px;
    margin: 40px 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    font-weight: 800;
}

.section-title span {
    background: linear-gradient(90deg, #FF3366 0%, #FB3741 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    background: rgba(30, 30, 30, 0.5);
    border-radius: 20px;
    padding: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
    text-align: right;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: rgba(251, 55, 65, 0.1);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--primary);
    font-size: 1.5rem;
    margin-right: auto;
}

.feature-title {
    font-size: 1.4rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.feature-desc {
    color: var(--gray);
    line-height: 1.6;
}

/* Footer */
footer {
    text-align: center;
    padding: 40px 0;
    color: var(--gray);
    font-size: 0.9rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.social-link {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--primary);
    transform: translateY(-5px);
}
  /* Contact Section */
  .contact {
    padding: 100px 0;
    background: rgba(15, 15, 15, 0.6);
    border-radius: 30px;
    margin: 40px 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.contact-info {
    text-align: right;
}

.contact-method {
    display:block ;
    align-items: center;
    margin-bottom: 25px;
    justify-content: flex-end;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: rgba(251, 55, 65, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.2rem;
    margin-left: 15px;
}

.contact-details h4 {
    margin-bottom: 5px;
    font-weight: 700;
}

.contact-details p {
    color: var(--gray);
}


/* Responsive Design */
@media (max-width: 968px) {
    .hero-content {
        flex-direction: column-reverse;
        text-align: center;
    }
    
    .hero-text {
        text-align: center;
    }
    
    .hero-subtitle {
        margin-right: auto;
        margin-left: auto;
    }
    
  
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .nav-links {
        display: none;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
  
}

/* Animation */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.floating {
    animation: float 6s ease-in-out infinite;
}