/* ==========================================
   RESET & BASE STYLES
   ========================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #e91e8c;
    --secondary-color: #1a1a2e;
    --text-dark: #1a1a1a;
    --text-light: #ffffff;
    --bg-dark: #16162a;
    --bg-gradient: linear-gradient(135deg, #1a1a2e 0%, #2d1b3d 100%);
    --transition: all 0.3s ease;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
}

a {
    text-decoration: none;
    transition: var(--transition);
}


/* ==========================================
   TOP BANNER
   ========================================== */
.top-banner {
    background-color: var(--bg-dark);
    color: var(--text-light);
    font-size: 14px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    transition: all 0.4s ease;
    padding: 12px 0;
}

.banner-content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    text-align: center;
}

.banner-text {
    color: var(--text-light);
    font-size: 14px;
    transition: all 0.3s ease;
    max-width: 700px;
    line-height: 1.5;
}

.banner-btn {
    border-radius: 20px;
    padding: 6px 24px;
    font-size: 13px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    transition: var(--transition);
    white-space: nowrap;
    flex-shrink: 0;
}

.top-banner:hover {
    background-color: rgba(255, 255, 255, 0.98);
}

.top-banner:hover .banner-text {
    color: var(--text-dark);
}

.top-banner:hover .banner-btn {
    color: var(--text-dark);
    border-color: var(--text-dark);
}

.banner-btn:hover {
    background-color: var(--text-light) !important;
    color: var(--bg-dark) !important;
    border-color: var(--text-light) !important;
}

.top-banner:hover .banner-btn:hover {
    background-color: var(--text-dark) !important;
    color: var(--text-light) !important;
}

/* ==========================================
   HEADER - TRANSPARENT WITH HOVER EFFECT
   ========================================== */
.main-header {
    position: fixed;
    top: 58px; /* Below top banner */
    left: 0;
    right: 0;
    z-index: 1002;
    background-color: transparent;
    transition: all 0.4s ease;
    padding: 0px 0;
}

/* Header becomes white with dark text on hover */
.main-header:hover {
    background-color: rgba(255, 255, 255, 0.98) !important;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1) !important;
}

.main-header:hover .navbar-brand .logo-text {
    color: var(--text-dark) !important;
}

.main-header:hover .nav-link {
    color: var(--text-dark) !important;
}

.main-header:hover .nav-login {
    color: var(--text-dark) !important;
}

.main-header:hover .navbar-toggler {
    border-color: var(--text-dark) !important;
}

.main-header:hover .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(26, 26, 26, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

/* Scrolled state */
.main-header.scrolled {
    background-color: rgba(255, 255, 255, 0.98) !important;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1) !important;
}

.main-header.scrolled .navbar-brand .logo-text,
.main-header.scrolled .nav-link,
.main-header.scrolled .nav-login {
    color: var(--text-dark) !important;
}

.main-header.scrolled .navbar-toggler {
    border-color: var(--text-dark) !important;
}

