/* ===================================
   CSS Variables & Design Tokens
   =================================== */
:root {
    /* Colors */
    --primary-color: #6366f1;
    --primary-dark: #4f46e5;
    --primary-light: #818cf8;
    --secondary-color: #f59e0b;
    --accent-color: #ec4899;

    --dark-bg: #0f172a;
    --dark-bg-secondary: #1e293b;
    --light-bg: #f8fafc;
    --light-bg-secondary: #f1f5f9;

    --text-primary: #1e293b;
    --text-secondary: #64748b;
    --text-light: #94a3b8;
    --text-third: #fff;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-secondary: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --gradient-hero: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    --gradient-dark: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);

    /* Typography */
    --font-primary: 'Roboto', sans-serif;
    --font-display: 'Poppins', sans-serif;

    /* Spacing */
    --section-padding: 100px 0;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.2);

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* ===================================
   Global Styles
   =================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-primary);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.3;
    color: var(--text-primary);
}

a {
    text-decoration: none;
    transition: var(--transition-base);
}

img {
    max-width: 100%;
    height: auto;
}

.section-padding {
    padding: var(--section-padding);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
}

/* ===================================
   Navigation
   =================================== */
.navbar {
    padding: 1.5rem 0;
    transition: all var(--transition-base);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    box-shadow: var(--shadow-md);
}

.navbar-brand {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff !important;
    transition: var(--transition-base);
}

.navbar-brand:hover {
    color: var(--primary-light) !important;
    transform: translateY(-2px);
}

.navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.9) !important;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    margin: 0 0.25rem;
    position: relative;
    transition: var(--transition-base);
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-light);
    transition: var(--transition-base);
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover {
    color: #fff !important;
}

.navbar-nav .nav-link:hover::after {
    width: 80%;
}

/* ===================================
   Hero Section
   =================================== */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    color: #fff;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-hero);
    z-index: -1;
}

.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(100px, 100px);
    }
}

.hero-background::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: float 15s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    50% {
        transform: translate(-100px, -100px) rotate(180deg);
    }
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease;
    color: #a7a7a7;
    /* text-shadow: 0px 2px 10px #5b5b5b; */
}

.hero-subtitle {
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease 0.2s both;
}

.subtitle-item {
    display: inline-block;
    padding: 0.25rem 0;
}

.separator {
    margin: 0 0.75rem;
    opacity: 0.6;
}

.hero-tagline {
    font-size: 1.5rem;
    line-height: 1.6;
    opacity: 0.95;
    animation: fadeInUp 1s ease 0.4s both;
}

.hero-buttons {
    animation: fadeInUp 1s ease 0.6s both;
}

.hero-buttons .btn {
    margin: 0.5rem;
    padding: 0.875rem 2rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all var(--transition-base);
}

.hero-buttons .btn-primary {
    background: #fff;
    color: var(--primary-color);
    border: none;
    box-shadow: var(--shadow-lg);
}

.hero-buttons .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

.hero-buttons .btn-outline-light {
    border: 2px solid #fff;
    color: #fff;
}

.hero-buttons .btn-outline-light:hover {
    background: #fff;
    color: var(--primary-color);
    transform: translateY(-3px);
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2rem;
    color: #fff;
    animation: bounce 2s infinite;
}
.contain-back{
    background: #e6e6e6;
}
.head-bold{
    font-weight: 700;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(-10px);
    }

    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===================================
   About Section
   =================================== */
.about-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.about-image-placeholder {
    aspect-ratio: 1;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10rem;
    color: rgba(255, 255, 255, 0.3);
}

.about-card {
    background: #fff;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.about-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.about-card-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: #fff;
    margin-bottom: 1.5rem;
}

.about-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.about-card p {
    color: var(--text-secondary);
    margin: 0;
}

/* ===================================
   Featured Book Section
   =================================== */
.book-cover-wrapper {
    perspective: 1000px;
}

