/* General Styles */
@import url('https://db.onlinewebfonts.com/c/77f3199fd1c04152bc99d1663a7c7c31?family=Technovier+Bold');

body {
    margin: 0;
    padding: 0;
    font-family: 'Technovier Bold', sans-serif;
    color: white;
    background: linear-gradient(135deg, #1f0330, #330355);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6, p, input, textarea, button, label, a {
    font-family: 'Technovier Bold', sans-serif;
    color: inherit;
}

/* Header Styles */
header {
    text-align: center;
    padding: 50px 20px;
    background: linear-gradient(135deg, #1f0330, #330355);
}

header img {
    width: 100px;
    margin-bottom: 20px;
}

header h1 {
    font-size: 3.5rem;
    font-weight: bold;
    color: #fff;
}

header p {
    font-size: 1.2rem;
    margin-top: 10px;
    color: #ddd;
}

/* About Section */
.about-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 60px 20px;
    text-align: left;
    background: linear-gradient(135deg, #1f0330, #330355);
}

.about-section img {
    max-width: 45%;
    border-radius: 8px;
    margin-left: 20px;
}

.about-section div {
    max-width: 50%;
}

.about-section h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.about-section p {
    font-size: 1.2rem;
    color: #ddd;
    line-height: 1.5;
}

/* Services Section */
.services-section, .areas-of-service-section {
    padding: 60px 20px;
    text-align: center;
    background: linear-gradient(135deg, #1f0330, #330355);
}

.services-section h2, .areas-of-service-section h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    font-weight: 700;
}

.service-card-container, .area-card-container {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.service-card, .area-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    width: 300px;
    padding: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s;
}

.service-card img, .area-card img {
    width: 100% !important;
    height: auto;
    border-radius: 8px;
    margin-bottom: 15px;
}

.service-card h3, .area-card h3 {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 10px;
}

.service-card p, .area-card p {
    font-size: 1rem;
    color: #ddd;
}

.service-card:hover, .area-card:hover {
    transform: translateY(-10px);
}

/* Contact Section */
.contact-section {
    background: linear-gradient(135deg, #1f0330, #330355);
    color: white;
    padding: 60px 20px;
    text-align: center;
}

.contact-content {
    max-width: 800px;
    margin: 0 auto;
}

.contact-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 700;
    color: #fff;
}

.contact-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: #ddd;
}

.contact-form {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.contact-form .form-group {
    margin-bottom: 20px;
    text-align: left;
}

.contact-form label {
    display: block;
    font-weight: bold;
    margin-bottom: 8px;
    color: #fff;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #aaa;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    font-size: 1rem;
    outline: none;
    transition: border 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #6a00ff;
}

.contact-form textarea {
    resize: none;
}

.contact-form .submit-btn {
    background: #6a00ff;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 8px;
    font-size: 1.2rem;
    cursor: pointer;
    transition: background 0.3s;
}

.contact-form .submit-btn:hover {
    background: #8b00ff;
}

/* Footer */
footer {
    padding: 20px;
    text-align: center;
    background: #1f0330;
    color: #ddd;
    font-size: 1rem;
    margin-top: 20px;
}

footer p {
    margin: 0;
}

footer a {
    color: #6a00ff;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

/* Ads Section */
.ads-section {
    margin: 0 auto;
    max-width: 100%;
    padding: 40px 20px;
    text-align: center;
    background: linear-gradient(135deg, #1f0330, #330355);
    color: white;
}

.ads-section h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    font-weight: bold;
}

.ads-section p {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #ddd;
}

.show-ads-btn {
    background: #6a00ff;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 8px;
    font-size: 1.2rem;
    cursor: pointer;
    transition: background 0.3s;
}

.show-ads-btn:hover {
    background: #8b00ff;
}


/* Responsive Design */
@media screen and (max-width: 1024px) {
    header h1 {
        font-size: 3rem;
    }

    .about-section img {
        max-width: 100%;
        margin-left: 0;
        margin-bottom: 20px;
    }

    .about-section div {
        max-width: 100%;
    }

    .service-card-container {
        flex-direction: column;
    }

    .service-card {
        width: 100% !important;
        margin-bottom: 20px;
    }
}

@media screen and (max-width: 768px) {
    header {
        padding: 30px 20px;
    }

    header h1 {
        font-size: 2.5rem;
    }

    header p {
        font-size: 1rem;
    }
    .ads-container {
        width: 728px; /* Example: For larger screens */
    }

    .about-section {
        flex-direction: column;
        text-align: center;
    }

    .about-section img {
        max-width: 100%;
        margin-left: 0;
        margin-bottom: 20px;
    }

    .about-section div {
        max-width: 100%;
    }

    .service-card-container {
        flex-direction: column;
    }

    .service-card {
        width: 100% !important;
        margin-bottom: 20px;
    }

    .contact-section {
        padding: 40px 20px;
    }

    .contact-content h2 {
        font-size: 2rem;
    }

    .contact-content p {
        font-size: 1rem;
    }

    .contact-form .form-group {
        margin-bottom: 15px;
    }

    .contact-form input,
    .contact-form textarea {
        padding: 10px;
    }

    .contact-form .submit-btn {
        font-size: 1rem;
        padding: 10px 15px;
    }
}

@media screen and (max-width: 480px) {
    header h1 {
        font-size: 2rem;
    }

    header p {
        font-size: 0.9rem;
    }

    .about-section h2 {
        font-size: 2rem;
    }

    .service-card-container {
        flex-direction: column;
        align-items: center;
    }

    .service-card {
        width: 100% !important;
        margin-bottom: 20px;
    }

    .contact-form input,
    .contact-form textarea {
        font-size: 0.9rem;
    }

    footer p {
        font-size: 0.9rem;
    }
}
