/* ================= RESET ================= */

*{
margin:0;
padding:0;
box-sizing:border-box;
}

html{
scroll-behavior:smooth;
}

body{
font-family:Arial,sans-serif;
line-height:1.6;
background:#f4f4f4;
color:#333;
}

/* ================= CONTAINER ================= */

.container{
max-width:1100px;
margin:auto;
padding:20px;
}

/* ================= HEADER ================= */

.header{
background:#4F738E;
color:#fff;
padding:15px 30px;
display:flex;
justify-content:space-between;
align-items:center;
position:sticky;
top:0;
z-index:1000;
box-shadow:0 2px 10px rgba(0,0,0,.1);
}

.logo{
display:flex;
align-items:center;
}

.logo a{
display:flex;
align-items:center;
text-decoration:none;
}

.logo img{
height:50px;
width:auto;
object-fit:contain;
border-radius:8px;
}

.navbar a{
color:#fff;
text-decoration:none;
margin-left:20px;
transition:.3s;
}

.navbar a:hover{
color:#ffd700;
}

.menu-toggle{
display:none;
font-size:24px;
cursor:pointer;
}

/* ================= HERO ================= */
.hero{
height:100vh;
display:flex;
align-items:center;
justify-content:center;
text-align:center;
padding:20px;
color:#fff;

background-image:
linear-gradient(
rgba(0,0,0,.55),
rgba(0,0,0,.55)
),
url("https://deservice.in/images/hero.jpg");

background-size:cover;
background-position:center center;
background-repeat:no-repeat;

}
/* ফোন নম্বরের রঙ উজ্জ্বল করার জন্য নতুন কোড */
.hero a, .hero p a, .hero a[href^="tel:"] {
    color: #ffd700 !important; /* উজ্জ্বল সোনালী হলুদ রঙ */
    text-decoration: none;
    font-weight: bold;
    font-size: 22px;
    display: inline-block;
    margin-top: 10px;
    transition: 0.3s;
}

.hero a:hover, .hero p a:hover, .hero a[href^="tel:"]:hover {
    color: #ffffff !important; /* মাউস নিলে সাদা দেখাবে */
    text-decoration: underline;
}
/* ================= BUTTON ================= */

.btn{
display:inline-block;
background:#0d6efd;
color:white;
padding:12px 25px;
border-radius:8px;
text-decoration:none;
transition:.3s;
box-shadow:0 4px 10px rgba(0,0,0,.2);
}

.btn:hover{
background:#084298;
transform:translateY(-2px);
}

/* ================= ABOUT ================= */

.about{
padding:60px 20px;
text-align:center;
background:#fff;
}

.about h2{
margin-bottom:20px;
}

/* ================= SERVICES ================= */

.services{
padding:60px 20px;
text-align:center;
}

.services h2{
margin-bottom:30px;
}

.service-container{
display:flex;
justify-content:center;
flex-wrap:wrap;
gap:20px;
}

.service-box{
width:280px;
background:#fff;
padding:20px;
border-radius:12px;
border:1px solid #ddd;
transition:.3s;
}

.service-box:hover{
transform:translateY(-8px);
box-shadow:0 8px 20px rgba(0,0,0,.15);
}

h3{
margin-bottom:10px;
font-size:18px;
color:#0d6efd;
}
/* ================= SERVICES PAGE GRID ================= */
.services-page {
    padding: 60px 20px;
    background: #f4f4f4;
    text-align: center;
}

.services-page h1 {
    font-size: 36px;
    color: #333;
    margin-bottom: 15px;
}

.services-page .intro {
    max-width: 800px;
    margin: 0 auto 40px auto;
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

.service-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 25px;
    margin-top: 30px;
}

.service-card {
    width: 320px;
    background: #ffffff;
    padding: 30px 25px;
    border-radius: 12px;
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
    text-align: left;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
    border-color: #0d6efd;
}

.service-card h2 {
    font-size: 20px;
    color: #0d6efd;
    margin-bottom: 12px;
    font-weight: bold;
}

.service-card p {
    font-size: 14px;
    color: #555;
    line-height: 1.5;
    margin-bottom: 20px;
    flex-grow: 1;
}

.service-card .btn {
    text-align: center;
    width: 100%;
}

