/* General Styles */
:root {
    --primary-color: #614CE1;
    --secondary-color: #222;
    --text-color: #ffffff;
    --light-color: #fff;
    --dark-color: #121212;
    --background-color: #1a1a1a;
    --border-color: #333;
    --transition: all 0.3s ease;
    --card-bg-color: #252525;
    --gradient-color: #4a3cb7;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden; /* Prevent horizontal scrolling globally */
}

body {
    font-family: 'Rubik', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-color);
    direction: rtl;
    overflow-x: hidden; /* Prevent horizontal scrolling globally */
    width: 100%;
    max-width: 100vw; /* Ensure body never exceeds viewport width */
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

a:hover {
    color: var(--light-color);
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    color: var(--light-color);
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1.5rem;
    color: var(--text-color);
    line-height: 1.8;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.section {
    padding: 80px 0;
    position: relative;
}

.section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
    font-size: 2.5rem;
    margin-bottom: 20px;
    animation: fadeIn 1s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--gradient-color));
    border-radius: 3px;
}

.section-title span {
    display: block;
    color: var(--primary-color);
    font-size: 1rem;
    margin-bottom: 10px;
    font-weight: 500;
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, var(--gradient-color), var(--primary-color));
    transition: all 0.5s ease;
    z-index: -1;
}

.btn:hover::before {
    width: 100%;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--light-color);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--light-color);
}

.btn-secondary {
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--light-color);
}

.btn-secondary:hover {
    border-color: transparent;
    color: var(--light-color);
}

/* Header and Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: var(--dark-color);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    z-index: 1001;
}

.logo img {
    height: 45px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo:hover img {
    filter: drop-shadow(0 0 8px rgba(97, 76, 225, 0.5));
    transform: scale(1.05);
}

.navbar {
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 25px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.nav-link {
    color: var(--text-color);
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 8px 12px;
    border-radius: 8px;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--light-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: all 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 70%;
    background: var(--light-color);
}

.btn-nav {
    background: var(--primary-color);
    color: white !important;
    padding: 10px 20px;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.btn-nav:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1001;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--light-color);
    transition: all 0.3s ease;
}

/* Mobile Navigation */
@media (max-width: 991px) {
    .menu-toggle {
        display: flex;
        margin-left: 20px;
        position: relative;
        z-index: 1002;
        cursor: pointer;
    }

    .menu-toggle span {
        display: block;
        width: 25px;
        height: 2px;
        background: var(--text-color);
        transition: all 0.3s ease;
        margin: 4px 0;
    }

    .navbar.active .menu-toggle span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .navbar.active .menu-toggle span:nth-child(2) {
        opacity: 0;
    }

    .navbar.active .menu-toggle span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .header.menu-open {
        background: transparent;
        box-shadow: none;
    }

    .header.menu-open .logo {
        opacity: 0;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100vw;
        left: 100vw;
        width: 100vw;
        height: 100vh;
        background: var(--dark-color);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding: 0;
        margin: 0;
        transition: all 0.3s ease;
        z-index: 1000;
    }

    .navbar.active .nav-menu {
        right: 0;
        left: 0;
    }

    .nav-menu .mobile-logo {
        width: 160px;
        height: auto;
        margin: 50px 0 80px 0;
    }

    .nav-menu-items {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .nav-item {
        width: 100%;
        text-align: center;
    }

    .nav-link {
        display: block;
        padding: 15px;
        font-size: 1rem;
        font-weight: 500;
        color: var(--text-color);
        transition: all 0.3s ease;
        position: relative;
    }

    .nav-link::after {
        content: '';
        position: absolute;
        bottom: 10px;
        right: 50%;
        transform: translateX(50%);
        width: 0;
        height: 2px;
        background: var(--primary-color);
        transition: all 0.3s ease;
    }

    .nav-link:hover::after,
    .nav-link.active::after {
        width: 30px;
    }

    .nav-link:hover,
    .nav-link.active {
        color: var(--primary-color);
    }

    .btn-nav {
        width: auto !important;
        margin: 20px auto;
        padding: 15px 40px !important;
        font-size: 1.3rem !important;
        background: var(--primary-color);
        color: var(--light-color) !important;
        border-radius: 50px;
        transition: all 0.3s ease;
    }

    .btn-nav:hover {
        background: var(--secondary-color);
        transform: translateY(-3px);
    }

    .btn-nav::after {
        display: none !important;
    }
}

/* Hero Section Enhanced */
.hero-section {
    padding: 150px 0 100px;
    background-color: var(--dark-color);
    position: relative;
    overflow: hidden;
    background-color: rgba(18, 18, 18, 0.95);
    position: relative;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top left, rgba(97, 76, 225, 0.2), transparent 60%);
    pointer-events: none;
}

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

