/* General Styles */
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #fff;
    color: #333;
}

/* Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #fff;
    padding: 20px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

header .logo img {
    width: 250px;
}

header .brand-name {
    font-size: 24px;
    font-weight: 700;
}

nav a {
    text-decoration: none;
    margin: 0 20px;
    color: #1e90ff;
    font-weight: 600;
    transition: color 0.3s;
}

nav a:hover {
    color: #187bcd;
}

.nav-btn {
    color: #1e90ff;
}

/* Hero Section */
.hero {
    background-color: #62cff4;
    text-align: center;
    padding: 100px 20px;
    position: relative;
}

.hero-content img {
    width: 55%;
    height: auto;
    object-fit: cover;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: 3rem;
    color: #333;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 30px;
}

.cta-btn {
    background-color: #1e90ff;
    color: white;
    padding: 10px 30px;
    font-size: 1.2rem;
    text-decoration: none;
    border-radius: 50px;
    transition: background-color 0.3s;
}

.cta-btn:hover {
    background-color: #187bcd;
}

/* Section Styles */
.section-content {
    padding: 60px 20px;
}

.white-bg {
    background-color: #fff;
}

/* About Section */
.container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 30px;
}

/* Services Section */
.service-cards {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}

.card {
    background-color: #62cff4;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    width: 30%;
    text-align: center;
    transition: transform 0.3s;
}

.card:hover {
    transform: scale(1.05);
}

.card h3 {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 15px;
}

.card p {
    font-size: 1rem;
    color: #09555c;
}

/* Contact Form */
form {
    max-width: 600px;
    margin: 0 auto;
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

form input, form textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}

form button {
    width: 100%;
    padding: 15px;
    background-color: #1e90ff;
    color: white;
    border: none;
    font-size: 1.2rem;
    border-radius: 5px;
    cursor: pointer;
}

form button:hover {
    background-color: #187bcd;
}

/* Footer */
footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 20px;
}

/* WhatsApp Chat Button */
.whatsapp-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    border-radius: 50%;
    padding: 15px;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
    z-index: 999;
    transition: transform 0.3s;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
}

.whatsapp-btn img {
    width: 50px;
    height: 50px;
}
