/* কন্টেন্ট পজিশনিং */
.content-wrapper {
    margin-top: 150px; 
    padding: 0 5%;
    flex-grow: 1;
}

/* হিরো টেক্সট */
.hero-section {
    text-align: center;
    margin-bottom: 60px;
}

.hero-section h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 15px;
}

.hero-section span {
    background: linear-gradient(90deg, #4f46e5, #0ea5e9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-section p {
    font-size: 1.1rem;
    color: #64748b;
    font-family: "Hind Siliguri", sans-serif;
}

/* কার্ড গ্রিড */
.options-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
    max-width: 1200px;
    margin: 0 auto 80px auto;
}

/* সার্ভিস বক্স (Glassmorphism Look) */
.service-box {
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 35px;
    padding: 45px 30px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.service-box:hover {
    transform: translateY(-15px);
    background: #ffffff;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.08);
    border-color: #4f46e5;
}

.icon-wrapper img {
    object-fit: contain;
    margin-bottom: 25px;
    transition: transform 0.5s ease;
}

.service-box:hover .icon-wrapper img {
    transform: scale(1.1) rotate(5deg);
}

/* Typography */
.service-box h2 {
    font-size: 1.4rem;
    color: #0f172a;
    margin-bottom: 15px;
    font-family: "Poppins", sans-serif;
}

.service-box p {
    font-size: 14px;
    color: #64748b;
    margin-bottom: 30px;
    font-family: "Hind Siliguri", sans-serif;
    line-height: 1.6;
}

/* বাটন ডিজাইন */
.action-btn {
    width: 100%;
    background: #0f172a;
    color: white;
    border: none;
    padding: 16px;
    border-radius: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 15px;
    text-decoration: none;
    box-sizing: border-box;
}

.action-btn:hover {
    background: #4f46e5;
    box-shadow: 0 10px 25px rgba(79, 70, 229, 0.3);
    color: white;
}

/* মোবাইল ডিভাইসের জন্য অ্যাডজাস্টমেন্ট */
@media (max-width: 768px) {
    .content-wrapper { margin-top: 120px; }
    .hero-section h1 { font-size: 2.2rem; }
}