
/*
Theme Name: Silvassa Tech
Author: OpenAI
Description: SEO Optimized animated WordPress theme for web design and Android development company.
Version: 1.0
*/

body{
    margin:0;
    font-family:Arial, sans-serif;
    background:#050816;
    color:white;
}
.hero{
    min-height:100vh;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    background:linear-gradient(135deg,#020617,#0f172a,#0ea5e9);
    animation: gradient 8s ease infinite;
}
@keyframes gradient{
    0%{filter:hue-rotate(0deg);}
    100%{filter:hue-rotate(45deg);}
}
.hero h1{
    font-size:72px;
    margin-bottom:20px;
}
.hero p{
    font-size:24px;
    color:#cbd5e1;
}
.btn{
    display:inline-block;
    padding:14px 28px;
    background:#06b6d4;
    color:white;
    text-decoration:none;
    border-radius:10px;
    margin-top:20px;
}
.section{
    padding:80px 10%;
}
.cards{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:20px;
}
.card{
    background:#111827;
    padding:30px;
    border-radius:20px;
    transition:0.3s;
}
.card:hover{
    transform:translateY(-8px);
}
footer{
    text-align:center;
    padding:30px;
    background:#020617;
    color:#94a3b8;
}
iframe{
    width:100%;
    border:none;
    border-radius:20px;
}
