/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    display: none;
    align-items: flex-start;
    padding: 20px;
    max-width: 400px;
    z-index: 1000;
}

.cookie-icon {
    font-size: 24px;
    margin-right: 15px;
    margin-top: 5px;
}

.cookie-content h3 {
    margin-bottom: 8px;
    font-size: 18px;
    color: #333;
}

.cookie-content p {
    margin-bottom: 15px;
    font-size: 14px;
    line-height: 1.4;
    color: #666;
}

.cookie-policy-link {
    color: #d4af37;
    text-decoration: none;
    font-weight: bold;
}

.cookie-buttons {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.btn-cookie {
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    font-size: 12px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-cookie.accept {
    background: #d4af37;
    color: white;
}

.btn-cookie.reject {
    background: transparent;
    color: #333;
    border: 1px solid #ddd;
}

.btn-cookie:hover {
    transform: translateY(-2px);
}

/* Thank You Modal */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1001;
}

.modal-content {
    background: #d4af37;
    border-radius: 12px;
    padding: 40px;
    text-align: center;
    max-width: 400px;
    width: 90%;
}

.application-status {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    margin-bottom: 20px;
}

.modal-content h2 {
    color: white;
    font-size: 24px;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.thank-message {
    color: white;
    font-size: 18px;
    margin-bottom: 30px;
}

.btn-return {
    background: white;
    color: #333;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-return:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Header */
.header {
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo h1 {
    font-size: 24px;
    color: #333;
    font-weight: bold;
}

.nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #d4af37;
}

.cart-icon {
    font-size: 20px;
    cursor: pointer;
}

/* Hero Section */
.hero {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.hero-title {
    font-size: 48px;
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
    text-align: center;
}

.hero-subtitle {
    font-size: 18px;
    color: #666;
    text-align: center;
    margin-bottom: 50px;
}

.books-showcase {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 40px;
    margin-bottom: 40px;
}

.featured-book {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.book-image {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.book-cover {
    width: 120px;
    height: 160px;
    border-radius: 8px;
    margin-right: 20px;
}

.main-book {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    position: relative;
}

.main-book::after {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    border: 2px solid white;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 3px,
        rgba(255, 255, 255, 0.1) 3px,
        rgba(255, 255, 255, 0.1) 6px
    );
}

.book-label {
    font-size: 20px;
    font-weight: bold;
    color: #333;
}

.book-description {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.book-price {
    font-size: 24px;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
}

.btn-add-cart {
    background: #4dabf7;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-add-cart:hover {
    background: #339af0;
    transform: translateY(-2px);
}

.recommended-books {
   display: grid;
   grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.book-item {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 10px;
}

.book-item .book-cover {
    width: 60px;
    height: 80px;
    margin-right: 15px;
}

.book-productivity {
    background: linear-gradient(135deg, #4dabf7 0%, #339af0 100%);
}

.book-marketing {
    background: linear-gradient(135deg, #51cf66 0%, #40c057 100%);
}

.book-innovative {
    background: linear-gradient(135deg, #ff8cc8 0%, #ff6b9d 100%);
}

.book-info h4 {
    font-size: 14px;
    margin-bottom: 5px;
    color: #333;
}

.price {
    font-size: 16px;
    font-weight: bold;
    color: #333;
}

.btn-bestsellers {
    background: #d4af37;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 6px;
    font-weight: bold;
    font-size: 16px;
    cursor: pointer;
    display: block;
    margin: 0 auto;
    transition: all 0.3s ease;
}

.btn-bestsellers:hover {
    background: #b8941f;
    transform: translateY(-2px);
}

/* Categories Section */
.categories {
    padding: 80px 0;
    background: white;
}

.section-title {
    font-size: 36px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 50px;
    color: #333;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.category-item {
    text-align: center;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.category-item:hover {
    transform: translateY(-5px);
}

.category-image {
    width: 100%;
    height: 200px;
    border-radius: 12px;
    margin-bottom: 15px;
    position: relative;
}

.category-business {
    background: linear-gradient(135deg, #4dabf7 0%, #339af0 100%);
}

.category-leadership {
    background: linear-gradient(135deg, #d4af37 0%, #b8941f 100%);
}

.category-mindset {
    background: linear-gradient(135deg, #51cf66 0%, #40c057 100%);
}

.category-strategy {
    background: linear-gradient(135deg, #845ef7 0%, #7048e8 100%);
}

.category-label {
    font-size: 18px;
    font-weight: bold;
    color: #333;
}

/* Authors Section */
.authors {
    padding: 80px 0;
    background: #f8f9fa;
    background-image: url(./img/img1.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
   
}
.authors::after{
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: #ffffff7c;
}
.authors-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}
.section-title{
     position: relative;
    z-index: 2;
}
.quote-section {
    padding: 40px;
}

.quote-section blockquote {
    font-size: 24px;
    line-height: 1.6;
    color: #333;
    font-style: italic;
    margin-bottom: 20px;
}

.quote-section cite {
    font-size: 16px;
    color: #666;
    font-style: normal;
}

.authors-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.author-item {
    text-align: center;
}

.author-image {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin: 0 auto 15px;
}

.author-robert {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
}

.author-emma {
    background: linear-gradient(135deg, #ff8cc8 0%, #ff6b9d 100%);
}

.author-david {
    background: linear-gradient(135deg, #51cf66 0%, #40c057 100%);
}

.author-sarah {
    background: linear-gradient(135deg, #845ef7 0%, #7048e8 100%);
}

.author-item h4 {
    font-size: 18px;
    color: #333;
    margin-bottom: 5px;
}

.author-item p {
    color: #666;
    font-size: 14px;
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background: white;
}

.section-subtitle {
    text-align: center;
    color: #666;
    font-size: 18px;
    margin-bottom: 50px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-item {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #e9ecef;
}

.stars {
    font-size: 16px;
    margin-bottom: 15px;
}

.testimonial-item h4 {
    font-size: 18px;
    color: #333;
    margin-bottom: 5px;
}

.role {
    color: #666;
    font-size: 14px;
    margin-bottom: 15px;
}

.testimonial-text {
    color: #333;
    line-height: 1.6;
    font-size: 14px;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: #4dabf7;
    color: white;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.contact-left {
    text-align: center;
}

.contact-graphic {
    background: #339af0;
    padding: 60px 40px;
    border-radius: 12px;
}

.star-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.contact-graphic p {
    font-size: 18px;
    line-height: 1.6;
}

.contact-right h2 {
    font-size: 32px;
    margin-bottom: 15px;
}

.contact-right > p {
    margin-bottom: 30px;
    font-size: 16px;
    opacity: 0.9;
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 12px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    color: #333;
    font-weight: bold;
    font-size: 14px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    color: #333;
}

.form-group textarea {
    min-height: 100px;
    resize: vertical;
}

.btn-submit {
    background: #4dabf7;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 6px;
    font-weight: bold;
    font-size: 16px;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: #339af0;
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background: #333;
    color: white;
    padding: 40px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.footer-logo h3 {
    font-size: 24px;
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #d4af37;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #444;
    color: #999;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .books-showcase {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .recommended-books {
        flex-direction: row;
        overflow-x: auto;
        gap: 15px;
    }
    
    .book-item {
        min-width: 250px;
    }
    
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .authors-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .book-image img{
        width: 100%;
    }
    .recommended-books{
        grid-template-columns: 1fr;
    }
    .container {
        padding: 0 15px;
    }
    
    .header .container {
        flex-direction: column;
        gap: 15px;
    }
    
    .nav {
        gap: 20px;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .authors-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .cookie-banner {
        left: 10px;
        right: 10px;
        max-width: none;
    }
    
    .modal-content {
        margin: 20px;
        padding: 30px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 40px 0;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .featured-book {
        padding: 20px;
    }
    
    .book-image {
        flex-direction: column;
        text-align: center;
    }
    
    .book-cover {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .recommended-books {
        flex-direction: column;
    }
    
    .book-item {
        min-width: auto;
    }
    
    .contact-form {
        padding: 20px;
    }
    
    .nav {
        flex-wrap: wrap;
        justify-content: center;
    }
}
.text h1 {
    
    color: #000;
text-align: center;
font-size: 60px;
font-style: normal;
font-weight: 500;
line-height: normal;
text-transform: uppercase;
padding-block: 40px;
padding-top: 150px;

}
.text p {
    color: #000;

font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: normal;padding-bottom: 50px;
}