/* Global Styles */
:root {
    --primary-yellow: #dad20d;
    --secondary-yellow: #f7e95c;
    --dark-text: #000;
    --light-text: #fff;
    --gray-bg: #f0f0f0;
}

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

.nav-link{
    background-color: #f7e95c;
    border-radius: 30px;
    padding: 10px;
    
} 
    
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Top Bar */
.top-bar {
    padding: 10px 0;
}

.social-icons a {
    color: var(--dark-text);
    margin-right: 15px;
    font-size: 18px;
}

.logo {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 0;
}

.tagline {
    font-size: 14px;
    margin-top: 0;
}

.chess-piece {
    height: 30px;
    margin-left: 5px;
}

.chess-piece-small {
    height: 78px;
    margin-left: -25px;
}

.contact-info p {
    margin-bottom: 5px;
    font-size: 14px;
}

/* Navigation */
.navbar {
    background-color: var(--primary-yellow);
    padding: 0;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.navbar-nav .nav-link {
    color: var(--dark-text);
    font-weight: bold;
    padding: 15px 20px;
    text-transform: uppercase;
}

.navbar-nav .nav-link.active {
    background-color: var(--secondary-yellow);
}


/* Hero Section */
.hero-section {
    padding: 0px 0;
}

.hero-title {
    font-style: italic;
    font-size: 24px;
    margin-bottom: 20px;
}

.product-title {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 30px;
}

.buy-now-btn {
    background-color: var(--primary-yellow);
    color: var(--dark-text);
    border: none;
    padding: 10px 20px;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
}

.buy-now-btn-sm {
    background-color: var(--primary-yellow);
    color: var(--dark-text);
    border: none;
    padding: 8px 15px;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    display: block;
    margin: 10px auto;
}

.whatsapp-icon {
    position: absolute;
    left: 20px;
    background-color: #25D366;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    padding: 25px;
    text-decoration: none;
}

.hero-image {
    max-width: 100%;
    height: 500px;
    /* box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1); */
}

/* Gallery Section */
.gallery-section {
    padding: 50px 0;
    background-color: white;
}

.section-title {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 30px;
    text-align: center;
}

/* Shop Section */
.shop-section {
    background-color: #fffa98 !important;
    position: relative;
}

.product-card {
    background-color: white;
    padding: 20px;
    border-radius: 5px;
    margin-bottom: 20px;
    text-align: center;
}

.carousel-indicators {
    position: static;
    margin-top: 20px;
}

.carousel-indicators button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #888;
    margin: 0 5px;
}

.carousel-indicators button.active {
    background-color: var(--dark-text);
}

/* Specimen Section */
.specimen-section {
    background-color: var(--primary-yellow);
    padding: 50px 0;
    position: relative;
}

.specimen-form {
    background-color: white;
    padding: 30px;
    border-radius: 5px;
}

.form-control {
    border: 1px solid #ddd;
    padding: 10px;
    margin-bottom: 15px;
}

.submit-btn {
    background-color: #89af0b !important;
    color: white;
    border: none;
    padding: 10px 20px;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
}

/* Bulk Section */
.bulk-section {
    background-color: var(--primary-yellow);
    padding: 50px 0;
    position: relative;
}

.bulk-form {
    background-color: white;
    padding: 30px;
    border-radius: 5px;
}

.bulk-info {
    padding: 20px;
}

.bulk-info h3 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
}

