/* Google Font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Poppins',sans-serif;
    background:#f8f9fb;
}

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

.header{
    position:sticky;
    top:0;
    z-index:999;
    background:#ffffff;
    box-shadow:0 3px 15px rgba(0,0,0,.08);
    transition:all .35s ease;
}

.header .container{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:18px 0;
}

.logo img{
    height: 70px;
    width:auto;
    display:block;
}


.navbar ul{
    display:flex;
    align-items:center;
    list-style:none;
    gap:35px;
}

.navbar ul li a{
    position:relative;
    text-decoration:none;
    color:#0B2D5C;
    font-size:16px;
    font-weight:600;
    transition:all .35s ease;
}

.navbar ul li a::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-8px;
    width:0;
    height:2px;
    background:#D4AF37;
    transition:width .35s ease;
}

.navbar ul li a:hover{
    color:#D4AF37;
}

.navbar ul li a:hover::after{
    width:100%;
}

.btn{
    display:inline-block;
    background:#0B2D5C;
    color:#ffffff;
    padding:14px 30px;
    border-radius:8px;
    text-decoration:none;
    font-weight:600;
    transition:all .35s ease;
}

.btn:hover{
    background:#D4AF37;
    transform:translateY(-4px);
    box-shadow:0 12px 25px rgba(0,0,0,.25);
}

/* ===== Hero Section ===== */

.hero{
    padding:80px 0;
    background:#f8f9fc;
}

.hero-content{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:60px;
}

.hero-text{
    flex:1;
}

.hero-text h1{
    font-size:52px;
    color:#0f2b63;
    line-height:1.2;
    margin-bottom:20px;
}

.hero-text p{
    font-size:18px;
    color:#555;
    line-height:1.8;
    margin-bottom:30px;
}

.hero-image{
    flex:1;
    text-align:center;
}

.hero-image img{
    width:400px;
    max-width:100%;
}
/* ===========================
   ABOUT SECTION
=========================== */

.about{

    padding:100px 0;

}

.about-container{

    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:70px;

}

.about-image{

    flex:1;

}

.about-image img{

    width:100%;
    max-width:450px;
    border-radius:15px;
    box-shadow:0 15px 35px rgba(0,0,0,.12);
    transition:.4s;

}
.about-image img:hover{

    transform:scale(1.03);

}

.about-content{

    flex:1;

}

.sub-title{

    color:#D4AF37;
    font-weight:600;
    letter-spacing:1px;

}

.about-content h2{

    font-size:42px;
    color:#0B2D5C;
    margin:15px 0 25px;

}

.about-content p{

    color:#666;
    line-height:1.9;
    margin-bottom:20px;

}
/* ===========================
   FEATURED BOOKS
=========================== */

.featured-books{

    padding:100px 0;
    background:#f8f9fc;

}

.section-heading{

    text-align:center;
    margin-bottom:60px;

}

.section-heading h2{

    font-size:42px;
    color:#0B2D5C;
    margin-bottom:10px;

}

.section-heading p{

    color:#777;

}

.book-grid{

    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;

}

.book-card{

    background:#fff;
    border-radius:12px;
    padding:20px;
    text-align:center;
    box-shadow:0 8px 25px rgba(0,0,0,.08);
    transition:.3s;

}

.book-card:hover{

    transform:translateY(-8px);

}

.book-card img{

    width:100%;
    height:300px;
    object-fit:cover;
    border-radius:10px;

}

.book-card h3{

    margin-top:20px;
    color:#0B2D5C;

}

.book-card p{

    margin:10px 0 20px;
    color:#666;

}

.book-btn{

    display:inline-block;
    background:#0B2D5C;
    color:#fff;
    text-decoration:none;
    padding:10px 20px;
    border-radius:5px;
}

.book-btn:hover{

    background:#D4AF37;

}
/* ===========================
   WHY CHOOSE US
=========================== */

.why-us{
    padding:100px 0;
    background:#ffffff;
}

.why-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:30px;
}

