.banner{
    max-height: 420px;
    position: relative;
    z-index: 1;
    background-image: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),url(../source/test.webp);
    border-bottom: 4px solid rgba(235,89,95,0.8);

}
.content{
    top: 50%;
    z-index: -1;
}
.content p{
    font-size: 24px;
    margin-top: 20px;
}

.m1{
    padding: 50px;
    text-align: center;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}
.below-txt{
    padding: 30px 20px 0 20px;
}

.t1{
    text-align: center;
    margin-bottom: 100px;
    position: relative;
}

.t1::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #eb595f, #d63d44);
    border-radius: 2px;
}

.t1 h2{
    font-size: 2.8rem;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 600;
}

.t1 p{
    font-size: 1.3rem;
    color: #495057;
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto;
    font-weight: 400;
}
.d1{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    gap: 30px;
}
.d1 div{
    width: 300px;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.3s ease;
    background: white;
    margin-bottom: 30px;
}
.d1 div:hover{
    transform: translateY(-10px);
    box-shadow: 0 8px 30px rgba(235, 89, 95, 0.2);
}
.d1 div i{
    font-size: 60px;
    color: #eb595f;
    margin-bottom: 20px;
}
.d1 div h2{
    font-size: 28px;
    margin: 20px 0 15px 0;
    color: #333;
}
.d1 div p{
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 25px;
}
.d1 div button{
    background: #eb595f;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}
.d1 div button:hover{
    background: #d63d44;
    transform: scale(1.05);
}

.m-last{
    margin-top: 80px;
}

/* ========================================
   RESPONSIVE DESIGN - SERVICES PAGE
   ======================================== */

/* Tablet Styles (768px - 1024px) */
@media screen and (max-width: 1024px) {
    .m1 {
        padding: 30px 20px;
    }
    
    .t1 h1 {
        font-size: 35px;
        margin-bottom: 30px;
    }
    
    .t1 p {
        font-size: 18px;
    }
    
    .d1 {
        gap: 20px;
        justify-content: center;
    }
    
    .d1 div {
        width: 280px;
        padding: 25px;
        margin-bottom: 25px;
    }
    
    .d1 div h2 {
        font-size: 24px;
    }
    
    .d1 div p {
        font-size: 15px;
    }
}

/* Mobile Styles (320px - 768px) */
@media screen and (max-width: 768px) {
    .banner {
        min-height: 300px;
    }
    
    .content {
        padding: 20px;
    }
    
    .content h1 {
        font-size: 28px;
        line-height: 1.2;
    }
    
    .content p {
        font-size: 18px;
        margin-top: 15px;
    }
    
    .m1 {
        padding: 20px 15px;
    }
    
    .t1 h1 {
        font-size: 28px;
        margin-bottom: 25px;
    }
    
    .t1 p {
        font-size: 16px;
    }
    
    .d1 {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    
    .d1 div {
        width: 100%;
        max-width: 320px;
        padding: 20px;
        margin-bottom: 20px;
    }
    
    .d1 div i {
        font-size: 50px;
        margin-bottom: 15px;
    }
    
    .d1 div h2 {
        font-size: 22px;
        margin: 15px 0 12px 0;
    }
    
    .d1 div p {
        font-size: 14px;
        margin-bottom: 20px;
    }
    
    .d1 div button {
        padding: 10px 25px;
        font-size: 14px;
    }
    
    .m-last {
        margin-top: 40px;
    }
}

/* Small Mobile Styles (320px - 480px) */
@media screen and (max-width: 480px) {
    .content h1 {
        font-size: 24px;
    }
    
    .content p {
        font-size: 16px;
    }
    
    .m1 {
        padding: 15px 10px;
    }
    
    .t1 h1 {
        font-size: 24px;
    }
    
    .t1 p {
        font-size: 14px;
    }
    
    .d1 div {
        max-width: 280px;
        padding: 15px;
    }
    
    .d1 div i {
        font-size: 40px;
    }
    
    .d1 div h2 {
        font-size: 20px;
    }
    
    .d1 div p {
        font-size: 13px;
    }
      .d1 div button {
        padding: 8px 20px;
        font-size: 13px;
    }
}

/* Quick Forms Section */
.m2 {
    padding: 80px 50px;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    text-align: center;
}

.quick-forms {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 60px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.form-card {
    background: white;
    padding: 30px 20px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(235,89,95,0.1);
}

.form-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    border-color: rgba(235,89,95,0.3);
}

.form-card i {
    font-size: 50px;
    color: #eb595f;
    margin-bottom: 20px;
}

.form-card h3 {
    font-size: 24px;
    color: #333;
    margin-bottom: 15px;
    font-weight: 600;
}

.form-card p {
    font-size: 16px;
    color: #666;
    margin-bottom: 25px;
    line-height: 1.5;
}

.form-card button {
    background: linear-gradient(135deg, #eb595f, #d63d44);
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-card button:hover {
    background: linear-gradient(135deg, #d63d44, #c12a30);
    transform: scale(1.05);
}
