﻿/*:root {*/
    /* Primary brand colors */
    /*--primary-color: #005ccc;*/ /* Deep business blue */
    /*--secondary-color: #4d1736;*/ /* Dark navy/graphite */
    /* Accent and interactive colors */
    /*--accent-color: #b39236;*/ /* Vibrant green for CTA success */
    /*--alert-color: #ff5630;*/ /* Vibrant red for errors or alerts */
    /*--warning-color: #ff1700;*/ /* Amber for warnings */
    /* Backgrounds and neutrals */
    /*--background-color: #f4f5f7;*/ /* Very light gray */
    /*--surface-color: #ffffff;*/ /* Cards, inputs, panels */
    /*--border-color: #dfe1e6;*/ /* Subtle border */
    /* Text colors */
    /*--text-color: #091e42;*/ /* Primary dark text */
    /*--muted-text-color: #5e6c84;*/ /* Secondary muted text */
    /* Gradients */
    /*--gradient-1: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    --gradient-2: linear-gradient(135deg, var(--accent-color), var(--warning-color));*/
    /* Shadows and highlights */
    /*--box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --hover-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}*/
:root {
    --primary-color: #4a90e2;
    --secondary-color: #2c3e50;
    --accent-color: #e74c3c;
    --text-color: #333333;
    --light-color: #ecf0f1;
    --dark-color: #34495e;
    --border-color: #dfe1e6;
    --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --hover-shadow: 0 6px 12px rgba(0, 0, 0, 0.20);
    --gradient-1: linear-gradient(135deg, var(--primary-color), var(--secondary-color), var(--accent-color));
    --gradient-2: linear-gradient(135deg, var(--accent-color), var(--primary-color), var(--secondary-color));
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--light-color);
    color: var(--text-color);
    margin: 0;
    padding: 0;
}

/* Navigation Styles */
.custom-navbar {
    background: var(--gradient-1);
    padding: 0.4rem 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1030;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0rem;
    padding: 0 1rem;
}

.custom-navbar-brand {
    color: white;
    font-weight: 600;
    font-size: 1.5rem;
    text-decoration: none;
}

.custom-navbar-nav {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 1rem;
}

.custom-nav-link {
    color: white;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

    .custom-nav-link:hover,
    .custom-nav-link.active {
        background-color: rgba(255, 255, 255, 0.2);
        color: white;
        text-decoration: none;
    }

/* Business Card Styles */
.hero-section {
    padding: 1rem 0 2rem;
    text-align: center;
    margin-top: 0;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    justify-content: center;
    margin-bottom: 2rem;
}

.business-card {
    width: 100%;
    max-width: 700px;
    height: 400px;
    margin: 2rem auto;
    position: relative;
    background: var(--gradient-1);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
}

    .business-card:hover {
        transform: translateY(-5px);
    }

.card-content {
    display: flex;
    height: 100%;
    position: relative;
}

.card-left {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    display: flex;
    min-height: 100%; /* Ensure full height if needed */
    color: white;

}

.card-right {
    flex: 1;
    background: rgba(255,255,255,0.90);
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    clip-path: polygon(12% 0, 100% 0, 100% 100%, 0 100%);
}

.logo-placeholder {
    background: rgba(255,255,255,0.2);
    border-radius: 10%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.company-name {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.tagline {
    font-size: 1rem;
    opacity: 0.9;
}

.contact-info {
    color: #333;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    gap: 1rem;
}

.contact-icon {
    width: 30px;
    height: 35px;
    background: var(--gradient-2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.contact-icon-address {
    width: 100px;
    height: 30px;
    background: var(--gradient-2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.contact-icon-text {
    font-size: 0.9rem;
    text-align: justify;
}
/* Section Styles */
.section {
    display: none;
    padding: 2rem 0;
    max-width: 1200px;
    margin: 0 auto;
}

    .section.active {
        display: block;
        animation: fadeInUp 0.6s ease;
    }

.info-section {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
}

.section-header {
    background: var(--gradient-1);
    color: white;
    padding: 1.5rem;
    margin: 0;
    font-size: 1.5rem;
    font-weight: 600;
}

.info-content {
    padding: 2rem;
}

.Share-Section {
    width: 100%;
    max-width: 700px;
    padding: 1rem;
    margin: 3rem auto;
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
}
/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.service-item {
    background: white;
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

    .service-item:hover {
        transform: translateY(-5px);
    }

.service-image {
    width: 250px;
    height: 250px;
    margin: 0 auto 1rem;
    background: var(--gradient-1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
}

.service-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.service-description {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

    .service-description li {
        padding: 0.3rem 0;
        border-bottom: 1px solid #eee;
    }

        .service-description li:last-child {
            border-bottom: none;
        }

/* Visitor Meter */
.visitor-meter {
    width: 120px;
    height: 120px;
    background: #f3f3f3;
    border-radius: 50%;
    position: relative;
    margin: 2rem auto;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    overflow: hidden;
}

    .visitor-meter::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 90px;
        height: 90px;
        background: white;
        border-radius: 50%;
        transform: translate(-50%, -50%);
        z-index: 2;
    }

.meter-fill {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0%;
    background: var(--gradient-1);
    transition: height 2s ease-in-out;
}

.visitor-count {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.8rem;
    font-weight: 700;
    color: #333;
    z-index: 3;
}

.visitor-label {
    text-align: center;
    font-size: 1.1rem;
    margin-top: 1rem;
    color: var(--secondary-color);
}

/* Testimonials */
.testimonial-card {
    background: white;
    border-radius: 10px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-left: 4px solid var(--accent-color);
}

.testimonial-text {
    font-style: italic;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.testimonial-author {
    font-weight: 600;
    color: var(--primary-color);
    text-align: right;
}

/* Buttons */
.btn-primary {
    background: var(--gradient-1);
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

    .btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    }

.btn-success {
    background: var(--gradient-2);
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 25px;
    font-weight: 600;
}

/* Consent Banner */
.consent-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: white;
    padding: 1rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    z-index: 1040;
    border-left: 4px solid var(--primary-color);
}

    .consent-banner p {
        margin-bottom: 1rem;
        font-size: 0.9rem;
    }

/* Scroll to top button */
.scroll-to-top {
    position: fixed;
    bottom: 100px;
    right: 20px;
    background: var(--gradient-1);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    z-index: 1000;
    transition: all 0.3s ease;
}

    .scroll-to-top:hover {
        transform: translateY(-3px);
        color: white;
        text-decoration: none;
    }

    .scroll-to-top.show {
        display: flex;
    }

/* Mobile Navigation */
@media (max-width: 991.98px) {
    body {
        padding-bottom: 80px;
    }

    .custom-navbar {
        position: fixed;
        bottom: 0;
        top: auto;
        background: var(--gradient-2);
        padding: 0.5rem 0;
    }

    .navbar-content {
        flex-direction: column;
    }

    .custom-navbar-brand {
        display: none;
    }

    .custom-navbar-nav {
        width: 100%;
        justify-content: space-evenly;
        gap: 0;
    }

    .custom-nav-link {
        flex-direction: column;
        padding: 0.5rem;
        font-size: 0.8rem;
        text-align: center;
        min-width: 60px;
    }

        .custom-nav-link i {
            font-size: 1.2rem;
            margin-bottom: 0.2rem;
        }

    .hero-section {
        margin-top: 0;
        padding: 0rem 0 0rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .business-card {
        height: auto;
        margin: 1rem;
    }

    .card-content {
        flex-direction: column;
    }

    .card-right {
        clip-path: none;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}