.why-card{
    background:#f8f9fc;
    padding:35px;
    border-radius:12px;
    box-shadow:0 5px 15px rgba(0,0,0,.08);
    transition:.3s;
}

.why-card:hover{
    transform:translateY(-8px);
}

.why-card h3{
    color:#0B2D5C;
    margin-bottom:15px;
    font-size:22px;
}

.why-card p{
    color:#666;
    line-height:1.8;
}
/* ===========================
   OUR STRENGTHS
=========================== */

.strengths{
    padding:100px 0;
    background:#f8f9fc;
}

.strength-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.strength-card{
    background:#fff;
    padding:35px 25px;
    border-radius:12px;
    text-align:center;
    box-shadow:0 8px 20px rgba(0,0,0,.08);
    transition:.3s;
}

.strength-card:hover{
    transform:translateY(-10px);
}

.icon{
    font-size:50px;
    margin-bottom:20px;
}

.strength-card h3{
    color:#0B2D5C;
    margin-bottom:15px;
}

.strength-card p{
    color:#666;
    line-height:1.8;
}
/* ===========================
   CALL TO ACTION
=========================== */

.cta{

    background:#0B2D5C;
    color:#fff;
    text-align:center;
    padding:100px 20px;

}

.cta h2{

    font-size:42px;
    margin-bottom:20px;

}

.cta p{

    max-width:700px;
    margin:auto;
    line-height:1.8;
    margin-bottom:40px;

}

.cta-buttons{

    display:flex;
    justify-content:center;
    gap:20px;

}

.btn-outline{

    display:inline-block;
    border:2px solid #fff;
    color:#fff;
    padding:14px 30px;
    text-decoration:none;
    border-radius:8px;
    font-weight:600;
    transition:all .35s ease;

}

.btn-outline:hover{

    background:#fff;
    color:#0B2D5C;
    transform:translateY(-4px);
    box-shadow:0 12px 25px rgba(255,255,255,.25);

}


/* ===========================
   FOOTER
=========================== */

.footer{

    background:#081d42;
    color:#fff;
    padding:70px 0 0;

}
.footer{
    position:relative;
    z-index:1;
}

.footer-grid{

    display:grid;
    grid-template-columns:2fr 1fr 1fr;
    gap:50px;

}

.footer img{

    width:200px;
    margin-bottom:20px;

}

.footer p{

    line-height:1.8;
    color:#ddd;

}

.footer h3{

    margin-bottom:20px;

}

.footer ul{

    list-style:none;

}

.footer ul li{

    margin-bottom:12px;

}

.footer ul li a{

    color:#ddd;
    text-decoration:none;
    transition:.3s;

}

.footer ul li a:hover{

    color:#D4AF37;

}

.copyright{

    text-align:center;
    border-top:1px solid rgba(255,255,255,.1);
    margin-top:60px;
    padding:20px 0;
    color:#bbb;

}
/* ===========================
   PREMIUM HERO
=========================== */

.hero{
    position: relative;
    background: linear-gradient(rgba(11,45,92,.85), rgba(11,45,92,.85)),
                url("../images/background/hero-bg.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 90vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-content{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 80px;
}

.hero-left{
    flex:1;
}

.hero-tag{
    display:inline-block;
    background:#D4AF37;
    color:#fff;
    padding:10px 18px;
    border-radius:30px;
    font-size:14px;
    margin-bottom:20px;
}

.hero-left h1{
    font-size:60px;
    color:#fff;
    line-height:1.2;
    margin-bottom:25px;
}

.hero-left h1 span{
    color:#D4AF37;
}

.hero-left p{
    color:#f1f1f1;
    font-size:18px;
    line-height:1.8;
    margin-bottom:35px;
    max-width:600px;
}

.hero-buttons{
    display:flex;
    gap:20px;
}

.hero-right{
    flex:1;
    position:relative;
    height:600px;
}
.book{

    position:absolute;
    width:190px;
    border-radius:12px;
    box-shadow:0 20px 40px rgba(0,0,0,.35);
    transition:.4s;

}

.book:hover{

    transform:scale(1.05);

}

.one{

    top:30px;
    left:40px;
    transform:rotate(-12deg);

}

.two{

    top:120px;
    right:40px;
    transform:rotate(10deg);

}

.three{

    bottom:40px;
    left:120px;
    transform:rotate(-6deg);

}

.four{

    bottom:120px;
    right:110px;
    transform:rotate(12deg);

}
/* ===========================
   MOBILE MENU BUTTON
=========================== */

.menu-toggle{

    display:none;
    background:none;
    border:none;
    font-size:32px;
    cursor:pointer;
    color:#0B2D5C;

}
/* ===========================
   BACK TO TOP
=========================== */

#backToTop{

    position:fixed;
    bottom:25px;
    right:25px;
    width:50px;
    height:50px;
    border:none;
    border-radius:50%;
    background:#0B2D5C;
    color:#fff;
    font-size:22px;
    cursor:pointer;
    display:none;
    z-index:999;
    transition:.35s;

}

