/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    margin: 0;
    padding: 0;
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    padding-top: 90px;
}

header {
    margin: 0;
    padding: 0;
    overflow: visible;
}

/* Header and Navigation */
.navbar {
    background: linear-gradient(90deg, #1a237e 0%, #0d47a1 100%);
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    min-height: 72px;
    margin: 0;
}

.logo {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1001;
}

.right-logo {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1001;
    margin-left: auto;
}

.right-logo img {
    height: 80px;
    width: auto;
    object-fit: contain;
    background: none !important;
    box-shadow: none !important;
    filter: none !important;
    opacity: 1 !important;
}

.right-logo::before,
.right-logo::after {
    display: none !important;
    content: none !important;
}

.logo::before, .right-logo::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 54px;
    height: 54px;
    background: linear-gradient(135deg, #fffbe7 60%, #e3f2fd 100%);
    border-radius: 18% 82% 70% 30% / 30% 40% 60% 70%;
    z-index: 0;
    box-shadow: 0 2px 16px 0 #ffe08255;
    opacity: 0.85;
    transition: box-shadow 0.3s, opacity 0.3s;
}

.logo img {
    height: 80px;
    width: auto;
    object-fit: contain;
    background: none !important;
    box-shadow: none !important;
    filter: none !important;
    opacity: 1 !important;
}

.logo::before,
.logo::after {
    display: none !important;
    content: none !important;
}

.logo img:hover, .right-logo img:hover {
    transform: scale(1.08) rotate(-2deg);
    box-shadow: 0 0 12px 0 #3498db44;
    border-color: #ffe082;
}

.logo h1 {
    color: #2c3e50;
    font-size: 1.5rem;
}

.nav-links {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    position: relative;
    z-index: 1001;
    margin-right: 2rem;
}

.nav-links li {
    margin: 0 1.5rem;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #ffe082;
}

.hamburger {
    display: none;
    cursor: pointer;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background: white;
    margin: 5px 0;
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .hamburger {
        display: block;
    }
}

/* Hero Section */
.hero {
    padding-top: 120px;
    background: #f8f9fa;
    text-align: center;
}

.hero-deco-img,
.hero-overlay,
.neetjee-bg-shape,
.contact-bg-shape,
.video-bg-shape {
    display: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.hero-img {
    width: 120px;
    margin-bottom: 1.5rem;
    border-radius: 50%;
    box-shadow: 0 4px 24px rgba(44,62,80,0.18);
    background: #fff;
    padding: 8px;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: linear-gradient(90deg, #ffe082 0%, #3498db 100%);
    color: #2c3e50;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    font-size: 1.1rem;
    box-shadow: 0 2px 8px rgba(44,62,80,0.10);
    transition: background 0.3s, color 0.3s;
}

.cta-button:hover {
    background: linear-gradient(90deg, #3498db 0%, #ffe082 100%);
    color: #fff;
}

/* Features Section */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    padding: 4rem 5%;
    background: url('../images/feature-bg.png') repeat;
    background-color: #f9f9f9;
}

.feature-card {
    text-align: center;
    padding: 2rem 1.5rem;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 6px 24px rgba(44,62,80,0.10);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
}

.feature-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 12px 32px rgba(44,62,80,0.18);
}

.feature-card i {
    font-size: 2.8rem;
    color: #3498db;
    margin-bottom: 1rem;
    background: #e3f2fd;
    border-radius: 50%;
    padding: 18px;
    box-shadow: 0 2px 8px rgba(44,62,80,0.08);
}

.feature-card h3 {
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.feature-card p {
    color: #555;
    font-size: 1rem;
}

/* Testimonials Section */
.testimonials {
    background: linear-gradient(90deg, #f9f9f9 60%, #e3f2fd 100%);
    padding: 4rem 5% 2rem 5%;
    text-align: center;
}

.testimonials h2 {
    color: #2c3e50;
    margin-bottom: 2rem;
    font-size: 2rem;
}

.testimonial-card {
    display: inline-block;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 4px 16px rgba(44,62,80,0.10);
    padding: 2rem 1.5rem;
    margin: 0 1rem 2rem 1rem;
    max-width: 320px;
    vertical-align: top;
}

.testimonial-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
    border: 3px solid #3498db;
}

.testimonial-card p {
    font-style: italic;
    color: #333;
    margin-bottom: 0.5rem;
}

.testimonial-card span {
    color: #3498db;
    font-weight: bold;
}

/* Study Material Section */
.study-material {
    background: #f8f9fa;
    padding: 4rem 2rem;
}

.smp-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.smp-image {
    position: relative;
    z-index: 2;
}

.smp-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.smp-details {
    position: relative;
    z-index: 2;
}

.smp-details h3 {
    color: #3498db;
    margin-bottom: 1.2rem;
    font-size: 1.3rem;
}

.smp-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.smp-list li {
    display: flex;
    align-items: center;
    font-size: 1.08rem;
    margin-bottom: 1.1rem;
    color: #2c3e50;
    background: #f4f8fb;
    border-radius: 10px;
    padding: 0.7rem 1.1rem;
    box-shadow: 0 2px 8px rgba(44,62,80,0.06);
    transition: background 0.3s;
}

.smp-list li i {
    color: #ffe082;
    background: #3498db;
    border-radius: 50%;
    font-size: 1.2rem;
    margin-right: 0.9rem;
    padding: 0.5rem;
    box-shadow: 0 2px 8px rgba(44,62,80,0.10);
}

.smp-list li:hover {
    background: #e3f2fd;
}

@media (max-width: 900px) {
    .smp-content {
        flex-direction: column;
        align-items: stretch;
        padding: 2rem 1rem;
    }
    .smp-image img {
        width: 100%;
        height: 220px;
        margin-bottom: 1.5rem;
    }
    .smp-details {
        text-align: center;
    }
}

@media (max-width: 600px) {
    .smp-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1.2rem;
        padding: 1.2rem 0.5rem;
    }
    .smp-image {
        width: 100%;
        display: flex;
        justify-content: center;
    }
    .smp-image img {
        width: 80vw;
        max-width: 220px;
        height: auto;
        margin-bottom: 1rem;
        border-radius: 10px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        object-fit: cover;
    }
    .smp-details {
        text-align: center;
        width: 100%;
    }
}

/* NEET/JEE Section */
.neet-jee {
    background: #f8f9fa;
    padding: 4rem 2rem;
}

.neetjee-card {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    background: #fff;
    border-radius: 22px;
    box-shadow: 0 6px 32px rgba(44,62,80,0.10);
    padding: 2.5rem 2rem;
    max-width: 950px;
    margin: 0 auto;
    flex-wrap: wrap;
    animation: fadeInUp 1.2s cubic-bezier(.4,2,.6,1);
}

@keyframes fadeInUp {
    0% { opacity: 1; transform: none; }
    100% { opacity: 1; transform: none; }
}

.neetjee-image img {
    width: 220px;
    height: 300px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(44,62,80,0.12);
    background: #f9f9f9;
}

.neetjee-details {
    flex: 1 1 320px;
    text-align: left;
}

.neetjee-details h2 {
    color: #2c3e50;
    margin-bottom: 1.2rem;
    font-size: 2rem;
}

.neetjee-details h3 {
    color: #3498db;
    margin-bottom: 1.2rem;
    font-size: 1.2rem;
}

.neetjee-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.neetjee-list li {
    display: flex;
    align-items: center;
    font-size: 1.08rem;
    margin-bottom: 1.1rem;
    color: #2c3e50;
    background: #f4f8fb;
    border-radius: 10px;
    padding: 0.7rem 1.1rem;
    box-shadow: 0 2px 8px rgba(44,62,80,0.06);
    transition: background 0.3s;
}

.neetjee-list li i {
    color: #3498db;
    background: #ffe082;
    border-radius: 50%;
    font-size: 1.2rem;
    margin-right: 0.9rem;
    padding: 0.5rem;
    box-shadow: 0 2px 8px rgba(44,62,80,0.10);
}

.neetjee-list li:hover {
    background: #ffe08233;
}

@media (max-width: 900px) {
    .neetjee-card {
        flex-direction: column;
        align-items: stretch;
        padding: 2rem 1rem;
    }
    .neetjee-image img {
        width: 100%;
        height: 220px;
        margin-bottom: 1.5rem;
    }
    .neetjee-details {
        text-align: center;
    }
}

/* Contact Section */
.contact {
    background: #f8f9fa;
    padding: 4rem 2rem;
}

.contact-card {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    background: #fff;
    border-radius: 22px;
    box-shadow: 0 6px 32px rgba(44,62,80,0.10);
    padding: 2.5rem 2rem;
    max-width: 950px;
    margin: 0 auto;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(.4,2,.6,1), transform 0.8s cubic-bezier(.4,2,.6,1);
}

.contact-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.contact-image img {
    width: 220px;
    height: 300px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(44,62,80,0.12);
    background: #f9f9f9;
}

.contact-details {
    flex: 1 1 320px;
    text-align: left;
}

.contact-details h2 {
    color: #2c3e50;
    margin-bottom: 1.2rem;
    font-size: 2rem;
}

.contact-info {
    margin: 1.5rem 0 2rem 0;
}

.contact-info p {
    margin: 1rem 0;
    font-size: 1.08rem;
    color: #3498db;
    display: flex;
    align-items: center;
    gap: 0.7rem;
}

.contact-info i {
    color: #ffe082;
    background: #3498db;
    border-radius: 50%;
    font-size: 1.2rem;
    padding: 0.5rem;
    box-shadow: 0 2px 8px rgba(44,62,80,0.10);
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-form input,
.contact-form textarea {
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.contact-form textarea {
    height: 150px;
    resize: vertical;
}

.submit-btn {
    padding: 1rem;
    background-color: #3498db;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-btn:hover {
    background-color: #2980b9;
}

@media (max-width: 900px) {
    .contact-card {
        flex-direction: column;
        align-items: stretch;
        padding: 2rem 1rem;
    }
    .contact-image img {
        width: 100%;
        height: 220px;
        margin-bottom: 1.5rem;
    }
    .contact-details {
        text-align: center;
    }
}

/* Footer */
footer {
    background-color: #2c3e50;
    color: #fff;
    text-align: center;
    padding: 2rem 5%;
}

.footer-contact {
    margin-bottom: 1.2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
}

.footer-contact p {
    color: #ffe082;
    font-size: 1.05rem;
    margin: 0.2rem 0;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.footer-contact i {
    color: #ffe082;
    background: #1565c0;
    border-radius: 50%;
    font-size: 1.1rem;
    padding: 0.4rem;
    margin-right: 0.3rem;
}

@media (max-width: 600px) {
    .footer-contact {
        font-size: 0.98rem;
        gap: 0.1rem;
    }
}

/* Gallery Section */
.gallery {
    padding: 4rem 5% 2rem 5%;
    background: #f9f9f9;
    text-align: center;
}

.gallery h2 {
    color: #2c3e50;
    margin-bottom: 2rem;
    font-size: 2rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

.gallery-grid img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 14px;
    box-shadow: 0 2px 12px rgba(44,62,80,0.10);
    transition: transform 0.3s, box-shadow 0.3s;
    background: #fff;
}

.gallery-grid img:hover {
    transform: scale(1.04) rotate(-2deg);
    box-shadow: 0 8px 24px rgba(44,62,80,0.18);
}

/* Video Section */
.video-section {
    background: #f8f9fa;
    padding: 4rem 2rem;
}

.video-card {
    position: relative;
    z-index: 1;
    background: rgba(255,255,255,0.85);
    border-radius: 22px;
    box-shadow: 0 6px 32px rgba(44,62,80,0.10);
    padding: 2.5rem 2rem 2rem 2rem;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(.4,2,.6,1), transform 0.8s cubic-bezier(.4,2,.6,1);
}

.video-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.video-title {
    color: #2c3e50;
    font-size: 2rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.7rem;
}

.video-title i {
    color: #3498db;
    font-size: 2.2rem;
}

.video-underline {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #ffe082 0%, #3498db 100%);
    border-radius: 2px;
    margin: 0 auto 1.5rem auto;
}

.video-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.video-container iframe {
    width: 90vw;
    max-width: 560px;
    height: 315px;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(44,62,80,0.12);
    border: none;
}

@media (max-width: 900px) {
    .video-card {
        padding: 1.2rem 0.5rem 1.2rem 0.5rem;
    }
    .video-container iframe {
        height: 200px;
    }
}

/* Downloads Section */
.downloads {
    background: linear-gradient(135deg, #f5ecd7 0%, #e0c9a6 100%);
    border-radius: 18px;
    box-shadow: 0 6px 32px #b3886740;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
    margin-top: 2rem;
}

.downloads h2 {
    color: #2c3e50;
    margin-bottom: 2rem;
    font-size: 2rem;
}

.downloads-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin: 0 auto;
    max-width: 900px;
    position: relative;
    overflow: hidden;
}

.download-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #f9f9f9;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(44,62,80,0.10);
    padding: 2rem 1.5rem;
    min-width: 180px;
    text-decoration: none;
    color: #2c3e50;
    font-weight: 600;
    font-size: 1.1rem;
    transition: background 0.3s, box-shadow 0.3s, color 0.3s;
    position: relative;
    animation: none !important;
}

.download-card:nth-child(odd),
.download-card:nth-child(even) {
    animation: none !important;
}

.download-card i {
    font-size: 2.8rem;
    color: #e53935;
    margin-bottom: 1rem;
    background: #fff3e0;
    border-radius: 50%;
    padding: 18px;
    box-shadow: 0 2px 8px rgba(44,62,80,0.08);
}

.download-card:hover {
    background: #ffe082;
    color: #1565c0;
    box-shadow: 0 8px 24px rgba(44,62,80,0.18);
}

.download-card.brochure {
    border: 2px solid #3498db;
}

@media (max-width: 768px) {
    .downloads-grid {
        flex-direction: column;
        gap: 1.2rem;
        overflow: visible;
    }
    .download-card {
        min-width: 0;
        width: 100%;
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .nav-links {
        gap: 0.7rem;
        margin: 0 0.5rem;
    }
    .logo img, .right-logo img {
        height: 32px;
        width: 32px;
    }
}

@media (max-width: 900px) {
    .navbar {
        flex-wrap: wrap;
        padding: 0.5rem 0.7rem;
        min-height: 56px;
        justify-content: flex-start;
    }
    .hamburger {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 48px;
        height: 48px;
        margin-right: 1rem;
        z-index: 1100;
        order: 1;
    }
    .logo {
        flex: 0 0 auto;
        max-width: 200px;
        min-width: 150px;
        justify-content: center;
        order: 2;
    }
    .logo img {
        height: 60px;
        width: auto;
        max-width: 150px;
        object-fit: contain;
    }
    .right-logo {
        flex: 0 0 auto;
        max-width: 200px;
        min-width: 140px;
        justify-content: center;
        order: 3;
        margin-left: auto;
    }
    .right-logo img {
        height: 120px;
        max-width: 180px;
        object-fit: contain;
        background: #fff;
        padding: 8px;
        border-radius: 12px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    }
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: linear-gradient(90deg, #1a237e 0%, #0d47a1 100%);
        box-shadow: 0 8px 24px #2228;
        flex-direction: column;
        align-items: center;
        padding: 1.2rem 0 1.2rem 0;
        z-index: 1099;
        border-radius: 0 0 18px 18px;
    }
}

@media (max-width: 600px) {
    .logo {
        max-width: 180px;
        min-width: 150px;
    }
    .logo img {
        height: 70px;
        width: auto;
        max-width: 120px;
    }
    .hamburger {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 48px;
        height: 48px;
        margin-right: 1rem;
        z-index: 1100;
        order: 1;
    }
    .logo {
        flex: 0 0 auto;
        max-width: 700px;
        min-width: 200px;
        justify-content: center;
        order: 2;
    }
    .right-logo {
        max-width: 200px;
        min-width: 80px;
    }
    .right-logo img {
        width: 20vw;
        max-width: 200px;
        min-width: 80px;
        height: auto;
        object-fit: contain;
        background: #fff;
        padding: 7px;
        border-radius: 10px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    }
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: linear-gradient(90deg, #1a237e 0%, #0d47a1 100%);
        box-shadow: 0 8px 24px #2228;
        flex-direction: column;
        align-items: center;
        padding: 1.2rem 0 1.2rem 0;
        z-index: 1099;
        border-radius: 0 0 18px 18px;
    }
}

/* Modern Footer Styles */
.modern-footer {
    background: linear-gradient(to right, #1a1a1a, #2d2d2d);
    color: #fff;
    padding: 4rem 0 0 0;
    margin-top: 4rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    padding: 0 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-section {
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background: #4CAF50;
}

.footer-logo {
    height: 50px;
    margin-bottom: 1rem;
}

.footer-section p {
    color: #b3b3b3;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #fff;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #4CAF50;
    transform: translateY(-3px);
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section ul li a {
    color: #b3b3b3;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-section ul li a:hover {
    color: #4CAF50;
    transform: translateX(5px);
}

.footer-section.contact-info ul li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #b3b3b3;
}

.footer-section.contact-info ul li i {
    color: #ffffff;
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    padding: 1.5rem 0;
    margin-top: 3rem;
}

.footer-bottom-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: #b3b3b3;
}

.footer-bottom-links {
    display: flex;
    gap: 1.5rem;
}

.footer-bottom-links a {
    color: #b3b3b3;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #4CAF50;
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        padding: 0 1rem;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-bottom-links {
        justify-content: center;
    }
}

/* Tagline Styles */
.tagline-container {
    background: linear-gradient(to right, #4CAF50, #45a049);
    padding: 0.8rem 0;
    text-align: center;
    width: 100%;
    margin-top: 0;
}

.tagline {
    font-size: 1.4rem;
    font-weight: 600;
    color: white;
    font-style: italic;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .tagline {
        font-size: 1.1rem;
    }
}

/* 3D Bookshelf Download Section */
.bookshelf {
    position: relative;
    padding-bottom: 5.5rem;
    margin-bottom: 2rem;
    perspective: 1200px;
    background: linear-gradient(120deg, #e9d7b9 60%, #f5ecd7 100%);
    border-radius: 14px;
    box-shadow: 0 2px 18px #b3886740;
}
.bookshelf-niche {
    background: linear-gradient(180deg, #e0c9a6 80%, #d2b48c 100%);
    border-radius: 12px 12px 28px 28px;
    box-shadow: 0 4px 24px #b3886740 inset;
    padding: 2.5rem 1.5rem 2.5rem 1.5rem;
    margin: 0 0.5rem;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    position: relative;
    z-index: 1;
    min-height: 230px;
}
.bookshelf-niche::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 60%;
    background: linear-gradient(180deg, #e0c9a6 80%, #b38867 100%);
    opacity: 0.18;
    z-index: 0;
    border-radius: 12px 12px 28px 28px;
}
.bookshelf-grid {
    gap: 3.2rem;
    z-index: 2;
    position: relative;
}
.book-card {
    margin-bottom: -32px; /* Overlap the shelf bar */
    box-shadow: 0 10px 30px 0 rgba(44,62,80,0.18), 0 2px 8px rgba(44,62,80,0.10);
}
.book-card::after {
    content: '';
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: -22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(60,60,60,0.22);
    filter: blur(2.5px);
    z-index: 2;
    opacity: 0.8;
    pointer-events: none;
}
.bookshelf-bar {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 44px;
    background: linear-gradient(90deg, #8d5524 0%, #b38867 100%);
    border-radius: 0 0 28px 28px;
    box-shadow: 0 12px 32px #8d552455, 0 2px 8px #b3886744, 0 -8px 16px #fffbe7cc inset;
    z-index: 3;
    border-top: 6px solid #fffbe7;
    overflow: hidden;
}
.bookshelf-bar::after {
    content: '';
    position: absolute;
    left: 10%;
    right: 10%;
    top: 8px;
    height: 8px;
    background: linear-gradient(90deg, #fffbe7cc 0%, #fffbe700 100%);
    opacity: 0.25;
    border-radius: 8px;
}
@media (max-width: 900px) {
    .bookshelf-grid {
        gap: 1.8rem;
    }
    .bookshelf-niche {
        padding: 1.2rem 0.5rem 1.2rem 0.5rem;
        min-height: 150px;
    }
    .book-card {
        margin-bottom: -18px;
    }
    .bookshelf-bar {
        height: 28px;
    }
}
@media (max-width: 600px) {
    .bookshelf-grid {
        gap: 1.1rem;
    }
    .bookshelf-niche {
        padding: 0.5rem 0.2rem 0.5rem 0.2rem;
        min-height: 90px;
    }
    .book-card {
        margin-bottom: -10px;
    }
    .bookshelf-bar {
        height: 16px;
    }
}

.mini-shelf {
    width: 90%;
    height: 18px;
    background: linear-gradient(90deg, #8d5524 0%, #b38867 100%);
    border-radius: 0 0 12px 12px;
    box-shadow: 0 6px 18px #8d552455, 0 2px 8px #b3886744, 0 -4px 8px #fffbe7cc inset;
    border-top: 3px solid #fffbe7;
    margin: -6px auto 0 auto;
    position: relative;
    z-index: 4;
    display: block;
}
.book-card {
    margin-bottom: 0;
}
.bookshelf-bar, .bookshelf-bar::after {
    display: none !important;
} 