/* Base Styles */
body {
    font-family: 'Poppins', sans-serif;
    scroll-behavior: smooth;
    color: #333;
}
/* --- Desktop Navbar Modern Look --- */
.modern-nav {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px); /* Glassmorphism */
    border-bottom: 1px solid rgba(0,0,0,0.05);
    padding: 15px 0;
}

.modern-nav .nav-link {
    color: #444;
    font-weight: 600;
    margin: 0 10px;
    transition: 0.3s;
}

.modern-nav .nav-link:hover {
    color: #0d6efd;
}

/* --- Mobile Bottom Nav (Webapp Style) --- */
.mobile-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 65px;
    background: #fff;
    display: flex;
    justify-content: space-around;
    align-items: center;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.1);
    z-index: 9999;
    border-radius: 20px 20px 0 0;
}

.nav-item-mobile {
    text-decoration: none;
    color: #888;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 11px;
    font-weight: 500;
    transition: 0.3s;
}

.nav-item-mobile i {
    font-size: 18px;
    margin-bottom: 2px;
}

.nav-item-mobile.active {
    color: #0d6efd;
}

/* Center Action Button (WhatsApp) */
.center-action {
    transform: translateY(-20px);
}

.action-circle {
    width: 55px;
    height: 55px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 26px;
    box-shadow: 0 8px 15px rgba(37, 211, 102, 0.3);
    border: 4px solid #fff;
}

/* Mobile Sidebar Links */
.mobile-sidebar-links li a {
    display: block;
    padding: 15px;
    text-decoration: none;
    color: #333;
    font-weight: 600;
    border-radius: 10px;
    margin-bottom: 5px;
}

.mobile-sidebar-links li a:hover {
    background: #f0f7ff;
    color: #0d6efd;
}

/* Hide Floating Contact on Mobile since we have Bottom Nav */
@media (max-width: 991px) {
    .floating-contact {
        display: none !important;
    }
    body {
        padding-bottom: 70px; /* Space for bottom nav */
    }
}
/* Hero Section */
.hero-section {
    height: 80vh;
    background: linear-gradient(rgba(0, 40, 100, 0.7), rgba(0, 40, 100, 0.7)), 
                url('https://images.unsplash.com/photo-1542013936693-884638332954?auto=format&fit=crop&q=80&w=1200');
    background-size: cover;
    background-position: center;
}
/* ---- */
/* Modern Hero Styles */
.modern-hero {
    background-color: #f8fbff; /* Very light blue background */
    min-height: 85vh;
    position: relative;
    overflow: hidden;
}

/* Abstract Shape in background */
.modern-hero::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -5%;
    width: 40%;
    height: 60%;
    background: radial-gradient(circle, rgba(13, 110, 253, 0.05) 0%, transparent 70%);
    z-index: 0;
}

.hero-img-container {
    position: relative;
    z-index: 1;
}

.main-hero-img {
    position: relative;
    z-index: 2;
    border: 8px solid white;
    box-shadow: 0 30px 60px rgba(0,0,0,0.1);
    transform: rotate(2deg);
}

.hero-shape {
    position: absolute;
    width: 100%;
    height: 100%;
    background: #0d6efd;
    top: 20px;
    left: 20px;
    border-radius: 24px;
    z-index: 0;
}

/* Floating Cards Animation */
.floating-card-1, .floating-card-2 {
    position: absolute;
    background: white;
    padding: 12px 20px;
    border-radius: 15px;
    font-weight: bold;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 10px;
    animation: floating 3s ease-in-out infinite;
}

.floating-card-1 {
    top: 10%;
    left: -15%;
}

.floating-card-2 {
    bottom: 15%;
    right: -5%;
    animation-delay: 1.5s;
}

