/*========================

GOOGLE FONT

=========================*/

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

*{

margin:0;
padding:0;
box-sizing:border-box;

}

body{

font-family:'Poppins',sans-serif;
background:#f8fafc;

}

.container{

width:90%;
max-width:1300px;
margin:auto;

}

/* Announcement */

.announcement{

background:#FFC107;
padding:12px;
text-align:center;
font-weight:600;

}

/* Header */

header{

position:sticky;
top:0;
z-index:999;
background:rgba(11,31,58,.95);
backdrop-filter:blur(18px);

}

.navbar{

display:flex;
justify-content:space-between;
align-items:center;
height:85px;

}

.logo img{

height:55px;

}

nav ul{

display:flex;
gap:40px;
list-style:none;

}

nav ul li a{

text-decoration:none;
color:#fff;
font-weight:500;
transition:.3s;

}

nav ul li a:hover,

.active{

color:#FFC107;

}

.header-icons{

display:flex;
gap:20px;

}

.header-icons a{

color:#fff;
font-size:22px;

}

/* Hero */

.hero{

background:linear-gradient(135deg,#071528,#163861);

padding:90px 0;

}

.hero-content{

display:flex;
align-items:center;
justify-content:space-between;

}

.hero-left{

width:50%;

}

.hero-left span{

background:#FFC107;
padding:8px 18px;
border-radius:30px;
font-size:14px;
font-weight:600;

}

.hero-left h1{

color:#fff;
font-size:60px;
margin:25px 0;

}

.hero-left p{

color:#d7d7d7;
font-size:18px;
line-height:1.9;

}

.hero-buttons{

display:flex;
gap:20px;
margin-top:40px;

}

.btn{

background:#FFC107;
padding:16px 35px;
text-decoration:none;
color:#111;
border-radius:10px;
font-weight:700;

}

.btn:hover{

background:#fff;

}

.btn2{

border:2px solid #fff;
padding:16px 35px;
text-decoration:none;
color:#fff;
border-radius:10px;
font-weight:600;

}

.btn2:hover{

background:#fff;
color:#111;

}

.hero-right{

width:45%;
text-align:center;

}

.hero-right img{

width:100%;
max-width:520px;
animation:float 4s ease-in-out infinite;

}

@keyframes float{

0%,100%{

transform:translateY(0);

}

50%{

transform:translateY(-18px);

}

}/*==================================
TRUSTED SECTION
===================================*/

.trusted{

padding:70px 0;
background:#ffffff;

}

.trusted-wrapper{

display:grid;
grid-template-columns:repeat(4,1fr);
gap:30px;

}

.trusted-item{

background:#fff;
padding:35px;
text-align:center;
border-radius:18px;
box-shadow:0 15px 35px rgba(0,0,0,.08);
transition:.35s;

}

.trusted-item:hover{

transform:translateY(-10px);

}

.trusted-item h2{

font-size:42px;
color:#0B1F3A;
margin-bottom:10px;

}

.trusted-item span{

color:#777;
font-size:17px;

}

/*==================================
SECTION TITLE
===================================*/

.section-heading{

text-align:center;
margin-bottom:70px;

}

.section-heading span{

color:#FFC107;
font-weight:700;
letter-spacing:2px;

}

.section-heading h2{

font-size:42px;
margin:15px 0;
color:#0B1F3A;

}

.section-heading p{

max-width:700px;
margin:auto;
color:#666;
line-height:1.8;

}

/*==================================
CATEGORIES
===================================*/

.categories{

padding:100px 0;
background:#F8FAFC;

}

.category-grid{

display:grid;
grid-template-columns:repeat(4,1fr);
gap:30px;

}

.category-card{

background:#fff;
border-radius:20px;
padding:35px;
text-align:center;
text-decoration:none;
box-shadow:0 15px 35px rgba(0,0,0,.08);
transition:.4s;

}

.category-card:hover{

transform:translateY(-12px);

}

.category-card img{

width:180px;
height:230px;
object-fit:contain;
margin-bottom:25px;
transition:.4s;

}

.category-card:hover img{

transform:scale(1.08);

}

.category-card h3{

color:#0B1F3A;
font-size:24px;
margin-bottom:15px;

}

.category-card p{

color:#666;
line-height:1.8;
font-size:15px;

}/*==================================
FEATURED BOOKS
===================================*/

.featured-books{

padding:100px 0;
background:#fff;

}

.books-grid{

display:grid;
grid-template-columns:repeat(4,1fr);
gap:30px;

}

.book-card{

background:#fff;
border-radius:20px;
overflow:hidden;
position:relative;
box-shadow:0 15px 35px rgba(0,0,0,.08);
transition:.4s;

}

.book-card:hover{

transform:translateY(-12px);
box-shadow:0 20px 45px rgba(0,0,0,.15);

}

.book-badge{

position:absolute;
top:18px;
left:18px;
background:#ff3b30;
color:#fff;
padding:8px 14px;
border-radius:25px;
font-size:13px;
font-weight:600;

}

.wishlist{

position:absolute;
top:18px;
right:18px;
width:42px;
height:42px;
background:#fff;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
box-shadow:0 5px 20px rgba(0,0,0,.1);
cursor:pointer;

}

.wishlist i{

color:#666;

}

.book-card img{

display:block;
width:180px;
height:240px;
object-fit:contain;
margin:40px auto 20px;
transition:.4s;

}

.book-card:hover img{

transform:scale(1.08);

}

.book-info{

padding:25px;

}

.category{

display:inline-block;
font-size:13px;
background:#eef5ff;
color:#2563eb;
padding:6px 12px;
border-radius:20px;
margin-bottom:15px;

}

.book-info h3{

font-size:22px;
line-height:1.4;
margin-bottom:15px;
color:#0B1F3A;

}

.rating{

color:#f7b500;
margin-bottom:18px;

}

.rating small{

color:#777;

}

.price{

margin-bottom:22px;

}

.new-price{

font-size:30px;
font-weight:700;
color:#0B1F3A;

}

.old-price{

margin-left:10px;
text-decoration:line-through;
color:#999;

}

.book-buttons{

display:flex;
gap:12px;

}

.book-buttons a{

flex:1;
text-align:center;
padding:12px;
background:#0B1F3A;
color:#fff;
text-decoration:none;
border-radius:10px;
font-weight:600;

}

.book-buttons button{

flex:1;
border:none;
background:#FFC107;
border-radius:10px;
font-weight:600;
cursor:pointer;

}/*==================================
WHY CHOOSE US
===================================*/

.why-us{

padding:100px 0;
background:#f8fafc;

}

.why-grid{

display:grid;
grid-template-columns:repeat(4,1fr);
gap:30px;

}

.why-card{

background:#fff;
padding:35px;
border-radius:20px;
text-align:center;
box-shadow:0 15px 35px rgba(0,0,0,.08);
transition:.35s;

}

.why-card:hover{

transform:translateY(-12px);

}

.why-card i{

font-size:45px;
color:#FFC107;
margin-bottom:20px;

}

.why-card h3{

margin-bottom:15px;
color:#0B1F3A;

}

.why-card p{

color:#666;
line-height:1.8;

}

/*==================================
STATISTICS
===================================*/

.statistics{

padding:80px 0;
background:#0B1F3A;

}

.stats-grid{

display:grid;
grid-template-columns:repeat(4,1fr);
gap:30px;

}

.stat-box{

text-align:center;
color:#fff;

}

.stat-box h2{

font-size:48px;
color:#FFC107;
margin-bottom:10px;

}

.stat-box p{

font-size:17px;

}

/*==================================
TESTIMONIALS
===================================*/

.testimonials{

padding:100px 0;
background:#fff;

}

.testimonial-grid{

display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;

}

.testimonial-card{

background:#fff;
padding:35px;
border-radius:20px;
text-align:center;
box-shadow:0 15px 35px rgba(0,0,0,.08);
transition:.35s;

}

.testimonial-card:hover{

transform:translateY(-12px);

}

.testimonial-card img{

width:100px;
height:100px;
border-radius:50%;
object-fit:cover;
margin-bottom:20px;
border:5px solid #FFC107;

}

.testimonial-card h3{

color:#0B1F3A;
margin-bottom:8px;

}

.testimonial-card span{

display:block;
color:#FFC107;
font-weight:600;
margin-bottom:18px;

}

.testimonial-card p{

line-height:1.8;
color:#666;

}/*==================================

NEWSLETTER

===================================*/

.newsletter{

padding:100px 0;
background:linear-gradient(135deg,#0B1F3A,#163861);

}

.newsletter-content{

text-align:center;
color:#fff;

}

.newsletter-content span{

color:#FFC107;
font-weight:700;
letter-spacing:2px;

}

.newsletter-content h2{

font-size:45px;
margin:20px 0;

}

.newsletter-content p{

max-width:700px;
margin:auto;
line-height:1.8;
margin-bottom:40px;
color:#ddd;

}

.newsletter-form{

display:flex;
justify-content:center;
gap:15px;

}

.newsletter-form input{

width:450px;
padding:18px;
border:none;
border-radius:10px;
font-size:16px;

}

.newsletter-form button{

padding:18px 40px;
background:#FFC107;
border:none;
border-radius:10px;
font-weight:700;
cursor:pointer;

}

/*==================================

FOOTER

===================================*/

footer{

background:#071528;
padding:80px 0 20px;
color:#fff;

}

.footer-grid{

display:grid;
grid-template-columns:2fr 1fr 1fr 1fr;
gap:50px;

}

.footer-logo{

height:60px;
margin-bottom:20px;

}

.footer-box p{

color:#cfcfcf;
line-height:1.8;

}

.footer-box h3{

margin-bottom:20px;

}

.footer-box ul{

list-style:none;

}

.footer-box ul li{

margin-bottom:12px;

}

.footer-box ul li a{

color:#ddd;
text-decoration:none;
transition:.3s;

}

.footer-box ul li a:hover{

color:#FFC107;

}

.social-links{

display:flex;
gap:15px;

}

.social-links a{

width:45px;
height:45px;
display:flex;
align-items:center;
justify-content:center;
background:#163861;
color:#fff;
border-radius:50%;
text-decoration:none;
transition:.3s;

}

.social-links a:hover{

background:#FFC107;
color:#111;

}

.footer-bottom{

margin-top:60px;
padding-top:20px;
border-top:1px solid rgba(255,255,255,.15);
text-align:center;
color:#bbb;

}

/*==================================

WHATSAPP

===================================*/

.whatsapp-btn{

position:fixed;
right:30px;
bottom:30px;
width:60px;
height:60px;
background:#25D366;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
font-size:30px;
color:#fff;
text-decoration:none;
box-shadow:0 15px 30px rgba(0,0,0,.2);
z-index:999;

}