/* Work Process Section */
.process-section {
    padding: 100px 0;
    background-color: #f9f9f9;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.process-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.process-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.process-number {
    position: absolute;
    top: -20px;
    right: -20px;
    font-size: 6rem;
    font-weight: 900;
    color: rgba(110, 69, 226, 0.05);
    z-index: 0;
}

.process-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(110, 69, 226, 0.1) 0%, rgba(136, 211, 206, 0.1) 100%);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px;
    color: #333;
    position: relative;
    z-index: 1;
}

.process-icon i {
    font-size: 2rem;
    background: linear-gradient(135deg, #6e45e2 0%, #88d3ce 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.process-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #333;
    position: relative;
    z-index: 1;
}

.process-card p {
    color: #666;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

/* Technologies Section */
.tech-section {
    padding: 100px 0;
    background-color: #ffffff;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 40px;
    margin-top: 50px;
    align-items: center;
    justify-items: center;
}

.tech-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.tech-item:hover {
    transform: scale(1.1);
}

.tech-item i {
    font-size: 4rem;
    color: #ccc;
    transition: color 0.3s ease;
}

.tech-item span {
    font-weight: 600;
    color: #666;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.tech-item:hover i.fa-react {
    color: #61DAFB;
}

.tech-item:hover i.fa-laravel {
    color: #FF2D20;
}

.tech-item:hover i.fa-flutter {
    color: #02569B;
}

.tech-item:hover i.fa-php {
    color: #777BB4;
}

.tech-item:hover i.fa-python {
    color: #3776AB;
}

.tech-item:hover i.fa-wordpress {
    color: #21759B;
}

.tech-item:hover i.fa-aws {
    color: #FF9900;
}

.tech-item:hover i.fa-node-js {
    color: #339933;
}

.tech-item:hover i.fa-vuejs {
    color: #4FC08D;
}

.tech-item:hover i.fa-angular {
    color: #DD0031;
}

.tech-item:hover i.fa-database {
    color: #00758F;
}

/* MySQL */
.tech-item:hover i.fa-leaf {
    color: #47A248;
}

/* MongoDB */
.tech-item:hover i.fa-figma {
    color: #F24E1E;
}

.tech-item:hover span {
    opacity: 1;
    transform: translateY(0);
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
    background-color: #f9f9f9;
}

.accordion-item {
    border: none;
    margin-bottom: 20px;
    border-radius: 15px !important;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.accordion-button {
    padding: 20px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    background-color: #fff;
    box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
    color: #6e45e2;
    background-color: #fff;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: rgba(0, 0, 0, .125);
}

.accordion-body {
    padding: 20px 30px 30px;
    color: #666;
    line-height: 1.6;
}

/* Dark Mode Support for New Sections */
body.dark-mode .process-section,
body.dark-mode .faq-section {
    background-color: #1a1a1a;
}

body.dark-mode .tech-section {
    background-color: #111;
}

body.dark-mode .process-card,
body.dark-mode .accordion-item,
body.dark-mode .accordion-button {
    background-color: #222;
    color: #fff;
}

body.dark-mode .process-card h3,
body.dark-mode .accordion-button {
    color: #fff;
}

body.dark-mode .process-card p,
body.dark-mode .accordion-body {
    color: #bbb;
}

body.dark-mode .process-number {
    color: rgba(255, 255, 255, 0.05);
}

body.dark-mode .tech-item span {
    color: #bbb;
}