.main-header.scrolled .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(26, 26, 26, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

/* Logo */
.navbar-brand .logo-text {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 28px;
    color: var(--text-light);
    transition: var(--transition);
}

/* Navigation Links - White by default */
.nav-link {
    color: var(--text-light) !important;
    font-weight: 500;
    padding: 8px 16px !important;
    transition: var(--transition);
    font-size: 15px;
}

.nav-link:hover {
    opacity: 0.8;
}

/* Dropdown Menu */
.dropdown-menu {
    border: none;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 0px 0;
    margin-top: 0px !important;
}

.dropdown-item {
    padding: 10px 25px;
    transition: var(--transition);
    color: var(--text-dark);
}

.dropdown-item:hover {
    background-color: rgba(233, 30, 140, 0.1);
    color: #3a49a9;
}

/* Login Button */
.nav-login {
    color: var(--text-light) !important;
    font-weight: 500;
    transition: var(--transition);
}

.nav-login:hover {
    opacity: 0.8;
}

/* Request Demo Button */
.btn-demo {
    background: linear-gradient(135deg, #6a0dad, #a9167e);
    color: var(--text-light);
    border: none;
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 600;
    transition: var(--transition);

}

.btn-demo:hover {
   background: linear-gradient(135deg, #e530ad, #6eafe3);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(233, 30, 140, 0.3);
    color: var(--text-light);
}

/* Mobile Toggle - White by default */
.navbar-toggler {
    border: 1px solid rgba(255, 255, 255, 0.5);
    padding: 8px 12px;
}

.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(255, 255, 255, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.main-header:hover .navbar-toggler {
    border-color: var(--text-dark);
}

.main-header:hover .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(26, 26, 26, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ==========================================
   HERO SECTION
   ========================================== */

.hero-section {
    background: var(--bg-gradient);
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 150px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("./img/hero1.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.15;
    z-index: 0;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 60%;
    height: 80%;
    background: linear-gradient(45deg, transparent, rgba(233, 30, 140, 0.1));
    border-radius: 50% 0 0 50%;
    z-index: 0;
}

.hero-section .container {
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    color: var(--text-light);
    line-height: 1.2;
    margin-bottom: 25px;
    font-family: 'Playfair Display', serif;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 35px;
    line-height: 1.8;
}



.btn-hero:hover {
   background: linear-gradient(135deg, #e530ad, #6eafe3);
    transform: translateY(-3px);
    color:#fff;
    box-shadow: 0 8px 25px rgba(233, 30, 140, 0.4);
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-section {
        padding: 120px 0 60px;
    }
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-section {
        padding: 100px 0 50px;
        min-height: 80vh;
    }
    
    .hero-section::after {
        width: 80%;
        height: 60%;
    }
}

@media (max-width: 575px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .btn-hero {
        padding: 12px 30px;
        font-size: 1rem;
    }
}
.btn-primary {
    background: linear-gradient(135deg, #6a0dad, #a9167e);
}
/* Mobile logo: on small screens show only the colored logo (img/logo.png)
   The markup uses .logo-default (white logo) and .logo-white (colored logo).
   On mobile we hide the white one and force the colored one to display. */
@media (max-width: 767.98px) {
    .logo-default { display: none !important; }
    .logo-white { display: block !important; }
}

/* 
.hero-section {
    background: var(--bg-gradient);
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 150px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 60%;
    height: 80%;
    background: linear-gradient(45deg, transparent, rgba(233, 30, 140, 0.1));
    border-radius: 50% 0 0 50%;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    color: var(--text-light);
    line-height: 1.2;
    margin-bottom: 25px;
    font-family: 'Playfair Display', serif;
} */

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 35px;
    line-height: 1.8;
}

.btn-hero {
    background: linear-gradient(135deg, #6a0dad, #a9167e);
    color: var(--text-light);
    border: none;
    padding: 15px 40px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
}



.hero-image {
    position: relative;
    z-index: 1;
}

.hero-image img {
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
}

.hero-image img:hover {
    transform: scale(1.02);
}

/* ==========================================
   FOOTER
   ========================================== */
.main-footer {
    background-color: #f8f9fa;
    padding: 60px 0 30px;
    color: var(--text-dark);
}

.footer-logo {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 28px;
    color: var(--text-dark);
}

.footer-heading {
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.footer-subheading {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #999;
    margin-bottom: 15px;
    margin-top: 0;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-dark);
    font-size: 15px;
    transition: var(--transition);
}

.footer-links a:hover {
    color: #3a49a9;
    padding-left: 5px;
}

/* Social Icons */
.social-links {
    display: flex;
    gap: 12px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--text-dark);
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-icon:hover {
    background-color: #3a49a9;
    transform: translateY(-3px);
}

/* App Badges */
.app-badges img {
    transition: var(--transition);
}

.app-badges img:hover {
    opacity: 0.8;
    transform: scale(1.05);
}

/* Footer Copyright */
.footer-copyright {
    font-size: 14px;
    color: #666;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid #ddd;
}

/* ==========================================
   RESPONSIVE DESIGN
   ========================================== */
@media (max-width: 991px) {
    .main-header {
        background-color: rgba(255, 255, 255, 0.98) !important;
        box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1) !important;
        padding: 0px 0;
    }

    .main-header .navbar-brand .logo-text,
    .main-header .nav-link,
    .main-header .nav-login {
        color: var(--text-dark) !important;
    }

    .navbar-toggler {
        border-color: var(--text-dark) !important;
    }

    .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(26, 26, 26, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .navbar-collapse {
        background-color: white;
        padding: 20px;
        border-radius: 10px;
        margin-top: 15px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    }

    .banner-content {
        flex-direction: column;
        gap: 10px;
        padding: 0 15px;
    }

    .banner-text {
        font-size: 13px;
        line-height: 1.4;
    }

    .banner-btn {
        width: auto;
    }
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-section {
        padding: 140px 0 60px;
    }

    .top-banner {
        padding: 10px 0;
    }

    .banner-text {
        font-size: 12px;
    }

    .banner-btn {
        font-size: 12px;
        padding: 5px 20px;
    }

    .btn-demo,
    .btn-hero {
        width: 100%;
        margin-top: 10px;
    }

    .main-footer {
        padding: 40px 0 20px;
    }

    .footer-heading {
        margin-top: 30px;
    }

    .main-header {
        top: 74px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 1.75rem;
    }

    .navbar-brand .logo-text {
        font-size: 24px;
    }

    .banner-content {
        padding: 0 10px;
    }

    .banner-text {
        font-size: 11px;
    }

    .hero-section {
        padding: 165px 0 50px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .banner-content {
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    .banner-text {
        max-width: calc(100% - 140px);
    }
}

/* ==========================================
   ANIMATIONS
   ========================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title,
.hero-subtitle,
.btn-hero {
    animation: fadeInUp 0.8s ease-out;
}

.hero-subtitle {
    animation-delay: 0.2s;
}

.btn-hero {
    animation-delay: 0.4s;
}

/* ==========================================
   UTILITY CLASSES
   ========================================== */
.text-gradient {
    background: linear-gradient(135deg, var(--primary-color), #ff6b9d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Selection Color */
::selection {
    background-color: #3a49a9;
    color: var(--text-light);
}

::-moz-selection {
    background-color: #3a49a9;
    color: var(--text-light);
}

/* ==========================================
   NEW PAGES STYLES
   ========================================== */

/* Page Hero Section */
.page-hero {
    background: var(--bg-gradient);
    padding: 180px 0 100px;
    color: var(--text-light);
}

.page-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
}

.page-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
}

/* Contact Page Styles */
.contact-info-section {
    background-color: #fff;
}

.contact-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: var(--transition);
    height: 100%;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.contact-icon {
    width: 80px;
    height: 80px;
    background: #a11385;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    color: white;
}

.contact-card h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.contact-card p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 0;
}

.contact-card a {
    color: #3a49a9;
    font-weight: 600;
}

.contact-card a:hover {
    text-decoration: underline;
}

/* Contact Form Styles */
.contact-form-section {
    background-color: #f8f9fa;
}

.contact-form-wrapper {
    background: white;
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.contact-form-wrapper h2 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: var(--text-dark);
}

.contact-form .form-label {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.contact-form .form-control,
.contact-form .form-select {
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    transition: var(--transition);
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    border-color: #3a49a9;
    box-shadow: 0 0 0 0.2rem rgba(233, 30, 140, 0.1);
}

.contact-form .form-check-input:checked {
    background-color: #3a49a9;
    border-color: #3a49a9;
}

.map-wrapper {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

/* About Page Styles */
.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.mission-section img,
.story-section img {
    border-radius: 15px;
}

.values-section {
    background-color: #f8f9fa;
}

.value-card {
    background: white;
    padding: 40px 25px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: var(--transition);
    height: 100%;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}
.text-primary {
    --bs-text-opacity: 1;
    color: #a01485 !important;
}

.value-icon {
    width: 70px;
    height: 70px;
    background: #a01485;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    color: white;
}

.value-card h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.value-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Stats Section */
.stats-section {
    background: var(--bg-gradient);
    color: white;
}

.stat-card {
    padding: 30px 20px;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 10px;
    font-family: 'Playfair Display', serif;
}

.stat-label {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
}

/* Team Section */
.team-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    text-align: center;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.team-img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.team-card h4 {
    font-size: 1.4rem;
    font-weight: 700;
    margin: 25px 0 10px;
    color: var(--text-dark);
}

.team-role {
    color: #3a49a9;
    font-weight: 600;
    margin-bottom: 20px;
}

.team-social {
    padding: 0 0 25px;
    display: flex;
    gap: 15px;
    justify-content: center;
}

.team-social a {
    width: 40px;
    height: 40px;
    background-color: #f0f0f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    transition: var(--transition);
}

.team-social a:hover {
    background-color: #3a49a9;
    color: white;
}

/* CTA Section */
.cta-section {
    background: var(--bg-gradient);
    padding: 80px 0;
}

/* Privacy Policy Styles */
.privacy-content {
    background-color: #fff;
}

.policy-section {
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 40px;
}

.policy-section:last-child {
    border-bottom: none;
}

.policy-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
    padding-top: 20px;
}

.policy-section h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-top: 25px;
    margin-bottom: 15px;
}

.policy-section p,
.policy-section li {
    color: #555;
    line-height: 1.8;
    font-size: 1rem;
}

.policy-section ul,
.policy-section ol {
    margin-left: 20px;
    margin-bottom: 20px;
}

.policy-section ul li,
.policy-section ol li {
    margin-bottom: 10px;
}

.toc-list {
    background-color: #f8f9fa;
    padding: 30px 40px;
    border-radius: 10px;
    border-left: 4px solid #3a49a9;
}

.toc-list li {
    margin-bottom: 12px;
}

.toc-list a {
    color: var(--text-dark);
    font-weight: 500;
    transition: var(--transition);
}

.toc-list a:hover {
    color: #3a49a9;
    padding-left: 10px;
}

.contact-info-box {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    border-left: 4px solid #3a49a9;
}

.contact-info-box h5 {
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.contact-info-box p {
    margin-bottom: 0;
    line-height: 1.8;
}

.contact-info-box a {
    color: #3a49a9;
    font-weight: 600;
}

/* Responsive Adjustments for New Pages */
@media (max-width: 991px) {
    .page-title {
        font-size: 2.5rem;
    }

    .contact-form-wrapper {
        padding: 30px 20px;
    }

    .section-title {
        font-size: 2rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }
}

@media (max-width: 767px) {
    .page-hero {
        padding: 140px 0 60px;
    }

    .page-title {
        font-size: 2rem;
    }

    .page-subtitle {
        font-size: 1rem;
    }

    .contact-card,
    .value-card {
        margin-bottom: 20px;
    }

    .team-img {
        height: 280px;
    }

    .policy-section h2 {
        font-size: 1.6rem;
    }

    .toc-list {
        padding: 20px 25px;
    }
}

/* ==========================================
   BLOG PAGES STYLES
   ========================================== */

/* Blog Filter */
.blog-filter {
    border-bottom: 1px solid #e0e0e0;
}

.btn-filter {
    padding: 10px 25px;
    border: 2px solid #e0e0e0;
    border-radius: 25px;
    background: white;
    color: var(--text-dark);
    font-weight: 600;
    transition: var(--transition);
}

.btn-filter:hover,
.btn-filter.active {
    background: #3a49a9;
    color: white;
    border-color: #3a49a9;
}

/* Featured Blog Post */
.featured-post-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.featured-post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.featured-img {
    width: 100%;
    height: 100%;
    min-height: 400px;
    object-fit: cover;
}

.featured-content {
    padding: 50px;
}

.blog-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), #ff6b9d);
    color: white;
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-right: 10px;
}

.blog-category {
    display: inline-block;
    color: #3a49a9;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.featured-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 20px 0;
    line-height: 1.3;
}

.featured-excerpt {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 25px;
}

.blog-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    color: #999;
    font-size: 14px;
}

.blog-meta i {
    margin-right: 5px;
}

/* Blog Grid Cards */
.blog-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.blog-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-category-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #3f45b9;
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-category-tag.leadership {
    background: #374ca6;
}

.blog-category-tag.wellness {
    background: #10b981;
}

.blog-category-tag.productivity {
    background: #f59e0b;
}

.blog-category-tag.ai {
    background: #8b5cf6;
}

.blog-content {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
    line-height: 1.4;
    display: -webkit-box;
    
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-excerpt {
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
    flex-grow: 1;
    display: -webkit-box;
   
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-link {
    color: #3a49a9;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.blog-link:hover {
    gap: 12px;
    color: #d01a7a;
}

/* Pagination */
.pagination .page-link {
    color: var(--text-dark);
    border: 2px solid #e0e0e0;
    padding: 10px 18px;
    margin: 0 5px;
    border-radius: 8px;
    font-weight: 600;
    transition: var(--transition);
}

.pagination .page-link:hover {
    background: #3a49a9;
    color: white;
    border-color: #3a49a9;
}

.pagination .page-item.active .page-link {
    background: #3a49a9;
    border-color: #3a49a9;
}

/* Newsletter Section */
.newsletter-section {
    background: var(--bg-gradient);
}

.newsletter-form .input-group {
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-form .form-control {
    padding: 15px 25px;
    border: none;
    border-radius: 30px 0 0 30px;
    font-size: 16px;
}

.newsletter-form .btn {
    padding: 15px 35px;
    border-radius: 0 30px 30px 0;
    font-weight: 700;
    border: none;
}

/* ==========================================
   BLOG DETAIL PAGE STYLES
   ========================================== */

.blog-detail-header {
    background: white;
    padding: 140px 0 40px;
}

.breadcrumb {
    background: transparent;
    padding: 0;
    margin-bottom: 20px;
}

.breadcrumb-item a {
    color: #3a49a9;
    text-decoration: none;
}

.breadcrumb-item.active {
    color: #999;
}

.article-category {
    display: inline-block;
    background: #3a49a9;
    color: white;
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.article-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 25px 0;
    line-height: 1.2;
}

.article-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid #e0e0e0;
}

.author-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.author-name {
    display: block;
    font-weight: 700;
    color: var(--text-dark);
    font-size: 16px;
}

.author-title {
    display: block;
    color: #999;
    font-size: 14px;
}

.article-stats {
    display: flex;
    gap: 20px;
    color: #999;
    font-size: 14px;
    flex-wrap: wrap;
}

.article-stats i {
    margin-right: 5px;
}

/* Featured Image */
.article-featured-image {
    padding: 40px 0;
    background: white;
}

.article-featured-image img {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

/* Article Content */
.article-content {
    position: relative;
}

.share-sidebar {
    position: sticky;
    top: 150px;
    left: -80px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

.share-label {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    color: #999;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    margin-bottom: 10px;
}

.share-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: var(--transition);
    text-decoration: none;
}

.share-btn.facebook {
    background: #1877f2;
}

.share-btn.twitter {
    background: #1da1f2;
}

.share-btn.linkedin {
    background: #0a66c2;
}

.share-btn.email {
    background: #666;
}

.share-btn:hover {
    transform: scale(1.1);
    color: white;
}

.article-body {
    font-size: 1.1rem;
    line-height: 1.9;
    color: #444;
}

.article-body .lead {
    font-size: 1.3rem;
    font-weight: 500;
    color: #555;
    line-height: 1.8;
    margin-bottom: 35px;
}

.article-body h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-top: 50px;
    margin-bottom: 20px;
}

.article-body h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-top: 40px;
    margin-bottom: 15px;
}

.article-body p {
    margin-bottom: 25px;
}

.article-quote {
    background: #f8f9fa;
    border-left: 4px solid #3a49a9;
    padding: 30px 40px;
    margin: 40px 0;
    font-size: 1.2rem;
    font-style: italic;
    color: var(--text-dark);
    border-radius: 0 10px 10px 0;
}

.article-quote cite {
    display: block;
    margin-top: 15px;
    font-style: normal;
    font-weight: 700;
    color: #3a49a9;
    font-size: 1rem;
}

.article-image {
    text-align: center;
}

.image-caption {
    margin-top: 15px;
    color: #999;
    font-size: 0.95rem;
    font-style: italic;
}

.styled-list {
    list-style: none;
    padding-left: 0;
}

.styled-list li {
    padding-left: 35px;
    position: relative;
    margin-bottom: 20px;
}

.styled-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #3a49a9;
    font-weight: 700;
    font-size: 1.2rem;
}

.key-takeaways {
    background: linear-gradient(135deg, rgba(233, 30, 140, 0.05), rgba(255, 107, 157, 0.05));
    padding: 35px;
    border-radius: 15px;
    border: 2px solid rgba(233, 30, 140, 0.2);
}

.key-takeaways h3 {
    color: #3a49a9;
    font-size: 1.4rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.key-takeaways ul {
    list-style: none;
    padding-left: 0;
}

.key-takeaways li {
    padding-left: 35px;
    position: relative;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.key-takeaways li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #3a49a9;
    font-weight: 700;
    font-size: 1.3rem;
}

/* Tags */
.article-tags {
    padding-top: 30px;
    border-top: 1px solid #e0e0e0;
}

.tag-label {
    font-weight: 700;
    color: var(--text-dark);
    margin-right: 10px;
}

.tag {
    display: inline-block;
    background: #f0f0f0;
    color: var(--text-dark);
    padding: 8px 18px;
    border-radius: 20px;
    margin: 5px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: var(--transition);
}

.tag:hover {
    background: #3a49a9;
    color: white;
}

/* Author Bio */
.author-bio {
    display: flex;
    gap: 25px;
    background: #f8f9fa;
    padding: 35px;
    border-radius: 15px;
}

.author-bio-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.author-bio-content h4 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.author-bio-title {
    color: #3a49a9;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 15px;
}

.author-bio-content p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 15px;
}

.author-social {
    display: flex;
    gap: 10px;
}

.author-social a {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    transition: var(--transition);
}

.author-social a:hover {
    background: #3a49a9;
    color: white;
}

/* Related Posts */
.related-posts {
    background: #f8f9fa;
}

/* Responsive Blog Styles */
@media (max-width: 991px) {
    .featured-content {
        padding: 30px;
    }

    .featured-title {
        font-size: 1.8rem;
    }

    .featured-img {
        min-height: 300px;
    }

    .article-title {
        font-size: 2.2rem;
    }

    .share-sidebar {
        display: none;
    }

    .author-bio {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .author-social {
        justify-content: center;
    }
}

@media (max-width: 767px) {
    .btn-filter {
        padding: 8px 18px;
        font-size: 14px;
    }

    .featured-post-card .row {
        flex-direction: column-reverse;
    }

    .featured-content {
        padding: 25px;
    }

    .featured-title {
        font-size: 1.5rem;
    }

    .featured-img {
        min-height: 250px;
    }

    .blog-image {
        height: 200px;
    }

    .article-title {
        font-size: 1.8rem;
    }

    .article-meta {
        flex-direction: column;
        align-items: flex-start;
    }

    .article-body {
        font-size: 1rem;
    }

    .article-body h2 {
        font-size: 1.6rem;
    }

    .article-body h3 {
        font-size: 1.3rem;
    }

    .article-quote {
        padding: 20px 25px;
        font-size: 1.1rem;
    }

    .newsletter-form .form-control,
    .newsletter-form .btn {
        border-radius: 8px;
    }

    .newsletter-form .input-group {
        flex-direction: column;
    }

    .newsletter-form .btn {
        width: 100%;
        margin-top: 10px;
    }
}

/* ==========================================
   HOMEPAGE ADDITIONAL SECTIONS
   ========================================== */

/* About Us Section */
.about-us-section {
    background: white;
}

.about-us-section .section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    text-align: left;
}

.about-bold-line {
    font-size: 1.2rem;
    font-weight: 500;
    color: #292929;
    margin-bottom: 10px;
    line-height: 1.6;
}

.about-text {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.8;
   
    text-align: left;
}

.about-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 10px;
}

.about-list li {
    padding-left: 35px;
    position: relative;
    margin-bottom: 8px;
    font-size: 1rem;
    color: #555;
    line-height: 1.7;
    text-align: left;
}

.about-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #3a49a9;
    font-weight: 700;
    font-size: 1.4rem;
}

.about-image img {
    border-radius: 20px;
    transition: var(--transition);
}

.about-image img:hover {
    transform: scale(1.02);
}

/* Features Section */
.features-section {
    background: white;
}

.feature-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: var(--transition);
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), #ff6b9d);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2.2rem;
    color: white;
}

.feature-card h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.feature-card p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 0;
}


/* FAQ Section */
.faq-section {
    background: white;
}

.accordion-item {
    border: none;
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.accordion-button {
    background: white;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 1.1rem;
    padding: 20px 25px;
    border: none;
    box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, rgba(233, 30, 140, 0.05), rgba(255, 107, 157, 0.05));
    color: #3a49a9;
}

.accordion-button::after {
    background-image: none;
    content: "+";
    font-size: 1.8rem;
    font-weight: 300;
    width: auto;
    height: auto;
    background-size: auto;
}

.accordion-button:not(.collapsed)::after {
    content: "−";
    transform: none;
}

.accordion-body {
    padding: 20px 25px 25px;
    color: #666;
    line-height: 1.8;
    font-size: 1rem;
}

/* Home Contact Section */
.home-contact-section {
    background: #f8f9fa;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.contact-info-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #6a0dad, #a9167e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    flex-shrink: 0;
}

.contact-info-item h5 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.contact-info-item p {
    color: #666;
    margin-bottom: 0;
    line-height: 1.6;
}

.contact-form-box {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.contact-form-box h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: var(--text-dark);
}

.contact-form-box .form-control,
.contact-form-box .form-select {
    padding: 14px 18px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    transition: var(--transition);
    font-size: 1rem;
}

.contact-form-box .form-control:focus,
.contact-form-box .form-select:focus {
    border-color: #3a49a9;
    box-shadow: 0 0 0 0.2rem rgba(233, 30, 140, 0.1);
}

.contact-form-box textarea.form-control {
    resize: vertical;
}

.contact-form-box .btn-primary {
    padding: 14px 30px;
    font-weight: 700;
    border-radius: 10px;
}

/* CTA Buttons */
.cta-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

/* Responsive Styles for New Sections */
@media (max-width: 991px) {
    .about-us-section .section-title {
        font-size: 2rem;
    }

    .about-bold-line {
        font-size: 1.1rem;
    }

    .about-text {
        font-size: 1rem;
    }

    .about-list li {
        font-size: 0.95rem;
        margin-bottom: 15px;
    }

    .feature-card,
    .testimonial-card {
        margin-bottom: 20px;
    }

    .contact-info-list {
        margin-bottom: 40px;
    }

    .contact-form-box {
        padding: 30px 25px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 767px) {
    .about-us-section .section-title {
        font-size: 1.75rem;
    }

    .about-bold-line {
        font-size: 1rem;
    }

    .about-text {
        font-size: 0.95rem;
    }

    .about-list li {
        font-size: 0.9rem;
        padding-left: 30px;
        margin-bottom: 12px;
    }

    .about-list li::before {
        font-size: 1.2rem;
    }

    .about-image {
        margin-bottom: 30px;
    }

    .feature-icon,
    .contact-info-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .feature-card h4 {
        font-size: 1.3rem;
    }

    .testimonial-rating {
        font-size: 1rem;
    }

    .testimonial-text {
        font-size: 0.95rem;
    }

    .accordion-button {
        font-size: 1rem;
        padding: 15px 20px;
    }

    .accordion-body {
        font-size: 0.95rem;
        padding: 15px 20px 20px;
    }

    .contact-form-box {
        padding: 25px 20px;
    }

    .contact-info-item {
        flex-direction: column;
        text-align: center;
    }
}









/* CSS for Alternative Design  */

.questions-section-alt {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.question-card-overlay {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    min-height: 500px;
    display: flex;
    align-items: flex-end;
    transition: all 0.4s ease;
}

.question-card-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.85) 100%);
    transition: all 0.4s ease;
}

.question-card-overlay:hover::before {
    background: linear-gradient(180deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.95) 100%);
}

