@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');

:root {
    --primary-color: #6c5ce7;
    --secondary-color: #00b894;
    --accent-color: #ff7675;
    --background-color: #f9f9f9;
    --text-color: #2d3436;
    --card-background: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--background-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

#particles-js {
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: -1;
}

/* Header styles */
header {
    position: fixed;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    background-color: var(--card-background);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
}

.logo svg {
    margin-right: 10px;
    stroke: var(--primary-color);
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 30px;
}

.nav-links a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-color);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero section */
.hero {
    /* Remove any background-related properties */
    background: none;
    background-color: transparent;
    /* Add any other styles you want for the hero section */
    padding: 4rem 0;
    text-align: center;
    color: #333; /* Adjust text color as needed */
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.hero h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Remove or comment out the typewriter class */
/*
.typewriter {
    overflow: hidden;
    border-right: 0.15em solid var(--accent-color);
    white-space: nowrap;
    margin: 0 auto;
    letter-spacing: 0.15em;
    animation: typing 3.5s steps(30, end), blink-caret 0.75s step-end infinite;
}
*/

/* Remove or comment out the typing and blink-caret animations */
/*
@keyframes typing {
    from { width: 0 }
    to { width: 100% }
}

@keyframes blink-caret {
    from, to { border-color: transparent }
    50% { border-color: var(--accent-color) }
}
*/

.cta-button {
    display: inline-flex;
    align-items: center;
    background-color: var(--accent-color);
    color: white;
    padding: 12px 24px;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.cta-button:hover {
    background-color: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
}

.cta-button svg {
    margin-left: 10px;
}

/* New styles for the Email Us button */
.email-us-button {
    display: inline-flex;
    align-items: center;
    padding: 14px 28px;
    border-radius: 30px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    background-color: #007bff;
    color: white;
    transition: all 0.3s ease;
}

.email-us-button i {
    margin-right: 10px;
}

.email-us-button:hover {
    background-color: #0056b3;
    transform: translateY(-3px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Sections */
section {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 50px;
}

.service-grid, .expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.service-card, .expertise-card {
    background-color: var(--card-background);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.service-card:hover, .expertise-card:hover {
    transform: translateY(-5px);
}

.service-card svg, .expertise-card svg {
    width: 50px;
    height: 50px;
    margin-bottom: 20px;
    stroke: var(--primary-color);
}

.service-card h3, .expertise-card h3 {
    margin-bottom: 15px;
    color: var(--text-color);
}

/* About section */
.about-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-text {
    flex: 1;
}

.benefits-list {
    list-style: none;
}

.benefits-list li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.benefits-list svg {
    margin-right: 10px;
    stroke: var(--secondary-color);
}

.about-image {
    flex: 1;
}

.about-image img {
    max-width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Contact section */
#contact {
    text-align: center;
}

#contact p {
    margin-bottom: 30px;
    font-size: 1.2rem;
}

.contact-button-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

/* Footer */
footer {
    background-color: var(--primary-color);
    color: white;
    padding: 30px 0;
    text-align: center;
}

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

.social-links a {
    color: white;
    font-size: 1.5rem;
    margin: 0 10px;
    transition: opacity 0.3s ease;
}

.social-links a:hover {
    opacity: 0.8;
}

/* Responsive design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background-color: rgba(35, 47, 62, 0.95);
        padding: 20px;
    }

    .nav-links.active li {
        margin: 10px 0;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero h2 {
        font-size: 1.8rem;
    }

    .about-content {
        flex-direction: column;
    }

    .about-image {
        order: -1;
    }
}

body, main {
    /* Ensure no background is set here either */
    background: none;
    background-color: #ffffff; /* or any color you prefer for the page background */
}

.expertise-section {
    padding-top: 80px;
    padding-bottom: 80px;
    margin-top: 60px;
    margin-bottom: 60px;
}

.expertise-section .section-title {
    margin-bottom: 40px;
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.expertise-card {
    /* Your existing styles */
}

@media (min-width: 768px) {
    .expertise-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.expertise-card p {
    margin-top: 10px;
    font-size: 0.9em;
    color: #666;
}

.expertise-cta {
    text-align: center;
    margin-top: 40px;
}

.expertise-cta p {
    margin-bottom: 20px;
}