/* CSS Variables for Color Scheme */
:root {
    --default-color: #ffffff;
    --heading-color: #0a0a0a;
    --accent-color: #00ff88;
    --secondary-accent: #00ccff;
    --background-color: #0a0a0a;
    --dark-primary: #1a1a2e;
    --dark-secondary: #16213e;
    --surface-color: rgba(255, 255, 255, 0.1);
    --contrast-color: #ffffff;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Tajawal', sans-serif;
    line-height: 1.6;
    color: var(--default-color);
    background: var(--background-color);
    overflow-x: hidden;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(20, 26, 50, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 255, 136, 0.2);
    z-index: 1000;
    transition: none;
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-color);
}

.nav-logo i {
    font-size: 2rem;
    background: linear-gradient(45deg, var(--accent-color), var(--secondary-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-logo img {
    width: 32px;
    height: 32px;
    filter: drop-shadow(0 0 10px rgba(0, 255, 136, 0.3));
    transition: all 0.3s ease;
}

.nav-logo img:hover {
    filter: drop-shadow(0 0 15px rgba(0, 255, 136, 0.5));
    transform: scale(1.1);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-link {
    color: var(--default-color);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(45deg, var(--accent-color), var(--secondary-accent));
    transition: none;
}

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

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--accent-color);
    margin: 3px 0;
    transition: none;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: #181e37;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    background: linear-gradient(45deg, rgba(0, 255, 136, 0.1), rgba(0, 204, 255, 0.1));
    border-radius: 50%;
    /* animation: float 6s ease-in-out infinite; */
}

.shape-1 {
    width: 80px;
    height: 80px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 120px;
    height: 120px;
    top: 60%;
    right: 10%;
    animation-delay: 2s;
}

.shape-3 {
    width: 60px;
    height: 60px;
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

.shape-4 {
    width: 100px;
    height: 100px;
    top: 10%;
    right: 30%;
    animation-delay: 1s;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 20px;
}

.title-line {
    display: block;
    /* opacity: 0;
    transform: translateY(30px);
    animation: slideUp 0.8s ease forwards; */
}

.title-line:nth-child(1) { animation-delay: 0.2s; }
.title-line:nth-child(2) { animation-delay: 0.4s; }
.title-line:nth-child(3) { animation-delay: 0.6s; }

.highlight {
    background: linear-gradient(45deg, var(--accent-color), var(--secondary-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
    /* opacity: 0;
    animation: fadeIn 0.8s ease 0.8s forwards; */
}

.hero-buttons {
    display: flex;
    gap: 20px;
    /* opacity: 0;
    animation: fadeIn 0.8s ease 1s forwards; */
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    perspective: 1000px;
}

.grid-item {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, rgba(0, 255, 136, 0.2), rgba(0, 204, 255, 0.2));
    border: 1px solid rgba(0, 255, 136, 0.3);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--accent-color);
    /* transform: rotateY(0deg);
    transition: all 0.3s ease; */
    cursor: pointer;
}

/* .grid-item:hover {
    transform: rotateY(180deg) scale(1.1);
    background: linear-gradient(45deg, rgba(0, 255, 136, 0.4), rgba(0, 204, 255, 0.4));
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.3);
} */

/* Buttons */
.btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(45deg, var(--accent-color), var(--secondary-accent));
    color: var(--heading-color);
}

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

/* .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.3);
} */

.btn-full {
    width: 100%;
    justify-content: center;
}

/* Section Styles */
section {
    color: var(--default-color);
    background-color: var(--background-color);
    padding: 100px 0;
    scroll-margin-top: 88px;
    overflow: clip;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    background: linear-gradient(45deg, var(--accent-color), var(--secondary-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-line {
    width: 80px;
    height: 4px;
    background: linear-gradient(45deg, var(--accent-color), var(--secondary-accent));
    margin: 0 auto 20px;
    border-radius: 2px;
}

.section-header p {
    font-size: 1.1rem;
    color: #cccccc;
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about {
    background: #181e37;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--accent-color);
}

.about-text p {
    font-size: 1.1rem;
    color: #cccccc;
    margin-bottom: 40px;
    line-height: 1.8;
}

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

.stat-card {
    text-align: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    /* transition: all 0.3s ease; */
}

/* .stat-card:hover {
    transform: translateY(-5px);
    background: rgba(0, 255, 136, 0.2);
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.2);
} */

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #00ff88;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    color: #cccccc;
}

.code-window {
    background: #1e1e1e;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.window-header {
    background: #2d2d2d;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.window-controls {
    display: flex;
    gap: 8px;
}

.control {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.close { background: #ff5f57; }
.minimize { background: #ffbd2e; }
.maximize { background: #28ca42; }

.window-title {
    color: #cccccc;
    font-size: 0.9rem;
}

.code-content {
    padding: 20px;
    font-family: 'Courier New', monospace;
}

.code-line {
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.keyword { color: #ff79c6; }
.variable { color: #8be9fd; }
.function { color: #50fa7b; }

/* Services Section */
.services {
    background: #181e37;
}

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

.service-card {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    /* transition: all 0.3s ease; */
    height: 100%;
    position: relative;
    overflow: hidden;
}

/* .service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 136, 0.1), transparent);
    transition: left 0.5s;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 255, 136, 0.3);
    border-color: #00ff88;
    background: rgba(255, 255, 255, 0.15);
} */

.card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.card-header i {
    font-size: 2rem;
    color: #00ff88;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 255, 136, 0.1);
    border-radius: 15px;
}

.card-header h3 {
    font-size: 24px;
    font-weight: 600;
    color: white;
    margin: 20px 0 15px;
}

.card-content ul {
    list-style: none;
}

.service-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 25px;
}

.card-content li {
    padding: 8px 0;
    color: #cccccc;
    position: relative;
    padding-right: 20px;
}

.card-content li::before {
    content: '✓';
    position: absolute;
    right: 0;
    color: #00ff88;
    font-weight: bold;
}

/* Work Process Section */
.work-process {
    padding: 80px 0;
    background: #181e37;
    color: var(--default-color);
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.steps-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid var(--surface-color);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.steps-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), var(--secondary-accent));
}

/* .steps-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 255, 136, 0.1);
} */

.steps-image {
    text-align: center;
    margin-bottom: 25px;
}

.steps-image img {
    width: 100%;
    max-width: 200px;
    height: auto;
    border-radius: 15px;
}

.steps-content {
    text-align: center;
}

.steps-number {
    display: inline-block;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent-color), var(--secondary-accent));
    border-radius: 50%;
    color: var(--heading-color);
    font-size: 1.5rem;
    font-weight: bold;
    line-height: 50px;
    margin-bottom: 20px;
    box-shadow: 0 10px 20px rgba(0, 255, 136, 0.3);
}

.steps-content h3 {
    color: var(--accent-color);
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.steps-content p {
    line-height: 1.8;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.8);
}

.steps-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-item:last-child {
    border-bottom: none;
}

.feature-item i {
    color: var(--accent-color);
    font-size: 0.9rem;
}

.feature-item span {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background: #181e37;
    color: var(--default-color);
}

.testimonials-slider {
    position: relative;
    max-width: 800px;
    margin: 60px auto 40px;
    overflow: hidden;
}

.testimonial-item {
    display: none;
    text-align: center;
    padding: 40px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--surface-color);
    border-radius: 20px;
    margin: 0 20px;
    /* transition: all 0.3s ease; */
}

.testimonial-item.active {
    display: block;
    /* animation: fadeInUp 0.6s ease; */
}

/* @keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
} */

.testimonial-content {
    max-width: 600px;
    margin: 0 auto;
}

.testimonial-img {
    margin-bottom: 20px;
}

.testimonial-img i {
    font-size: 60px;
    color: var(--accent-color);
}

.testimonial-item h3 {
    font-size: 1.5rem;
    color: var(--default-color);
    margin-bottom: 15px;
    font-weight: 600;
}

.stars {
    margin-bottom: 20px;
}

.stars i {
    color: #ffc107;
    font-size: 18px;
    margin: 0 2px;
}

.testimonial-item p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    font-style: italic;
    margin: 0;
}

.testimonials-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-top: 40px;
}

.nav-btn {
    background: linear-gradient(45deg, var(--accent-color), var(--secondary-accent));
    color: var(--heading-color);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    /* transition: all 0.3s ease; */
    display: flex;
    align-items: center;
    justify-content: center;
}

/* .nav-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.3);
} */

.testimonials-dots {
    display: flex;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    /* transition: all 0.3s ease; */
}

.dot.active {
    background: var(--accent-color);
    /* transform: scale(1.2); */
}

/* .dot:hover {
    background: var(--accent-color);
} */

/* Contact Section */
.contact {
    background: #181e37;
}

.contact-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 40px 30px;
    border-radius: 20px;
    max-width: 600px;
    width: 100%;
}

.info-card {
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.8), rgba(22, 33, 62, 0.8));
    padding: 30px;
    border-radius: 20px;
    border: 1px solid rgba(0, 255, 136, 0.2);
    text-align: center;
    /* transition: all 0.3s ease; */
}

/* .info-card:hover {
    transform: translateY(-5px);
    border-color: #00ff88;
    box-shadow: 0 15px 40px rgba(0, 255, 136, 0.2);
} */

.info-card i {
    font-size: 2.5rem;
    color: #00ff88;
    margin-bottom: 15px;
}

.info-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #ffffff;
}

.info-card p {
    color: #cccccc;
    margin-bottom: 15px;
}

.contact-link {
    color: #00ff88;
    text-decoration: none;
    font-weight: 600;
    /* transition: all 0.3s ease; */
}

/* .contact-link:hover {
    color: #00ccff;
} */

.contact-form {
    background: rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.form-group {
    margin-bottom: 25px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group select {
    background: #44485d;
    color: #ffffff;
}

.form-group select option {
    background: #44485d;
    color: #ffffff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #00ff88;
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.3);
    background: rgba(255, 255, 255, 0.15);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

/* Skills Section */
.skills {
    padding: 80px 0;
    background: #181e37;
    color: var(--default-color);
}

.skills-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 50px;
}

.skills-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.skills-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.skill-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 25px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    /* transition: all 0.3s ease; */
}

/* .skill-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 255, 136, 0.1);
} */

.skill-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.skill-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--default-color);
}

