/* Go to 100*/
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    text-align: center;
}

header {
    background: #2a9d8f;
    color: white;
    padding: 30px;
}

.cta-button {
    display: inline-block;
    background: #ffcc00;
    color: black;
    padding: 10px 20px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
}

section {
    padding: 50px;
    border-bottom: 1px solid #ddd;
}

h2 {
    color: #264653;
}

.service, .testimonial {
    background: #f4f4f4;
    padding: 15px;
    margin: 10px auto;
    width: 80%;
    border-radius: 5px;
}

form input, form textarea {
    width: 80%;
    padding: 10px;
    margin: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

button {
    background: #264653;
    color: white;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
}

#blog {
    padding: 40px;
    max-width: 800px;
    margin: auto;
}

.blog-post {
    background: #f8f8f8;
    padding: 15px;
    margin-bottom: 15px;
    border-radius: 5px;
}

.blog-post h3 {
    margin: 0;
}

.blog-post a {
    text-decoration: none;
    color: #007bff;
}

.blog-post a:hover {
    text-decoration: underline;
}

article {
    padding: 20px;
    max-width: 800px;
    margin: auto;
    line-height: 1.6;
}

article h2 {
    color: #264653;
}

article a {
    text-decoration: none;
    color: #007bff;
} 


/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    z-index: 1000;
}

/* LinkedIn Floating Button (Positioned Above WhatsApp) */
.linkedin-float {
    position: fixed;
    bottom: 100px; /* Adjusted to be above WhatsApp */
    right: 20px;
    width: 50px;
    height: 50px;
    z-index: 1000;
}

/* Common Styling for Icons */
.whatsapp-float img,
.linkedin-float img {
    width: 100%;
    border-radius: 50%;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s;
}

.whatsapp-float img:hover,
.linkedin-float img:hover {
    transform: scale(1.1);
} 



/* Blog Page Styling */
#blog {
    max-width: 800px;
    margin: 40px auto;
    padding: 20px;
}

#blog h2 {
    color: #264653;
    margin-bottom: 10px;
    border-bottom: 2px solid #e76f51;
    padding-bottom: 5px;
}

#blog ul {
    list-style: none;
    padding: 0;
}

#blog ul li {
    background: #f4f4f4;
    margin: 10px 0;
    padding: 10px;
    border-left: 5px solid #e76f51;
}

#blog table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
}

#blog table, th, td {
    border: 1px solid #ddd;
}

#blog th, td {
    padding: 10px;
    text-align: left;
}

#blog th {
    background: #264653;
    color: white;
}

/* Contact Section Styling */
.contact {
    background: #2a9d8f;
    color: white;
    padding: 50px 20px;
    text-align: center;
    position: relative;
}

/* Google Form Button */
.google-form-btn {
    display: inline-block; /* Prevents overlap issues */
    margin-top: 20px; /* Adds space above the button */
    padding: 12px 20px;
    background: #E63946;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s;
    font-size: 16px;
}

/* Button Hover Effect */
.google-form-btn:hover {
    background: #C92D3A;
}

/* Ensure proper spacing on small screens */
@media screen and (max-width: 768px) {
    .google-form-btn {
        width: 80%; /* Makes the button more responsive */
        padding: 14px;
        font-size: 18px;
    }
}

/* Footer */
footer {
    text-align: center;
    padding: 15px;
    background: black;
    color: white;
}