#backToTop:hover{

    background:#D4AF37;
    transform:translateY(-4px);

}
.whatsapp{
    position:fixed;
    bottom:90px;
    right:25px;
    background:#25D366;
    color:#fff;
    padding:15px 18px;
    border-radius:50px;
    text-decoration:none;
    font-weight:bold;
    z-index:999;
}
@media (max-width:768px){

.whatsapp{
    bottom:20px;
    right:15px;
    padding:12px 15px;
    font-size:14px;
}

}
/* ===== Mission Section ===== */

.mission{
    padding:100px 0;
    background:#f8f9fc;
}

.mission h2{
    text-align:center;
    font-size:42px;
    margin-bottom:60px;
}

.mission-grid{
    display:flex;
    gap:30px;
}

.mission-card{
    flex:1;
    background:#fff;
    padding:40px;
    border-radius:15px;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
    transition:.3s;
}

.mission-card:hover{
    transform:translateY(-10px);
}

.mission-card h3{
    margin-bottom:20px;
    color:#0b63ce;
}

.mission-card p{
    line-height:1.8;
    color:#555;
}
/* ===== Why Choose Us ===== */

.why-us{
    padding:100px 0;
    background:#ffffff;
}

.why-us h2{
    text-align:center;
    font-size:42px;
    margin-bottom:60px;
}

.why-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:30px;
}

.why-card{
    background:#f8f9fc;
    padding:35px;
    border-radius:15px;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    transition:.3s;
}

.why-card:hover{
    transform:translateY(-10px);
}

.why-card h3{
    color:#16386b;
    margin-bottom:15px;
    font-size:24px;
}

.why-card p{
    color:#555;
    line-height:1.8;
}
/* ===== Achievements ===== */

.achievements{
    padding:100px 0;
    background:#16386b;
    color:#fff;
}

.achievements h2{
    text-align:center;
    font-size:42px;
    margin-bottom:60px;
}

.achievement-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.achievement-box{
    text-align:center;
    background:rgba(255,255,255,.08);
    padding:40px 20px;
    border-radius:15px;
    transition:.3s;
}

.achievement-box:hover{
    transform:translateY(-8px);
    background:rgba(255,255,255,.15);
}

.achievement-box h3{
    font-size:48px;
    color:#FFD54A;
    margin-bottom:15px;
}

.achievement-box p{
    font-size:18px;
}
/* ===== Team ===== */

.team{
    padding:100px 0;
    background:#f8f9fc;
}

.team h2{
    text-align:center;
    font-size:42px;
    margin-bottom:60px;
}

.team-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:35px;
}

.team-card{
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    text-align:center;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
    transition:.3s;
}

.team-card:hover{
    transform:translateY(-10px);
}

.team-card img{
    width:100%;
    height:320px;
    object-fit:cover;
}

.team-card h3{
    margin-top:25px;
    color:#16386b;
}

.team-card span{
    display:block;
    color:#777;
    padding-bottom:25px;
}
/* ===================================
   BOOK CATEGORIES
=================================== */

