/* =========================
   BANNER SECTION
========================== */

.banner-section{
    background:url('../image/samsung-bg1.png') center center/cover no-repeat;
    min-height:90vh;
    display:flex;
    align-items:center;
    position:relative;
    overflow:hidden;
}

/* Optional Dark Overlay */
.banner-section::before{
    content:'';
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.4);
}

.banner-section .container{
    position:relative;
    z-index:2;
}

/* Left Content */

.banner-title{
    font-size:52px;
    font-weight:800;
    line-height:1.2;
    color:#fff;
    margin-bottom:20px;
}

.banner-title span{
    color:#000;
}

.banner-desc{
    font-size:17px;
    line-height:1.8;
    color:white;
    /* margin-bottom:30px; */
}

.banner-points{
    display:flex;
    flex-direction:column;
    gap:15px;
}

.point-item{
    font-size:17px;
    font-weight:600;
    color:#fff;
    display:flex;
    align-items:center;
    gap:10px;
}

.point-item i{
    color:#007aff;
    font-size:18px;
}

.call-button-wrapper{
    margin-top:25px;
}

.call-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    padding:12px 25px;
    background:#000;
    color:#fff;
    border-radius:25px;
    text-decoration:none;
    font-weight:600;
    font-size:16px;
    transition:0.3s all ease;
    border: none !important;
}

.call-btn:hover{
    background:#007aff;
    color:#000;
    transform:scale(1.05);
}

.call-btn i{
    font-size:18px;
    color:inherit;
}

/* Form Box */

.service-form-box{
    background:#fff;
    padding:35px;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,0.15);
}

.form-title{
    font-size:30px;
    font-weight:700;
    color:#000;
    margin-bottom:25px;
    text-align:center;
}

.custom-input{
    height:55px;
    border-radius:12px;
    border:1px solid #ddd;
    padding:12px 15px;
    font-size:15px;
    box-shadow:none !important;
}

textarea.custom-input{
    height:auto;
}

.custom-input:focus{
    border-color:#000;
}

.submit-btn{
    width:100%;
    background:#000;
    color:#fff;
    border:none;
    height:55px;
    border-radius:12px;
    font-size:17px;
    font-weight:600;
    transition:0.3s;
}

.submit-btn:hover{
    background:#007aff;
    color:#fff;
}

/* =========================
   TABLET RESPONSIVE
========================== */

@media(max-width:991px){

    .banner-section{
        padding:70px 0;
        min-height:auto;
        background:url('../image/samsung-mbg.png') center center/cover no-repeat;
    }

    .banner-title{
        font-size:38px;
        text-align:center;
    }

    .banner-desc{
        text-align:center;
    }

    .banner-points{
        align-items:center;
    }

    .service-form-box{
        padding:25px;
    }
}

/* =========================
   MOBILE RESPONSIVE
========================== */

@media(max-width:576px){

    .banner-section{
        background:url('../image/samsung-mbg.png') no-repeat;
    min-height: 60vh !important; /* reduce height on mobile */
    }
  

    .banner-title{
        font-size:25px;
    }

    .banner-desc{
        font-size:15px;
    }

    .form-title{
        font-size:24px;
    }

    .custom-input{
        height:50px;
        font-size:14px;
    }

    .submit-btn{
        height:50px;
        font-size:15px;
    }
}

/* Hide banner-points section in mobile view */
@media (max-width: 768px) {
    .banner-points {
        display: none;
    }
}

/* Call Button Mobile Responsive */
@media (max-width: 576px) {
    .call-button-wrapper{
        margin-top:20px;
        text-align:center;
    }

    .call-btn{
        padding:10px 20px;
        font-size:15px;
    }

    .call-btn i{
        font-size:16px;
    }
}

/* =========================
   SERVICES SECTION
========================== */

.services-section{
    background:#ffffff;
}

/* Section Heading */

.section-title h2{
    font-size:42px;
    font-weight:800;
    color:#000;
    margin-bottom:15px;
}

.section-title h2 span{
    color:#000;
}

.section-title p{
    max-width:700px;
    margin:auto;
    color:#555;
    font-size:16px;
    line-height:1.8;
}

/* Service Card */

.service-card{
    background:#f5f7fd;
    border-radius:20px;
    overflow:hidden;
    transition:0.4s ease;
    height:100%;
    box-shadow:0 5px 20px rgba(0,0,0,0.05);
}

.service-card:hover{
    transform:translateY(-10px);
}

.service-img{
    overflow:hidden;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#f9f5f0;
    padding:20px 15px;
    min-height:160px;
}

.service-img img{
    width:130px;
    height:130px;
    object-fit:contain;
    object-position:center;
    transition:0.4s ease;
    filter:brightness(0.95);
}

.service-card:hover .service-img img{
    transform:scale(1.15);
    filter:brightness(1);
}

/* Content */

