/* style.css */

body {
    background: linear-gradient(to bottom right, #e3f2fd, #f0f8ff);
    min-height: 100vh;
}


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

.site-header {
    background-color: #2c3e50;
    color: white;
    padding: 0px 0;
    margin-top: 5px;
}

.site-header .logo {
    margin: 0;
    font-size: 28px;
}

.site-nav ul {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 15px;
    margin: 10px 0 0;
     justify-content: flex-end; /* Align items to the right */
}

.site-nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: 500;

}

.site-nav ul li a:hover {
    text-decoration: underline;


}

.site-footer {
    background-color: #2c3e50;
    color: white;
    text-align: center;
    padding: 20px 0;
    margin-top: 40px;
}

.site-footer .social-links a {
    color: #f1f1f1;
    text-decoration: none;
    margin: 0 10px;
}

.site-footer .social-links a:hover {
    text-decoration: underline;
}




/* Additional CSS for index.php page */

.main-content {
    padding: 10px 20px;
    text-align: center;
}

.hero-section img {
    width: 100%;
    max-width: 250px;
    border-radius: 15px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    box-shadow:
        0 8px 15px rgba(0,0,0,0.15),
        0 12px 30px rgba(0,0,0,0.10),
        inset 0 -2px 10px rgba(255,255,255,0.2);
    transform-style: preserve-3d;
}

.hero-section img:hover {
    transform: rotateY(6deg) rotateX(6deg) scale(1.05);
    box-shadow:
        0 12px 25px rgba(0,0,0,0.2),
        0 20px 40px rgba(0,0,0,0.15),
        inset 0 -2px 10px rgba(255,255,255,0.3);
}


.cover-img {
    max-width: 150px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    margin-bottom: 20px;
}

.btn {
    background-color: #007BFF;
    color: white;
    text-decoration: none;
    padding: 12px 25px;
    border-radius: 5px;
    font-size: 16px;
    display: inline-block;
    margin-top: 20px;
}

.btn:hover {
    background-color: #0056b3;
}
.quote {
    font-style: italic;
    background-color: #f1f1f1;
    padding: 15px;
    border-left: 5px solid #007BFF;
    margin: 20px auto;
    max-width: 650px;
    color: #333;
}
.fixed-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
.book-benefits {
    background-color: #f0f8ff;
    padding: 40px 20px;
    margin-top: 40px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0,0,0,0.05);
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
}

.book-benefits h2 {
    color: #2c3e50;
    font-size: 24px;
    margin-bottom: 20px;
    text-align: center;
}

.book-benefits ul {
    list-style-type: none;
    padding-left: 0;
    font-size: 16px;
    color: #333;
    line-height: 1.7;
}

.book-benefits li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.book-benefits li::before {
    content: "✅";
    position: absolute;
    left: 0;
    color: #007BFF;
}


















