       /* ==========================================================================
   Harshwal Advisory Website Styles
   ========================================================================== */

/* ==========================================================================
   1. CSS Reset & Base Styles
   ========================================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    color: #2d3436;
    line-height: 1.6;
    overflow-x: hidden;
}

/* ==========================================================================
   2. Typography
   ========================================================================== */

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    /* background: linear-gradient(135deg, #2d3436 0%, #5f2a52 50%, #862a2a 100%); */
    background: black;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.25rem;
    color: #64748b;
    max-width: 700px;
    margin: 0 auto;
    font-weight: 400;
}

.text-gradient {

    /* background: linear-gradient(135deg, #5f2a52 0%, #862a2a 100%); */
    background: black;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ==========================================================================
   3. Layout Utilities
   ========================================================================== */

.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-header .section-title {
    margin-bottom: 16px;
}

/* ==========================================================================
   4. Navigation
   ========================================================================== */

.navbar {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px);
    padding: 0.8rem 0;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(95, 42, 82, 0.1);
    box-shadow: none;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98) !important;
    box-shadow: 0 2px 20px rgba(95, 42, 82, 0.1);
    padding: 0.5rem 0;
}

.navbar-brand {
    padding: 0;
    margin-right: 2rem;
}

.navbar-logo {
    height: 45px;
    width: auto;
    transition: all 0.3s ease;
}

.navbar.scrolled .navbar-logo {
    height: 40px;
}

.navbar-nav {
    align-items: center;
}

.navbar-nav .nav-link {
    color: #2d3436 !important;
    font-weight: 500;
    padding: 0.75rem 1rem !important;
    transition: color 0.3s ease;
    position: relative;
    white-space: nowrap;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus {
    background: linear-gradient(135deg, #5f2a52 0%, #862a2a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Dropdown Menus */
.dropdown-menu {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(95, 42, 82, 0.1);
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(95, 42, 82, 0.15);
    margin-top: 0;
    transform: translateY(0);
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
    position: absolute;
    z-index: 1000;
}

.dropdown-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    color: #2d3436;
    padding: 0.6rem 1.5rem;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.dropdown-item:hover,
.dropdown-item:focus {
    background-color: rgba(95, 42, 82, 0.08);
    background: linear-gradient(135deg, #5f2a52 0%, #862a2a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.navbar-toggler {
    border: none;
    padding: 0.4rem 0.6rem;
    border-radius: 6px;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2845, 52, 54, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    width: 1.2em;
    height: 1.2em;
}

/* ==========================================================================
   5. Buttons
   ========================================================================== */

.btn {
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
}

.btn-cta {
    background: linear-gradient(135deg, #5f2a52 0%, #862a2a 100%);
    color: #ffffff !important;
    margin-left: 1rem;
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(95, 42, 82, 0.3);
    color: #ffffff !important;
}

.btn-primary-cta {
    background: linear-gradient(135deg, #5f2a52 0%, #862a2a 100%);
    color: #ffffff;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-size: 1.1rem;
    border: 2px solid transparent;
}

.btn-secondary-cta {
    background: transparent;
    color: #ffffff;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-size: 1.1rem;
    border: 2px solid #ffffff;
}

.btn-primary-cta:hover, 
.btn-secondary-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(95, 42, 82, 0.3);
}

.btn-card-cta {
    width: 100%;
    background: linear-gradient(135deg, #5f2a52 0%, #862a2a 100%);
    color: white;
    padding: 16px 24px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    justify-content: center;
}

.btn-card-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 16px rgba(95, 42, 82, 0.3);
}

.btn-product-cta {
    width: 100%;
    background: linear-gradient(135deg, #5f2a52 0%, #862a2a 100%);
    color: white;
    padding: 16px 24px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    justify-content: center;
}

.btn-product-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(95, 42, 82, 0.4);
}

.btn-cta-white {
    background: white;
    color: #5f2a52;
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.125rem;
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
}

.btn-cta-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.3);
}

.btn-footer-cta {
    background: #ffffff;
    color: #5f2a52;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    transition: transform 0.3s ease;
}

.btn-footer-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
}

/* ==========================================================================
   6. Hero Section
   ========================================================================== */

.hero {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 8rem 2rem 4rem;
    position: relative;
    overflow: hidden;
    background-image: url('../assets/hero_sample.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
    pointer-events: none;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: white;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: #ffffff;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-ctas {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ==========================================================================
   7. Credibility Section
   ========================================================================== */

.credibility-section {
    width: 100%;
    background: #f5f5f5;
    padding: 30px 0;
}

.credibility-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.trust-line {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #5f2a52 0%, #862a2a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.partner-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 1vw;
    justify-content: center;
    align-items: center;
    row-gap: 26px;
}

.partner-logo {
    flex: 0 1 170px;
    padding: 0;
}

.logo-circle {
    width: 140px;
    height: 140px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.09);
    margin: auto;
}

.logo-img {
    width: 104px;
    height: 104px;
    object-fit: contain;
    border-radius: 50%;
    background: #fff;
}

/* ==========================================================================
   8. Who We Help Section
   ========================================================================== */

.who-we-help-section {
    padding: 60px 16px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.help-cards-container {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
}

.help-card {
    background: white;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    flex: 1;
    min-width: 300px;
    max-width: 480px;
}

.help-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 25px rgba(0, 0, 0, 0.1);
}

.card-header {
    display: flex;
    align-items: flex-start;
    margin-bottom: 24px;
}

.card-icon {
    width: 48px;
    height: 48px;
    background: #f7fafc;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 16px;
    border: 1px solid #e2e8f0;
    flex-shrink: 0;
}

.card-icon--orange {
    background: #fef5e7;
    border: 1px solid #fed7aa;
}

.card-title-group {
    flex: 1;
}

.card-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2d3748;
    margin: 0 0 4px 0;
}

.card-subtitle {
    color: #718096;
    font-size: 0.875rem;
    margin: 0;
}

.card-description {
    color: #4a5568;
    margin-bottom: 24px;
    font-size: 1rem;
    line-height: 1.6;
    margin-top: 0;
}

.feature-list {
    margin-bottom: 28px;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    color: #4a5568;
}

.feature-dot {
    width: 6px;
    height: 6px;
    background: linear-gradient(135deg, #5f2a52 0%, #862a2a 100%);
    border-radius: 50%;
    margin-right: 12px;
    flex-shrink: 0;
    display: inline-block;
}


/* ==========================================================================
   10. Future Section
   ========================================================================== */

.future-section {
    padding: 100px 20px;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    /* background: #ffffff; */
    line-height: 1.6;
}

.future-section .section-title {
    font-size: 3.5rem;
    /* font-weight: 800; */
    color: #1e293b;
    margin: 0 0 24px 0;
    letter-spacing: -0.025em;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.future-section .section-header {
    margin-bottom: 80px;
}

.future-products {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
    align-items: stretch;
}

.product-card {
    background: white;
    border-radius: 24px;
    padding: 40px;
    flex: 1;
    min-width: 450px;
    max-width: 550px;
    color: #1e293b;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(95, 42, 82, 0.15);
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(95, 42, 82, 0.05) 0%, transparent 70%);
    opacity: 0.5;
}

.product-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    position: relative;
    z-index: 2;
}

.product-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #5f2a52 0%, #862a2a 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-title-group {
    flex: 1;
}

.product-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
    color: #1e293b;
}

.product-subtitle {
    font-size: 0.875rem;
    margin: 0;
    color: #862a2a;
    font-weight: 600;
}