.service-content{
    padding:25px;
}

.service-content h3{
    font-size:24px;
    font-weight:700;
    color:#000;
    margin-bottom:15px;
}

.service-content p{
    font-size:15px;
    color:#555;
    line-height:1.8;
    margin-bottom:20px;
}

/* Button */

.service-btn{
    display:inline-block;
    background:#000;
    color:#fff;
    text-decoration:none;
    padding:12px 28px;
    border-radius:10px;
    font-size:15px;
    font-weight:600;
    transition:0.3s ease;
}

.service-btn:hover{
    background:#007aff;
    color:#fff;
}

/* =========================
   MOBILE RESPONSIVE
========================== */

/* Tablet and Below */
@media(max-width:991px){

    .section-title h2{
        font-size:34px;
    }

    .service-img{
        min-height:150px;
        padding:18px 12px;
    }

    .service-img img{
        width:120px;
        height:120px;
    }
}

/* Mobile Large */
@media(max-width:768px){

    .service-img{
        min-height:140px;
        padding:15px 10px;
    }

    .service-img img{
        width:110px;
        height:110px;
    }
}

/* Mobile Medium & Small */
@media(max-width:576px){

    .services-section{
        padding:50px 0;
    }

    .section-title h2{
        font-size:28px;
    }

    .section-title p{
        font-size:15px;
    }

    .service-img{
        min-height:130px;
        padding:12px 8px;
    }

    .service-img img{
        width:100px;
        height:100px;
    }

    .service-content{
        padding:20px;
    }

    .service-content h3{
        font-size:22px;
    }

    .service-content p{
        font-size:14px;
    }

    .service-btn{
        width:100%;
        text-align:center;
    }
}

/* Extra Small Mobile */
@media(max-width:480px){

    .service-img{
        min-height:120px;
        padding:10px;
    }

    .service-img img{
        width:90px;
        height:90px;
    }

    .service-content h3{
        font-size:20px;
    }

    .service-content p{
        font-size:13px;
        margin-bottom:15px;
    }
}

/* =========================
   ABOUT SECTION
========================== */

.about-section{
    background:#f5f7fd;
}

/* About Image */

.about-image{
    position:relative;
}

.about-image img{
    width:100%;
    border-radius:25px;
    object-fit:cover;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
}

/* Experience Box */

.experience-box{
    position:absolute;
    bottom:30px;
    left:30px;
    background:#000;
    color:#fff;
    padding:25px 30px;
    border-radius:20px;
    text-align:center;
    box-shadow:0 10px 25px rgba(0,0,0,0.15);
}

.experience-box h3{
    font-size:42px;
    font-weight:800;
    margin-bottom:5px;
}

.experience-box p{
    margin:0;
    font-size:16px;
    font-weight:600;
}

/* About Content */

.about-content{
    padding-left:20px;
}

.about-subtitle{
    display:inline-block;
    color:#000;
    font-size:15px;
    font-weight:700;
    letter-spacing:1px;
    margin-bottom:15px;
}

.about-title{
    font-size:42px;
    font-weight:800;
    color:#000;
    line-height:1.3;
    margin-bottom:20px;
}

.about-desc{
    font-size:16px;
    color:#555;
    line-height:1.9;
    margin-bottom:18px;
}

/* Features */

.about-features{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:18px;
    margin-top:30px;
    margin-bottom:35px;
}

.feature-item{
    display:flex;
    align-items:center;
    gap:10px;
    font-size:16px;
    font-weight:600;
    color:#000;
}

.feature-item i{
    color:#000;
    font-size:18px;
}

/* Button */

.about-btn{
    display:inline-block;
    background:#000;
    color:#fff;
    text-decoration:none;
    padding:14px 34px;
    border-radius:12px;
    font-size:16px;
    font-weight:600;
    transition:0.3s ease;
}

.about-btn:hover{
    background:#007aff;
    color:#fff;
}

/* =========================
   MOBILE RESPONSIVE
========================== */

@media(max-width:991px){

    .about-content{
        padding-left:0;
    }

    .about-title{
        font-size:34px;
    }

    .experience-box{
        bottom:20px;
        left:20px;
        padding:20px 25px;
    }

    .experience-box h3{
        font-size:34px;
    }
}

@media(max-width:576px){

 .about-image{
        background:url('images/bm3.png') no-repeat;
    min-height: 40vh !important; /* reduce height on mobile */
    }

    .about-section{
        padding:50px 0;
    }

    .about-title{
        font-size:28px;
    }

    .about-desc{
        font-size:15px;
    }

    .about-features{
        grid-template-columns:1fr;
        gap:15px;
    }

    .feature-item{
        font-size:15px;
    }

    .experience-box{
        position:relative;
        left:0;
        bottom:0;
        margin-top:20px;
        width:100%;
    }

    .about-btn{
        width:100%;
        text-align:center;
    }
}
