/* Base Styles */
body, h1, h2, h3, p, ul, li {
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
}

.container {
    width: 85%;
    margin: auto;
    overflow: hidden;
}

/* Header Styles */
header {
    background-color: #ffffff;
    padding: 10px 0;
    border-bottom: 1px solid #dddddd;
}

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.primary-menu {
    list-style-type: none;
    display: flex;
}

.primary-menu li {
    margin-left: 20px;
}

.primary-menu li a {
    text-decoration: none;
    color: #333;
    font-weight: 600;
}

.primary-menu li a:hover {
    color: #6769de;
}

/* Hero Section */
.hero-container {
    position: relative;
    background: url('images/hero-bg.jpg') no-repeat center center/cover;
    color: #fff;
    padding: 100px 0;
    text-align: center;
}

.hero-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Semi-transparent overlay */
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-container h1 {
    font-size: 3.5em;
    margin-bottom: 20px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

.hero-container p {
    font-size: 1.5em;
    margin-bottom: 30px;
}

.cta-button {
    background-color: #ff6700;
    color: #fff;
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #e65500;
}

/* Section Styles */
.section {
    padding: 60px 0;
}

.section h2 {
    font-size: 2.5em;
    text-align: center;
    margin-bottom: 20px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

.section p {
    text-align: center;
    font-size: 1.2em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* About Page Styles */
.about-section {
    padding: 60px 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.team-member {
    text-align: center;
    background-color: #ffffff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-member img {
    border-radius: 50%;
    width: 150px;
    height: 150px;
    object-fit: cover;
    margin-bottom: 20px;
}

.team-member h3 {
    font-size: 1.5em;
    margin-bottom: 10px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

.team-member p {
    font-size: 1em;
    color: #666;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* Services Page Styles */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.service-card {
    padding: 30px;
    border-radius: 10px;
    color: #ffffff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card h2 {
    font-size: 2em;
    margin-bottom: 20px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

.service-card ul {
    list-style-type: none;
    padding-left: 0;
}

.service-card ul li {
    margin-bottom: 10px;
    font-size: 1.1em;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* Color Variants for Each Service Category */
.service-card-purple {
    background-color: #6769de;
}

.service-card-orange {
    background-color: #ff6700;
}

.service-card-green {
    background-color: #34a853;
}

.service-card-yellow {
    background-color: #fbbc05;
}

/* Case Studies Page Styles */
.case-studies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.case-study-card {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.case-study-card h3 {
    font-size: 1.8em;
    margin-bottom: 15px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

.case-study-card p {
    font-size: 1.1em;
    color: #666;
    margin-bottom: 20px;
}

.case-study-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* Contact Page Styles */
.contact-form-wrapper {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    margin: auto;
}

.contact-form-wrapper h2 {
    font-size: 2em;
    margin-bottom: 20px;
    text-align: center;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 1.2em;
    margin-bottom: 10px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px;
    font-size: 1em;
    border-radius: 4px;
    border: 1px solid #dddddd;
    box-sizing: border-box;
}

.form-group textarea {
    resize: vertical;
}

.submit-button {
    background-color: #6769de;
    color: #fff;
    padding: 12px 20px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-size: 1.2em;
    text-transform: uppercase;
    font-weight: 600;
    transition: background 0.3s ease;
}

.submit-button:hover {
    background-color: #5557d1;
}

/* reCAPTCHA */
.g-recaptcha {
    margin-top: 20px;
    margin-bottom: 20px;
    text-align: center;
}

/* Maps Section */
.maps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.map-item {
    text-align: center;
}

.map-item h4 {
    font-size: 1.5em;
    margin-bottom: 10px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

/* Footer Styles */
footer {
    background-color: #333;
    color: #ffffff;
    padding: 20px 0;
    text-align: center;
}

/* Social Media Links */
.social-links {
    list-style-type: none;
    padding-left: 0;
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.social-links li {
    margin: 0 10px;
}

.social-links li a {
    font-size: 1.8em;
    color: #333;
    transition: color 0.3s ease;
}

.social-links li a:hover {
    color: #6769de;
}
/* Button Styles */
.cta-button {
    background-color: #ff6700;
    color: #fff;
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: background-color 0.3s ease;
    display: inline-block;
    text-align: center;
    margin: 20px 0; /* Add some margin for spacing */
}

/* Center the Buttons */
.section {
    text-align: center;
}

/* Responsive Fix for Buttons */
@media (max-width: 768px) {
    .cta-button {
        width: 80%; /* Make buttons wider on smaller screens */
    }
}

/* General Navigation Styles */
.primary-menu-wrapper {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.primary-menu {
    list-style-type: none;
    display: flex;
    margin: 0;
    padding: 0;
}

.primary-menu li {
    margin-left: 20px;
}

.primary-menu li a {
    text-decoration: none;
    color: #333;
    font-weight: 600;
}

/* Mobile Navigation Styles */
.nav-toggle {
    display: none;
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    margin-bottom: 5px;
    background: #333;
}

@media (max-width: 768px) {
    .primary-menu-wrapper {
        position: relative;
    }

    .primary-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        right: 0;
        background-color: #fff;
        width: 100%;
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    }

    .primary-menu li {
        margin: 0;
        border-bottom: 1px solid #ddd;
        text-align: center;
        width: 100%;
    }

    .primary-menu li a {
        padding: 15px;
        display: block;
        color: #333;
    }

    .nav-toggle {
        display: block;
    }

    .primary-menu.show {
        display: flex;
    }
}


