/* ===========================================
   WALLVOICE24BD CONTACT PAGE
=========================================== */

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

html{
    scroll-behavior:smooth;
}

body{

    font-family:"Poppins",sans-serif;

    background:#090909;

    color:#fff;

    overflow-x:hidden;

    line-height:1.8;

}

/* ===========================================
        SCROLLBAR
=========================================== */

::-webkit-scrollbar{
    width:10px;
}

::-webkit-scrollbar-track{
    background:#111;
}

::-webkit-scrollbar-thumb{
    background:#d10000;
    border-radius:50px;
}

/* ===========================================
        NAVBAR
=========================================== */

.navbar{

    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:90px;

    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:0 60px;

    background:rgba(0,0,0,.75);
    backdrop-filter:blur(12px);

    border-bottom:1px solid rgba(255,255,255,.08);

    z-index:9999;

}

.logo{

    font-size:34px;

    font-weight:800;

    color:#fff;

}

.logo span{

    color:#d10000;

}

.navbar ul{

    display:flex;

    gap:40px;

    list-style:none;

}

.navbar ul li a{

    text-decoration:none;

    color:#fff;

    font-size:16px;

    font-weight:500;

    position:relative;

    transition:.35s;

}

.navbar ul li a:hover{

    color:#ff3b3b;

}

.navbar ul li a.active{

    color:#ff2b2b;

}

.navbar ul li a::before{

    content:"";

    position:absolute;

    left:0;

    bottom:-8px;

    width:0;

    height:2px;

    background:#ff2b2b;

    transition:.35s;

}

.navbar ul li a:hover::before,
.navbar ul li a.active::before{

    width:100%;

}

/* ===========================================
        HERO
=========================================== */

.hero{

    position:relative;

    min-height:70vh;

    display:flex;

    justify-content:center;

    align-items:center;

    text-align:center;

    background:url("LandingPageImages/about-hero.png");

    background-size:cover;

    background-position:center;

}

.overlay{

    position:absolute;

    inset:0;

    background:rgba(0,0,0,.72);

    backdrop-filter:blur(5px);

}

.hero-content{

    position:relative;

    z-index:2;

}

.hero-content h1{

    font-size:72px;

    margin-bottom:20px;

}

.hero-content p{

    font-size:22px;

    color:#ddd;

}

/* ===========================================
        COMMON
=========================================== */

section{

    padding:90px 8%;

}

.section-title{

    text-align:center;

    margin-bottom:60px;

}

.section-title h2{

    font-size:44px;

    margin-bottom:15px;

}

.section-title p{

    max-width:700px;

    margin:auto;

    color:#bbb;

}

/* ===========================================
        PRIMARY CONTACT
=========================================== */

.primary-card{

    max-width:700px;

    margin:auto;

    background:#151515;

    border-radius:20px;

    padding:50px;

    text-align:center;

    border:1px solid rgba(255,255,255,.05);

    transition:.35s;

}

.primary-card:hover{

    transform:translateY(-8px);

    box-shadow:0 15px 35px rgba(255,0,0,.15);

}

.primary-card i{

    font-size:60px;

    color:#d10000;

    margin-bottom:25px;

}

.primary-card h3{

    font-size:34px;

    margin-bottom:15px;

}

.primary-card p{

    color:#bbb;

    margin-bottom:30px;

}

.primary-card a{

    display:inline-block;

    padding:16px 36px;

    background:#d10000;

    color:#fff;

    text-decoration:none;

    border-radius:8px;

    transition:.35s;

}

.primary-card a:hover{

    background:#ff2020;

}


/* ===========================================
        AUTHORS
=========================================== */

.contact-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(380px,1fr));

    gap:40px;

}

.contact-card{

    background:#151515;

    border-radius:20px;

    overflow:hidden;

    text-align:center;

    transition:.35s;

}

.contact-card:hover{

    transform:translateY(-10px);

    box-shadow:0 20px 40px rgba(255,0,0,.18);

}

.contact-card img{

    width:100%;

    height:480px;

    object-fit:cover;

}

.contact-card h3{

    margin-top:30px;

    font-size:30px;

}

.contact-card p{

    color:#bbb;

    padding:12px 30px 20px;

}

.socials{

    display:flex;

    justify-content:center;

    gap:18px;

    padding-bottom:35px;

}

.socials a{

    width:58px;

    height:58px;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    background:#222;

    color:#fff;

    text-decoration:none;

    font-size:22px;

    transition:.35s;

}

.socials a:hover{

    background:#d10000;

    transform:translateY(-5px);

}


/* ===========================================
        FOOTER
=========================================== */

footer{

    background:#050505;

    padding:70px 20px;

}

.footer-content{

    max-width:900px;

    margin:auto;

    text-align:center;

}

.footer-content h2{

    font-size:42px;

    margin-bottom:15px;

}

.footer-content h2 span{

    color:#d10000;

}

.footer-content p{

    color:#bbb;

}

.footer-content hr{

    width:120px;

    margin:30px auto;

    border:1px solid rgba(255,255,255,.08);

}

/* ===========================================
        MOBILE
=========================================== */

@media(max-width:768px){

.navbar{

    flex-direction:column;

    justify-content:center;

    gap:15px;

    height:auto;

    padding:20px;

}

.navbar ul{

    flex-wrap:wrap;

    justify-content:center;

    gap:15px;

}

.hero{

    min-height:55vh;

}

.hero-content h1{

    font-size:46px;

}

.hero-content p{

    font-size:17px;

}

.section-title h2{

    font-size:34px;

}

.primary-card{

    padding:35px;

}

.primary-card h3{

    font-size:24px;

    word-break:break-word;

}

.contact-grid{

    grid-template-columns:1fr;

}

.contact-card img{

    height:340px;

}

}


