* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    min-height: 100%;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background-color: #16123f;
    color: #fff;
    line-height: 1.6;
}

.hero {
    padding: 60px 10%;
    min-height: 60vh;
}

.projects-grid {
    min-height: 200px;
}

body {
    display: flex;
    flex-direction: column;
}

.hero {
    flex: 1;
}

.logo img {
    width: 120px;
    margin-bottom: 30px;
}

.hero-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.hero-text {
    flex: 1;
}

.hero-text h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #ffd700;
}

.hero-image img {
    width: 400px;
    border-radius: 10px;
}

.projects {
    padding: 60px 10%;
}

.projects h2 {
    text-align: center;
    margin-bottom: 40px;
    color: #ffd700;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.card {
    background: #1f1b52;
    border: 1px solid #ffd700;
    padding: 25px;
    border-radius: 10px;
    transition: 0.3s ease;
    text-align: center;
}

.card img {
    width: 100px;
    margin-bottom: 15px;
    border-radius: 20%!important;
}

.card h3 {
    margin-bottom: 10px;
    color: #ffd700;
}

.card p {
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(255,215,0,0.3);
}

.btn {
    display: inline-block;
    padding: 10px 18px;
    background: #ffd700;
    color: #16123f;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
}

footer {
    text-align: center;
    padding: 30px;
    background: #0f0c2e;
    margin-top: 40px;
}




.footer {
    background: #0f0c2e;
    padding: 40px 10%;
    margin-top: 60px;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.footer h3 {
    color: #ffd700;
}

.footer a {
    color: #ffd700;
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}



.contact {
    padding: 60px 10%;
    text-align: center;
}

.contact h2 {
    margin-bottom: 30px;
    color: #ffd700;
}

#contactForm {
    max-width: 600px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

#contactForm input,
#contactForm textarea {
    padding: 12px;
    border-radius: 5px;
    border: none;
    font-size: 1rem;
}

#contactForm textarea {
    resize: none;
    height: 120px;
}


.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25D366;
    color: white;
    font-size: 24px;
    padding: 15px 18px;
    border-radius: 50%;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    transition: 0.3s ease;
    z-index: 999;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}