.book-categories{

    padding:100px 0;
    background:#f8f9fc;

}

.book-categories h2{

    text-align:center;
    font-size:42px;
    color:#0B2D5C;
    margin-bottom:60px;

}

.category-grid{

    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;

}

.category-card{

    background:#fff;
    padding:40px 30px;
    border-radius:15px;
    text-align:center;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    transition:.35s;

}

.category-card:hover{

    transform:translateY(-10px);
    box-shadow:0 20px 40px rgba(0,0,0,.15);

}

.category-card h3{

    color:#0B2D5C;
    margin-bottom:15px;
    font-size:24px;

}

.category-card p{

    color:#666;
    line-height:1.8;

}
/* ===================================
   BOOK GALLERY
=================================== */

.book-gallery{

    padding:100px 0;

}

.book-gallery h2{

    text-align:center;
    font-size:42px;
    color:#0B2D5C;
    margin-bottom:60px;

}

.book-grid{

    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;

}

.book-card{

    background:#fff;
    border-radius:15px;
    overflow:hidden;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    transition:.35s;

}

.book-card:hover{

    transform:translateY(-10px);
    box-shadow:0 20px 40px rgba(0,0,0,.15);

}

.book-card img{

    width:100%;
    height:320px;
    object-fit:cover;

}

.book-info{

    padding:25px;

}

.book-info h3{

    color:#0B2D5C;
    margin-bottom:10px;

}

.book-info p{

    color:#777;
    margin-bottom:20px;

}

.book-info .btn{

    display:block;
    text-align:center;

}
/* ===================================
   SEARCH & FILTER
=================================== */

.catalog-tools{

    display:flex;
    justify-content:space-between;
    gap:20px;
    margin-bottom:50px;

}

.search-box{

    flex:1;
    padding:16px 20px;
    border:1px solid #ddd;
    border-radius:10px;
    font-size:16px;

}

.category-filter{

    width:260px;
    padding:16px;
    border:1px solid #ddd;
    border-radius:10px;
    font-size:16px;
}
/* ===================================
   BOOK DETAILS PAGE
=================================== */

.book-details-page{

    padding:100px 0;
    background:#fff;

}

.details-grid{

    display:grid;
    grid-template-columns:450px 1fr;
    gap:60px;
    align-items:center;

}

.book-cover img{

    width:100%;
    border-radius:15px;
    box-shadow:0 20px 40px rgba(0,0,0,.15);

}

.book-category{

    display:inline-block;
    background:#0B2D5C;
    color:#fff;
    padding:8px 18px;
    border-radius:30px;
    margin-bottom:20px;

}

.book-content h2{

    font-size:42px;
    color:#0B2D5C;
    margin-bottom:20px;

}

.author{

    color:#777;
    font-weight:600;
    margin-bottom:25px;

}

.book-content p{

    line-height:1.9;
    color:#555;
    margin-bottom:25px;

}

.book-content .btn{

    margin-right:15px;

}
.btn-whatsapp{

    background:#25D366;
    color:#fff;
    padding:14px 30px;
    border-radius:8px;
    text-decoration:none;
    font-weight:600;
    display:inline-block;
    margin-top:15px;
    transition:.3s;

}

.btn-whatsapp:hover{

    background:#1da851;

}
/* ===================================
   FOOTER
=================================== */

.footer{

    background:#0B2D5C;
    color:#fff;
    padding:70px 0 0;

}

.footer-container{
    display:grid;
    grid-template-columns:2fr 1fr 1fr;
    gap:50px;
    align-items:center;
}



.footer-logo{

    height:60px;
    margin-bottom:20px;

}

.footer p{

    color:#ddd;
    line-height:1.8;

}

.footer h3{

    margin-bottom:20px;
    color:#fff;

}

.footer ul{

    list-style:none;
    padding:0;

}

.footer ul li{

    margin-bottom:12px;

}

.footer ul li a{

    color:#ddd;
    text-decoration:none;
    transition:.3s;

}

.footer ul li a:hover{

    color:#D4AF37;

}