.hero-text {
    flex: 0 0 50%;
    padding: 30px;
    /* background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); */
}

.hero-text h1 {
    font-size: 3.8rem;
    margin-bottom: 25px;
    line-height: 1.2;
    background: linear-gradient(45deg, var(--primary-color), var(--light-color));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-text p {
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.hero-image {
    flex: 0 0 45%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image .main-image {
    max-width: 100%;
    height: auto;
    border-radius: 0;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
    100% {
        transform: translateY(0px);
    }
}

.shape {
    position: absolute;
    z-index: 1;
}

.shape-1 {
    top: 20%;
    right: 10%;
    animation: float 8s ease-in-out infinite;
}

.shape-2 {
    bottom: 10%;
    left: 5%;
    animation: float 8s ease-in-out infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* About Section Enhanced */
.about-section {
    background-color: var(--background-color);
    position: relative;
    padding: 80px 0;
    background: linear-gradient(135deg, var(--background-color), var(--dark-color));
}

.about-content {
    width: 80%;
    margin: 50px auto;
    background: var(--card-bg-color);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.about-text {
    margin-bottom: 30px;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.about-text p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 25px;
    font-weight: 500;
}

.about-stats-box {
    width: 60%;
    margin: 30px auto;
    /* background: var(--card-bg-color); */
    /* padding: 40px; */
    border-radius: 20px;
    /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1); */
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.stat-item {
    text-align: center;
    padding: 25px;
    background: rgba(97, 76, 225, 0.1);
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    border: 1px solid rgba(97, 76, 225, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--primary-color);
    transform: scaleY(0);
    transition: transform 0.4s ease;
    transform-origin: bottom;
}

.stat-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    border-color: var(--primary-color);
}

.stat-item:hover::before {
    transform: scaleY(1);
}

.stat-icon {
    margin-bottom: 15px;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-color);
    border-radius: 50%;
    transition: all 0.4s ease;
}

.stat-item:hover .stat-icon {
    transform: scale(1.1) rotate(10deg);
}

.stat-icon i {
    color: #fff;
}

.stat-content {
    width: 100%;
}

.stat-item h3 {
    font-size: 2.8rem;
    color: var(--light-color);
    margin-bottom: 10px;
    display: flex;
    justify-content: center;
    align-items: baseline;
}

.stat-item h3 span {
    display: inline-block;
}

.stat-item p {
    font-size: 1.1rem;
    color: var(--light-color);
    font-weight: 500;
    margin-bottom: 0;
}

@media (max-width: 991px) {
    .about-content {
        width: 90%;
        padding: 30px;
    }

    .about-stats-box {
        width: 90%;
        padding: 30px;
    }

    .about-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .about-stats {
        grid-template-columns: 1fr;
    }
}

/* Services Section Enhanced */
.services-section {
    /* background: linear-gradient(135deg, #4a3cb7, #2c1876); */
    background: var(--background-color);
    position: relative;
    z-index: 1;
}
.services-section::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(97, 76, 225, 0.2), transparent 60%);
    pointer-events: none;
}

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

.service-card {
    text-align: center;
    padding: 40px;
    transition: transform 0.3s ease;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.service-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(45deg, var(--primary-color), #8075e5);
    border-radius: 50%;
    transition: transform 0.3s ease;
    box-shadow: 0 0 15px rgba(97, 76, 225, 0.3);
}

.service-icon i {
    font-size: 40px;
    color: white;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border-color: var(--primary-color);
}

.service-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.service-card p {
    color: rgba(224, 224, 224, 0.8);
}

/* Stages Section */
.stages-section {
    background: linear-gradient(135deg, var(--dark-color), var(--background-color));
    padding-bottom: 120px; /* Extra padding to account for the overlapping cards */
    overflow-x: hidden; /* Prevent horizontal scrolling */
}

.stages-wrapper {
    position: relative;
    margin-top: 30px;
    width: 100%;
    max-width: 100%;
    overflow: hidden; /* Ensure no content spills outside */
}

.stages-image {
    position: relative;
    width: 100%;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.stages-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    max-width: 100%; /* Ensure image doesn't exceed container width */
}

.stages-container {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    position: relative;
    margin-top: -100px; /* This creates the overlap effect */
    z-index: 2;
    width: 100%;
    padding: 0 15px; /* Add padding to prevent cards from touching edges */
    box-sizing: border-box;
}

.stage-card {
    background-color: var(--card-bg-color);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    flex: 1;
    max-width: calc(33.333% - 20px);
    box-sizing: border-box; /* Ensure padding is included in width calculation */
    word-wrap: break-word; /* Prevent text from overflowing */
}

.stage-number {
    position: absolute;
    top: -20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: var(--light-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    z-index: 2;
    box-shadow: 0 0 15px rgba(97, 76, 225, 0.3);
}

.stage-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.stage-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 40px rgba(0, 0, 0, 0.4);
}

.stage-card p {
    color: rgba(224, 224, 224, 0.8);
}

/* Responsive styles for stages section */
@media screen and (max-width: 992px) {
    .stages-container {
        flex-wrap: wrap;
        justify-content: center;
        padding: 0 10px;
    }
    
    .stage-card {
        max-width: calc(50% - 15px);
    }
}

@media screen and (max-width: 768px) {
    .stages-container {
        margin-top: -70px; /* Smaller overlap on medium screens */
        gap: 20px;
    }
    
    .stage-card {
        max-width: 100%;
        margin-bottom: 20px;
        padding: 25px;
    }
}

@media screen and (max-width: 576px) {
    .stages-container {
        flex-direction: column;
        margin-top: -50px; /* Even smaller overlap on small screens */
        padding: 0 10px;
        gap: 15px;
    }
    
    .stage-card {
        max-width: 100%;
        width: 100%;
        margin-left: 0;
        margin-right: 0;
    }
    
    .stages-section {
        padding-bottom: 80px;
    }
    
    .stages-image {
        border-radius: 10px;
    }
}

/* Pricing Section */
.pricing-section {
    /* background: linear-gradient(135deg, var(--gradient-color), var(--primary-color)); */
    background: var(--background-color);
}
.pricing-section::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top left, rgba(97, 76, 225, 0.2), transparent 60%);
    pointer-events: none;
}
.pricing-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.pricing-card {
    background-color: var(--card-bg-color);
    border-radius: 10px;
    padding: 40px 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.pricing-card.featured {
    position: relative;
    transform: translateY(-20px);
    border: 2px solid var(--primary-color);
    box-shadow: 0 10px 30px rgba(97, 76, 225, 0.2);
}

.recommended-badge {
    position: absolute;
    top: -15px;
    right: 50%;
    transform: translateX(50%);
    background: var(--primary-color);
    color: var(--light-color);
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    box-shadow: 0 0 15px rgba(97, 76, 225, 0.3);
}

.recommended-badge i {
    font-size: 0.9rem;
    color: #ffd700;
}

.recommended-badge::before {
    content: '';
    position: absolute;
    top: 100%;
    right: 50%;
    transform: translateX(50%);
    border-style: solid;
    border-width: 8px 8px 0 8px;
    border-color: var(--primary-color) transparent transparent transparent;
}

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

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.pricing-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.pricing-price {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.pricing-features {
    list-style: none;
}

.pricing-features li {
    margin-bottom: 10px;
    position: relative;
    padding-right: 25px;
}

.pricing-features li::before {
    content: "✓";
    position: absolute;
    right: 0;
    color: var(--primary-color);
}

.pricing-features li {
    color: rgba(224, 224, 224, 0.8);
}

/* FAQ Section */
.faq-section {
    background: linear-gradient(135deg, var(--background-color), var(--dark-color));
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--card-bg-color);
    border-radius: 10px;
    margin-bottom: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: var(--text-color);
}

.faq-question::after {
    content: "+";
    font-size: 1.5rem;
    transition: var(--transition);
}

.faq-item.active .faq-question::after {
    content: "-";
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item.active .faq-answer {
    padding: 0 20px 20px;
    max-height: 1000px;
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.faq-answer p {
    color: rgba(224, 224, 224, 0.8);
}

/* Contact Section */
.contact-section {
    /* background: linear-gradient(135deg, var(--primary-color), var(--gradient-color)); */
    background: var(--background-color);
    position: relative;
    padding: 80px 0;
}

.contact-section::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at top right, rgba(97, 76, 225, 0.2), transparent 60%);
    pointer-events: none;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    margin-top: 50px;
    justify-content: center;

    /* background: var(--primary-color); */
    /* padding: 40px; */
    /* border-radius: 20px; */
    /* box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15); */
}

.contact-info {
    color: var(--light-color);
    background: rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: fit-content;
    margin: auto 0;
}

.contact-info-item {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    width: 100%;
}

.contact-info-item:last-child {
    margin-bottom: 0;
}

.contact-info-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 20px;
    transition: all 0.3s ease;
}

