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

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, sans-serif;
    background: #0a0a0a;
    color: #ffe100;
    line-height: 1.6;
    background: rgb(43, 41, 30);
}

section {
    padding: 100px 8%;
}

h1, h2 {
    font-weight: 700;
}

h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 50px;
}

.services p{
    color: #ebe389;
}

/*--------NAVBAR--------*/
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    flex-wrap: nowrap;
    align-items: center;
    padding: 20px 8%;
    background: rgb(43, 41, 30);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid #ff9b00;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.pg {
    font-size: 32px;
    font-weight: 800;
    color: #ffe100;
    text-shadow: 0 0 12px rgba(245, 197, 66, 0.5);
}

.dev {
    font-size: 20px;
    color: white;
}

.nav-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    list-style: none;
}

.nav-links a {
    color: white;
    text-decoration: none;
    transition: 0.3s;
}

.nav-links a:hover {
    opacity: 0.7;
}

/*--------BTN--------*/
.btn {
    background: transparent;
    border: 1px solid #ff9b00;
    color: #ffc900;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 10px;
    font-weight: bold;
    cursor: pointer;
}

.btn-outline {
    border: 1px solid #ff9b00;
    color: #ffc900;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 10px;
    background: transparent;
}

/*--------HERO--------*/
.hero {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('../images/herobg1.png');
    background-size: cover;
    background-position: center;
    border-bottom: 1px solid #ff9b00;
}

.hero-content h1 {
    font-size: 64px;
    max-width: 900px;
    margin: auto;
}

.hero-content p {
    margin: 20px 0;
    font-size: 20px;
    color: #ebe389;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/*--------SERVICES--------*/
.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.card {
    background: rgba(255,255,255,0.05);
    border: #ff9b00 1px solid;
    padding: 40px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    text-align: center;
    transition: all 0.3 ease;    
}

.card:hover {
    transform: translateY(-10px);
}

/*--------PORTFOLIO--------*/
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.project-card {
    height: 300px;
    background: rgba(255,255,255,0.05);
    border: #ff9b00 1px solid;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/*--------ABOUT--------*/
.about {
    text-align: center;
}

.about p {
    max-width: 800px;
    margin: auto;
    color: #ebe389;
    font-size: 18px;
}

form {
    max-width: 700px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

input, textarea {
    width: 100%;
    padding: 16px;
    background: rgb(43, 41, 30);
    color: white;
    border-radius: 10px;
    border: 1px solid #ff9b00;
}

textarea {
    height: 150px;
}

.card, .project-card, .about, .contact {
    opacity: 0;
    transform: translateY(60px);
    transition: all 0.8s ease;
}

.show {
    opacity: 1;
    transform: translateY(0);
}

.card:hover, .project-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 0 30px rgba(255,255,255,0.08);
}

.btn, .btn-outline {
    transition: all 0.3s ease;
}

.btn:hover {
    transform: scale(1.05);
}

.btn-outline:hover {
    background: white;
    color: black;
}
.contact-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 20px;
}

.lang-switch {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.05);
    padding: 6px;
    border-radius: 999px;
    backdrop-filter: blur(10px);
}

.lang-switch button {
    border: none;
    background: transparent;
    color: white;
    padding: 8px 16px;
    border-radius: 999px;
    cursor: pointer;
    transition: 0.3s;
}

.lang-switch button:hover {
    background: rgba(255,255,255,0.12);
}

.lang-switch button.active {
    background: #ffe100;
    color: black;
    font-weight: bold;
}

.contact-info a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: white;
    text-decoration: none;
}
.contact-info a:hover{
    opacity: 0.7;
}

#lang-btn {
    border: none;
    padding: 6px 12px;
    border-radius: 20px;
    cursor: pointer;
    font-weight: bold;
    gap: 8px;
}

.hamburger {
    display: none;
    font-size: 32px;
    cursor: pointer;
}

p {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s ease;
}

p.show {
    opacity: 1;
    transform: translateX(0);
}









