:root {
    --saffron: #FF9933;
    --saffron-light: #FFB366;
    --saffron-dark: #E88822;
    --white: #FFFFFF;
    --text-dark: #333333;
    --text-light: #666666;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    top: 0 !important;
}

/* Header and Navigation */
header {
    background-color: var(--saffron);
    padding: 1rem 2rem;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    gap: 1.5rem;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    transition: opacity 0.3s ease;
    min-width: fit-content;
}

.logo-container:hover {
    opacity: 0.9;
}

.logo-img {
    height: 60px;
    width: auto;
    border-radius: 4px;
}

.website-name-container {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.website-name-top {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--white);
    margin: 0;
    white-space: nowrap;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
    line-height: 1.2;
}

.website-name-bottom {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--white);
    margin: 0;
    white-space: nowrap;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
    line-height: 1.2;
}

.search-container {
    flex: 1;
    max-width: 300px;
    display: flex;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: 25px;
    padding: 0.5rem 1rem;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    margin: 0 1rem;
}

.search-container:focus-within {
    border-color: var(--saffron-dark);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.search-icon {
    color: var(--saffron);
    font-size: 1rem;
    margin-right: 0.5rem;
}

.search-input {
    flex: 1;
    border: none;
    outline: none;
    padding: 0.5rem;
    font-size: 0.9rem;
    background: transparent;
    color: var(--text-dark);
}

.search-input::placeholder {
    color: var(--text-light);
}

.search-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    color: var(--saffron);
    font-size: 1rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-btn:hover {
    color: var(--saffron-dark);
    transform: translateX(2px);
}

.nav-links {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    white-space: nowrap;
    margin-left: auto;
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 4px;
}

.nav-links a i {
    font-size: 1.1rem;
}

.nav-links a:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.nav-links a.active {
    background-color: var(--white);
    color: var(--saffron);
    font-weight: 600;
}

.translate-btn {
    display: none !important;
}

/* Slider Styles */
.slider {
    position: relative;
    width: 100%;
    height: 500px;
    margin-top: 80px;
    overflow: hidden;
}

.slides {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease-in-out;
}

.slide.active {
    opacity: 1;
    pointer-events: auto;
    z-index: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.6));
    z-index: 1;
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--white);
    width: 80%;
    max-width: 800px;
    z-index: 2;
}

.slide-content h2 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.slide-content p {
    font-size: 1.4rem;
    margin-bottom: 2rem;
    color: var(--white);
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.slide-btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: var(--saffron);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 2px solid var(--saffron);
}

.slide-btn:hover {
    background-color: transparent;
    border-color: var(--white);
}

/* Navigation Buttons */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    z-index: 3;
    transition: background 0.3s ease;
}

.slider-btn:hover {
    background: var(--saffron);
}

.prev-btn {
    left: 20px;
}

.next-btn {
    right: 20px;
}

/* Dots */
.dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 3;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot:hover {
    background: rgba(255, 255, 255, 0.8);
}

.dot.active {
    background: var(--white);
    transform: scale(1.2);
}

