
:root {
    --primary-color: rgba(68, 8, 181, 0.79);
    --primary-dark: rgba(48, 5, 128, 0.9);
    --primary-light: rgba(90, 40, 200, 0.7);
    --accent-color: #f8c300;
    --light-bg: #f9f7ff;
    --dark-text: #222;
    --light-text: #fff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    color: var(--dark-text);
    overflow-x: hidden;
}

/* Navbar Styles */
.navbar-main {
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    padding: 0.8rem 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.navbar-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
    border-bottom: 1px solid #eee;
    padding-bottom: 0.8rem;
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-dark);
    text-decoration: none;
}

.logo span {
    color: var(--accent-color);
}

.top-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 0.6rem 1.5rem;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.top-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(68, 8, 181, 0.3);
}

.navbar-bottom {
    padding: 0.8rem 2rem 0;
}

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

.nav-links a {
    text-decoration: none;
    color: var(--dark-text);
    font-weight: 600;
    font-size: 1rem;
    position: relative;
    padding: 0.5rem 0;
    transition: all 0.3s ease;
}

.nav-links a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    background: var(--primary-color);
    bottom: 0;
    left: 0;
    transition: width 0.3s ease;
}

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

.nav-links a:hover:after {
    width: 100%;
}

/* Header Section */


.header-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    background: rgba(0, 0, 0, 0.7);
    padding: 3rem;
    border-radius: 15px;
    border-left: 5px solid var(--accent-color);
}

.header-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: white;
}

.header-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.cta-button {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.cta-button:hover {
    background: var(--primary-dark);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(68, 8, 181, 0.4);
}

/* Section Styling */
.section {
    padding: 5rem 2rem;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-dark);
    position: relative;
}



/* About Section */
.about-content {
    display: flex;
    align-items: center;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.about-text {
    flex: 1;
}

.about-text h3 {
    color: var(--primary-dark);
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.about-text p {
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.about-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Services Section */
.services-section {
    background-color: var(--light-bg);
}

.services-content {
    display: flex;
    align-items: flex-start;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.services-description {
    flex: 1;
}

.services-description h3 {
    color: var(--primary-dark);
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.feature-boxes {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.feature-box {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border-top: 4px solid var(--primary-color);
}

.feature-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(68, 8, 181, 0.1);
}

.feature-box i {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 1rem;
}

/* FAQ Section */
.faq-content {
    display: flex;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.faq-questions {
    flex: 1;
}

.faq-question {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #eee;
}

.faq-question h4 {
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question .city {
    font-size: 0.8rem;
    background: var(--primary-light);
    color: white;
    padding: 0.2rem 0.8rem;
    border-radius: 20px;
}

.faq-description {
    flex: 1;
    background: var(--light-bg);
    padding: 2rem;
    border-radius: 10px;
    border-left: 5px solid var(--accent-color);
}

/* Service Areas */
.service-areas {
    background: linear-gradient(to right, var(--primary-light), var(--primary-color));
    color: white;
    text-align: center;
}

.service-areas .section-title {
    color: white;
}

.service-areas .section-title:after {
    background: var(--accent-color);
}

.areas-container {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Service Tiers */
.service-tiers {
    display: flex;
    justify-content: center;
    gap: 2rem;
    max-width: 1200px;
    margin: 3rem auto 0;
    flex-wrap: wrap;
}

.tier-card {
    flex: 1;
    min-width: 300px;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.tier-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(68, 8, 181, 0.15);
}

.tier-header {
    background: var(--primary-color);
    color: white;
    padding: 1.5rem;
    text-align: center;
}

.tier-body {
    padding: 2rem;
}

.tier-body ul {
    list-style: none;
    padding: 0;
}

.tier-body li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
}

.tier-body li:last-child {
    border-bottom: none;
}

.tier-body li i {
    color: var(--primary-color);
    margin-right: 10px;
}

/* Comprehensive Services */
.comprehensive-services {
    background-color: var(--light-bg);
}

.tab-content-container {
    display: flex;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.tabs {
    flex: 1;
}

.tab-btn {
    display: block;
    width: 100%;
    text-align: left;
    padding: 1.2rem 1.5rem;
    background: white;
    border: none;
    border-left: 5px solid var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 600;
    color: var(--primary-dark);
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 0 8px 8px 0;
}

.tab-btn.active,
.tab-btn:hover {
    background: var(--primary-color);
    color: white;
}

.tab-content {
    flex: 2;
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.service-pair {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

/* Contact Section */
.contact-container {
    display: flex;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.map-container {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-info {
    flex: 1;
    padding: 2rem;
    background: var(--light-bg);
    border-radius: 10px;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.contact-item i {
    background: var(--primary-color);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    font-size: 1.2rem;
}

/* Footer */
.footer {
    background: #111;
    color: white;
    padding: 4rem 2rem 2rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
    gap: 3rem;
}

.footer-logo {
    font-size: 2rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
}

.footer-logo span {
    color: var(--accent-color);
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: #ddd;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-color);
}

.social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background: var(--primary-color);
    transform: translateY(-5px);
}

.copyright {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #333;
    color: #aaa;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 992px) {

    .about-content,
    .services-content,
    .faq-content,
    .contact-container {
        flex-direction: column;
    }

    .header-content h1 {
        font-size: 2.5rem;
    }

    .feature-boxes {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {

    .navbar-top,
    .navbar-bottom {
        padding: 0 1rem;
    }

    .nav-links {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .header-section {
        padding: 6rem 1rem 3rem;
    }

    .header-content {
        padding: 2rem;
    }

    .section {
        padding: 3rem 1rem;
    }

    .service-pair {
        grid-template-columns: 1fr;
    }

    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }
}
