/*
 * Drykun Desk - Custom Website Styles
 * Version: 2.9 (Left-side 80% Off-canvas Menu)
 */
:root {
            --dk-primary: #0a3c8b; /* Deep Blue from your design */
            --dk-secondary: #ffc107; /* Yellow Accent */
        }

/* ==== 1. Global & Fonts ==== */
html,
body {
    overflow-x: hidden; /* Right-side space fix */
    width: 100%;
}
body {
    font-family: 'Poppins', sans-serif;
    padding-top: 72px; /* Navbar ki height */
    background-color: #f8f9fa;
}
html {
    scroll-padding-top: 72px; /* Anchor links ke liye */
}
.section-padding {
    padding-top: 2rem;
    padding-bottom: 2rem;
}


/* ==== 2. Navbar (v2.7 Sticky Fix) ==== */
.navbar.fixed-top {
    top: 0;
    width: 100%;
    z-index: 1030;
}
.navbar .container {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
}
.navbar-brand {
    display: flex;
    align-items: center;
    white-space: nowrap;
    margin-right: 1rem;
}
.navbar-brand img {
    height: 40px;
}
.navbar-brand span {
    font-weight: 700;
    font-size: 1.25rem;
    color: #212529;
}
.navbar .btn-outline-primary {
    border-radius: 50px;
    font-weight: 600;
}
.navbar .btn-outline-primary:hover {
    color: #fff;
}
.desktop-nav .navbar-nav {
    flex-direction: row;
}
.desktop-nav .nav-link {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
    font-weight: 500;
}


/* ==== 3. Offcanvas Mobile Menu (✅ v2.9 FIX) ==== */
/* Isse menu left se 80% width par khulega */
.offcanvas-start {
    --bs-offcanvas-width: 80%;
}
/* ------------------------------------------- */

.offcanvas-header .navbar-brand {
    color: #212529;
}
.offcanvas-body .navbar-nav {
    width: 100%;
}
.offcanvas-body .nav-link {
    font-size: 1.25rem;
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
    font-weight: 600;
    color: #495057;
}
.offcanvas-body .nav-link:hover {
    color: var(--bs-primary);
}
.offcanvas-body .btn-primary {
    font-size: 1.1rem;
    font-weight: 600;
    padding: 0.75rem;
}


/* ==== 4. Hero Section ==== */
.hero-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding-top: 6rem;
    padding-bottom: 6rem;
    text-align: center;
}
.hero-section .display-4 {
    font-weight: 700;
    color: #212529;
}
.hero-section .lead {
    font-size: 1.25rem;
    color: #495057;
    max-width: 650px;
    margin: 1.5rem auto;
}
.hero-section .btn-primary {
    font-weight: 600;
    padding: 0.8rem 2rem;
    border-radius: 50px;
}

/* ==== 5. Browser Mockup (Hero) ==== */
.browser-mockup {
    border-radius: 0.5rem;
    background: #fff;
    border: 1px solid #dee2e6;
    text-align: left;
    box-shadow: 0 1rem 3rem rgba(0,0,0,.1);
}
.browser-mockup .browser-header {
    background: #e9ecef;
    padding: 0.75rem;
    border-bottom: 1px solid #dee2e6;
    border-top-left-radius: 0.5rem;
    border-top-right-radius: 0.5rem;
}
.browser-mockup .browser-header i {
    font-size: 0.75rem;
    margin-right: 4px;
    color: #adb5bd;
}
.browser-mockup img {
    max-width: 100%;
    height: auto;
    border-bottom-left-radius: 0.5rem;
    border-bottom-right-radius: 0.5rem;
}

/* ==== 6. Mobile Mockup (Features) ==== */
.mobile-mockup {
    position: relative;
    max-width: 300px;
    height: 600px;
    background: #111;
    border-radius: 36px;
    padding: 12px;
    box-shadow: 0 1rem 3rem rgba(0,0,0,.2);
    margin-left: auto;
    margin-right: auto;
}
.mobile-mockup .screen {
    background: #fff;
    height: 100%;
    width: 100%;
    border-radius: 24px;
    overflow: hidden;
}
.mobile-mockup .screen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ==== 7. Features Section ==== */
.feature-icon-box {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background-color: var(--bs-primary-bg-subtle);
    color: var(--bs-primary);
    border-radius: 1rem;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}
.feature-card {
    border: none;
    border-radius: 1rem;
    transition: all 0.3s ease;
    background-color: #fff;
}
.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0.5rem 1.5rem rgba(0,0,0,.1);
}