/* Responsive Slider */
@media (max-width: 992px) {
    .slider {
        height: 450px;
    }

    .slide-content h2 {
        font-size: 2.8rem;
    }

    .slide-content p {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .slider {
        height: 400px;
        margin-top: 70px;
    }

    .slide-content h2 {
        font-size: 2.2rem;
    }

    .slide-content p {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }

    .slide-btn {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }

    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
}

@media (max-width: 576px) {
    .slider {
        height: 350px;
    }

    .slide-content h2 {
        font-size: 1.8rem;
    }

    .slide-content p {
        font-size: 1rem;
        margin-bottom: 1.2rem;
    }

    .slide-btn {
        padding: 0.7rem 1.8rem;
        font-size: 0.9rem;
    }

    .dot {
        width: 10px;
        height: 10px;
    }
}

/* Main Content */
main {
    margin-top: 80px;
}

.hero {
    background-color: var(--saffron-light);
    color: var(--white);
    text-align: center;
    padding: 4rem 2rem;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

/* Sections */
section {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

section h2 {
    text-align: center;
    color: var(--saffron);
    margin-bottom: 2rem;
    font-size: 2rem;
}

/* Grid Layouts */
.books-grid, .items-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    padding: 1rem;
    min-height: 200px;
}

.no-results {
    grid-column: 1 / -1;
    text-align: center;
    padding: 2rem;
    color: var(--text-light);
    font-size: 1.1rem;
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Cards */
.book-card, .item-card {
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.book-card:hover, .item-card:hover {
    transform: translateY(-5px);
}

.book-card img, .item-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.book-card:hover img, .item-card:hover img {
    transform: scale(1.05);
}

.book-card h3, .item-card h3 {
    padding: 1rem;
    color: var(--saffron);
    margin: 0;
}

.book-card p, .item-card p {
    padding: 0 1rem;
    color: var(--text-light);
    margin: 0;
    flex-grow: 1;
}

.buy-btn {
    display: block;
    width: 90%;
    margin: 1rem auto;
    padding: 0.8rem;
    background-color: var(--saffron);
    color: var(--white);
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.buy-btn:hover {
    background-color: var(--saffron-dark);
}

/* Footer */
footer {
    background-color: var(--saffron);
    color: var(--white);
    text-align: center;
    padding: 1rem;
    margin-top: 2rem;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .website-name-top {
        font-size: 1.2rem;
    }
    .website-name-bottom {
        font-size: 1rem;
    }
}

@media (max-width: 992px) {
    .search-container {
        max-width: 250px;
    }
}

@media (max-width: 768px) {
    nav {
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .logo-container {
        flex: 0 0 auto;
    }
    
    .logo-img {
        height: 50px;
    }
    
    .website-name-top {
        font-size: 1rem;
    }
    
    .website-name-bottom {
        font-size: 0.9rem;
    }
    
    .search-container {
        order: 3;
        max-width: 100%;
        margin: 0.5rem 0;
    }
    
    .nav-links {
        order: 2;
        margin-left: 0;
        gap: 0.5rem;
    }
    
    .nav-links a {
        font-size: 0.9rem;
        padding: 0.3rem 0.6rem;
    }
    
    .nav-links a i {
        font-size: 1rem;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    section {
        padding: 2rem 1rem;
    }
}

@media (max-width: 576px) {
    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.3rem;
    }
    
    .logo-img {
        height: 45px;
    }
    
    .website-name-top {
        font-size: 0.9rem;
    }
    
    .website-name-bottom {
        font-size: 0.8rem;
    }
}

/* Contact Page Styles */
.contact-section {
    padding: 6rem 2rem 4rem;
    max-width: 1200px;
    margin: 0 auto;
    background: linear-gradient(135deg, #fffbe6 0%, #f7f7f7 100%);
    border-radius: 16px;
    box-shadow: 0 6px 24px rgba(0,0,0,0.07);
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 40px 1fr;
    gap: 3rem;
    margin-top: 3rem;
    align-items: flex-start;
}

/* Vertical divider for desktop */
.contact-container > .divider {
    width: 2px;
    background: linear-gradient(to bottom, #ff9933 0%, #fff 100%);
    height: 100%;
    border-radius: 2px;
    margin: 0 auto;
    display: block;
}

@media (max-width: 900px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .contact-container > .divider {
        display: none;
    }
}

.contact-info {
    display: grid;
    gap: 2rem;
}

.info-card {
    background-color: #fff;
    padding: 2rem 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(255,153,51,0.07);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1.5px solid #ffe0b2;
}

.info-card:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 8px 24px rgba(255,153,51,0.13);
}

.info-card i {
    font-size: 2.2rem;
    color: var(--saffron);
    margin-bottom: 1rem;
}

.info-card h3 {
    color: var(--saffron);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.info-card p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 1rem;
}

.contact-form {
    background-color: #fff;
    padding: 2.5rem 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(255,153,51,0.07);
    border: 1.5px solid #ffe0b2;
}

.contact-form h3 {
    color: var(--saffron);
    margin-bottom: 2rem;
    text-align: center;
    font-size: 1.3rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 1rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.9rem 1rem;
    border: 1.5px solid #ffd699;
    border-radius: 6px;
    font-size: 1rem;
    background: #fffdfa;
    transition: border-color 0.3s, box-shadow 0.3s;
    box-shadow: 0 1px 4px rgba(255,153,51,0.03);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--saffron);
    box-shadow: 0 2px 8px rgba(255,153,51,0.09);
}

.submit-btn {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(90deg, var(--saffron), var(--saffron-dark));
    color: var(--white);
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    box-shadow: 0 2px 8px rgba(255,153,51,0.07);
}

.submit-btn:hover {
    background: linear-gradient(90deg, var(--saffron-dark), var(--saffron));
    transform: translateY(-2px) scale(1.01);
}

@media (max-width: 900px) {
    .contact-section {
        padding: 5rem 1rem 3rem;
    }
    .contact-form {
        padding: 2rem 1rem;
    }
    .info-card {
        padding: 1.5rem 1rem;
    }
}

@media (max-width: 600px) {
    .contact-section {
        padding: 3.5rem 0.2rem 2rem;
        border-radius: 0;
    }
    .contact-form {
        padding: 1.2rem 0.5rem;
    }
    .info-card {
        padding: 1rem 0.5rem;
    }
}

/* About Page Styles */
.about-section {
    padding: 6rem 2rem 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.about-hero {
    text-align: center;
    margin-bottom: 4rem;
    padding: 3rem 0;
    background-color: var(--saffron-light);
    border-radius: 10px;
    color: var(--white);
}

.about-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.about-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.about-content {
    display: grid;
    gap: 4rem;
}

.about-story {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.about-story h2 {
    color: var(--saffron);
    margin-bottom: 1.5rem;
}

.about-story p {
    color: var(--text-light);
    line-height: 1.8;
}

.about-mission {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.about-mission h2 {
    color: var(--saffron);
    margin-bottom: 1.5rem;
}

.about-mission ul {
    list-style: none;
    padding: 0;
}

.about-mission li {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.about-mission i {
    color: var(--saffron);
    font-size: 1.2rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.value-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
}

.value-card i {
    font-size: 2.5rem;
    color: var(--saffron);
    margin-bottom: 1rem;
}

.value-card h3 {
    color: var(--saffron);
    margin-bottom: 1rem;
}

.value-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Responsive Design for About Page */
@media (max-width: 768px) {
    .about-section {
        padding: 5rem 1rem 3rem;
    }

    .about-hero {
        padding: 2rem 1rem;
    }

    .about-hero h1 {
        font-size: 2rem;
    }

    .value-card {
        padding: 1.5rem;
    }
}

/* Form Message Styles */
.form-message {
    margin-bottom: 1.5rem;
}

.alert {
    padding: 1rem;
    border-radius: 5px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    animation: slideIn 0.3s ease-out;
}

.alert-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.alert i {
    font-size: 1.2rem;
}

@keyframes slideIn {
    from {
        transform: translateY(-10px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* YouTube Section Styles */
.youtube-section {
    padding: 3rem 2rem;
    text-align: center;
    background-color: var(--light-bg);
}

.youtube-section h2 {
    margin-bottom: 2rem;
    color: var(--dark);
    font-size: 2rem;
}

.video-container {
    max-width: 860px;
    margin: 0 auto 2rem;
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.youtube-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    background-color: #FF0000;
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.youtube-link:hover {
    background-color: #CC0000;
    transform: translateY(-2px);
}

.youtube-link i {
    font-size: 1.2rem;
}

/* Media Queries for YouTube Section */
@media (max-width: 768px) {
    .youtube-section {
        padding: 2rem 1rem;
    }

    .youtube-section h2 {
        font-size: 1.5rem;
    }

    .video-container {
        margin: 0 auto 1.5rem;
    }
}

/* WhatsApp Card Styles */
.whatsapp-card {
    background-color: #dcf8c6;
    border: 2px solid #25d366;
}

.whatsapp-card i {
    color: #25d366;
}

.whatsapp-card h3 {
    color: #075e54;
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    padding: 0.8rem 1.5rem;
    background-color: #25d366;
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.whatsapp-btn:hover {
    background-color: #128c7e;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(37, 211, 102, 0.2);
}

.whatsapp-btn i {
    font-size: 1.2rem;
    color: white;
}

/* Media Queries for WhatsApp Button */
@media (max-width: 768px) {
    .whatsapp-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
    
    .whatsapp-btn i {
        font-size: 1.1rem;
    }
}

/* Remove Google Translate styles */
.goog-te-banner-frame,
.goog-te-gadget-simple {
    display: none !important;
}

/* Visually hidden class for accessibility and SEO */
.visually-hidden {
  position: absolute !important;
  height: 1px; width: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  white-space: nowrap;
  border: 0;
}

/* --- Modern Footer Styles --- */
.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.5rem 2rem 0.5rem;
  gap: 2rem;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.footer-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.5px;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  color: var(--white);
  font-size: 1rem;
}
.footer-contact span, .footer-contact a {
  color: var(--white);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-contact a:hover {
  color: var(--saffron-light);
}
.footer-social {
  display: flex;
  gap: 1rem;
}
.footer-social a {
  color: var(--white);
  font-size: 1.5rem;
  transition: color 0.2s, transform 0.2s;
}
.footer-social a:hover {
  color: #FF0000;
  transform: scale(1.15);
}
.footer-bottom {
  text-align: center;
  padding: 0.7rem 0 0.2rem;
  font-size: 0.95rem;
  color: var(--white);
  background: none;
}
.footer-bottom a {
  color: var(--white);
  text-decoration: underline;
  transition: color 0.2s;
}
.footer-bottom a:hover {
  color: var(--saffron-light);
}
@media (max-width: 900px) {
  .footer-content {
    flex-direction: column;
    align-items: flex-start;
    padding: 1.2rem 1rem 0.5rem;
    gap: 1.2rem;
  }
  .footer-brand {
    margin-bottom: 0.5rem;
  }
  .footer-contact {
    font-size: 0.98rem;
  }
}
@media (max-width: 600px) {
  .footer-content {
    padding: 1rem 0.2rem 0.2rem;
    gap: 0.7rem;
  }
  .footer-title {
    font-size: 1rem;
  }
  .footer-contact {
    font-size: 0.93rem;
  }
  .footer-social a {
    font-size: 1.2rem;
  }
  .footer-bottom {
    font-size: 0.85rem;
  }
} 