 .web-design-section{
    padding:100px 0;
    background:#f5f5f5;
}

.container{
    max-width:1200px;
    margin:auto;
    padding:0 20px;
}

.section-title{
    text-align:center;
    font-size:34px;
    line-height:1.2;
    font-weight:700;
    color:#18284b;
    margin-bottom:80px;
}

.content-wrapper{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:70px;
}

.content-left{
    flex:1;
}

.content-left p{
   font-size: 18px;
    line-height: 2;
    color: #222;
    margin-bottom: 30px;
    text-align: justify;
}

.content-right{
    flex:1;
}

.content-right img{
    width:100%;
    border-radius:18px;
    display:block;
    box-shadow:0 20px 50px rgba(0,0,0,0.12);
    transition:0.4s;
}

.content-right img:hover{
    transform:translateY(-8px);
}

.consultation-banner{
    position:relative;
    display:flex;
    align-items:center;
    min-height:260px;
    background:#14284d;
    overflow:hidden;
    border-bottom:6px solid #f85b00;
}

/* Orange Right Strip */
.consultation-banner::after{
    content:"";
    position:absolute;
    top:0;
    right:0;
    width:140px;
    height:100%;
    background:#f85b00;
}

/* Left Image */
.banner-image{
    width:30%;
    height:260px;
    overflow:hidden;
}

.banner-image img{
    width:100%;
    height:100%;
    object-fit:cover;
}

/* Phone Circle */
.phone-circle{
    position:absolute;
    left:28%;
    top:50%;
    transform:translateY(-50%);
    width:110px;
    height:110px;
    background:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    z-index:2;
    box-shadow:0 10px 30px rgba(0,0,0,.15);
}

.phone-circle i{
    font-size:42px;
    color:#14284d;
}

/* Content */
.banner-content{
    flex:1;
    padding:0 60px 0 130px;
    z-index:2;
}

.banner-content h2{
    color:#fff;
    font-size:42px;
    line-height:1.2;
    font-weight:700;
    margin-bottom:15px;
}

.banner-content h3{
    color:#fff;
    font-size:34px;
    font-weight:700;
}

/* Button */
.banner-btn{
    padding-right:120px;
    z-index:2;
}

.banner-btn a{
    display:inline-block;
    background:#fff;
    color:#14284d;
    text-decoration:none;
    padding:18px 40px;
    border-radius:10px;
    font-size:22px;
    font-weight:600;
    transition:.3s;
}

.banner-btn a:hover{
    transform:translateY(-3px);
    box-shadow:0 10px 25px rgba(0,0,0,.2);
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

.consultation-banner{
    position:relative;
    display:flex;
    align-items:center;
    min-height:280px;
    background:#13274b;
    overflow:hidden;
    border-bottom:6px solid #ff5a00;
}

/* Orange Strip */
.consultation-banner::after{
    content:"";
    position:absolute;
    top:0;
    right:0;
    width:120px;
    height:100%;
    background:#ff5a00;
}

/* Image */
.banner-image{
    width:30%;
    min-height:280px;
}

.banner-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

/* Phone Circle */
.phone-circle{
    position:absolute;
    left:27%;
    top:50%;
    transform:translateY(-50%);
    width:110px;
    height:110px;
    background:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    box-shadow:0 10px 30px rgba(0,0,0,.2);
    z-index:10;
}

.phone-circle i{
    font-size:40px;
    color:#13274b;
}

/* Content */
.banner-content{
    flex:1;
    padding:40px 60px 40px 130px;
    z-index:2;
}

.banner-content h2{
    color:#fff;
    font-size:20px;
    font-weight:700;
    line-height:1.2;
    margin-bottom:15px;
    max-width:700px;
}

.banner-content h3{
    color:#fff;
    font-size:20px;
    font-weight:700;
}

/* Button */
.banner-btn{
    padding-right:120px;
    z-index:2;
}

.banner-btn a{
    display:inline-block;
    background:#fff;
    color:#13274b;
    text-decoration:none;
    padding:18px 38px;
    border-radius:8px;
    font-size:20px;
    font-weight:600;
    transition:.3s;
}

.banner-btn a:hover{
    transform:translateY(-3px);
}

/* ===========================
   Tablet
=========================== */

@media(max-width:1199px){

    .banner-content{
        padding-left:100px;
    }

    .banner-content h2{
        font-size:34px;
    }

    .banner-content h3{
        font-size:26px;
    }

    .phone-circle{
        width:90px;
        height:90px;
    }

    .phone-circle i{
        font-size:34px;
    }
}

/* ===========================
   Mobile
=========================== */

@media(max-width:991px){

    .consultation-banner{
        flex-direction:column;
        text-align:center;
        padding-bottom:30px;
    }

    .consultation-banner::after{
        display:none;
    }

    .banner-image{
        width:100%;
        height:250px;
    }

    .phone-circle{
        left:50%;
        top:220px;
        transform:translateX(-50%);
        width:90px;
        height:90px;
    }

    .phone-circle i{
        font-size:30px;
    }

    .banner-content{
        padding:90px 25px 25px;
    }

    .banner-content h2{
        font-size:28px;
        margin-bottom:15px;
    }

    .banner-content h3{
        font-size:24px;
    }

    .banner-btn{
        padding:0;
        margin-top:20px;
    }

    .banner-btn a{
        padding:15px 30px;
        font-size:18px;
    }
}

/* ===========================
   Small Mobile
=========================== */

@media(max-width:576px){

    .banner-image{
        height:200px;
    }

    .phone-circle{
        top:175px;
        width:80px;
        height:80px;
    }

    .phone-circle i{
        font-size:28px;
    }

    .banner-content{
        padding-top:80px;
    }

    .banner-content h2{
        font-size:24px;
    }

    .banner-content h3{
        font-size:20px;
    }

    .banner-btn a{
        width:100%;
        max-width:250px;
        text-align:center;
    }
}


*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

.website-types-section{
    background:#f7f7f7;
    padding:90px 0;
}

.container{
    width:100%;
    max-width:1280px;
    margin:auto;
    padding:0 20px;
}

.section-header{
    text-align:center;
    max-width:900px;
    margin:0 auto 60px;
}

.section-header h2{
    font-size:40px;
    color:#162748;
    font-weight:800;
    margin-bottom:25px;
    line-height:1.2;
}

.section-header p{
    font-size:14px;
    color:#555;
    line-height:1.8;
}

/* Grid */

.website-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

/* Card */

.website-card{
    background:#fff;
    padding:25px;
    border-radius:18px;
    text-align:center;
    box-shadow:0 8px 25px rgba(0,0,0,.08);
    transition:all .35s ease;
}

.website-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 40px rgba(0,0,0,.12);
}