/* মোবাইল রেসপন্সিভ ভিউ এর জন্য */
@media(max-width: 768px) {
    .services-page h1 {
        font-size: 28px;
    }
    
    .service-card {
        width: 100%; /* মোবাইলে কার্ডগুলো ফুল স্ক্রিন জুড়ে দেখাবে */
    }
}


/* ================= WHY ================= */

.why{
padding:60px 20px;
text-align:center;
background:#fff;
}

.why-box{
display:flex;
justify-content:center;
gap:20px;
flex-wrap:wrap;
margin-top:30px;
}

.why-box div{
background:#0d6efd;
color:white;
padding:15px;
border-radius:10px;
}

/* ================= FAQ ================= */

.faq{
padding:60px 20px;
background:#fff;
}

.faq p{
margin-bottom:20px;
}

/* ================= CTA ================= */
.cta{
background:#0d6efd;
color:white;
text-align:center;

padding:40px 20px; /* আগে 60px+ ছিল */

}

.cta h2{
font-size:36px;
margin-bottom:10px;
}

.cta p{
font-size:18px;
margin-bottom:20px;
}

.cta .btn{
margin-top:10px;
}

/* ================= FORM ================= */

form{
max-width:450px;
margin:30px auto;
background:#fff;
padding:25px;
border-radius:10px;
}

form input,
form textarea,
form select{
width:100%;
padding:12px;
margin-bottom:15px;
border-radius:5px;
border:1px solid #ccc;
}

form button{
width:100%;
}

/* ================= ADMIN ================= */

.admin-table{
width:100%;
border-collapse:collapse;
background:white;
margin-top:20px;
overflow:hidden;
border-radius:10px;
}

.admin-table th{
background:#0d6efd;
color:white;
padding:12px;
}

.admin-table td{
padding:12px;
text-align:center;
}

.admin-table tr:nth-child(even){
background:#f9f9f9;
}

/* ================= STATUS ================= */

.status-pending{
color:orange;
font-weight:bold;
}

.status-completed{
color:green;
font-weight:bold;
}

/* ================= DASHBOARD ================= */

.dashboard-cards{
display:flex;
gap:20px;
flex-wrap:wrap;
}

.card{
flex:1;
min-width:200px;
padding:20px;
border-radius:10px;
color:white;
text-align:center;
}

.card-blue{
background:#0d6efd;
}

.card-orange{
background:orange;
}

.card-green{
background:green;
}

/* ================= FOOTER ================= */

footer{
background:#4F738E;
color:white;
padding:30px 20px;
text-align:center;
}

footer h3{
margin-bottom:15px;
color: #ffd700 !important; /* মেইন হেডিংটি উজ্জ্বল সোনালী হলুদ দেখাবে */
font-size: 24px;
}

footer p{
margin:8px 0;
color: #ffffff !important; /* বাকি সব লেখা এবং আইকন নিখুঁত সাদা দেখাবে */
display: flex;
justify-content: center;
align-items: center;
gap: 8px;
}

footer a {
color: #ffffff !important; /* ফোন এবং ইমেইল লিঙ্ক সাদা দেখাবে */
text-decoration: none;
}

footer a:hover {
text-decoration: underline;
color: #ffd700 !important; /* মাউস নিলে হলুদ হবে */
}

footer iframe{
margin-top:15px;
border-radius:10px;
}

/* ================= FLOAT BUTTON ================= */

.whatsapp-float{
position:fixed;
bottom:20px;
right:20px;
background:#25d366;
color:white;
font-size:24px;
padding:12px 15px;
border-radius:50%;
text-decoration:none;
z-index:999;
}

.messenger-float{
position:fixed;
bottom:90px;
right:20px;
background:#0084ff;
color:white;
font-size:22px;
padding:12px 15px;
border-radius:50%;
text-decoration:none;
z-index:999;
}

/* ================= MOBILE ================= */

@media(max-width:768px){

.navbar{
display:none;
position:absolute;
top:65px;
right:0;
background:#0d6efd;
width:220px;
flex-direction:column;
}

.navbar.active{
display:flex;
}

.navbar a{
padding:12px;
display:block;
}

.menu-toggle{
display:block;
}

h1{
font-size:32px;
}

.hero p{
font-size:18px;
}

.service-box{
width:100%;
}

.dashboard-cards{
flex-direction:column;
}

}