@keyframes floating {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

.bg-primary-subtle {
    background-color: #e7f0ff !important;
}

/* Mobile Responsive Adjustments */
@media (max-width: 991px) {
    .modern-hero {
        min-height: auto;
        padding-top: 100px !important;
    }
    .display-3 {
        font-size: 2.5rem;
    }
}
/* Service Cards */
/* Modern Service Card Styling */
.modern-service-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(0,0,0,0.05);
}

.service-img-wrapper {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.service-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.service-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #0d6efd;
    color: #fff;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.modern-service-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1) !important;
}

.modern-service-card:hover img {
    transform: scale(1.1);
}

.service-content h4 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: #222;
}

.service-content p {
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Floating Animation for buttons */
.btn-primary {
    transition: all 0.3s ease;
}

.btn-primary:hover {
    box-shadow: 0 5px 15px rgba(13, 110, 253, 0.4);
}

/* Responsive Fix */
@media (max-width: 768px) {
    .service-img-wrapper {
        height: 180px;
    }
}

/* Review Avatars */
.avatar-circle {
    width: 45px;
    height: 45px;
    background: #0d6efd;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

/* Swiper Dots */
.swiper-pagination-bullet-active {
    background: #0d6efd !important;
}

/* Footer Styles */
/* --- MODERN FOOTER STYLES --- */
.modern-footer {
    background-color: #0d1117; /* Dark elegant background */
    font-family: 'Poppins', sans-serif;
}

.footer-menu li {
    margin-bottom: 12px;
}

.footer-menu a {
    color: #8b949e;
    text-decoration: none;
    transition: 0.3s all ease;
    font-size: 0.95rem;
}

.footer-menu a:hover {
    color: #0d6efd;
    padding-left: 8px;
}

.social-box {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
}

.social-box:hover {
    background: #0d6efd;
    color: #fff;
    transform: translateY(-5px);
}

.tracking-wider {
    letter-spacing: 1px;
    font-size: 0.9rem;
}

/* --- FLOATING CONTACT ICONS --- */
.floating-contact {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.floating-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    color: white;
    text-decoration: none;
    font-size: 24px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.whatsapp-btn { background-color: #25d366; }
.call-btn { background-color: #0d6efd; }

.floating-icon:hover {
    width: 160px; /* Expand on hover */
    border-radius: 30px;
    color: white;
}

.btn-text {
    font-size: 14px;
    font-weight: bold;
    margin-left: 10px;
    display: none; /* Hide text initially */
    white-space: nowrap;
}

.floating-icon:hover .btn-text {
    display: inline-block;
}

/* For Mobile: Always show icons, hide text to save space */
@media (max-width: 768px) {
    .floating-icon:hover {
        width: 55px;
        border-radius: 50%;
    }
    .btn-text { display: none !important; }
    
    .floating-contact {
        bottom: 15px;
        right: 15px;
    }
}

/* Offcanvas Mobile Spacing */
@media (max-width: 991px) {
    .offcanvas-body .nav-link {
        font-size: 1.1rem;
        padding: 15px 0;
        border-bottom: 1px solid rgba(255,255,255,0.05);
    }
}


/* reviews */
@media (max-width: 576px) {
    .review-card {
        padding: 10px !important; /* मोबाइल पर पैडिंग कम */
    }
    .review-card h6 {
        font-size: 0.85rem; /* नाम छोटा */
    }
    .review-card p {
        font-size: 0.75rem; /* मैसेज छोटा */
    }
    .avatar-circle {
        width: 30px; /* अवतार छोटा */
        height: 30px;
        font-size: 0.8rem;
    }
}


/* Work Gallery Styles */

.work-item {
    height: 300px; /* इमेज की हाइट फिक्स */
}

.work-item img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* इमेज स्ट्रेच नहीं होगी, फिट हो जाएगी */
    transition: transform 0.5s ease;
}

.work-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(13, 110, 253, 0.85); /* नीला प्रोफेशनल शेड */
    opacity: 0;
    transition: opacity 0.4s ease;
}

.work-item:hover .work-overlay {
    opacity: 1;
}

.work-item:hover img {
    transform: scale(1.1);
}

/* मोबाइल के लिए */
@media (max-width: 768px) {
    .work-item {
        height: 250px;
    }
    .work-overlay {
        opacity: 1; /* मोबाइल पर ओवरले हमेशा दिखेगा */
        background: rgba(0, 0, 0, 0.4); /* मोबाइल पर हल्का काला शेड ताकि टेक्स्ट साफ़ दिखे */
    }
}

/* ==terms== */
/* Terms & Conditions Styles */
.terms-banner {
    background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)), 
                url('https://images.unsplash.com/photo-1450101499163-c8848c66ca85?auto=format&fit=crop&q=80&w=1200');
    background-size: cover;
    background-position: center;
}

.terms-card {
    background: #ffffff;
    line-height: 1.8;
}

.terms-card h4 {
    font-size: 1.25rem;
    margin-top: 1.5rem;
}

.terms-card ul li {
    margin-bottom: 10px;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .terms-banner {
        padding: 40px 0;
    }
    .display-5 {
        font-size: 2rem;
    }
    .terms-card {
        padding: 25px !important;
        border-radius: 30px !important;
    }
}

/* ===policy=== */
/* Privacy Policy Styles */
.privacy-banner {
    background: linear-gradient(135deg, #1a1a1a 0%, #083d5a 100%);
}

.privacy-card {
    line-height: 1.7;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.privacy-card h4 {
    margin-bottom: 1.2rem;
    font-size: 1.3rem;
}

.privacy-card ul {
    padding-left: 1.2rem;
}

.privacy-card ul li {
    margin-bottom: 8px;
}

/* App-style adjustments for Mobile */
@media (max-width: 768px) {
    .privacy-card {
        padding: 25px !important;
        border-radius: 30px !important;
    }
    .display-5 {
        font-size: 2.2rem;
    }
}

/* ====about css==== */
/* --- Ultra Modern Hero Section --- */
.hero-wrapper {
    background: #fdfdff;
    padding-top: 60px; /* Space for fixed navbar */
}

.text-gradient {
    background: linear-gradient(90deg, #0d6efd, #00c6ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-title {
    font-size: 4rem;
    line-height: 1.1;
    letter-spacing: -2px;
}

.fw-extra-bold { font-weight: 900; }

/* Background Shapes */
.shape {
    position: absolute;
    filter: blur(80px);
    z-index: 1;
    border-radius: 50%;
}
.shape-1 { width: 400px; height: 400px; background: rgba(13, 110, 253, 0.08); top: -100px; right: -50px; }
.shape-2 { width: 300px; height: 300px; background: rgba(0, 198, 255, 0.05); bottom: 100px; left: -50px; }

/* Search Style Box */
.search-box-wrapper {
    max-width: 550px;
    border: 1px solid rgba(0,0,0,0.05);
}

/* Avatar Stack */
.avatar-stack {
    display: flex;
}
.avatar-stack img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 2px solid white;
    margin-left: -10px;
}
.avatar-stack img:first-child { margin-left: 0; }

/* Visual Container */
.hero-visual-container {
    position: relative;
    padding: 40px;
}
.main-hero-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transform: perspective(1000px) rotateY(-10deg);
    transition: 0.5s ease;
}
.main-hero-img:hover {
    transform: perspective(1000px) rotateY(0deg);
}

.glass-card {
    position: absolute;
    top: 60px;
    left: 0;
    z-index: 10;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid white;
    width: 220px;
}

.icon-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Mobile Adjustments */
@media (max-width: 991px) {
    .hero-title { font-size: 2.8rem; }
    .hero-wrapper { padding-top: 20px; }
    .search-box-wrapper { 
        background: transparent !important; 
        box-shadow: none !important;
        border: none;
    }
}
/* About Section Styles */
.about-img-stack {
    position: relative;
    padding: 20px;
}

.about-img-stack .main-img {
    border-radius: 30px !important;
    transition: transform 0.3s ease;
}

.experience-card {
    position: absolute;
    bottom: -10px;
    right: 0px;
    width: 140px;
    border: 5px solid #f8fbff;
    z-index: 2;
}

.icon-box-small {
    background: #f0f7ff;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 20px;
    flex-shrink: 0;
}

.stats-bar {
    border: 1px dashed #dee2e6;
}

.stat-item h4 {
    color: #0d6efd;
    font-size: 1.5rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .experience-card {
        width: 110px;
        bottom: 10px;
        right: 10px;
    }
    .about-img-stack {
        margin-bottom: 30px;
    }
}

/* ====contact==== */
/* --- Contact Page Banner --- */
.contact-banner {
    background: linear-gradient(135deg, #0d1117 0%, #0d6efd 100%);
    min-height: 250px;
    display: flex;
    align-items: center;
}

.contact-banner::after {
    content: '';
    position: absolute;
    top: 0; right: 0;
    width: 200px; height: 200px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    transform: translate(50%, -50%);
}

.fw-black { font-weight: 900; }

/* --- Contact Section Styles --- */
.contact-box {
    transition: all 0.3s ease;
}

.contact-box:hover {
    transform: translateY(-5px);
    border-color: #0d6efd !important;
}

.map-wrapper {
    background: #e9ecef;
}

/* Custom Form Controls */
.form-control:focus, .form-select:focus {
    border-color: #0d6efd;
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.1);
}

.form-control, .form-select {
    padding-top: 12px;
    padding-bottom: 12px;
    background-color: #f8fbff;
    border: 1px solid #eef2f7;
}

/* Mobile Responsive */
@media (max-width: 991px) {
    .contact-banner {
        min-height: 200px;
        text-align: center;
    }
    .display-4 { font-size: 2.2rem; }
}

/* =====service===== */
/* Service Page Banner Styles */
.service-banner {
    background-color: #f0f7ff; /* Soft blue background */
    padding: 80px 0;
    min-height: 400px;
}

.fw-black { font-weight: 900; }

/* Decorative Bubbles */
.bg-circle-1 {
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(13, 110, 253, 0.04);
    border-radius: 50%;
    top: -50px;
    left: -50px;
}

.bg-circle-2 {
    position: absolute;
    width: 200px;
    height: 200px;
    background: rgba(13, 110, 253, 0.04);
    border-radius: 50%;
    bottom: 20px;
    right: 10%;
}

/* Glass Card */
.banner-glass-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(15px);
    border-radius: 30px;
    border: 1px solid white;
    max-width: 300px;
    margin-left: auto;
}

.icon-lg {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    font-size: 24px;
}

/* Breadcrumb Styling */
.breadcrumb-item a { color: #6c757d; }
.breadcrumb-item.active { color: #0d6efd; }

/* Responsive adjustments */
@media (max-width: 991px) {
    .service-banner {
        padding: 40px 0;
        text-align: center;
    }
    .display-4 { font-size: 2.2rem; }
}
/* --- Modern Service Page Styling --- */
.bg-primary-subtle { background-color: #e7f0ff !important; }

.service-card-modern {
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(0,0,0,0.03);
    height: 100%;
}

.service-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.price-tag {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    color: #fff;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
}

.rating-badge {
    background: #fff9e6;
    color: #ffc107;
    padding: 4px 10px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 700;
}

.service-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08) !important;
}

.service-card-modern:hover img {
    transform: scale(1.1);
}

.border-primary-top {
    border-top: 4px solid #0d6efd !important;
}

/* Button Animations */
.btn-success { background-color: #25d366; border: none; }
.btn-success:hover { background-color: #1eb956; transform: scale(1.05); }
.btn-outline-primary:hover { transform: scale(1.05); }

/* Mobile View Adjustments */
@media (max-width: 768px) {
    .service-image { height: 180px; }
    .service-details h4 { font-size: 1.1rem; }
}