/* styles.css */
html, body {
    overflow-x: hidden;
}

body {
    background-color: black;
    color: white;
    font-family: Arial, sans-serif;
    text-align: center;
    margin: 0;
    padding: 0;
}
#logo {
    margin-top: 50px;
}
#logo img {
    max-width: 300px;
    height: auto;
}
.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}
form {
    background-color: #222;
    padding: 20px;
    border-radius: 5px;
    margin-top: 50px;
}
form input, form textarea {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    background-color: #333;
    border: none;
    color: white;
}
form button {
    background-color: #444;
    padding: 10px 20px;
    border: none;
    color: white;
    cursor: pointer;
}
form button:hover {
    background-color: #555;
}


.social-share {
    margin-top: 20px;
}

.social-share a {
    margin: 0 8px; /* Slightly reduce spacing between links */
    color: white;
    font-size: 16px; /* Reduce the font size for the text */
}

.social-share a:hover {
    color: #ccc;
}

.social-share i {
    font-size: 18px; /* Reduce the icon size */
    margin-right: 5px;
}



form {
    background-color: #222;
    padding: 20px;
    border-radius: 5px;
    margin-top: 50px;
    color: white; /* This will change label text color to white */
}

form input, form textarea {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    background-color: #333;
    border: none;
    color: white; /* Ensure the input text is white */
}

form button {
    background-color: #444;
    padding: 10px 20px;
    border: none;
    color: white; /* Button text color */
    cursor: pointer;
}

form button:hover {
    background-color: #555;
}
.services-content h1, .services-content h2 {
    font-weight: bold;
    margin-top: 20px;
}

.services-content ul {
    margin-left: 20px;
    list-style-type: disc;
}

.services-content p {
    margin-bottom: 15px;
}

.container {
    max-width: 900px;
    margin: auto;
}











/* Follow Us Heading */
.follow-us-heading {
    font-family: 'Poppins', sans-serif;
    font-size: 36px;
    font-weight: bold;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); /* Stylish shadow */
    letter-spacing: 2px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

/* Follow-Up Icons Section */
.follow-up-icons {
    margin-top: 20px;
    text-align: center;
}

/* Base style for the social icons */
.social-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: inline-block;
    margin: 0 10px;
    color: white;
    font-size: 24px;
    text-align: center;
    line-height: 50px;
    transition: all 0.3s ease;
    cursor: pointer;
    animation: glow 1.5s infinite ease-in-out;
}

/* Instagram Icon */
.social-icon.instagram {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    box-shadow: 0 0 15px rgba(220, 39, 67, 0.8);
}

.social-icon.instagram:hover {
    box-shadow: 0 0 25px rgba(220, 39, 67, 1), 0 0 50px rgba(220, 39, 67, 0.8);
    transform: scale(1.2); /* Slightly increase size on hover */
}

/* Facebook Icon */
.social-icon.facebook {
    background-color: #4267B2;
    box-shadow: 0 0 15px rgba(66, 103, 178, 0.8);
}

.social-icon.facebook:hover {
    box-shadow: 0 0 25px rgba(66, 103, 178, 1), 0 0 50px rgba(66, 103, 178, 0.8);
    transform: scale(1.2); /* Slightly increase size on hover */
}

/* Glowing Effect Animation */
@keyframes glow {
    0% {
        box-shadow: 0 0 5px rgba(255, 255, 255, 0.2);
    }
    50% {
        box-shadow: 0 0 20px rgba(255, 255, 255, 0.6);
    }
    100% {
        box-shadow: 0 0 5px rgba(255, 255, 255, 0.2);
    }
}