.footer-bottom{

    margin-top:50px;
    text-align:center;
    padding:20px;
    border-top:1px solid rgba(255,255,255,.15);
    color:#ccc;

}
/* ===================================
   FLOATING WHATSAPP
=================================== */

.whatsapp-float{

    position:fixed;
    right:25px;
    bottom:25px;
    width:65px;
    height:65px;
    z-index:9999;

}

.whatsapp-float img{

    width:100%;
    height:100%;
    border-radius:50%;
    box-shadow:0 10px 25px rgba(0,0,0,.25);
    transition:.3s;

}

.whatsapp-float img:hover{

    transform:scale(1.12);

}
/* ===================================
   BOOK DETAILS
=================================== */

.book-details{

    padding:100px 0;
    background:#fff;

}

.details-container{

    display:flex;
    align-items:center;
    gap:70px;

}

.book-image{

    flex:1;

}

.book-image img{

    width:100%;
    max-width:420px;
    border-radius:15px;
    box-shadow:0 15px 40px rgba(0,0,0,.15);

}

.book-content{

    flex:1;

}

.book-content h2{

    font-size:42px;
    color:#0B2D5C;
    margin-bottom:25px;

}

.book-content p{

    font-size:18px;
    line-height:1.8;
    margin-bottom:15px;
    color:#555;

}
.book-buttons{

    margin-top:35px;
    margin-bottom:80px;

    display:flex;
    gap:20px;
    flex-wrap:wrap;

}


.whatsapp-btn{

    background:#25D366;
    color:#fff;
    padding:14px 28px;
    border-radius:8px;
    text-decoration:none;
    font-weight:600;
    transition:.3s;

}

.whatsapp-btn:hover{

    background:#1EBE5D;

}
/* ===================================
   CONTACT PAGE
=================================== */

.contact-section{

    padding:100px 0;
    background:#f8f9fc;

}

.contact-grid{

    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;

}

.contact-info h2,
.contact-form h2{

    color:#0B2D5C;
    margin-bottom:20px;

}

.contact-info p{

    color:#666;
    line-height:1.8;

}

.contact-box{

    background:#fff;
    padding:20px;
    border-radius:10px;
    margin-top:20px;
    box-shadow:0 8px 20px rgba(0,0,0,.08);

}

.contact-box h4{

    color:#0B2D5C;
    margin-bottom:10px;

}

.contact-form{

    background:#fff;
    padding:35px;
    border-radius:15px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);

}

.contact-form input,
.contact-form textarea{

    width:100%;
    padding:15px;
    margin-bottom:20px;
    border:1px solid #ddd;
    border-radius:8px;
    font-size:16px;
    outline:none;

}

.contact-form input:focus,
.contact-form textarea:focus{

    border-color:#0B2D5C;

}
/* ===== Phone Group ===== */

.phone-group{

    display:flex;
    align-items:center;
    border:1px solid #ddd;
    border-radius:10px;
    overflow:hidden;
    height:55px;
    margin-bottom:20px;
    background:#fff;

}

.phone-group select{

    width:90px;
    height:100%;
    border:none;
    border-right:1px solid #ddd;
    padding:0 8px;
    font-size:16px;
    font-weight:600;
    color:#0B2D5C;
    background:#f8f9fc;
    outline:none;
    cursor:pointer;
    text-align:center;

}

.phone-group input{

    flex:1;
    height:55px;
    border:none;
    padding:0 18px;
    margin:0;
    font-size:16px;
    line-height:55px;
    outline:none;
    background:#fff;
    box-sizing:border-box;
    vertical-align:middle;


}

.phone-group:focus-within{

    border-color:#0B2D5C;
    box-shadow:0 0 0 3px rgba(11,45,92,.15);

}
.order-summary{

    background:#f8f9fc;
    border-left:5px solid #0B2D5C;
    padding:20px;
    margin:20px 0;
    border-radius:10px;

}

.order-summary h3{

    color:#0B2D5C;
    margin-bottom:15px;

}

.order-summary p{

    margin:8px 0;
    color:#555;

}

