@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');

body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background: radial-gradient(circle at top, #0f2a5c, #050d1f);
    color: #fff;
}

/* Layout */
.container {
    width: 90%;
    margin: auto;
}

/* Header */
header {
    display: flex;
    justify-content: space-between;
    padding: 20px 0;
    align-items: center;
}

.logo {
    font-size: 26px;
    font-weight: 700;
    background: linear-gradient(90deg,#00ccff,#00ffcc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Hero Section */
.hero {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 80px 0;
    gap: 40px;
}

.hero h1 {
    font-size: 52px;
    line-height: 1.2;
}

.hero span {
    background: linear-gradient(90deg,#00ccff,#00ffcc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    margin: 20px 0;
    color: #ccc;
}

/* Button */
.btn {
    background: linear-gradient(90deg,#00ccff,#00ffcc);
    padding: 12px 25px;
    color: black;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.btn:hover {
    transform: scale(1.05);
}

/* Glass Form */
.form-box {
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(15px);
    padding: 30px;
    border-radius: 15px;
    width: 350px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}

.form-box input,
.form-box select,
.form-box textarea {
    width: 100%;
    margin-bottom: 12px;
    padding: 12px;
    border: none;
    border-radius: 8px;
}

/* Services */
.services {
    padding: 80px 0;
    text-align: center;
}

.services h2 {
    font-size: 36px;
    margin-bottom: 40px;
}

/* Grid */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
    gap: 25px;
}

/* Cards */
.box {
    background: rgba(255,255,255,0.05);
    padding: 30px;
    border-radius: 15px;
    transition: 0.3s;
    backdrop-filter: blur(10px);
}

.box:hover {
    transform: translateY(-10px);
    background: linear-gradient(135deg,#00ccff33,#00ffcc33);
}

/* CTA */
.cta {
    text-align: center;
    padding: 80px 0;
}

.cta h2 {
    font-size: 40px;
}

/* WhatsApp */
.whatsapp {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25D366;
    padding: 15px;
    border-radius: 50%;
    color: white;
    font-weight: bold;
}
.logo img {
    height: 55px;
    object-fit: contain;
    transition: 0.3s;
}

.logo img:hover {
    transform: scale(1.05);
}
.logo img {
    filter: drop-shadow(0 0 10px rgba(0,204,255,0.5));
}
.logo span {
    display: block;
    font-size: 12px;
    color: #aaa;
}
.footer-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 10px;
}

.footer-links a {
    color: #00ccff;
    text-decoration: none;
    font-size: 14px;
}

.footer-links a:hover {
    text-decoration: underline;
}