.book-cover {
    position: relative;
    width: 100%;
    max-width: 350px;
    aspect-ratio: 2/3;
    margin: 0 auto;
    transform-style: preserve-3d;
    transition: transform 0.6s ease;
}

.book-cover:hover {
    transform: rotateY(-15deg) rotateX(5deg);
}

.book-spine {
    position: absolute;
    left: 0;
    top: 0;
    width: 40px;
    height: 100%;
    background: linear-gradient(90deg, #4f46e5 0%, #6366f1 100%);
    transform: rotateY(-90deg);
    transform-origin: left;
}

.book-front {
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 8px;
    box-shadow: var(--shadow-xl);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    color: #fff;
}

.book-front h3 {
    font-size: 2.5rem;
    color: #fff;
    text-align: center;
    margin-bottom: 1rem;
}

.book-author {
    font-size: 1.25rem;
    opacity: 0.9;
}

/* ===================================
   Insight Cards
   =================================== */
.thought-container{
    background:#F8F9FA ;

    
}
.section-title{
    color: #1E293B;
}
.thought-p{
    color: #1E293B;
}
  .insight-card {
    background:#fff;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 2rem;
    transition: all var(--transition-base);
    height: 100%;
}

.insight-card:hover {
    background:#fff;
    color: #fff;
    transform: translateY(-8px) scale(1.05);
    box-shadow: var(--shadow-xl);
   
}

.insight-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #fff;
    margin-bottom: 1.5rem;
}

.insight-card h3 {
    color: #1E293B;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.insight-card p {
    color: #1E293B;
    margin-bottom: 1.5rem;
}
.btn-insight{
    background:#0D6EFD ;
    color: #fff;
}
.btn-insight:hover{
    background:#034ec0 ;
    color: #fff;
}
.card-link {
    color: #1E293B;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition-base);
}

.card-link:hover {
    color: #fff;
    gap: 1rem;
}

/* ===================================
   Stats Cards
   =================================== */
.stat-card {
    background: #fff;
    padding: 2.5rem 1.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: all var(--transition-base);
}

.stat-card:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: var(--shadow-xl);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: 600;
}

/* ===================================
   Category & Wisdom Cards
   =================================== */
.category-card {
    background: #fff;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: all var(--transition-base);
    height: 100%;
    border: 2px solid transparent;
}

.category-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.category-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.category-card h4 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.category-card p {
    color: var(--text-secondary);
    margin: 0;
    font-size: 0.95rem;
}

.wisdom-series {
    background: #fff;
    padding: 3rem 0;
    border-radius: 20px;
}

.wisdom-card {
    background: #fff;
    padding: 2rem 1.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: all var(--transition-base);
     height: 100%;
    border: 2px solid transparent;
}


.wisdom-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.wisdom-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.wisdom-card h5 {
    font-size: 1.125rem;
    margin: 0;
}

/* ===================================
   Book Cards
   =================================== */
.book-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    overflow: hidden;
    transition: all var(--transition-base);
    height: 100%;
    border: 2px solid transparent;
}

.book-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.book-card.featured {
    border-color: var(--primary-color);
}

.book-card-header {
    padding: 1rem 1.5rem;
    background: var(--light-bg);
}

.book-card-body {
    padding: 2rem;
}