.website-card img{
    width:100%;
    height:220px;
    object-fit:cover;
    border-radius:12px;
    margin-bottom:25px;
}

.website-card h3{
    font-size:20px;
    color:#f36a10;
    margin-bottom:18px;
    font-weight:700;
}

.website-card p{
    font-size:14px;
    line-height:1.8;
    color:#444;
}

.process-section{
    padding:80px 20px;
}

.container{
    max-width:1200px;
    margin:auto;
}

.section-title{
    text-align:center;
    font-size:40px;
    font-weight:800;
    color:#13294b;
    margin-bottom:60px;
}

.section-title span{
    color:#f26522;
}

/* Grid */

.process-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

/* Card */

.process-card{
    background:#fff;
    border-radius:24px;
    padding:14px;
    
    gap:22px;
    align-items:flex-start;
    transition:.4s;
    box-shadow:0 10px 25px rgba(0,0,0,.05);
}

.process-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 40px rgba(0,0,0,.12);
}

.icon-box{
    min-width:74px;
    width:74px;
    height:74px;
    border-radius:18px;
    background:#13294b;
    display:flex;
    align-items:center;
    justify-content:center;
}

.icon-box i{
    color:#fff;
    font-size:30px;
}

.content h3{
    font-size:22px;
    line-height:1.4;
    color:#13294b;
    margin-bottom:12px;
    font-weight:700;
}

.content p{
    color:#64748b;
    font-size:17px;
    line-height:1.8;
}

/* Tablet */

@media(max-width:992px){

.process-grid{
    grid-template-columns:repeat(2,1fr);
}

.section-title{
    font-size:42px;
}

}

/* Mobile */

@media(max-width:768px){

.process-grid{
    grid-template-columns:1fr;
}

.process-card{
    flex-direction:column;
}

.icon-box{
    margin-bottom:10px;
}

.section-title{
    font-size:34px;
    line-height:1.3;
}

.content h3{
    font-size:24px;
}

.content p{
    font-size:16px;
}

}


.seo-design-section{
    padding:100px 0;
    background:#f7f7f7;
}

.container{
    max-width:1200px;
    margin:auto;
    padding:0 20px;
}

.section-heading{
    text-align:center;
    max-width:1000px;
    margin:0 auto 60px;
}

.section-heading h2{
    font-size:40px;
    line-height:1.2;
    color:#17284a;
    font-weight:800;
    margin-bottom:25px;
}

.section-heading h2 span{
    color:#f26522;
}

.section-heading p{
    font-size:14px;
    line-height:1.9;
    color:#444;
}

/* Grid */

.seo-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:30px;
}

/* Card */