.product-description {
    color: #64748b;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0 0 32px 0;
    position: relative;
    z-index: 2;
}

/* .product-demo {
    background: rgba(95, 42, 82, 0.05);
    border: 1px solid rgba(95, 42, 82, 0.1);
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 32px;
    text-align: center;
    position: relative;
    z-index: 2;
} */

.product-demo {
    background: rgba(95, 42, 82, 0.05) url('../assets/aim.jpg') no-repeat center center/cover;
    border: 1px solid rgba(95, 42, 82, 0.1);
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 32px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.product-demo-tom {
    background: rgba(95, 42, 82, 0.05) url('../assets/tom.jpg') no-repeat center center/cover;
    border: 1px solid rgba(95, 42, 82, 0.1);
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 32px;
    text-align: center;
    position: relative;
    z-index: 2;
}


.demo-play-button {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #5f2a52 0%, #862a2a 100%);
    border-radius: 50%;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.demo-play-button:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(95, 42, 82, 0.4);
}

.demo-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin: 0 0 8px 0;
    color: #ffffff;
}

.demo-description {
    font-size: 0.875rem;
    color: #ffffff;
    margin: 0;
}

.product-benefits {
    margin-bottom: 32px;
    position: relative;
    z-index: 2;
}

.benefits-title {
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 16px 0;
    color: #1e293b;
}