@media (max-width: 768px) {

    .navbar {
        position: static;
    }

    .nav-links {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .hero {
        height: auto;
        padding-top: 120px;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .hero-content p {
        font-size: 18px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .service-grid, .portfolio-grid {
        grid-template-columns: 1fr;
    }

    h2 {
        font-size: 32px;
    }

    .contact-buttons {
        flex-direction: column;
    }
}

@media (max-width: 900px) {
    .hamburger {
        display: block;
        position: relative;
        z-index: 1001;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 80px;
        right: 20px;
        width: 220px;
        padding: 20px;
        background: #111;
        border-radius: 12px;
    }

    .nav-links.active {
        display: flex;
    }

    .navbar {
        position: relative;
        z-index: 1000;
    }
}

@media (max-width: 1111px) {
    .contact-info a .text {
        display: none;
    }

    .contact-info a {
        gap: 0;
    }

    .contact-info a {
        font-size: 24px;
    }
}



.pricing {
    padding: 100px 10%;
    text-align: center;
}

.pricing h2 {
    font-size: 42px;
    margin-bottom: 50px;
}

.pricing-container {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.pricing-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid #333;
    border-radius: 15px;
    padding: 40px 30px;
    width: 320px;
    transition: 0.3s;
}

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

.featured {
    border: 2px solid #00bfff;
}

.price {
    font-size: 40px;
    font-weight: bold;
    color: #00bfff;
    margin: 20px 0;
}

.pricing-card ul {
    list-style: none;
    padding: 0;
}

.pricing-card ul li {
    margin: 12px 0;
}

.badge {
    display: inline-block;
    background: #00bfff;
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    margin-bottom: 15px;
    font-weight: bold;
}

@media (max-width: 768px) {
    .pricing-container {
        flex-direction: column;
        align-items: center;
    }

    .pricing-card {
        width: 100%;
        max-width: 350px;
    }
}



.technologies {
    padding: 100px 10%;
    text-align: center;
}

.technologies h2 {
    font-size: 42px;
    margin-bottom: 50px;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 25px;
}

.tech-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid #333;
    border-radius: 15px;
    padding: 30px;
    transition: 0.3s ease;
}

.tech-card:hover {
    transform: translateY(-8px);
}

.tech-card i {
    font-size: 50px;
    color: #00bfff;
    margin-bottom: 15px;
}

.tech-card span {
    display: block;
    font-size: 18px;
    font-weight: 600;
}


.stats {
    padding: 80px 10%;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.stat-card {
    background: rgb(43, 41, 30);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-8px);
}

.stat-card h3 {
    font-size: 42px;
    color: #00bfff;
    margin-bottom: 10px;
}

.stat-card p {
    font-size: 16px;
    color: #ccc;
}

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

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


.faq {
    padding: 100px 10%;
    max-width: 900px;
    margin: 0 auto;
}

.faq h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 42px;
    color: #ffe100;
}

.faq-item {
    margin-bottom: 15px;
    border: 1px solid #00bfff;
    border-radius: 10px;
    overflow: hidden;
    
}

.faq-question {
    width: 100%;
    padding: 20px;
    background: #111;
    color: #fff;
    border: none;
    text-align: left;
    cursor: pointer;
    font-size: 18px;
}

.faq-answer {
    display: none;
    padding: 20px;
    background: #1a1a1a;
    color: #ccc;
}

.faq-answer.active {
    display: block;
}

.footer{
    background: rgb(43, 41, 30);
    border-top: 1px solid #ff9b00;
    padding-top:80px;
    margin-top:120px;
    position:relative;
    overflow:hidden;
}

.footer-container{
    max-width:1200px;
    margin:auto;
    padding:0 30px;
    display:grid;
    grid-template-columns:2fr 1fr 1fr 1fr;
    gap:50px;
    position:relative;
    z-index:2;
}

.footer h2{
    color:#fff;
    margin-bottom:20px;
}

.footer h3{
    color:#ffc900;
    margin-bottom:20px;
}

.footer p,
.footer a{
    color:#a0a0a0;
    text-decoration:none;
    line-height:1.8;
    display:block;
    transition:.3s;
}

.footer a:hover{
    color:#ff9b00;
    transform:translateX(5px);
}

.footer-socials{
    display:flex;
    gap:15px;
    margin-top:20px;
}

.footer-socials a{
    width:45px;
    height:45px;
    background:rgba(255,255,255,.05);
    border:1px solid rgba(255,155,0,.15);
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:18px;
}

.footer-socials a:hover{
    background:#ff9b00;
    color:#000;
    transform:translateY(-5px);
}

.footer-bottom{
    margin-top:60px;
    padding:25px;
    text-align:center;
    border-top:1px solid rgba(255,255,255,.08);
}

.footer-bottom p{
    color:#777;
}

@media(max-width:900px){

    .footer-container{
        grid-template-columns:1fr;
        text-align:center;
    }

    .footer-socials{
        justify-content:center;
    }

}

.footer-tagline{
    color:#ff9b00 !important;
    font-weight:600;
    margin-bottom:15px;
}