.seo-card{
    background:#fff;
    border-radius:22px;
    padding:10px;
    display:flex;
    align-items:flex-start;
    gap:25px;
    box-shadow:0 4px 15px rgba(0,0,0,.05);
    transition:.35s;
}

.seo-card:hover{
    transform:translateY(-6px);
    box-shadow:0 15px 30px rgba(0,0,0,.12);
}

.icon-box{
    width:72px;
    height:72px;
    min-width:72px;
    border-radius:18px;
    background:linear-gradient(
        135deg,
        #2f355f,
        #f26522
    );

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:30px;
    color:#fff;
}

.card-content h3{
    font-size:20px;
    color:#17284a;
    margin-bottom:12px;
    font-weight:700;
}

.card-content p{
    color:#555;
    font-size:14px;
    line-height:1.8;
}


/* 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;
    font-family:'Poppins',sans-serif;
}

.technology-section{
    padding:100px 0;
    background:#f7f7f7;
}

.container{
    width:100%;
    max-width:1200px;
    margin:auto;
    padding:0 20px;
}

.section-title{
    text-align:center;
    margin-bottom:70px;
}

.section-title h2{
    font-size:45px;
    font-weight:800;
    color:#16284c;
    margin-bottom:15px;
}

.section-title h2 span{
    color:#f26522;
}

.section-title p{
    font-size:18px;
    color:#666;
}

/* Grid */

.technology-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:35px;
}

/* Card */

.tech-card{
    position:relative;
    background:#fff;
    padding:60px 30px 35px;
    text-align:center;
    border-radius:25px;
    box-shadow:0 5px 20px rgba(0,0,0,.06);
    transition:.4s ease;
}

.tech-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 40px rgba(0,0,0,.12);
}

.tech-icon{
    position:absolute;
    top:-25px;
    left:50%;
    transform:translateX(-50%);
    width:60px;
    height:60px;
    background:#f26522;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:24px;
    box-shadow:0 10px 20px rgba(242,101,34,.3);
}

.tech-card h3{
    font-size:21px;
    color:#16284c;
    margin-bottom:15px;
    font-weight:700;
}

.tech-card p{
    font-size:14px;
    line-height:1.8;
    color:#666;
}

/* =====================
   Tablet
===================== */

@media(max-width:992px){

    .technology-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .section-title h2{
        font-size:42px;
    }

    .tech-card h3{
        font-size:28px;
    }
}

/* =====================
   Mobile
===================== */

@media(max-width:768px){

    .technology-section{
        padding:70px 0;
    }

    .section-title{
        margin-bottom:50px;
    }

    .section-title h2{
        font-size:34px;
    }

    .section-title p{
        font-size:16px;
        line-height:1.7;
    }

    .technology-grid{
        grid-template-columns:1fr;
        gap:45px;
    }

    .tech-card{
        padding:55px 25px 30px;
    }

    .tech-card h3{
        font-size:24px;
    }

    .tech-card p{
        font-size:15px;
    }
}

/* Small Mobile */

@media(max-width:480px){

    .section-title h2{
        font-size:28px;
    }

    .tech-icon{
        width:55px;
        height:55px;
        font-size:20px;
    }

    .tech-card{
        border-radius:18px;
    }
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Poppins',sans-serif;
    background:#f5f5f5;
}

.faq-section{
    padding:100px 0;
}

.container{
    max-width:1200px;
    margin:auto;
    padding:0 20px;
}

.sub-title{
    display:block;
    color:#f26522;
    font-size:15px;
    font-weight:700;
    letter-spacing:4px;
    margin-bottom:20px;
}

.faq-heading h2{
    font-size:45px;
    color:#16284c;
    margin-bottom:50px;
}

/* FAQ */

.faq-item{
    background:#fff;
    border-radius:12px;
    margin-bottom:18px;
    overflow:hidden;
    box-shadow:0 2px 10px rgba(0,0,0,.05);
}

.faq-question{
    width:100%;
    border:none;
    background:#fff;
    cursor:pointer;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:28px 30px;
    font-size:20px;
    font-weight:600;
    color:#16284c;
    text-align:left;
}

.faq-item.active .faq-question{
    background:#032c53;
    color:#fff;
}

.icon{
    width:38px;
    height:38px;
    border-radius:50%;
    background:#032c53;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:24px;
    flex-shrink:0;
}

.faq-item.active .icon{
    background:#fff;
    color:#032c53;
}

.faq-answer{
    max-height:0;
    overflow:hidden;
    transition:max-height .4s ease;
}

.faq-answer p{
    padding:25px 30px;
    font-size:15px;
    line-height:1.8;
    color:#444;
}

.faq-item.active .faq-answer{
    max-height:300px;
}