.bulk-images {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.chess-character {
    height: 150px;
    margin-right: 20px;
}

.bulk-books {
    height: 150px;
}

/* Testimonials Section */
.testimonials-section {
    padding: 50px 0;
    background-color: white;
}

.testimonial-card {
    background-color: #f5f5f5;
    border-radius: 5px;
    display: flex;
    flex-direction: column;
}

.stars {
    color: gold;
    margin-bottom: 5px;
}

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

.testimonial-footer {
    font-style: italic;
}

/* Footer */
.footer {
    background-color: #403f3b;
    color: #fff;
    padding: 50px 0;
}

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

.footer-links a {
    color: #fff;
    text-decoration: none;
}

.footer-links p {
    margin-bottom: 10px;
}

.footer-address h4 {
    margin-bottom: 15px;
}
.text-end-text{
    text-align: end;
}
/* Responsive Styles */
@media (max-width: 768px) {
    .top-bar .col-md-4 {
        text-align: center;
        margin-bottom: 10px;
    }
    
    .contact-info {
        text-align: center;
    }
    
    .hero-section {
        text-align: center;
    }
    
    .hero-image {
        margin-top: 30px;
    }
    
    .whatsapp-icon {
        position: fixed;
        bottom: 20px;
        left: 20px;
        z-index: 1000;
    }
    
    .testimonial-card {
        height: auto;
    }
    
    .bulk-images {
        flex-direction: column;
        align-items: center;
    }
    
    .chess-character {
        margin-right: 0;
        margin-bottom: 20px;
    }
    
    .footer-logo, .footer-links, .footer-address {
        text-align: center;
        margin-bottom: 30px;
    }
}

@media (max-width: 576px) {
    .carousel-item .row .col-md-3,
    .carousel-item .row .col-md-4 {
        margin-bottom: 20px;
    }
    .text-end-text{
        text-align: left;
    }
}
#sidebarMenu{
    display: none;
}
#gallery-carousel .item img{
    border-radius: 5px;
}
.owl-carousel .owl-item img{
    border-radius: 5px;
}
@media (max-width: 576px) {
    #sidebarMenu{
        display: block;
    }
    .specimen-form{
        margin-bottom: 30px;
    }
    .hero-image {
        max-width: 100%;
        height: 300px;
        /* box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1); */
    }  
}
.product-card {
    background-color: #fff;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 20px;
  }
  .card {
    border: 1px solid #eee;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  }
  
  .card img {
    padding: 10px;
    height: 300px;
    width: 100%;
  }
    
 
  .owl-nav {
    display: flex !important;
    justify-content: space-between;
    position: absolute;
    width: 100%;
    top: 35%;
    transform: translateY(-50%);
    padding: 0 10px;
    z-index: 1000;
  }

  .owl-nav button.owl-prev,
  .owl-nav button.owl-next {
    background-color: #333;
    color: #fff;
    border: none;
    padding: 10px 15px;
    font-size: 18px;
    border-radius: 50%;
    opacity: 0.8;
  }

  .owl-nav button:hover {
    background-color: #000;
  }

  .owl-dots {
    text-align: center;
    margin-top: 15px;
  }

  .owl-dot span {
    width: 12px;
    height: 12px;
    background: #ccc;
    border-radius: 50%;
    display: inline-block;
    margin: 5px;
  }

  .owl-dot.active span {
    background: #333;
  }

  /* Positioning relative to carousel container */
  .owl-carousel {
    position: relative;
  }
.owl-next{
    font-size: 30px !important;
}
.owl-prev{
    font-size: 30px !important;
}
/* .owl-dots {
    display: flex !important;
    justify-content: center;
    margin-top: 15px;
  } */
  .owl-nav {
    display: flex !important;
    justify-content: space-between;
    position: absolute;
    width: 100%;
    top: 35%;
    transform: translateY(-50%);
    padding: 0 0px;
    z-index: 1000;
}

.typewriter {
    display: inline-block;
    overflow: hidden;
    border-right: 0.15em solid orange; /* Cursor effect */
    white-space: nowrap;
    letter-spacing: 0.15em;
    animation: typing 3.5s steps(30, end), blink-caret 0.75s step-end infinite;
  }
  
  /* Typing effect */
  @keyframes typing {
    from { width: 0 }
    to { width: 100% }
  }
  
  /* Blinking cursor */
  @keyframes blink-caret {
    from, to { border-color: transparent }
    50% { border-color: orange; }
  }
  
