<style>
:root {
    --brand-color: #8B1647;
}

*{ margin:0; padding:0; box-sizing:border-box; }

body{ font-family:Arial, Helvetica, sans-serif; background:#fff; }

.container{ width:90%; max-width:1200px; margin:auto; }

.top-header{
    background:#fff;
    border-bottom:1px solid #eee;
    padding:12px 0;
}

.header-inner{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:30px;
}

.security-badge{
    border-left:2px solid rgba(139,10,70,.2);
    font-family:'Oswald',sans-serif;
    font-size:11px;
    line-height:1.1;
    text-transform:uppercase;
    color:#333;
    font-weight:600;
}

.security-badge span{
    color:#8B0A46;
    font-size:14px;
    font-weight:700;
}

/* Logo */
.logo{
    display:flex;
    align-items:center;
    gap:15px;
    text-decoration:none;
}

.logo-box{
    width:65px;
    height:65px;
    background:#8B0A46;
    border-radius:12px;
    overflow:hidden;
    box-shadow:0 5px 15px rgba(139,10,70,.25);
}

.logo-box img{
    width:100%;
    height:100%;
    object-fit:cover; /* পুরো box fill করবে */
    display:block;
}

.logo-text{
    display:flex;
    flex-direction:column;
}

.logo h1{
    margin:0;
    line-height:.9;
    font-family:'Oswald',sans-serif;
    font-size:28px;
    font-weight:700;
    text-transform:uppercase;
}

.logo h1 span:first-child{
    color:#8B0A46;
    letter-spacing:2px;
}

.logo h1 span:last-child{
    color:#111;
    letter-spacing:2px;
}

.tagline{
    margin-top:4px;
    font-size:10px;
    font-weight:600;
    letter-spacing:1.5px;
    text-transform:uppercase;
    color:#777;
    font-family:'Poppins',sans-serif;
}

/* Hotline */
.hotlines{
    display:flex;
    align-items:center;
    gap:40px;
}

.hotline-item{
    text-align:center;
}

.hotline-item strong{
    display:block;
    color:#8B0A46;
    font-size:14px;
}

.hotline-item span{
    font-size:18px;
    font-weight:700;
    color:#222;
}

/* Social */
.social{
    display:flex;
    gap:12px;
}

.social a{
    width:42px;
    height:42px;
    border-radius:50%;
    background:#8B0A46;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    transition:.3s;
}

.social a:hover{
    transform:translateY(-3px);
}

/* Mobile Hide */
@media (max-width: 992px){
    .top-header{
        display:none;
    }
}
/* Navbar */
.navbar{
    background:#8B0A46;
    position:relative;
    display:flex;
    align-items:center;
    justify-content:center; /* Desktop Menu Center */
    min-height:70px;
}

/* Mobile Logo Hide on Desktop */
.nav-brand{
    display:none;
}

/* Menu */
.navbar ul{
    list-style:none;
    display:flex;
    align-items:center;
    justify-content:center;
    margin:0;
    padding:0;
}

.navbar ul li a{
    display:block;
    padding:22px 25px;
    color:#fff;
    text-decoration:none;
    font-weight:600;
    letter-spacing:1px;
}

/* Mobile Menu Button Hide */
.menu-toggle{
    display:none;
}
.book-btn{
    background:linear-gradient(135deg,#A61B5C,#C63D79);
    color:#fff !important;
    border-radius:50px;
    font-weight:bold;
    animation:pulse 1.5s infinite;
    box-shadow:0 4px 15px rgba(166,27,92,.35);
}

@keyframes pulse{
    0%{transform:scale(1);}
    50%{transform:scale(1.05);}
    100%{transform:scale(1);}
}

/* =========================
   Mobile
========================= */
@media (max-width:992px){

    .navbar{
        justify-content:space-between;
        padding:0 15px;
        min-height:65px;
    }

    /* Show Logo & Name Only Mobile */
    .nav-brand{
        display:flex;
        align-items:center;
        gap:10px;
    }

    .nav-brand img{
        width:45px;
        height:45px;
        object-fit:cover;
        border-radius:8px;
    }

    .nav-brand span{
        color:#fff;
        font-size:16px;
        font-weight:700;
        font-family:'Oswald',sans-serif;
    }

    /* Show Hamburger */
    .menu-toggle{
        display:block;
        color:#fff;
        font-size:24px;
        cursor:pointer;
    }

    /* Mobile Menu */
    .navbar ul{
        display:none;
        position:absolute;
        top:100%;
        left:0;
        width:100%;
        background:#8B0A46;
        flex-direction:column;
        text-align:center;
        z-index:999;
    }

    .navbar ul.active{
        display:flex;
    }

    .navbar ul li{
        width:100%;
    }

    .navbar ul li a{
        padding:15px;
        border-top:1px solid rgba(255,255,255,.1);
    }
}
.hero{position:relative;height: 66vh;overflow:hidden;}
.slide{ position:absolute; width:100%; height:100%; opacity:0; transition:1s ease; }
.slide.active{ opacity:1; }
.slide img{ width:100%; height:100%; object-fit:cover; }
.dots{ position:absolute; bottom:30px; left:50%; transform:translateX(-50%); display:flex; gap:10px; z-index:10; }
.dot{ width:12px; height:12px; border-radius:50%; background:#fff; cursor:pointer; }
.dot.active{ background:var(--brand-color); }

.p.pillars{
    padding:80px 0;
    background:#f8f8f8;
}

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

.section-title{
    text-align:center;
    margin-bottom:50px;
}

.section-title h2{
    font-size:38px;
    color:#8B0A46;
    margin-bottom:10px;
}

.section-title p{
    color:#666;
}

.pillars-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:25px;
}

.pillar-card{
    background:#fff;
    padding:35px 25px;
    border-radius:20px;
    text-align:center;
    position:relative;
    overflow:hidden;
    transition:.4s;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.pillar-card::before{
    content:'';
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:5px;
    background:#8B0A46;
}

.pillar-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 40px rgba(139,10,70,.2);
}

.icon{
    width:80px;
    height:80px;
    margin:auto;
    background:linear-gradient(135deg,#8B0A46,#c21e72);
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:35px;
    color:#fff;
    margin-bottom:20px;
}

.pillar-card h3{
    margin-bottom:15px;
    color:#222;
    font-size:24px;
}

.pillar-card p{
    color:#666;
    line-height:1.7;
    margin-bottom:25px;
}

.btn-view{
    display:inline-block;
    padding:12px 28px;
    background:#8B0A46;
    color:#fff;
    text-decoration:none;
    border-radius:50px;
    font-weight:600;
    transition:.3s;
}

.btn-view:hover{
    background:#650732;
    transform:scale(1.05);
}

@media(max-width:768px){
    .section-title h2{
        font-size:28px;
    }
}
<!-- why client Say Css Start-->
.why-force{
    padding:100px 0;
    background:#f8f9fc;
    overflow:hidden;
}

.why-force .container{
    width:90%;
    max-width:1200px;
    margin:auto;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
}

.force-image{
    position:relative;
}

.image-box{
    border-radius:30px;
    overflow:hidden;
    box-shadow:0 20px 50px rgba(0,0,0,.12);
}

.image-box img{
    width:100%;
    display:block;
    height:600px;
    object-fit:cover;
}

.experience-card{
    position:absolute;
    bottom:30px;
    right:-20px;
    background:#8B0A46;
    color:#fff;
    padding:25px 35px;
    border-radius:20px;
    text-align:center;
    box-shadow:0 15px 40px rgba(139,10,70,.35);
}

.experience-card h3{
    font-size:40px;
    margin:0;
    line-height:1;
}

.experience-card span{
    font-size:14px;
    letter-spacing:1px;
}

.sub-title{
    display:inline-block;
    background:rgba(139,10,70,.1);
    color:#8B0A46;
    padding:10px 18px;
    border-radius:30px;
    font-size:14px;
    font-weight:700;
    letter-spacing:2px;
    margin-bottom:20px;
}

.force-content h2{
    font-size:52px;
    line-height:1.2;
    color:#111;
    margin-bottom:25px;
    font-weight:800;
}

.force-content p{
    font-size:16px;
    color:#666;
    line-height:1.9;
    margin-bottom:35px;
}

.features{
    display:grid;
    gap:20px;
    margin-bottom:35px;
}

.feature-box{
    display:flex;
    gap:15px;
    align-items:flex-start;
    background:#fff;
    padding:20px;
    border-radius:18px;
    box-shadow:0 10px 30px rgba(0,0,0,.05);
    transition:.4s;
}

.feature-box:hover{
    transform:translateX(10px);
}

.feature-box span{
    min-width:45px;
    height:45px;
    background:#8B0A46;
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:bold;
}

.feature-box h4{
    margin:0 0 8px;
    color:#111;
}

.feature-box p{
    margin:0;
    font-size:14px;
}

.force-btn{
    display:inline-block;
    background:#8B0A46;
    color:#fff;
    text-decoration:none;
    padding:15px 35px;
    border-radius:50px;
    font-weight:700;
    transition:.4s;
}

.force-btn:hover{
    transform:translateY(-4px);
    box-shadow:0 15px 35px rgba(139,10,70,.3);
}

@media(max-width:991px){

    .why-force .container{
        grid-template-columns:1fr;
    }

    .force-content h2{
        font-size:38px;
    }

    .image-box img{
        height:450px;
    }

    .experience-card{
        right:15px;
    }
}
<!-- Why Client Say Css End-->



<!-- client Review Css Start-->
.testimonial-section{
    padding:100px 0;
    background:#f7f7f9;
    overflow:hidden;
}

.section-header{
    text-align:center;
    margin-bottom:60px;
}

.section-header span{
    color:#8B0A46;
    font-weight:700;
    letter-spacing:2px;
}

.section-header h2{
    font-size:42px;
    margin-top:10px;
    color:#111;
}

.testimonial-wrapper{
    overflow:hidden;
}

.testimonial-track{
    display:flex;
    gap:30px;
    width:max-content;
    animation:scrollReview 30s linear infinite;
}

.testimonial-track:hover{
    animation-play-state:paused;
}

.testimonial-card{
    width:380px;
    background:rgba(255,255,255,.9);
    backdrop-filter:blur(12px);
    border-radius:25px;
    padding:35px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    position:relative;
    transition:.4s;
}

.testimonial-card:hover{
    transform:translateY(-10px);
}

.testimonial-card::before{
    content:'';
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:5px;
    background:#8B0A46;
}

.quote-icon{
    font-size:60px;
    color:#8B0A46;
    line-height:1;
}

.testimonial-card p{
    color:#666;
    line-height:1.8;
    margin:20px 0;
}

.stars{
    color:#ffb400;
    font-size:20px;
    margin-bottom:25px;
}

.client{
    display:flex;
    align-items:center;
    gap:15px;
}

.client img{
    width:65px;
    height:65px;
    border-radius:50%;
    border:3px solid #8B0A46;
}

.client h4{
    margin:0;
    color:#111;
}

.client span{
    color:#777;
    font-size:14px;
}

@keyframes scrollReview{
    from{
        transform:translateX(0);
    }
    to{
        transform:translateX(-50%);
    }
}

@media(max-width:768px){

    .testimonial-card{
        width:300px;
    }

    .section-header h2{
        font-size:30px;
    }
}

.iforce-footer{
    background:#0f1117;
    color:#fff;
    position:relative;
    overflow:hidden;
}

.iforce-footer::before{
    content:'';
    position:absolute;
    width:500px;
    height:500px;
    background:rgba(139,10,70,.08);
    border-radius:50%;
    top:-250px;
    right:-250px;
}

.iforce-footer::after{
    content:'';
    position:absolute;
    width:400px;
    height:400px;
    background:rgba(139,10,70,.06);
    border-radius:50%;
    bottom:-200px;
    left:-200px;
}

.footer-top{
    max-width:1300px;
    margin:auto;
    padding:90px 20px 60px;
    display:grid;
    grid-template-columns:2fr 1fr 1fr 1.5fr;
    gap:50px;
    position:relative;
    z-index:2;
}

.footer-box h2{
    color:#fff;
    font-size:40px;
    margin-bottom:20px;
    font-weight:800;
}

.footer-box h3{
    margin-bottom:25px;
    font-size:22px;
    position:relative;
    padding-bottom:12px;
}

.footer-box h3::after{
    content:'';
    position:absolute;
    left:0;
    bottom:0;
    width:45px;
    height:3px;
    background:#8B0A46;
}

.footer-box p{
    color:#b8b8b8;
    line-height:1.9;
}

.footer-box ul{
    list-style:none;
    padding:0;
}

.footer-box ul li{
    margin-bottom:15px;
}

.footer-box ul li a{
    color:#b8b8b8;
    text-decoration:none;
    transition:.3s;
}

.footer-box ul li a:hover{
    color:#8B0A46;
    padding-left:8px;
}

.social-links{
    display:flex;
    gap:12px;
    margin-top:25px;
}

.social-links a{
    width:45px;
    height:45px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:#171b24;
    color:#fff;
    text-decoration:none;
    transition:.4s;
}

.social-links a:hover{
    background:#8B0A46;
    transform:translateY(-6px);
}

.contact-item{
    display:flex;
    gap:12px;
    margin-bottom:18px;
    color:#b8b8b8;
}

.contact-item i{
    color:#8B0A46;
    margin-top:4px;
}

.footer-newsletter{
    display:flex;
    margin-top:25px;
    background:#171b24;
    border-radius:50px;
    overflow:hidden;
}

.footer-newsletter input{
    flex:1;
    border:none;
    background:none;
    padding:15px 20px;
    color:#fff;
    outline:none;
}

.footer-newsletter button{
    width:60px;
    border:none;
    background:#8B0A46;
    color:#fff;
    cursor:pointer;
}
.footer-bottom{
    text-align:center;
    padding:20px 15px;
    border-top:1px solid rgba(255,255,255,.1);
}

.footer-bottom p{
    margin:0;
    font-size:14px;
    color:#dcdcdc;
    white-space:nowrap; /* সব টেক্সট এক লাইনে */
}

.footer-bottom span{
    color:#FFD700;
    font-weight:600;
}
.dev-link{
    color:#FFD700;
    font-weight:600;
    text-decoration:none;
    transition:.3s;
}

.dev-link:hover{
    color:#ffffff;
    text-decoration:underline;
}
/* =========================
   RESPONSIVE DESIGN
========================= */

.right-info{
    display:flex;
    align-items:center;
    gap:30px;
}

/* Tablet */
@media(max-width:991px){

    .header-inner{
        flex-direction:column;
        gap:20px;
        text-align:center;
    }

    .right-info{
        flex-direction:column;
        gap:15px;
    }

    .navbar ul{
        flex-wrap:wrap;
        justify-content:center;
    }

    .navbar a{
        padding:15px;
        font-size:14px;
    }

    .hero{
        height:60vh;
    }

    .footer-top{
        grid-template-columns:1fr 1fr;
        gap:40px;
    }
}

/* Mobile */
@media(max-width:768px){

    .container{
        width:95%;
    }

    .logo{
        flex-direction:column;
        text-align:center;
    }

    .logo h1{
        font-size:20px;
    }

    .social{
        justify-content:center;
        flex-wrap:wrap;
    }

    .navbar ul{
        flex-direction:column;
    }

    .navbar a{
        padding:15px;
        text-align:center;
        border-bottom:1px solid rgba(255,255,255,.1);
    }

    .hero{
        height:20vh;
    }

    .section-title h2{
        font-size:28px;
    }

    .force-content h2{
        font-size:30px;
    }

    .experience-card{
        padding:15px 20px;
        right:10px;
        bottom:10px;
    }

    .experience-card h3{
        font-size:28px;
    }

    .testimonial-card{
        width:280px;
    }

    .footer-top{
        grid-template-columns:1fr;
        text-align:center;
    }

    .footer-box h3::after{
        left:50%;
        transform:translateX(-50%);
    }

    .contact-item{
        justify-content:center;
    }

    .social-links{
        justify-content:center;
    }

    .footer-newsletter{
        max-width:400px;
        margin:auto;
        margin-top:20px;
    }
    
}

/* Small Mobile */
@media(max-width:480px){

    .hero{
        height:20vh;
    }

    .section-header h2{
        font-size:26px;
    }

    .force-content h2{
        font-size:26px;
    }

    .feature-box{
        flex-direction:column;
        text-align:center;
    }

    .feature-box span{
        margin:auto;
    }

    .testimonial-card{
        width:250px;
        padding:25px;
    }

    .footer-box h2{
        font-size:30px;
    }
}

</style>