.book-card h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.book-description {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.book-features {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.book-features li {
    padding: 0.5rem 0;
    color: var(--text-secondary);
}

.book-features i {
    color: var(--primary-color);
    margin-right: 0.75rem;
}

.book-card.upcoming {
    background: var(--light-bg);
}

/* ===================================
   Industry Cards
   =================================== */
.industry-card {
    background: #fff;
    padding: 1rem;
    border-radius: 10px;
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: all var(--transition-base);
    height: 100%;
}

.industry-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.industry-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: #fff;
    margin: 0 auto 1.5rem;
}

.industry-card h4 {
    font-size: 1.5rem;
    margin: 1rem;
}

.industry-card p {
    color: var(--text-secondary);
    margin: 0;
}

/* ===================================
   Speaking Cards
   =================================== */
  .back-speak{
    background: #F8F9FA;
  }
  
   .speaking-card {
    background:#fff;
    color: #1E293B;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 2.5rem;
    transition: all var(--transition-base);
    box-shadow: var(--shadow-md);
}
h2 > .section-title {
    color:#1E293B ;
}
 p > .section-subtitle{
    color:#1E293B ;
 }
.speaking-card:hover {
    background: #fff;
    transform: translateY(-8px) scale(1.05);
    box-shadow: var(--shadow-xl);
}

.speaking-card h3 {
    color: #1E293B;
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
}

.speaking-card h3 i {
    margin-right: 0.75rem;
    color: var(--secondary-color);
}

.speaking-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.speaking-list li {
    padding: 0.75rem 0;
    color: #1E293B;
    font-size: 1.125rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.speaking-list li:last-child {
    border-bottom: none;
}
.speaking-list li::before {
  
    content: '→';
    margin-right: 1rem;
    color: #1E293B;
  }




/* ===================================
   Resource Cards
   =================================== */
.resource-card {
    background: #fff;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: all var(--transition-base);
    height: 100%;
}

.resource-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.resource-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: #fff;
    margin: 0 auto 1.5rem;
}

.resource-card h4 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.resource-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
    text-align: left;
}

.resource-card ul li {
    padding: 0.5rem 0;
    color: var(--text-secondary);
}

.resource-card ul li::before {
    content: '✓';
    color: var(--primary-color);
    font-weight: bold;
    margin-right: 0.75rem;
}

/* ===================================
   Solution Cards
   =================================== */
.solution-card {
    background: #fff;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    height: 100%;
}

.solution-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.solution-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 1.5rem;
}

.solution-card h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.solution-card p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.solution-features {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.solution-features li {
    padding: 0.75rem 0;
    color: var(--text-secondary);
}

.solution-features li::before {
    content: '→';
    color: var(--primary-color);
    font-weight: bold;
    margin-right: 0.75rem;
}

/* ===================================
   Contact & Newsletter
   =================================== */
.contact-info {
    margin-top: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-item i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-top: 0.25rem;
}

.contact-item h5 {
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
}

.contact-item p {
    color: var(--text-secondary);
    margin: 0;
}

.contact-form .form-control {
    padding: 0.875rem 1.25rem;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    transition: var(--transition-base);
}

.contact-form .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.newsletter-box {
    background: var(--gradient-primary);
    padding: 3rem;
    border-radius: 20px;
    color: #fff;
    box-shadow: var(--shadow-xl);
}

.newsletter-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto 2rem;
}

.newsletter-box h2 {
    color: #fff;
}

.newsletter-benefits {
    margin: 2rem 0;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.95);
}

.benefit-item i {
    color: var(--secondary-color);
    font-size: 1.25rem;
}

.newsletter-form .form-control {
    padding: 1rem 1.5rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    transition: var(--transition-base);
}

.newsletter-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.newsletter-form .form-control:focus {
    background: rgba(255, 255, 255, 0.2);
    border-color: #fff;
    color: #fff;
}

/* ===================================
   Footer
   =================================== */
.footer {
    background: var(--dark-bg);
    color: rgba(255, 255, 255, 0.8);
    padding: 4rem 0 2rem;
}

.footer h4,
.footer h5 {
    color: #fff;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition-base);
}

.footer-links a:hover {
    color: #fff;
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.25rem;
    transition: var(--transition-base);
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

/* ===================================
   Utility Classes
   =================================== */
.bg-gradient {
    background: var(--gradient-primary);
}

.bg-light {
    background: var(--light-bg);
}

/* ===================================
   Responsive Design
   =================================== */
@media (max-width: 991px) {
    .hero-title {
        font-size: 3rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .hero-tagline {
        font-size: 1.25rem;
    }
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .subtitle-item {
        display: block;
    }

    .separator {
        display: none;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .newsletter-box {
        padding: 2rem;
    }
}