.contact-info-item:hover .contact-info-icon {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

.contact-info-icon i {
    color: var(--light-color);
    font-size: 1.5rem;
}

.contact-info h3 {
    color: var(--light-color);
    margin-bottom: 8px;
    font-size: 1.3rem;
    font-weight: 600;
}

.contact-info p a {
    color: var(--light-color);
    font-size: 1.1rem;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.contact-info p a:hover {
    opacity: 0.8;
}

.contact-form {
    background: var(--card-bg-color);
    padding: 40px;
    border-radius: 15px;
}

/* Form Styling */
.form-group {
    margin-bottom: 25px;
    position: relative;
}

.form-icon {
    position: absolute;
    right: 0;
    top: 12px;
    color: var(--light-color);
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.form-control {
    width: 100%;
    padding: 12px 30px 12px 0;
    font-size: 1.1rem;
    color: var(--text-color);
    background: transparent;
    border: none;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    text-align: right;
    font-family: 'Alef', sans-serif;
    direction: rtl;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 5px 15px rgba(97, 76, 225, 0.1);
}

.form-control::placeholder {
    color: rgba(224, 224, 224, 0.5);
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

/* Adjust textarea icon position */
.form-group textarea + .form-icon {
    top: 12px;
}

/* Add subtle animation to form icons on focus */
@keyframes iconPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.form-group:focus-within .form-icon {
    animation: iconPulse 1s infinite;
    color: var(--primary-color);
}

.contact-form .btn {
    width: 100%;
    padding: 15px;
    font-size: 1.2rem;
    background: var(--primary-color);
    border: none;
    color: var(--light-color);
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.contact-form .btn i {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.contact-form .btn:hover i {
    transform: translateX(-5px);
}

.contact-form .btn:hover {
    background: #1f1155;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .contact-container {
        grid-template-columns: 1fr;
        padding: 30px;
    }
    
    .contact-info {
        margin-bottom: 30px;
    }
}

/* Footer */
.footer {
    background-color: var(--dark-color);
    color: var(--light-color);
    padding: 50px 0 20px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--gradient-color), var(--primary-color));
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--light-color);
    margin-bottom: 20px;
}

.footer-text {
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
}

.social-link {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light-color);
    margin-left: 10px;
    transition: var(--transition);
}

.social-link:hover {
    background-color: var(--primary-color);
    color: var(--light-color);
    transform: translateY(-5px);
    background-color: var(--gradient-color);
}

.footer-title {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--light-color);
}

