.floating-btn-container {

    /* कंटेनर को दाईं ओर नीचे फिक्स करता है */

    position: fixed;

    bottom: 60px;

    right: 20px;

    z-index: 9999;

    /* फ़ास्ट ट्रांज़िशन */

    transition: transform 0.3s ease;

}



/* बटन का सामान्य स्टाइल */

.floating-btn {

    display: flex;
    /* आइकॉन को केंद्र में रखने के लिए */

    justify-content: center;

    align-items: center;

    width: 60px;

    height: 60px;

    border-radius: 50%;

    text-decoration: none;
    /* अंडरलाइन हटाता है */

    color: white;
    /* आइकॉन/टेक्स्ट का रंग */

    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    /* प्रीमियम शैडो */

    transition: background-color 0.3s ease, transform 0.2s ease;

    margin-top: 10px;
    /* बटनों के बीच की दूरी */

}



/* WhatsApp बटन स्टाइल */

.floating-btn.whatsapp {

    background-color: #25D366;
    /* WhatsApp हरा रंग */

}



/* Call बटन स्टाइल */

.floating-btn.call {

    background-color: #42f12b;
    /* नीला रंग */

}



/* आइकॉन का साइज़ */

.floating-btn i {

    font-size: 28px;
    /* बड़ा आइकॉन साइज़ */

}



/* होवर इफ़ेक्ट (जब माउस बटन पर जाए) */

.floating-btn:hover {

    transform: scale(1.05);
    /* थोड़ा बड़ा होता है */

    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.35);

}



/* Hide by default */

.desktop-btn,
.mobile-btn {

    display: none;

}



/* Show desktop/tablet button if width >= 768px */

@media (min-width: 768px) {

    .desktop-btn {

        display: flex;
        /* केवल WhatsApp बटन दिखता है */

    }

}



/* Show mobile button if width < 768px */

@media (max-width: 767px) {

    .mobile-btn {

        display: flex;
        /* केवल Call बटन दिखता है */

    }


}


/* service page portfolio */

/* Custom Portfolio Section Styles (Using variables from product-marketing.html) */

.portfolio-section {
    padding: 60px 20px;
    background-color: var(--color-text-light);
    /* Light Grey Background */
    text-align: center;
}

/* Section Header Styles */
.section-header {
    margin-bottom: 40px;
}

.main-heading {
    font-size: 2.5em;
    color: var(--color-base-dark);
    /* Deep Navy Blue */
    margin-bottom: 10px;
    font-weight: 800;
    /* Extra bold for impact */
}

.sub-heading {
    font-size: 1.1em;
    color: #666;
    /* Default Gray Text */
    max-width: 800px;
    margin: 0 auto;
}

/* Cards Container (Grid for 3 columns) */
.cards-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto 40px;
}

/* Portfolio Card Styles */
.portfolio-card {
    display: flex;
    flex-direction: column;
    text-align: left;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    color: inherit;
    overflow: hidden;
}

/* Hover Effect */
.portfolio-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.card-content {
    padding: 25px;
    flex-grow: 1;
}

.card-title {
    font-size: 1.3em;
    font-weight: 700;
    color: var(--color-accent-secondary);
    /* Blue -> Secondary Accent (Aqua/Teal) */
    margin-bottom: 10px;
}

.card-details {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 15px;
    font-size: 0.9em;
    color: #555;
}

.detail-item {
    background-color: #e9ecef;
    /* Light default gray for details */
    padding: 4px 10px;
    border-radius: 5px;
    font-weight: 500;
}

.price-highlight {
    background-color: var(--color-accent-primary);
    /* Green -> Primary Accent (Yellow) */
    color: var(--color-base-dark);
    /* Dark text for Primary Accent background */
    font-weight: 700;
}

.card-desc {
    margin: 0;
    color: #444;
    line-height: 1.6;
}

.card-footer {
    padding: 15px 25px;
    border-top: 1px solid #eee;
    background-color: #f1f1f1;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.visit-link {
    color: var(--color-accent-secondary);
    /* Blue -> Secondary Accent */
    font-weight: 600;
}

.arrow-icon {
    margin-left: 5px;
    transition: margin-left 0.3s ease;
}

.portfolio-card:hover .arrow-icon {
    margin-left: 10px;
}

/* Section Footer Button */
.section-footer-button {
    margin-top: 30px;
}

.portfolio-link-btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--color-base-dark);
    /* Dark Grey -> Base Dark */
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1em;
    font-weight: 600;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.portfolio-link-btn:hover {
    background-color: var(--color-accent-primary);
    /* Hover Blue -> Primary Accent (Yellow) */
    color: var(--color-base-dark);
}


/* --- Mobile Responsiveness (Media Queries) --- */

@media (max-width: 992px) {
    .cards-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .main-heading {
        font-size: 2em;
    }
}

@media (max-width: 576px) {
    .portfolio-section {
        padding: 40px 15px;
    }

    .cards-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .main-heading {
        font-size: 1.7em;
    }

    .card-title {
        font-size: 1.2em;
    }
}