.skill-percentage {
    font-size: 1rem;
    font-weight: 700;
    color: var(--accent-color);
}

.skill-bar {
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.skill-progress {
    height: 100%;
    background: linear-gradient(90deg, var(--accent-color) 0%, var(--secondary-accent) 100%);
    border-radius: 10px;
    width: 0;
    /* transition: width 2s ease-in-out; */
    position: relative;
}

.skill-progress::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.3) 50%, transparent 100%);
    /* animation: shimmer 2s infinite; */
}

/* @keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
} */

@media (max-width: 768px) {
    .skills-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .skill-item {
        padding: 20px;
    }
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1f2547 0%, #252b52 100%);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    color: #00ff88;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.3rem;
    font-weight: 700;
    color: #00ff88;
    margin-bottom: 15px;
}

.footer-logo i {
    font-size: 1.5rem;
}

.footer-logo img {
    width: 32px;
    height: 32px;
    filter: drop-shadow(0 0 10px rgba(0, 255, 136, 0.5));
    transition: all 0.3s ease;
}

.footer-logo img:hover {
    filter: drop-shadow(0 0 15px rgba(0, 255, 136, 0.8));
    transform: scale(1.1);
}

.footer-section p {
    color: #cccccc;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #cccccc;
    text-decoration: none;
    /* transition: all 0.3s ease; */
}