.agree-box{

    display:flex;
    align-items:center;
    gap:10px;
    margin:20px 0;
    font-size:15px;
    color:#555;

}

.agree-box input{

    width:18px;
    height:18px;

}
/* ===== Select Box ===== */

.contact-form select{

    width:100%;
    height:55px;
    padding:0 18px;
    margin-bottom:20px;
    border:1px solid #ddd;
    border-radius:10px;
    background:#fff;
    color:#333;
    font-size:16px;
    outline:none;
    transition:.3s;
    cursor:pointer;
    appearance:none;
    -webkit-appearance:none;
    -moz-appearance:none;

}

.contact-form select:focus{

    border-color:#0B2D5C;
    box-shadow:0 0 0 3px rgba(11,45,92,.12);

}
.phone-group{
    display:flex;
    align-items:center;
    width:100%;
    height:55px;
    margin-bottom:20px;
    border:1px solid #ddd;
    border-radius:10px;
    overflow:hidden;
    background:#fff;
}

.country-code{
    width:110px;
    min-width:110px;
    height:100%;
    border:none;
    border-right:1px solid #ddd;
    background:#f8f9fc;
    color:#0B2D5C;
    font-size:16px;
    font-weight:600;
    padding:0 10px;
    outline:none;
    cursor:pointer;
}

.phone-group input{
    flex:1;
    height:100%;
    border:none;
    padding:0 18px;
    font-size:16px;
    outline:none;
    background:#fff;
}
/* ===== Active Menu ===== */

.nav-links a.active{

    color:#D4AF37;
    font-weight:700;

}

.nav-links a.active::after{

    width:100%;

}
.achievement-grid{
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 20px;
}

@media(max-width:768px){

.achievement-grid{
    grid-template-columns: repeat(2,1fr);
}

}

@media(max-width:480px){

.achievement-grid{
    grid-template-columns: 1fr;
}

}
.team-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}

.team-card img{
    width:100%;
    height:280px;
    object-fit:cover;
}

@media(max-width:768px){

.team-grid{
    grid-template-columns:1fr;
}

.team-card img{
    height:320px;
}

}
.book-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

@media(max-width:768px){

.book-grid{
    grid-template-columns:repeat(2,1fr);
}

}

@media(max-width:480px){

.book-grid{
    grid-template-columns:1fr;
}

}
/* =========================
   Mobile Footer
========================= */

.footer-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:40px;
}

@media (max-width:768px){

.footer-grid{
    grid-template-columns:1fr;
    text-align:center;
    gap:30px;
}

.footer-about,
.footer-links,
.footer-contact{
    width:100%;
}

.footer-about img{
    margin:auto;
    display:block;
}

.footer-links ul{
    padding:0;
}

.footer-links ul li{
    list-style:none;
    margin:10px 0;
}

}
/* ===========================
   Footer Responsive
=========================== */

@media (max-width:768px){

.footer-grid{
    grid-template-columns:1fr;
    gap:35px;
    text-align:center;
}

.footer img{
    width:160px;
    margin:0 auto 20px;
    display:block;
}

.footer ul{
    padding:0;
}

.footer ul li{
    margin-bottom:10px;
}

}
/* ===== Footer Mobile Fix ===== */

@media (max-width:768px){

.footer{
    overflow:hidden;
}

.footer-grid{
    display:flex;
    flex-direction:column;
    align-items:center;
    text-align:center;
    gap:30px;
}

.footer-about,
.footer-links,
.footer-contact{
    width:100%;
    max-width:320px;
}

.footer img{
    width:150px;
    margin:0 auto 15px;
    display:block;
}

}
.whatsapp{
    position:fixed;
    right:20px;
    bottom:100px;
    background:#25D366;
    color:#fff;
    padding:14px 18px;
    border-radius:50px;
    text-decoration:none;
    font-weight:600;
    z-index:99999;
}
.whatsapp-float{
    position:fixed;
    right:20px;
    bottom:20px;
    width:60px;
    height:60px;
    z-index:99999;
}