/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background: #ffffff;
    color: #1d2a3b;
}

/* Header/Navbar */
header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 80px;
    background: #ffffff;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    box-shadow: 0 2px 25px rgba(0,0,0,0.05);
}

.logo {
    font-size: 28px;
    font-weight: 700;
    color: #009b9f;
}

nav a {
    margin: 0 15px;
    text-decoration: none;
    color: #1d2a3b;
    font-size: 18px;
}

nav a:hover {
    color: #009b9f;
}

.cta-btn {
    padding: 10px 20px;
    background: #009b9f;
    color: #ffffff;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
}

/* Hero Section */
.hero {
    height: 100vh;
    text-align: center;
    padding-top: 160px;
    background: #ffffff;
}

.hero h1 {
    font-size: 60px;
    font-weight: 800;
}

.hero h1 span {
    color: #009b9f;
}

.hero p {
    margin: 20px auto;
    max-width: 700px;
    font-size: 20px;
    color: #485564;
}

.hero-buttons {
    margin-top: 25px;
}

.btn {
    padding: 12px 25px;
    border-radius: 50px;
    font-size: 18px;
    margin: 10px;
    text-decoration: none;
    display: inline-block;
}

.primary {
    background: #009b9f;
    color: #fff;
}

.outline {
    border: 2px solid #009b9f;
    color: #009b9f;
}

/* Sections */
section {
    padding: 100px 80px;
    text-align: center;
}

h2 {
    font-size: 42px;
}

.line {
    width: 80px;
    height: 5px;
    margin: 10px auto 30px;
    border-radius: 10px;
    background: #009b9f;
}

/* About Section Box */
.about-box {
    max-width: 900px;
    background: #fff;
    margin: auto;
    padding: 40px;
    box-shadow: 0 5px 35px rgba(0,0,0,0.08);
    border-radius: 15px;
    font-size: 20px;
    line-height: 1.6;
}

/* Services Section */
.subtext {
    font-size: 20px;
    color: #485564;
    margin-bottom: 50px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 20px;
}

.card {
    padding: 40px 25px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: 0.3s;
}

.card:hover {
    transform: translateY(-8px);
}

.card h3 {
    margin: 20px 0 10px;
}

.card p {
    font-size: 16px;
    color: #555;
}

.icon {
    font-size: 45px;
    margin-bottom: 10px;
}

/* Color Tags */
.cyan { color: #00A2A2; }
.orange { color: #ff8f00; }
.pink { color: #ff4081; }
.purple { color: #8c4bff; }
.green { color: #00C853; }
.purple-light { color: #9c4dcc; }
.blue { color: #2979ff; }
.green-light { color: #66bb6a; }
.red { color: #e53935; }
.yellow { color: #fdd835; }
.pink-light { color: #f06292; }
.blue-light { color: #0288d1; }

/* Contact Section */
.contact {
    background: linear-gradient(to right, #009b9f, #00c3c6);
    color: #fff;
}

.contact-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.contact-card {
    background: rgba(255,255,255,0.1);
    padding: 30px;
    width: 280px;
    border-radius: 15px;
    text-align: center;
    backdrop-filter: blur(5px);
}

.contact-icon {
    font-size: 40px;
    margin-bottom: 10px;
}

/* Footer */
footer {
    background: #0b1b2c;
    color: #fff;
    padding: 40px 20px;
    text-align: center;
}

footer h3 {
    font-size: 26px;
    color: #00c3c6;
}

.footer-links a {
    margin: 0 10px;
    text-decoration: none;
    color: #d8e2e7;
    font-size: 18px;
}

/* Responsive */
@media (max-width: 900px) {
    header {
        padding: 15px 30px;
    }

    .hero h1 {
        font-size: 45px;
    }
}