/* .footer-section ul li a:hover {
    color: #00ff88;
} */

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid rgba(0, 255, 136, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00ff88;
    text-decoration: none;
    /* transition: all 0.3s ease; */
}

/* .social-links a:hover {
    background: #00ff88;
    color: #0a0a0a;
    transform: translateY(-3px);
} */

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 255, 136, 0.2);
    color: #888888;
}

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

@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(20, 26, 50, 0.95);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 20px 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .steps-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .steps-item {
        padding: 25px;
    }
    
    .contact-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .tech-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .tech-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .grid-item {
        width: 60px;
        height: 60px;
        font-size: 0.8rem;
    }
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background: #181e37;
    color: white;
}

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

.faq-item {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    margin-bottom: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    /* transition: all 0.3s ease; */
}

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

.faq-question {
    display: flex;
    align-items: center;
    padding: 25px 30px;
    cursor: pointer;
    /* transition: all 0.3s ease; */
    background: transparent;
}

/* .faq-question:hover {
    background: rgba(255, 255, 255, 0.1);
} */

.faq-question i.fas.fa-question-circle {
    color: #00ff88;
    font-size: 24px;
    margin-left: 15px;
    flex-shrink: 0;
}

.faq-question h3 {
    flex: 1;
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: white;
}

.faq-toggle {
    color: #00ff88;
    font-size: 16px;
    /* transition: transform 0.3s ease; */
    flex-shrink: 0;
}

.faq-item.active .faq-toggle {
    /* transform: rotate(180deg); */
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    /* transition: all 0.3s ease; */
    background: rgba(255, 255, 255, 0.05);
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 30px 25px;
}

.faq-answer p {
    margin: 0;
    padding-top: 15px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    font-size: 16px;
}

@media (max-width: 768px) {
    .faq {
        padding: 60px 0;
    }
    
    .faq-question {
        padding: 20px;
    }
    
    .faq-question h3 {
        font-size: 16px;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 20px 20px;
    }
    
    .faq-answer p {
        font-size: 14px;
    }
}