.benefit-list .benefit-item {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.benefit-list .benefit-dot {
    width: 6px;
    height: 6px;
    background: linear-gradient(135deg, #5f2a52 0%, #862a2a 100%);
    border-radius: 50%;
}

.benefit-list .benefit-item span:not(.benefit-dot) {
    color: #64748b;
    font-size: 0.875rem;
}

.product-dashboard {
    background: rgba(134, 42, 42, 0.05);
    border: 1px solid rgba(134, 42, 42, 0.1);
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 24px;
    position: relative;
    z-index: 2;
}

.dashboard-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin: 0 0 16px 0;
    color: #1e293b;
    text-align: center;
}

.dashboard-description {
    font-size: 0.875rem;
    color: #64748b;
    margin: 0 0 20px 0;
    text-align: center;
}

.dashboard-bars {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
}

.progress-bar {
    flex: 1;
    height: 8px;
    border-radius: 4px;
}

.progress-bar--transform {
    background: linear-gradient(90deg, #5f2a52 0%, #862a2a 80%, #e5e7eb 80%);
}

.progress-bar--operate {
    background: linear-gradient(90deg, #5f2a52 0%, #862a2a 65%, #e5e7eb 65%);
}

.progress-bar--merge {
    background: linear-gradient(90deg, #5f2a52 0%, #862a2a 45%, #e5e7eb 45%);
}

.product-pillars {
    margin-bottom: 32px;
    position: relative;
    z-index: 2;
}

.pillars-title {
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 16px 0;
    color: #1e293b;
}

.pillars-grid {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
}

.pillar-item {
    flex: 1;
    background: rgba(95, 42, 82, 0.05);
    padding: 12px;
    border-radius: 8px;
    text-align: center;
    border: 1px solid rgba(95, 42, 82, 0.1);
}

.pillar-name {
    font-size: 0.75rem;
    font-weight: 600;
    color: #862a2a;
    margin-bottom: 4px;
}

.pillar-description {
    font-size: 0.7rem;
    color: #64748b;
}

/* ==========================================================================
   11. Unlock Section
   ========================================================================== */

.unlock-section {
    padding: 6rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.unlock-content {
    background: linear-gradient(135deg, rgba(248, 249, 250, 0.9) 0%, rgba(255, 255, 255, 0.9) 100%);
    border-radius: 20px;
    padding: 4rem 3rem;
    margin: 4rem 0;
    border: 1px solid rgba(95, 42, 82, 0.1);
    box-shadow: 0 5px 15px rgba(95, 42, 82, 0.05);
}

.unlock-intro {
    text-align: center;
    font-size: 1.2rem;
    color: #636e72;
    margin-bottom: 2rem;
}

.unlock-subtitle {
    text-align: center;
    background: linear-gradient(135deg, #5f2a52 0%, #862a2a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.5rem;
    margin: 2rem 0;
}

.unlock-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 1.5rem;
    margin: 3rem 0;
}

.benefit-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 12px;
    border: 1px solid rgba(95, 42, 82, 0.1);
    box-shadow: 0 2px 8px rgba(95, 42, 82, 0.05);
    transition: all 0.3s ease;
}

.benefit-card:hover {
    border-color: rgba(95, 42, 82, 0.3);
    box-shadow: 0 5px 15px rgba(95, 42, 82, 0.1);
}

.benefit-check {
    background: linear-gradient(135deg, #5f2a52 0%, #862a2a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.2rem;
    margin-top: 0.2rem;
}

.benefit-text {
    color: #2d3436;
    font-size: 1.1rem;
}

.unlock-highlight {
    text-align: center;
    font-size: 1.2rem;
    background: linear-gradient(135deg, #5f2a52 0%, #862a2a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-top: 3rem;
}

.unlock-footer {
    text-align: center;
    color: #636e72;
    margin-top: 1rem;
}

/* ==========================================================================
   12. Testimonials Section
   ========================================================================== */

.testimonials-section {
    text-align: center;
    margin: 4rem 0;
    padding: 0 2rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial {
    background: rgba(255, 255, 255, 0.8);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(95, 42, 82, 0.2);
    box-shadow: 0 5px 15px rgba(95, 42, 82, 0.05);
}

.testimonial-quote {
    font-style: italic;
    color: #636e72;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.testimonial-author {
    background: linear-gradient(135deg, #5f2a52 0%, #862a2a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
}

/* ==========================================================================
   13. Final CTA Section
   ========================================================================== */

.final-cta-section {
    padding: 6rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.final-cta {
    text-align: center;
    background: linear-gradient(135deg, rgba(248, 249, 250, 0.9) 0%, rgba(255, 255, 255, 0.9) 100%);
    padding: 4rem 3rem;
    border-radius: 20px;
    margin: 4rem 0;
    border: 1px solid rgba(95, 42, 82, 0.1);
    box-shadow: 0 5px 15px rgba(95, 42, 82, 0.05);
}

.final-cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #2d3436 0%, #5f2a52 50%, #862a2a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.final-cta-description {
    font-size: 1.2rem;
    color: #636e72;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.final-ctas {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ==========================================================================
   14. Sticky CTA
   ========================================================================== */

.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    opacity: 0;
    transform: translateY(100px);
    transition: all 0.3s ease;
}

.sticky-cta.visible {
    opacity: 1;
    transform: translateY(0);
}

.sticky-cta .btn-cta {
    margin-left: 0;
}

/* ==========================================================================
   15. Footer
   ========================================================================== */

/* .footer {
    background: black;
    color: #ffffff;
    padding: 4rem 0 2rem;
    margin-top: 6rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-cta {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-cta-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff;
}

.footer-cta-description {
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.8);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.footer-section-text {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 400;
}

.footer-link:hover {
    color: #ffffff;
}

.footer-contact .contact-info {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.8rem;
}

.footer-contact .contact-info strong {
    color: #ffffff;
    display: block;
    margin-bottom: 0.3rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-link {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    transition: background 0.3s ease;
    font-weight: 600;
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.2);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.footer-legal {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-legal-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-legal-link:hover {
    color: #ffffff;
} */


 .harshwal-footer {
            background: black;
            color: #ffffff;
            padding: 4rem 0 2rem;
            margin-top: 6rem;
        }

        .harshwal-footer-content {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .harshwal-footer-cta {
            background: rgba(255, 255, 255, 0.1);
            padding: 2rem;
            border-radius: 12px;
            text-align: center;
            margin-bottom: 3rem;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .harshwal-cta-title {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: #ffffff;
        }

        .harshwal-cta-description {
            margin-bottom: 1.5rem;
            color: rgba(255, 255, 255, 0.8);
            font-size: 1rem;
            line-height: 1.5;
        }

        .harshwal-btn-cta {
            display: inline-block;
            background: linear-gradient(135deg, #5f2a52 0%, #862a2a 100%);
            color: white;
            padding: 12px 30px;
            text-decoration: none;
            border-radius: 8px;
            font-weight: 600;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .harshwal-btn-cta:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
        }

        /* Main Grid Layout */
        .harshwal-footer-grid {
            display: grid;
            gap: 2.5rem;
            margin-bottom: 3rem;
        }

        /* Desktop Layout - 5 columns */
        @media (min-width: 1024px) {
            .harshwal-footer-grid {
                grid-template-columns: 1.3fr 1fr 1fr 1fr 1fr;
                gap: 2rem;
            }
        }

        /* Tablet Layout */
        @media (min-width: 768px) and (max-width: 1023px) {
            .harshwal-footer-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 2rem;
            }

            .harshwal-company-info {
                grid-column: 1 / -1;
                margin-bottom: 1rem;
            }
        }

        /* Mobile Layout */
        @media (max-width: 767px) {
            .harshwal-footer-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
        }

        .harshwal-section-title {
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            color: #ffffff;
        }

        .harshwal-section-text {
            color: rgba(255, 255, 255, 0.8);
            line-height: 1.6;
            margin-bottom: 1.5rem;
        }

        .harshwal-footer-links {
            list-style: none;
            padding: 0;
        }

        .harshwal-footer-links li {
            margin-bottom: 0.8rem;
        }

        .harshwal-footer-link {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            transition: color 0.3s ease;
            font-weight: 400;
        }

        .harshwal-footer-link:hover {
            color: #ffffff;
        }

        /* Social Links */
        .harshwal-social-links {
            display: flex;
            gap: 1rem;
            margin-top: 1.5rem;
            flex-wrap: wrap;
        }

        .harshwal-social-link {
            display: flex;
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 8px;
            align-items: center;
            justify-content: center;
            color: #ffffff;
            text-decoration: none;
            transition: background 0.3s ease, transform 0.3s ease;
            font-weight: 600;
        }

        .harshwal-social-link:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: translateY(-2px);
        }

        /* Contact Information Styles */
        .harshwal-contact-info {
            margin-bottom: 1rem;
        }

        .harshwal-contact-label {
            color: #ffffff;
            font-weight: 600;
            display: block;
            margin-bottom: 0.3rem;
            font-size: 0.95rem;
        }

        .harshwal-contact-value {
            color: rgba(255, 255, 255, 0.85);
            line-height: 1.4;
            font-size: 0.95rem;
        }

        .harshwal-contact-value a {
            color: rgba(255, 255, 255, 0.85);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .harshwal-contact-value a:hover {
            color: #ffffff;
        }

        /* Footer Bottom */
        .harshwal-footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.2);
            padding-top: 2rem;
        }

        .harshwal-footer-bottom-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 1rem;
        }

        .harshwal-footer-copyright {
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.9rem;
        }

        .harshwal-footer-legal {
            display: flex;
            gap: 2rem;
            flex-wrap: wrap;
        }

        .harshwal-footer-legal-link {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            font-size: 0.9rem;
            transition: color 0.3s ease;
        }

        .harshwal-footer-legal-link:hover {
            color: #ffffff;
        }

        /* Mobile specific adjustments */
        @media (max-width: 767px) {
            .harshwal-footer {
                padding: 3rem 0 1rem;
            }

            .harshwal-footer-content {
                padding: 0 1.5rem;
            }

            .harshwal-footer-cta {
                padding: 1.5rem;
                margin-bottom: 2rem;
            }

            .harshwal-cta-title {
                font-size: 1.3rem;
            }

            .harshwal-section-title {
                font-size: 1.2rem;
                margin-bottom: 1rem;
            }

            .harshwal-social-links {
                justify-content: flex-start;
            }

            .harshwal-footer-bottom {
                padding-top: 1rem;
            }

            .harshwal-footer-bottom-content {
                flex-direction: column;
                text-align: center;
                gap: 0.8rem;
            }

            .harshwal-footer-legal {
                justify-content: center;
                gap: 0.8rem;
                flex-wrap: wrap;
                order: 1;
            }

            .harshwal-footer-legal-link {
                font-size: 0.8rem;
                padding: 0.2rem 0.5rem;
                white-space: nowrap;
            }

            .harshwal-footer-copyright {
                order: 2;
                font-size: 0.75rem;
                margin-top: 0.5rem;
            }
        }

        /* Small mobile adjustments */
        @media (max-width: 480px) {
            .harshwal-footer-content {
                padding: 0 1rem;
            }

            .harshwal-footer-legal {
                display: grid;
                grid-template-columns: 1fr 1fr;
                gap: 0.5rem;
                max-width: 280px;
                margin: 0 auto;
            }

            .harshwal-footer-legal-link {
                font-size: 0.75rem;
                padding: 0.3rem;
                text-align: center;
            }

            .harshwal-footer-copyright {
                font-size: 0.7rem;
                margin-top: 0.3rem;
            }

            .harshwal-footer-bottom {
                padding-top: 0.8rem;
            }
        }

/* ==========================================================================
   16. Animations
   ========================================================================== */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================================================
   17. Responsive Design
   ========================================================================== */

/* Navigation Desktop Positioning Fix */
.navbar-nav {
    margin-left: auto;
    margin-right: 1rem;
}

.navbar-collapse {
    flex-grow: 0;
}

/* Navigation Mobile Fixes */
@media (max-width: 991.98px) {
    .navbar-collapse {
        margin-top: 1rem;
        padding-top: 1rem;
        border-top: 1px solid rgba(95, 42, 82, 0.1);
        flex-grow: 1;
    }

    .navbar-nav {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        margin-left: 0;
        margin-right: 0;
    }

    .nav-item {
        width: 100%;
    }

    .nav-link {
        padding: 0.75rem 0 !important;
        width: 100%;
    }

    .btn-cta {
        margin-left: 0;
        margin-top: 1rem;
        display: inline-block;
        text-align: center;
        width: 100%;
    }

    /* Mobile Dropdown Fix - Complete Reset */
    .dropdown-menu {
        border: none !important;
        box-shadow: none !important;
        background: rgba(248, 249, 250, 0.9) !important;
        margin-top: 0 !important;
        margin-left: 1rem !important;
        position: static !important;
        transform: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        display: none;
    }

    .dropdown-menu.show {
        display: block !important;
    }

    .dropdown-item {
        padding: 0.5rem 0;
        color: #636e72;
        background: none !important;
    }

    .dropdown-item:hover {
        background: none !important;
        color: #5f2a52 !important;
    }
}

@media (max-width: 768px) {
    .navbar-logo {
        height: 40px;
    }

    .hero {
        padding: 6rem 1rem 3rem;
        min-height: 60vh;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .hero-ctas {
        flex-direction: column;
        align-items: center;
    }

    .help-cards-container {
        flex-direction: column;
    }

    .help-card {
        max-width: none;
        min-width: auto;
    }

    .future-products {
        flex-direction: column;
    }

    .product-card {
        min-width: auto;
        max-width: none;
    }

    .features-grid {
        flex-direction: column;
    }

    .feature-card {
        min-width: auto;
        max-width: none;
    }

    .unlock-benefits {
        grid-template-columns: 1fr;
    }

    .final-ctas {
        flex-direction: column;
        align-items: center;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-legal {
        justify-content: center;
    }

    .social-links {
        justify-content: center;
    }

    .pillars-grid {
        flex-direction: column;
        gap: 8px;
    }

    .dashboard-bars {
        flex-direction: column;
        gap: 4px;
    }

    .section-title {
        font-size: 2rem;
    }

    .unlock-content {
        padding: 2rem 1.5rem;
    }

    .final-cta {
        padding: 2rem 1.5rem;
    }

    .final-cta-title {
        font-size: 2rem;
    }

    .why-different-section {
        padding: 60px 16px;
    }

    .cta-section {
        padding: 32px 20px;
    }

    .future-section {
        padding: 60px 16px;
    }

    .future-section .section-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 576px) {
    .partner-logos {
        gap: 20px;
    }

    .logo-circle {
        width: 100px;
        height: 100px;
    }

    .logo-img {
        width: 80px;
        height: 80px;
    }

    .help-card,
    .product-card {
        padding: 20px;
    }

    .sticky-cta {
        bottom: 10px;
        right: 10px;
    }
}


.business-landing-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header */
.primary-navigation-header {
    padding: 2rem 0;
    text-align: center;
}

.brand-logo-container {
    display: inline-block;
    padding: 0.5rem 1rem;
    /* background: linear-gradient(135deg, #40e0d0, #48cae4); */
    background: linear-gradient(135deg, #5f2a52 0%, #862a2a 100%);
    border-radius: 8px;
}

.brand-icon-symbol {
    color: white;
    font-size: 1.2rem;
    font-weight: bold;
}

/* Main Content */
.core-content-area {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    padding: 2rem 0;
}

/* Hero Unlock Section */
.hero-unlock-section {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.primary-headline-text {
    font-size: 3.5rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.hero-description-text {
    font-size: 1.2rem;
    color: #000000;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Features Showcase Section */
.features-showcase-section {
    display: flex;
    justify-content: center;
}

.features-presentation-card {
    background: linear-gradient(135deg, #5f2a52, #862a2a);
    border-radius: 16px;
    padding: 1.9rem;
    max-width: 900px;
    width: 100%;
    color: white;
    box-shadow: 0 20px 40px rgba(95, 42, 82, 0.3);
}

.features-card-heading {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    margin-bottom: 10px;
}

.heading-accent-icon {
    color: #ffffff;
}

.benefits-display-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.single-benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.benefit-check-icon {
    background: #ffffff;
    color: rgb(0, 0, 0);
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: bold;
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.benefit-description-text {
    font-size: 0.95rem;
    line-height: 1.5;
    opacity: 0.95;
    color: white;
}

/* Action Call Section */
.action-call-section {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.secondary-headline-text {
    font-size: 2rem;
    font-weight: 700;
    color: #40e0d0;
    margin-bottom: 1.5rem;
    /* background: linear-gradient(135deg, #40e0d0, #48cae4); */
    background: black;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.action-description-text {
    font-size: 1.1rem;
    color: #000000;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Primary CTA Button */
/* .primary-cta-button {
    background: linear-gradient(135deg, #40e0d0, #48cae4);
    color: white;
    border: none;
    border-radius: 12px;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(64, 224, 208, 0.3);
} */

/* .primary-cta-button {
    background: linear-gradient(135deg, #5f2a52, #862a2a);
    color: white;
    border: none;
    border-radius: 12px;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(95, 42, 82, 0.3);
} */

.primary-cta-button {
  background: white;
  color: black;
  border: 2px solid transparent; /* Transparent border for spacing */
  border-radius: 12px;
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(95, 42, 82, 0.3);
  position: relative;

  /* Gradient stroke effect */
  background: linear-gradient(#5f2a52, #862a2a) border-box;
  -webkit-background-clip: text, border-box;
  background-clip: text, border-box;
  -webkit-text-fill-color: transparent;
}

.primary-cta-button:hover {
    transform: translateY(-2px);
    /* box-shadow: 0 12px 35px rgba(64, 224, 208, 0.4); */
    box-shadow: linear-gradient(135deg, #5f2a52, #862a2a);
}

.primary-cta-button:active {
    transform: translateY(0);
}

.button-arrow-icon {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.primary-cta-button:hover .button-arrow-icon {
    transform: translateX(3px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .business-landing-wrapper {
        padding: 0 1rem;
    }
    
    .primary-headline-text {
        font-size: 2.5rem;
    }
    
    .secondary-headline-text {
        font-size: 2rem;
    }
    
    .benefits-display-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .features-presentation-card {
        padding: 2rem;
    }
    
    .features-card-heading {
        font-size: 1.5rem;
    }
    
    .benefit-description-text {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .primary-headline-text {
        font-size: 2rem;
    }
    
    .secondary-headline-text {
        font-size: 1.8rem;
    }
    
    .hero-description-text {
        font-size: 1rem;
    }
    
    .action-description-text {
        font-size: 1rem;
    }
}

/* Animation Classes */
.element-fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.element-fade-in.animation-visible {
    opacity: 1;
    transform: translateY(0);
}

.element-scale-in {
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.6s ease;
}

.element-scale-in.animation-visible {
    opacity: 1;
    transform: scale(1);
}

        .client-testimonials-showcase {
            background: #ffffff;
            padding: 6rem 0;
            position: relative;
            overflow: hidden;
        }

        .testimonials-container-wrapper {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        /* Header Area */
        .testimonials-header-area {
            text-align: center;
            margin-bottom: 4rem;
        }

        .trusted-firms-headline {
            font-size: 3rem;
            font-weight: 700;
            color: #000000;
            margin-bottom: 1rem;
            line-height: 1.2;
        }

        .highlighted-firms-text {
            color: #40e0d0;
            background: black;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .partnership-description-text {
            font-size: 1.1rem;
            color: #555555;
            max-width: 600px;
            margin: 0 auto;
        }

        /* Carousel Container */
        .testimonials-carousel-container {
            position: relative;
            margin-bottom: 4rem;
            padding: 2rem 0; /* Add padding to prevent clipping */
        }

        .testimonials-carousel-wrapper {
            overflow: hidden;
            position: relative;
            padding: 1rem 0; /* Additional padding for shadows and hover effects */
            margin: -1rem 0; /* Negative margin to offset the padding */
        }

        .testimonials-cards-grid {
            display: flex;
            transition: transform 0.5s ease;
            gap: 2rem;
        }

        .individual-testimonial-card {
            background: white;
            border: none;
            border-radius: 16px;
            padding: 2rem;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            box-shadow: 0 8px 25px rgba(95, 42, 82, 0.2);
            flex: 0 0 350px;
            min-height: 300px;
        }

        .individual-testimonial-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(145, 92, 132, 0.15), rgba(184, 92, 92, 0.15));
            opacity: 0;
            transition: opacity 0.3s ease;
            z-index: 1;
        }

        .individual-testimonial-card:hover::before {
            opacity: 1;
        }

        .individual-testimonial-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(95, 42, 82, 0.3);
        }

        .individual-testimonial-card > * {
            position: relative;
            z-index: 2;
        }

        .quote-symbol-icon {
            font-size: 3rem;
            color: black;
            font-weight: bold;
            line-height: 1;
            margin-bottom: 1rem;
            font-family: Georgia, serif;
        }

        .testimonial-content-text {
            font-size: 1rem;
            font-style: italic;
            color: rgb(0, 0, 0);
            line-height: 1.6;
            margin-bottom: 1.5rem;
        }

        .star-rating-display {
            display: flex;
            gap: 0.25rem;
            margin-bottom: 1.5rem;
        }

        .rating-star {
            color: #ff8800;
            font-size: 1.2rem;
        }

        .testimonial-author-info {
            border-top: 1px solid rgba(0, 0, 0, 0.1);
            padding-top: 1rem;
        }

        .author-name-text {
            font-size: 1.1rem;
            font-weight: 600;
            color: rgb(0, 0, 0);
            margin-bottom: 0.25rem;
        }

        .author-position-title {
            font-size: 0.9rem;
            color: rgba(0, 0, 0, 0.8);
            margin-bottom: 0.25rem;
        }

        .author-company-name {
            font-size: 0.9rem;
            color: #000000;
            font-weight: 500;
        }

        /* Navigation Arrows */
        .carousel-nav-button {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: linear-gradient(135deg, #5f2a52, #862a2a);
            color: white;
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            cursor: pointer;
            font-size: 1.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 10;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(95, 42, 82, 0.3);
        }

        .carousel-nav-button:hover {
            background: linear-gradient(135deg, #862a2a, #5f2a52);
            transform: translateY(-50%) scale(1.1);
            box-shadow: 0 6px 20px rgba(95, 42, 82, 0.4);
        }

        .carousel-nav-button:disabled {
            opacity: 0.5;
            cursor: not-allowed;
            transform: translateY(-50%) scale(1);
        }

        .carousel-nav-button.prev {
            left: -25px;
        }

        .carousel-nav-button.next {
            right: -25px;
        }

        /* Dots Indicator */
        .carousel-dots {
            display: flex;
            justify-content: center;
            gap: 0.5rem;
            margin-top: 2rem;
        }

        .carousel-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(95, 42, 82, 0.3);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .carousel-dot.active {
            background: linear-gradient(135deg, #5f2a52, #862a2a);
            transform: scale(1.2);
        }

        /* Performance Metrics Section */
        /* .performance-metrics-section {
            border: none;
            border-radius: 20px;
            padding: 3rem 2rem;
            margin-top: 2rem;
            box-shadow: 0 8px 25px rgba(95, 42, 82, 0.2);
        } */

        .metrics-display-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            text-align: center;
        }

        .single-metric-item {
            position: relative;
        }

        .metric-number-display {
            font-size: 3.5rem;
            font-weight: 700;
            color: #40e0d0;
            margin-bottom: 0.5rem;
            background: linear-gradient(135deg, #5f2a52, #862a2a);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .metric-label-text {
            font-size: 1rem;
            color: rgba(0, 0, 0, 0.9);
            font-weight: 500;
        }

        /* Mobile Responsive Design */
        @media (max-width: 768px) {
            .testimonials-container-wrapper {
                padding: 0 1rem;
            }
            
            .trusted-firms-headline {
                font-size: 2.5rem;
            }
            
            .individual-testimonial-card {
                flex: 0 0 280px;
                padding: 1.5rem;
                min-height: 280px;
            }
            
            .carousel-nav-button {
                width: 40px;
                height: 40px;
                font-size: 1.2rem;
            }
            
            .carousel-nav-button.prev {
                left: -20px;
            }
            
            .carousel-nav-button.next {
                right: -20px;
            }
            
            .metrics-display-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 1.5rem;
            }
            
            .metric-number-display {
                font-size: 2.5rem;
            }
        }

        @media (max-width: 480px) {
            .client-testimonials-showcase {
                padding: 4rem 0;
            }
            
            .trusted-firms-headline {
                font-size: 2rem;
            }
            
            .partnership-description-text {
                font-size: 1rem;
            }
            
            .individual-testimonial-card {
                flex: 0 0 250px;
                padding: 1.2rem;
                min-height: 260px;
            }
            
            .quote-symbol-icon {
                font-size: 2.5rem;
            }
            
            .testimonial-content-text {
                font-size: 0.9rem;
            }
            
            .carousel-nav-button {
                width: 35px;
                height: 35px;
                font-size: 1rem;
            }
            
            .carousel-nav-button.prev {
                left: -18px;
            }
            
            .carousel-nav-button.next {
                right: -18px;
            }
            
            .performance-metrics-section {
                padding: 2rem 1rem;
            }
            
            .metrics-display-grid {
                grid-template-columns: 1fr;
                gap: 1rem;
            }
            
            .metric-number-display {
                font-size: 2rem;
            }
        }

        /* Touch-friendly mobile navigation */
        @media (hover: none) and (pointer: coarse) {
            .carousel-nav-button {
                opacity: 0.8;
            }
            
            .carousel-nav-button:active {
                transform: translateY(-50%) scale(0.95);
            }
        }

        /* Animation Classes */
        .testimonial-fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease;
        }

        .testimonial-fade-in.is-visible {
            opacity: 1;
            transform: translateY(0);
        }

        .metric-counter-animation {
            opacity: 0;
            transform: scale(0.8);
            transition: all 0.6s ease;
        }

        .metric-counter-animation.is-visible {
            opacity: 1;
            transform: scale(1);
        }

 .future-cta-section {
            position: relative;
            width: 100vw;
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            background-image: url('../assets/cta.jpg');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            background-attachment: fixed;
        }

        /* Dark overlay for better text readability */
        .future-cta-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(95, 42, 82, 0.6) 0%, rgba(134, 42, 42, 0.6) 60%, rgba(95, 42, 82, 0.6) 100%);
            z-index: 1;
        }

        /* Content container */
        .future-cta-content {
            position: relative;
            z-index: 2;
            text-align: center;
            color: white;
            max-width: 1200px;
            margin: 0 auto;
            padding: 80px 40px;
        }

        .future-cta-heading {
            font-size: 4.5rem;
            /* font-weight: 800; */
            margin-bottom: 30px;
            line-height: 1.1;
            text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
            color: white;
        }

        .future-cta-description {
            font-size: 1.5rem;
            margin-bottom: 50px;
            opacity: 0.95;
            font-weight: 300;
            line-height: 1.7;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
        }

        .future-cta-buttons {
            display: flex;
            gap: 25px;
            justify-content: center;
            flex-wrap: wrap;
            margin-top: 60px;
        }

        .future-cta-button {
            padding: 22px 45px;
            border: none;
            border-radius: 12px;
            font-size: 1.2rem;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            position: relative;
            overflow: hidden;
            min-width: 280px;
            backdrop-filter: blur(10px);
            text-shadow: none;
        }

        .future-cta-button.future-cta-primary {
            background: rgba(255, 255, 255, 0.95);
            color: #5f2a52;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
        }

        .future-cta-button.future-cta-primary:hover {
            background: rgba(255, 255, 255, 1);
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
            transform: translateY(-2px);
        }

        .future-cta-button.future-cta-secondary {
            background: rgba(255, 255, 255, 0.1);
            color: white;
            border: 2px solid rgba(255, 255, 255, 0.4);
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
        }

        .future-cta-button.future-cta-secondary:hover {
            border-color: rgba(255, 255, 255, 0.8);
            background: rgba(255, 255, 255, 0.2);
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
            transform: translateY(-2px);
        }

        /* Button Icons */
        .future-cta-button-icon {
            margin-right: 12px;
            font-size: 1.3em;
            font-weight: normal;
        }

        /* Shimmer Effect */
        .future-cta-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.6s ease;
        }

        .future-cta-button:hover::before {
            left: 100%;
        }

        /* Animations */
        @keyframes futureCTAFadeInUp {
            from {
                opacity: 0;
                transform: translateY(40px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .future-cta-content > * {
            animation: futureCTAFadeInUp 1s ease forwards;
        }

        .future-cta-heading {
            animation-delay: 0.2s;
        }

        .future-cta-description {
            animation-delay: 0.4s;
            color:white;
        }

        .future-cta-buttons {
            animation-delay: 0.6s;
        }

        /* Responsive Design */
        @media (max-width: 1200px) {
            .future-cta-content {
                padding: 60px 40px;
            }
            
            .future-cta-heading {
                font-size: 4rem;
            }

            .future-cta-description {
                font-size: 1.4rem;
            }
        }

        @media (max-width: 768px) {
            .future-cta-section {
                min-height: 80vh;
                background-attachment: scroll;
            }

            .future-cta-content {
                padding: 50px 30px;
            }

            .future-cta-heading {
                font-size: 3rem;
                margin-bottom: 25px;
            }

            .future-cta-description {
                font-size: 1.3rem;
                margin-bottom: 40px;
            }

            .future-cta-buttons {
                flex-direction: column;
                align-items: center;
                gap: 20px;
                margin-top: 40px;
            }

            .future-cta-button {
                width: 100%;
                max-width: 350px;
                padding: 20px 40px;
                font-size: 1.1rem;
                min-width: auto;
            }
        }

        @media (max-width: 480px) {
            .future-cta-section {
                min-height: 70vh;
            }

            .future-cta-content {
                padding: 40px 20px;
            }

            .future-cta-heading {
                font-size: 2.5rem;
                line-height: 1.2;
            }

            .future-cta-description {
                font-size: 1.2rem;
                margin-bottom: 35px;
            }

            .future-cta-button {
                padding: 18px 35px;
                font-size: 1rem;
                max-width: 100%;
            }

            .future-cta-button-icon {
                font-size: 1.2em;
            }

            .future-cta-buttons {
                gap: 15px;
                margin-top: 35px;
            }
        }

        @media (max-width: 320px) {
            .future-cta-content {
                padding: 30px 15px;
            }

            .future-cta-heading {
                font-size: 2.2rem;
            }

            .future-cta-description {
                font-size: 1.1rem;
            }

            .future-cta-button {
                padding: 16px 30px;
                font-size: 0.95rem;
            }
        }

        /* Ensure full width on all screen sizes */
        @media (min-width: 1400px) {
            .future-cta-content {
                max-width: 1400px;
            }
        }

/* Main section styles */
.why-unlike-main-section {
    padding: 80px 24px;
    background: linear-gradient(135deg, hsl(210, 40%, 96.1%), hsl(220, 13%, 91%));
    min-height: 100vh;
}

.why-unlike-container {
    max-width: 1280px;
    margin: 0 auto;
}

/* Header styles */
.why-unlike-header {
    text-align: center;
    margin-bottom: 64px;
}

.why-unlike-main-title {
    font-size: 3rem;
    font-weight: bold;
    color: hsl(222.2, 84%, 4.9%);
    margin-bottom: 24px;
    line-height: 1.2;
}

.why-unlike-subtitle {
    font-size: 1.25rem;
    color: hsl(215.4, 16.3%, 46.9%);
    max-width: 768px;
    margin: 0 auto;
}

/* Grid layout */
.why-unlike-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
}

/* Card styles */
.why-unlike-card {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 30px -10px rgba(34, 34, 34, 0.1);
    cursor: pointer;
    transition: box-shadow 0.3s ease;
    will-change: box-shadow;
}

.why-unlike-card:hover {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

/* Image container */
.why-unlike-image-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.why-unlike-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    will-change: transform;
}

.why-unlike-card:hover .why-unlike-image {
    transform: scale(1.05);
}

/* Overlay for text readability */
.why-unlike-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s ease;
}

.why-unlike-card:hover .why-unlike-overlay {
    background-color: rgba(0, 0, 0, 0.3);
}

/* Content overlay */
.why-unlike-content {
    position: relative;
    z-index: 10;
    padding: 32px;
    height: 320px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: white;
}

.why-unlike-text-section {
    transform: translateY(8px);
    transition: transform 0.3s ease-out;
    will-change: transform;
}

.why-unlike-card:hover .why-unlike-text-section {
    transform: translateY(0);
}

/* Feature title */
.why-unlike-feature-title {
    font-size: 1.25rem;
    font-weight: bold;
    line-height: 1.3;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
    margin-bottom: 16px;
}

/* Gradient accent line */
.why-unlike-accent-line {
    width: 64px;
    height: 2px;
    background: linear-gradient(to right, #5f2a52, #862a2a);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease-out;
    will-change: transform;
}

.why-unlike-card:hover .why-unlike-accent-line {
    transform: scaleX(1);
}

/* Responsive design */
@media (max-width: 768px) {
    .why-unlike-main-section {
        padding: 60px 16px;
    }
    
    .why-unlike-main-title {
        font-size: 2.5rem;
    }
    
    .why-unlike-subtitle {
        font-size: 1.125rem;
    }
    
    .why-unlike-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .why-unlike-content {
        padding: 24px;
        height: 280px;
    }
    
    .why-unlike-feature-title {
        font-size: 1.125rem;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .why-unlike-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1025px) {
    .why-unlike-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .why-unlike-main-title {
        font-size: 3.5rem;
    }
}

       .harshwal-about-section {
            max-width: 1006px;
            margin: 0 auto;
            padding: 40px 20px;
            text-align: center;
            font-family: 'Arial', sans-serif;
            line-height: 1.8;
            color: #333;
            background-color: #f9f9f9;
        }

        .harshwal-about-section h2 {
            margin-bottom: 30px;
            font-size: 20px;
            font-weight: 700;
            color: #2c3e50;
            text-shadow: 0 1px 2px rgba(0,0,0,0.1);
        }

        .harshwal-about-section h2:last-child {
            margin-bottom: 0;
        }

        /* Responsive design */
        @media (max-width: 768px) {
            .harshwal-about-section {
                padding: 30px 15px;
            }
            
            .harshwal-about-section h2 {
                font-size: 18px;
            }
        }

 /* Professional Services Section */
        .professional-services {
            padding: 4rem 1rem;
            background-color: #ffffff;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
            align-items: stretch;
        }

        @media (min-width: 1024px) {
            .grid {
                grid-template-columns: 2fr 1fr;
            }
            
            .professional-services {
                padding: 4rem 4rem;
            }
        }

        /* Text Content Styles */
        .text-content {
            opacity: 0;
            transform: translateX(-2rem);
            transition: all 0.7s ease-out;
        }

        .text-content.visible {
            opacity: 1;
            transform: translateX(0);
        }

        .heading {
            font-size: 2.25rem;
            font-weight: bold;
            color: #1a1a1a;
            margin-bottom: 1.5rem;
            opacity: 0;
            transform: translateY(1rem);
            transition: all 0.7s ease-out;
            transition-delay: 0.1s;
        }

        .heading.visible {
            opacity: 1;
            transform: translateY(0);
        }

        @media (min-width: 768px) {
            .heading {
                font-size: 2.5rem;
            }
        }

        .content-text {
            margin-bottom: 1.5rem;
            opacity: 0;
            transform: translateY(1rem);
            transition: all 0.7s ease-out;
            transition-delay: 0.2s;
        }

        .content-text.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .paragraph {
            margin-bottom: 1rem;
            color: rgba(26, 26, 26, 0.8);
            line-height: 1.7;
        }

        .paragraph:last-child {
            margin-bottom: 0;
        }

        /* Button Styles */
        .button-container {
            opacity: 0;
            transform: translateY(1rem);
            transition: all 0.7s ease-out;
            transition-delay: 0.3s;
        }

        .button-container.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .read-more-btn {
            /* background-color: #7c2d12; */
            background: linear-gradient(90deg, #5f2a52, #862a2a);
            color: white;
            padding: 0.5rem 1.5rem;
            border: none;
            border-radius: 0.2rem;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            font-size: 1rem;
        }

        .read-more-btn:hover {
            background-color: #6b2610;
            transform: scale(1.05);
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
        }

        /* Image Styles */
        .image-container {
            opacity: 0;
            transform: translateX(2rem) scale(0.95);
            transition: all 0.7s ease-out;
            transition-delay: 0.15s;
            height: 100%;
            display: flex;
            align-items: stretch;
        }

        .image-container.visible {
            opacity: 1;
            transform: translateX(0) scale(1);
        }

        @media (min-width: 1024px) {
            .image-container {
                padding-left: 2rem;
            }
        }

        .team-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 0.5rem;
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
        }

        .team-image:hover {
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
        }

        /* Animation keyframes */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInLeft {
            from {
                opacity: 0;
                transform: translateX(-30px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes fadeInRight {
            from {
                opacity: 0;
                transform: translateX(30px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

/* New navbar css starts here */

        /* Header Styles */
        .harshwal-nav-header {
            background: #ffffff;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
            width: 100%;
        }

        .harshwal-navbar-container {
            width: 100%;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            min-height: 70px;
            position: relative;
        }

        /* Logo Styles - Positioned at extreme left */
        .harshwal-nav-logo {
            display: flex;
            align-items: center;
            text-decoration: none;
            z-index: 1001;
            margin-right: auto;
            flex-shrink: 0;
        }

        .harshwal-nav-logo img {
            height: 40px;
            width: auto;
            display: block;
        }

        /* Alternative text logo if no image */
        .harshwal-nav-logo-text {
            color: #1a3d5c;
            font-size: 24px;
            font-weight: bold;
            margin-right: 5px;
        }

        .harshwal-nav-logo-h {
            background: #1a3d5c;
            color: white;
            padding: 2px 8px;
            border-radius: 4px;
            font-size: 24px;
            font-weight: bold;
        }

        .harshwal-nav-tagline {
            font-size: 10px;
            color: #666;
            font-weight: normal;
            margin-left: 10px;
        }

        /* Navigation Menu Styles - Right aligned with proper spacing */
        .harshwal-nav-menu-list {
            display: flex;
            list-style: none;
            align-items: center;
            justify-content: flex-end;
            gap: 20px;
            height: 100%;
            margin: 0;
            padding: 0;
        }

        .harshwal-nav-menu-item {
            position: relative;
            display: flex;
            align-items: center;
            height: 70px;
        }

        .harshwal-nav-link {
            color: #333;
            text-decoration: none;
            font-size: 14px;
            font-weight: 500;
            padding: 0 8px;
            display: flex;
            align-items: center;
            gap: 3px;
            transition: color 0.3s;
            height: 100%;
            cursor: pointer;
            white-space: nowrap;
        }

        .harshwal-nav-link:hover {
            color: #1a3d5c;
        }

        /* Dropdown Arrow */
        .harshwal-nav-link-dropdown::after {
            content: '▼';
            font-size: 9px;
            transition: transform 0.3s;
            margin-left: 2px;
        }

        .harshwal-nav-menu-item:hover .harshwal-nav-link-dropdown::after {
            transform: rotate(180deg);
        }

        /* Dropdown Menu Styles */
        .harshwal-nav-dropdown {
            position: absolute;
            top: 100%;
            left: 0;
            background: white;
            min-width: 280px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.15);
            border-radius: 8px;
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px);
            transition: all 0.3s ease;
            padding: 10px 0;
            z-index: 999;
        }

        .harshwal-nav-menu-item:hover .harshwal-nav-dropdown {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .harshwal-nav-dropdown-item {
            padding: 12px 20px;
            color: #333;
            text-decoration: none;
            display: block;
            font-size: 14px;
            transition: all 0.3s;
        }

        .harshwal-nav-dropdown-item:hover {
            background: #f5f7fa;
            color: #1a3d5c;
            padding-left: 25px;
        }

        /* CTA Button */
        .harshwal-nav-cta-btn {
            /* background: #8b2c5c; */
            background: linear-gradient(45deg, #5f2a52, #862a2a);
            color: white;
            padding: 10px 20px;
            border: none;
            border-radius: 6px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            white-space: nowrap;
            margin-left: 10px;
        }

        .harshwal-nav-cta-btn:hover {
            background: #6d2349;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(139, 44, 92, 0.3);
        }

        /* Mobile Menu Toggle */
        .harshwal-nav-mobile-toggle {
            display: none;
            flex-direction: column;
            cursor: pointer;
            padding: 5px;
            z-index: 1001;
            background: none;
            border: none;
            margin-left: 15px;
        }

        .harshwal-nav-mobile-toggle span {
            width: 25px;
            height: 3px;
            background: #1a3d5c;
            margin: 3px 0;
            transition: 0.3s;
            border-radius: 3px;
            display: block;
        }

        /* Responsive adjustments for different screen sizes */
        @media screen and (max-width: 1400px) {
            .harshwal-navbar-container {
                padding: 0 30px;
            }
        }

        @media screen and (max-width: 1200px) {
            .harshwal-nav-menu-list {
                gap: 15px;
            }
            
            .harshwal-nav-link {
                font-size: 14px;
                padding: 0 6px;
            }
            
            .harshwal-nav-cta-btn {
                padding: 9px 18px;
                font-size: 13px;
            }
        }

        /* Mobile Styles */
        @media screen and (max-width: 968px) {
            .harshwal-navbar-container {
                padding: 0 15px;
                min-height: 60px;
            }

            .harshwal-nav-logo img {
                height: 35px;
            }

            .harshwal-nav-logo-text {
                font-size: 20px;
            }

            .harshwal-nav-logo-h {
                font-size: 20px;
            }

            .harshwal-nav-menu-list {
                position: fixed;
                left: -100%;
                top: 60px;
                flex-direction: column;
                background: white;
                width: 100%;
                text-align: left;
                transition: 0.3s;
                box-shadow: 0 10px 27px rgba(0,0,0,0.1);
                padding: 20px 0;
                gap: 0;
                max-height: calc(100vh - 60px);
                overflow-y: auto;
                justify-content: flex-start;
                align-items: stretch;
            }

            .harshwal-nav-menu-list.harshwal-nav-active {
                left: 0;
            }

            .harshwal-nav-menu-item {
                width: 100%;
                height: auto;
                display: block;
            }

            .harshwal-nav-link {
                padding: 15px 20px;
                width: 100%;
                justify-content: space-between;
                border-bottom: 1px solid #f0f0f0;
                height: auto;
                font-size: 14px;
            }

            .harshwal-nav-link-dropdown::after {
                content: '+';
                font-size: 20px;
                font-weight: 300;
            }

            .harshwal-nav-menu-item.harshwal-nav-item-active .harshwal-nav-link-dropdown::after {
                content: '−';
            }

            .harshwal-nav-dropdown {
                position: static;
                opacity: 1;
                visibility: visible;
                transform: none;
                box-shadow: none;
                display: none;
                background: #f8f9fa;
                border-radius: 0;
                padding: 0;
                max-height: 0;
                overflow: hidden;
                transition: max-height 0.3s ease;
            }

            .harshwal-nav-menu-item.harshwal-nav-item-active .harshwal-nav-dropdown {
                display: block;
                max-height: 500px;
            }

            .harshwal-nav-dropdown-item {
                padding: 12px 40px;
                border-bottom: 1px solid #e0e0e0;
            }

            .harshwal-nav-dropdown-item:last-child {
                border-bottom: none;
            }

            .harshwal-nav-dropdown-item:hover {
                padding-left: 45px;
            }

            .harshwal-nav-mobile-toggle {
                display: flex;
            }

            .harshwal-nav-mobile-toggle.harshwal-nav-toggle-active span:nth-child(1) {
                transform: rotate(-45deg) translate(-6px, 6px);
            }

            .harshwal-nav-mobile-toggle.harshwal-nav-toggle-active span:nth-child(2) {
                opacity: 0;
            }

            .harshwal-nav-mobile-toggle.harshwal-nav-toggle-active span:nth-child(3) {
                transform: rotate(45deg) translate(-7px, -8px);
            }

            .harshwal-nav-cta-btn {
                margin: 20px;
                display: block;
                text-align: center;
                width: calc(100% - 40px);
            }

            .harshwal-nav-tagline {
                display: none;
            }
        }

        @media screen and (max-width: 480px) {
            .harshwal-navbar-container {
                min-height: 60px;
                padding: 0 10px;
            }

            .harshwal-nav-logo img {
                height: 30px;
            }

            .harshwal-nav-menu-list {
                top: 60px;
                max-height: calc(100vh - 60px);
            }

            .harshwal-nav-link {
                padding: 12px 15px;
                font-size: 14px;
            }

            .harshwal-nav-dropdown-item {
                padding: 10px 30px;
                font-size: 13px;
            }
        }

        /* Hover Effects for Desktop */
        @media (min-width: 969px) {
            .harshwal-nav-menu-item:hover .harshwal-nav-dropdown {
                animation: harshwalNavSlideDown 0.3s ease;
            }
        }

        @keyframes harshwalNavSlideDown {
            from {
                opacity: 0;
                transform: translateY(-10px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Demo Content */
        .content {
            padding: 50px 20px;
            max-width: 1200px;
            margin: 0 auto;
            text-align: center;
        }

        h1 {
            color: #1a3d5c;
            margin-bottom: 20px;
        }

        p {
            color: #666;
            line-height: 1.6;
        }
/* New navbar css ends here */

.unique-campus-section {
            background: #f8f9fa;
            padding: 60px 20px;
            color: #333;
        }

        .unique-campus-container {
            max-width: 1400px; /* Increased from 1000px */
            margin: 0 auto;
            padding: 0 40px; /* Added padding for better spacing */
        }

        .unique-campus-title {
            font-size: 2.5rem;
            font-weight: 700;
            text-align: center;
            margin-bottom: 20px;
            color: #333;
        }

        .unique-campus-subtitle {
            font-size: 1.1rem;
            text-align: center;
            margin-bottom: 50px;
            color: #666;
            max-width: 900px; /* Increased from 800px */
            margin-left: auto;
            margin-right: auto;
        }

        .unique-campus-wrapper {
            display: grid;
            grid-template-columns: 1.1fr 1.3fr; /* Adjusted ratio for better stretch */
            gap: 80px; /* Reduced from 100px for better use of space */
            align-items: center;
            width: 100%; /* Ensure full width usage */
        }

        .unique-campus-content {
            padding-left: 20px; /* Changed from padding-right since content is now on the right */
        }

        .unique-campus-video {
            width: 100%;
            height: 500px; /* Increased from 450px */
            background: url('../assets/harshwal_building.png') center/cover;
            border-radius: 12px;
            border: 2px solid #e9ecef;
            position: relative;
            cursor: pointer;
            transition: transform 0.3s ease;
        }

        .unique-campus-video:hover {
            transform: scale(1.02);
        }

        .unique-campus-play-btn {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 80px;
            height: 80px;
            background: rgba(255, 255, 255, 0.9);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 30px;
            color: #5f2a52;
            transition: all 0.3s ease;
        }

        .unique-campus-video:hover .unique-campus-play-btn {
            background: rgba(255, 255, 255, 1);
            transform: translate(-50%, -50%) scale(1.1);
        }

        .unique-campus-text {
            font-size: 1rem;
            margin-bottom: 20px;
            color: #666;
            line-height: 1.6; /* Added for better readability */
        }

        .unique-campus-highlight {
            background: linear-gradient(135deg, #5f2a52 0%, #862a2a 100%);
            color: white;
            padding: 20px; /* Increased from 15px */
            border-radius: 8px;
            margin: 20px 0;
            font-weight: 600;
            line-height: 1.5; /* Added for better readability */
        }

        .unique-campus-diff-title {
            font-size: 1.3rem;
            margin: 30px 0 15px 0;
            font-weight: 600;
            color: #333;
            padding-left: 20px; /* Align with highlight box padding */
        }

        .unique-campus-diff-list {
            list-style: none;
            margin-bottom: 30px;
            padding-left: 20px; /* Align with highlight box padding */
        }

        .unique-campus-diff-list li {
            padding: 10px 0; /* Increased from 8px */
            padding-left: 30px; /* Space for checkmark icon */
            position: relative;
            color: #666;
            line-height: 1.5; /* Added for better readability */
        }

        .unique-campus-diff-list li:before {
            content: "✓";
            background: linear-gradient(135deg, #5f2a52 0%, #862a2a 100%);
            color: white;
            font-weight: bold;
            font-size: 12px;
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 20px;
            height: 20px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .unique-campus-closing {
            margin: 30px 0;
            font-style: italic;
            color: #666;
            line-height: 1.6; /* Added for better readability */
        }

        .unique-campus-cta-btns {
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
        }

        .unique-campus-btn {
            padding: 12px 25px;
            border-radius: 6px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            border: 2px solid #5f2a52;
            display: inline-block;
        }

        .unique-campus-btn-primary {
            background: linear-gradient(135deg, #5f2a52 0%, #862a2a 100%);
            color: white;
            border-color: #5f2a52;
        }

        .unique-campus-btn-primary:hover {
            background: transparent;
            color: #5f2a52;
        }

        .unique-campus-btn-secondary {
            background: transparent;
            color: #5f2a52;
            border-color: #5f2a52;
        }

        .unique-campus-btn-secondary:hover {
            background: linear-gradient(135deg, #5f2a52 0%, #862a2a 100%);
            color: white;
        }

        @media (max-width: 1200px) {
            .unique-campus-container {
                max-width: 1200px;
                padding: 0 30px;
            }
            
            .unique-campus-wrapper {
                gap: 60px;
            }
        }

        @media (max-width: 768px) {
            .unique-campus-container {
                padding: 0 20px;
            }
            
            .unique-campus-wrapper {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .unique-campus-title {
                font-size: 2rem;
            }

            .unique-campus-video {
                height: 250px;
                order: -1;
            }

            .unique-campus-content {
                padding-left: 0; /* Remove left padding on mobile */
            }

            .unique-campus-play-btn {
                width: 60px;
                height: 60px;
                font-size: 24px;
            }

            .unique-campus-cta-btns {
                flex-direction: column;
            }

            .unique-campus-btn {
                text-align: center;
            }
        }

        