.card-overlay-content {
    position: relative;
    z-index: 1;
    padding: 40px;
    width: 100%;
}

.icon-badge {
    width: 70px;
    height: 70px;
    background: #a01485;
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    margin-bottom: 25px;
}

.overlay-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: white;
    margin-bottom: 25px;
    line-height: 1.3;
}

.overlay-list {
    list-style: none;
    padding: 0;
}

.overlay-list li {
    padding-left: 30px;
    position: relative;
    margin-bottom: 12px;
    font-size: 1rem;
    color: rgba(255,255,255,0.95);
    line-height: 1.6;
}

.overlay-list li::before {
    content: "?";
    position: absolute;
    left: 0;
    width: 22px;
    height: 22px;
    background: rgba(255,255,255,0.2);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
}

.bridge-text {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-dark);
    padding: 35px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.btn-discover {
    background: linear-gradient(135deg, var(--primary-color), #ff6b9d);
    color: white;
    padding: 20px 50px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(233, 30, 140, 0.3);
    transition: all 0.4s ease;
}

.btn-discover:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(233, 30, 140, 0.5);
    color: white;
}

@media (max-width: 991px) {
    .question-card-overlay {
        min-height: 450px;
        margin-bottom: 30px;
    }
    
    .card-overlay-content {
        padding: 35px 30px;
    }
    
    .overlay-title {
        font-size: 1.4rem;
    }
}