/* ==== 8. Pricing Section ==== */
.pricing-card {
    border: none;
    border-radius: 1rem;
    transition: all 0.3s ease;
}
.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 0.5rem 1rem rgba(0,0,0,.15)!important;
}
.pricing-card .card-header {
    border-top-left-radius: 1rem;
    border-top-right-radius: 1rem;
    border-bottom: none;
}
.pricing-card .card-title {
    font-weight: 700;
}
.pricing-card .card-price {
    font-size: 3rem;
    font-weight: 700;
}
.pricing-card .card-price .term {
    font-size: 1rem;
    color: #6c757d;
}
.pricing-card .btn {
    font-weight: 600;
}

/* ==== 9. CTA Section ==== */
.cta-section {
    background-color: var(--bs-primary);
    color: white;
}
.cta-section .lead {
    color: rgba(255,255,255,0.8);
}

/* ==== 10. Footer Section (Dark) ==== */
.footer-dark {
    background-color: #212529;
    color: #f8f9fa;
}
.footer-dark .navbar-brand, .footer-dark .navbar-brand:hover {
    color: #fff;
}
.footer-dark .footer-links {
    padding: 0;
    margin: 0;
    list-style: none;
}
.footer-dark .footer-links li {
    display: inline-block;
    margin: 0 0.75rem;
}
.footer-dark .footer-links a {
    color: #adb5bd;
    text-decoration: none;
    transition: color 0.2s;
    font-size: 0.9rem;
}
.footer-dark .footer-links a:hover {
    color: #fff;
}
.footer-dark .text-white-50 {
    color: rgba(255, 255, 255, 0.5) !important;
}

@media (max-width: 767.98px) {
    .footer-dark .footer-links li {
        display: block;
        margin-bottom: 0.5rem;
    }
}

/* ==== 11. Other Pages (About, Terms, Privacy) ==== */
.page-header-simple {
    padding: 4rem 0;
}

/* ==== 9. Footer Section (✅ v2.14 FIX) ==== */
.footer-dark {
    background-color: #212529;
    color: #f8f9fa;
}

/* ✅ NAYA FIX: Yeh container ko flex banayega aur sab kuch center karega */
.footer-dark .container {
    display: flex;
    flex-direction: column; /* Items ko upar-niche stack karega */
    align-items: center; /* Sabhi items ko horizontally center karega */
    text-align: center; /* Text ko bhi center karega (fallback) */
}

.footer-logo {
    /* Logo ka size yahan se control karein */
    max-width: 150px; 
    height: auto;
    display: block;
    object-fit: contain;
}

.footer-logo-link {
    display: inline-block;
    text-decoration: none;
}
.footer-logo-link:hover {
    color: #f8f9fa;
}

.cta-button {
    /* (1) मुख्य रंग बदलें */
    background-color: #FFA01B !important; /* उदाहरण के लिए गहरा बैंगनी */
    border-color: #7B1FA2 !important;
    color: #FFFFFF !important; /* बटन का टेक्स्ट सफेद रखें */
    
    /* (2) होवर (Hover) इफेक्ट के लिए रंग बदलें */
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #4a148c !important; /* होवर पर थोड़ा गहरा बैंगनी */
    border-color: #4a148c !important;
    transform: scale(1.01); /* थोड़ा सा स्केल इफेक्ट */
}

/* ✅ NAYA FIX: Logo image ko bada karega */
.footer-logo-link img {
    height: 60px; /* Logo ka size (aap ise 60px kar sakte hain) */
    margin-right: 0.75rem; /* Text se doori */
}
/* ------------------------------- */

.footer-dark .footer-links {
    padding: 0;
    margin: 0;
    list-style: none;
}
.footer-dark .footer-links li {
    display: inline-block;
    margin: 0 0.75rem;
}
.footer-dark .footer-links a {
    color: #adb5bd;
    text-decoration: none;
    transition: color 0.2s;
    font-size: 0.9rem;
}
.footer-dark .footer-links a:hover {
    color: #fff;
}
.footer-dark .text-white-50 {
    color: rgba(255, 255, 255, 0.5) !important;
}

@media (max-width: 767.98px) {
    .footer-dark .footer-links li {
        display: block;
        margin-bottom: 0.5rem;
    }
}

  /* ==== 11. features page Started==== */
        .header-section {
            background: linear-gradient(135deg, var(--dk-primary) 0%, #1565c0 100%);
            color: white;
            padding: 60px 0;
            margin-bottom: 40px;
        }
        .feature-card {
            min-height: 250px;
            border-radius: 12px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            border: 1px solid rgba(0, 0, 0, 0.05);
        }
        .feature-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
            border-color: var(--dk-primary);
        }
        .icon-circle {
            width: 60px;
            height: 60px;
            background-color: var(--dk-primary);
            color: white;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            font-size: 24px;
            margin-bottom: 15px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
        }
        .section-heading {
            border-left: 5px solid var(--dk-secondary);
            padding-left: 15px;
            font-weight: 700;
            color: var(--dk-primary);
        }
        
  /* ==== 11. features page end==== */