.footer-links {
    list-style: none;
}

.footer-link {
    margin-bottom: 10px;
}

.footer-link a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-link a:hover {
    color: var(--light-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    width: 46px;
    height: 46px;
    bottom: 30px;
    left: 30px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
    background-color: #128C7E;
    color: #FFF;
}

/* Back to Top Button */
.progress-wrap {
    position: fixed;
    right: 30px;
    bottom: 30px;
    height: 46px;
    width: 46px;
    cursor: pointer;
    display: block;
    border-radius: 50px;
    box-shadow: inset 0 0 0 2px rgba(97, 76, 225, 0.4);
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}

.progress-wrap.active-progress {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.progress-wrap::after {
    position: absolute;
    content: '↑';
    text-align: center;
    line-height: 46px;
    font-size: 20px;
    color: var(--light-color);
    left: 0;
    top: 0;
    height: 46px;
    width: 46px;
    cursor: pointer;
    display: block;
    z-index: 1;
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}

.progress-wrap svg path {
    fill: none;
}

.progress-wrap svg.progress-circle path {
    stroke: var(--primary-color);
    stroke-width: 4;
    box-sizing: border-box;
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}

/* Responsive Styles */
@media screen and (max-width: 992px) {
    .hero-text h1 {
        font-size: 2.8rem;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
    
    .hero-content, .about-content {
        flex-direction: column;
    }
    
    .hero-text, .hero-image, .about-text, .about-image {
        flex: 0 0 100%;
    }
    
    .hero-image, .about-image {
        margin-top: 40px;
    }
}

@media screen and (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 80%;
        height: calc(100vh - 70px);
        background-color: var(--dark-color);
        flex-direction: column;
        padding: 40px 20px;
        transition: var(--transition);
        gap: 0;
    }
    
    .nav-item {
        margin: 0 0 20px 0;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .hero-text h1 {
        font-size: 2.2rem;
    }
    
    .section-title h2 {
        font-size: 1.8rem;
    }
    
    .pricing-card.featured {
        transform: scale(1);
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-10px);
    }
    
    .nav-menu.active {
        right: 0;
    }
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--dark-color);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gradient-color);
}