@media (max-width: 767px) {
    .question-card-overlay {
        min-height: auto;
        padding: 250px 0 0 0;
    }
    
    .card-overlay-content {
        padding: 30px 25px;
    }
    
    .icon-badge {
        width: 60px;
        height: 60px;
        font-size: 1.8rem;
    }
    
    .overlay-title {
        font-size: 1.25rem;
    }
    
    .overlay-list li {
        font-size: 0.9rem;
    }
    
    .bridge-text {
        font-size: 1.15rem;
        padding: 25px;
    }
    
    .btn-discover {
        width: 100%;
        padding: 18px 40px;
    }
}





 /* CSS for Alternative Design */

.fall-short-section-alt {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.bordered-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    border: 3px solid transparent;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    transition: all 0.4s ease;
    height: 100%;
}

.bordered-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-color: #3a49a9;
}

.number-badge {
    position: absolute;
    top: -15px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.3rem;
    color: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.gradient-badge-1 { 
  background: linear-gradient(135deg, #e331ad, #6eafe3); 
}

.gradient-badge-2 { 
  background: linear-gradient(135deg, #e331ad, #8fc3ef); 
}

.gradient-badge-3 { 
  background: linear-gradient(135deg, #c81c95, #e331ad); 
}

.gradient-badge-4 { 
  background: linear-gradient(135deg, #6eafe3, #9fd0f2); 
}

.gradient-badge-5 { 
  background: linear-gradient(135deg, #a9167e, #e331ad); 
}

.gradient-badge-6 { 
  background: linear-gradient(135deg, #8fc3ef, #b7ddf6); 
}

.icon-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    position: relative;
}

.icon-circle i {
    font-size: 2rem;
    color: white;
    position: relative;
    z-index: 1;
}

.gradient-circle-1 { 
  background: #99138a;
}

.gradient-circle-2 { 
  background: #99138a;
}

.gradient-circle-3 { 
  background: #99138a;
}

.gradient-circle-4 { 
 background: #99138a;
}

.gradient-circle-5 { 
 background: #99138a;
}

.gradient-circle-6 { 
  background: #99138a;
}

.bordered-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
    text-align: center;
}

.bordered-text {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.7;
    text-align: center;
}

@media (max-width: 767px) {
    .bordered-card {
        padding: 35px 25px;
    }
    
    .number-badge {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
        top: -12px;
        right: 25px;
    }
    
    .icon-circle {
        width: 70px;
        height: 70px;
    }
    
    .icon-circle i {
        font-size: 1.8rem;
    }
    
    .bordered-title {
        font-size: 1.25rem;
    }
    
    .bordered-text {
        font-size: 0.9rem;
    }
}







/* Updated CSS for Side-by-Side Layout */

.build-success-alt {
    background: white;
}

.growth-section {
    position: relative;
    padding: 40px 30px;
    border-radius: 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    height: 100%;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, #6a0dad, #a9167e);
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 30px;
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.3);
}

.badge-pink {
    background: linear-gradient(135deg, #6a0dad, #a9167e);
    box-shadow: 0 5px 20px rgba(245, 87, 108, 0.3);
}

.horizontal-card {
    display: flex;
    gap: 20px;
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.horizontal-card:hover {
    transform: translateX(5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.h-card-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.8rem;
    color: white;
}

.card-purple .h-card-icon {
    background: #a01485;
}

.card-pink .h-card-icon {
    background: #a01485;
}


.h-card-content h5 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.h-card-content p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .horizontal-card {
        flex-direction: column;
        text-align: center;
    }
    
    .h-card-icon {
        margin: 0 auto;
    }
    
    .growth-section {
        margin-bottom: 30px;
    }
}






.failure-card-single {
    background: white;
    padding: 50px 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.failure-column {
    text-align: center;
}

.failure-icon-small {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), #ff6b9d);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    color: white;
}

.failure-subtitle {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 25px;
}

.failure-list-compact {
    list-style: none;
    padding: 0;
    text-align: left;
}

.failure-list-compact li {
    padding-left: 30px;
    position: relative;
    margin-bottom: 15px;
    font-size: 0.95rem;
    color: #555;
}

.failure-list-compact li::before {
    content: "✗";
    position: absolute;
    left: 0;
    color: #dc3545;
    font-weight: 700;
    font-size: 1.3rem;
}

@media (max-width: 767px) {
    .failure-card-single {
        padding: 35px 25px;
    }
    
    .failure-column {
        margin-bottom: 30px;
    }
    
    .failure-column:last-child {
        margin-bottom: 0;
    }
}

/* ==========================================
   FIXED DISCOVERY BUTTON
   ========================================== */

.fixed-discovery-btn {
    position: fixed;
    right: 0px;
    top: 50%;
    /* transform: translateY(-50%); */
    z-index: 9999;
    transform: rotate(90deg);
    width: 0;
    height: 0;
    overflow: visible;
}

.discovery-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #6a0dad, #a9167e);
    color: white;
    border: none;
    padding: 16px 24px;
    border-radius: 0px 0px 40px 40px;
    font-weight: 700;
    font-size: 1rem;
    box-shadow: -5px 5px 30px rgba(233, 30, 140, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.discovery-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.discovery-btn:hover::before {
    left: 100%;
}

.discovery-btn:hover {
    transform: translateX(-5px);
    box-shadow: -8px 8px 40px rgba(233, 30, 140, 0.6);
  background: linear-gradient(135deg, #e530ad, #6eafe3);
}

.btn-icon {
    font-size: 1.3rem;
    display: flex;
    align-items: center;
}

.btn-text {
    font-family: 'Sohne', sans-serif;
    white-space: nowrap;
}

/* Pulse Animation */
@keyframes pulse {
    0%, 100% {
        box-shadow: -5px 5px 30px rgba(233, 30, 140, 0.4);
    }
    50% {
        box-shadow: -5px 5px 30px rgba(233, 30, 140, 0.8);
    }
}

.discovery-btn {
    animation: pulse 2s ease-in-out infinite;
}

.discovery-btn:hover {
    animation: none;
}

/* ==========================================
   POPUP MODAL
   ========================================== */

.discovery-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    padding: 20px;
}

.discovery-popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Popup Content Box */
.discovery-popup-content {
    background: white;
    border-radius: 30px;
    max-width: 600px;
    width: 100%;
    box-shadow: 0 20px 80px rgba(0, 0, 0, 0.3);
    position: relative;
    transform: scale(0.9) translateY(20px);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.discovery-popup-overlay.active .discovery-popup-content {
    transform: scale(1) translateY(0);
    opacity: 1;
}

/* Close Button */
.popup-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: rgba(233, 30, 140, 0.1);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 1;
}

.popup-close:hover {
    background: rgba(233, 30, 140, 0.2);
    transform: rotate(90deg);
}

.popup-close i {
    font-size: 1.2rem;
    color: #e91e8c;
}

/* Popup Header */
.popup-header {
    text-align: center;
    padding: 50px 40px 30px;
    background: linear-gradient(135deg, rgba(233, 30, 140, 0.05) 0%, rgba(255, 107, 157, 0.05) 100%);
    border-radius: 30px 30px 0 0;
    position: relative;
    overflow: hidden;
}

.popup-header::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(233, 30, 140, 0.1) 0%, transparent 70%);
}

.popup-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #e91e8c 0%, #ff6b9d 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 10px 30px rgba(233, 30, 140, 0.3);
    position: relative;
}

.popup-icon i {
    font-size: 2.5rem;
    color: white;
}

.popup-title {
    font-family: 'Ivar Headline', 'Times New Roman', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.popup-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin: 0;
}

/* Popup Options */
.popup-options {
    padding: 30px 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.popup-option {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.popup-option::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(233, 30, 140, 0.05), transparent);
    transition: left 0.5s ease;
}

.popup-option:hover::before {
    left: 100%;
}

.popup-option:hover {
    border-color: #e91e8c;
    transform: translateX(5px);
    box-shadow: 0 10px 30px rgba(233, 30, 140, 0.15);
}

/* Professional Option Gradient */
.professional-option:hover {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
}

/* Business Option Gradient */
.business-option:hover {
    background: linear-gradient(135deg, rgba(240, 147, 251, 0.05) 0%, rgba(245, 87, 108, 0.05) 100%);
}

.option-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #e91e8c 0%, #ff6b9d 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.popup-option:hover .option-icon {
    transform: scale(1.1) rotate(5deg);
}

.option-icon i {
    font-size: 1.8rem;
    color: white;
}

.option-content {
    flex-grow: 1;
}

.option-title {
    font-family: 'Ivar Headline', 'Times New Roman', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.option-description {
    font-size: 0.95rem;
    color: #666;
    margin: 0;
}

.option-arrow {
    width: 40px;
    height: 40px;
    background: rgba(233, 30, 140, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.popup-option:hover .option-arrow {
    background: #e91e8c;
    transform: translateX(5px);
}

.option-arrow i {
    font-size: 1.1rem;
    color: #e91e8c;
    transition: color 0.3s ease;
}

.popup-option:hover .option-arrow i {
    color: white;
}

/* Popup Footer */
.popup-footer {
    padding: 20px 40px 40px;
    text-align: center;
}

.popup-note {
    font-size: 0.9rem;
    color: #666;
    background: rgba(233, 30, 140, 0.05);
    padding: 12px 20px;
    border-radius: 10px;
    margin: 0;
    display: inline-flex;
    align-items: center;
}

.popup-note i {
    color: #e91e8c;
}

/* ==========================================
   RESPONSIVE STYLES
   ========================================== */

@media (max-width: 991px) {
    .fixed-discovery-btn {
        right: 20px;
    }

    .discovery-btn {
        padding: 14px 20px;
        font-size: 0.95rem;
    }

    .btn-icon {
        font-size: 1.2rem;
    }

    .popup-header {
        padding: 45px 30px 25px;
    }

    .popup-icon {
        width: 70px;
        height: 70px;
    }

    .popup-icon i {
        font-size: 2.2rem;
    }

    .popup-title {
        font-size: 1.75rem;
    }

    .popup-subtitle {
        font-size: 1rem;
    }

    .popup-options {
        padding: 25px 30px;
        gap: 15px;
    }

    .popup-option {
        padding: 20px;
    }

    .option-icon {
        width: 55px;
        height: 55px;
    }

    .option-icon i {
        font-size: 1.6rem;
    }

    .option-title {
        font-size: 1.2rem;
    }

    .option-description {
        font-size: 0.9rem;
    }

    .popup-footer {
        padding: 18px 30px 35px;
    }
}

@media (max-width: 767px) {
  

    .discovery-btn {
        padding: 12px 18px;
        font-size: 0.9rem;
        border-radius: 40px 0 0 40px;
    }

    .btn-icon {
        font-size: 1.1rem;
    }

    .btn-text {
        font-size: 0.85rem;
    }

    .discovery-popup-content {
        border-radius: 25px;
        max-width: 95%;
    }

    .popup-close {
        top: 15px;
        right: 15px;
        width: 35px;
        height: 35px;
    }

    .popup-close i {
        font-size: 1rem;
    }

    .popup-header {
        padding: 40px 25px 20px;
        border-radius: 25px 25px 0 0;
    }

    .popup-icon {
        width: 65px;
        height: 65px;
        margin-bottom: 15px;
    }

    .popup-icon i {
        font-size: 2rem;
    }

    .popup-title {
        font-size: 1.5rem;
    }

    .popup-subtitle {
        font-size: 0.95rem;
    }

    .popup-options {
        padding: 20px 25px;
        gap: 12px;
    }

    .popup-option {
        padding: 18px;
        gap: 15px;
    }

    .option-icon {
        width: 50px;
        height: 50px;
        border-radius: 12px;
    }

    .option-icon i {
        font-size: 1.5rem;
    }

    .option-title {
        font-size: 1.1rem;
    }

    .option-description {
        font-size: 0.85rem;
    }

    .option-arrow {
        width: 35px;
        height: 35px;
    }

    .option-arrow i {
        font-size: 1rem;
    }

    .popup-footer {
        padding: 15px 25px 30px;
    }

    .popup-note {
        font-size: 0.85rem;
        padding: 10px 15px;
    }
}

@media (max-width: 576px) {
    .fixed-discovery-btn {
       right: 0px;
       
    }

    .discovery-btn {
        padding: 10px 15px;
        font-size: 0.85rem;
        border-radius: 0px 0px 30px 30px;
    }

    .btn-text {
        font-size: 0.8rem;
    }

    .popup-header {
        padding: 35px 20px 18px;
    }

    .popup-icon {
        width: 60px;
        height: 60px;
    }

    .popup-icon i {
        font-size: 1.8rem;
    }

    .popup-title {
        font-size: 1.35rem;
    }

    .popup-subtitle {
        font-size: 0.9rem;
    }

    .popup-options {
        padding: 18px 20px;
    }

    .popup-option {
        padding: 15px;
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }

    .option-title {
        font-size: 1.05rem;
    }

    .option-description {
        font-size: 0.8rem;
    }

    .option-arrow {
        display: none;
    }

    .popup-footer {
        padding: 12px 20px 25px;
    }
}

/* ==========================================
   ANIMATIONS
   ========================================== */

@keyframes slideInFromRight {
    from {
        transform: translateX(100px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.fixed-discovery-btn {
    animation: slideInFromRight 0.8s ease-out;
}

@media (max-width: 768px) {
    .fixed-discovery-btn {
        animation: none !important;
       
    }
}

@keyframes popIn {
    0% {
        transform: scale(0.5);
        opacity: 0;
    }
    70% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.discovery-popup-overlay.active .popup-icon {
    animation: popIn 0.5s ease-out 0.2s backwards;
}

@keyframes fadeInUp {
    from {
        transform: translateY(20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.discovery-popup-overlay.active .popup-option:nth-child(1) {
    animation: fadeInUp 0.4s ease-out 0.3s backwards;
}

.discovery-popup-overlay.active .popup-option:nth-child(2) {
    animation: fadeInUp 0.4s ease-out 0.4s backwards;
}

/* ==========================================
   MOBILE FIX - PREVENT HORIZONTAL SCROLL
   ========================================== */
html, body {
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
}

/* Ensure all full-width elements don't overflow */
.container, .container-fluid, .container-lg, .container-md, 
.container-sm, .container-xl, .container-xxl {
    max-width: 100%;
    width: 100%;
}

/* Fix for fixed elements on mobile */
@media (max-width: 768px) {
    .top-banner, .main-header {
        width: 100%;
        max-width: 100vw;
        left: 0;
        right: auto;
    }
    
    body {
        position: relative;
        width: 100%;
        max-width: 100vw;
        overflow-x: hidden;
    }
    
   
    /* Prevent navbar collapse from causing horizontal scroll */
    .navbar-collapse {
        max-width: 100%;
        width: 100%;
    }
}