body {
    margin: 0;
    font-family: 'Arial', sans-serif;
    background: linear-gradient(135deg, #00c6ff, #0072ff);
    color: #fff;
    text-align: center;
    overflow-x: hidden;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: rgba(0, 0, 0, 0.7);
    animation: slideInDown 1s ease-in-out;
}

.logo {
    font-size: 1.5em;
    font-weight: bold;
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

nav ul li {
    margin: 0 10px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 1em;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #00c6ff;
}

#hero {
    position: relative;
    padding: 100px 20px;
    color: #fff;
    animation: fadeIn 2s ease-in-out;
}

#hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('your-photo.jpg');
    background-size: cover;
    background-position: center;
    filter: blur(5px);
    z-index: -1; /* Ensures the blur effect stays behind the text */
    opacity: 0.8; /* Optional: To control the visibility of the image */
}



#hero h1 {
    font-size: 3em;
    margin-bottom: 20px;
}

#hero p {
    font-size: 1.5em;
    margin-bottom: 30px;
}

button {
    background-color: #ff4e50;
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 1em;
    border-radius: 5px;
    cursor: pointer;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

button:hover {
    transform: scale(1.1);
    background-color: #f9d423;
}

#services {
    display: flex;
    justify-content: space-around;
    padding: 50px 20px;
    background-color: #0072ff; /* এই রঙটি মূল ব্যাকগ্রাউন্ড হিসেবে থাকবে */
    position: relative;
    overflow: hidden;
}


#services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('webfile/texture1.png');
    opacity: 0.3; /* প্যাটার্নের স্বচ্ছতা নির্ধারণ */
    animation: movePattern 20s linear infinite; /* এনিমেটেড প্যাটার্ন */
}





.service-box {
    flex: 1;
    margin: 0 20px;
    padding: 30px;
    background: linear-gradient(45deg, #f093fb, #f5576c);
    border-radius: 10px;
    color: white;
    text-align: center;
    transition: transform 0.3s;
    position: relative;
    overflow: hidden;
}


/* মোবাইল ব্রাউজার জন্য মিডিয়া কোয়েরি */
@media (max-width: 768px) {
    #services {
        flex-direction: column; /* কলাম লেআউটে পরিবর্তন */
        align-items: center; /* সেন্টার অ্যালাইনমেন্ট */
    }

    .service-box {
        width: 80%; /* মোবাইল স্ক্রীনে প্রশস্ততা ঠিক করুন */
        margin: 10px 0; /* মোবাইল স্ক্রীনে মার্জিন পরিবর্তন */
        height: auto; /* উচ্চতা অটো পরিবর্তন করুন */
        min-height: 200px; /* একটি ন্যূনতম উচ্চতা নির্ধারণ করুন */
    }
}


.mikrotik::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('webfile/rb4011.png');
    background-size: cover;
    background-position: center;
    opacity: 0.3;
    z-index: 1;
    background-color: rgba(255, 0, 0, 0.5); /* পরীক্ষা করার জন্য রেড কালার */
}

.bridge::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('webfile/bridge.png');
    background-size: cover;
    background-position: center;
    opacity: 0.3;
    z-index: 1;
    background-color: rgba(255, 0, 0, 0.5); /* পরীক্ষা করার জন্য রেড কালার */
}

.VPN::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('webfile/vpn.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.3;
    z-index: 1;
    background-color: rgba(255, 0, 0, 0.5); /* পরীক্ষা করার জন্য রেড কালার */
}



.no-underline {
    text-decoration: none; /* আন্ডারলাইন রিমুভ করার জন্য */
    color: inherit; /* টেক্সটের কালার প্যারেন্ট এলিমেন্টের সাথে মিলানোর জন্য */
    display: block; /* পুরো div-টাকে ক্লিকেবল করার জন্য */s
}
.phonecall::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('webfile/phonecall.png');
    background-size: cover;
    background-position: center;
    opacity: 0.3;
    z-index: 1;
    background-color: rgba(255, 0, 0, 0.5); /* পরীক্ষা করার জন্য রেড কালার */
}







.whatsappcall::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('webfile/whatsapp.png');
    background-size: cover;
    background-position: center;
    opacity: 0.3;
    z-index: 1;
    background-color: rgba(255, 0, 0, 0.5); /* পরীক্ষা করার জন্য রেড কালার */
}




.fbtext::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('webfile/fb.png');
    background-size: cover;
    background-position: center;
    opacity: 0.3;
    z-index: 1;
    background-color: rgba(255, 0, 0, 0.5); /* পরীক্ষা করার জন্য রেড কালার */
}






.youtubebox::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('webfile/yt.png');
    background-size: cover;
    background-position: center;
    opacity: 0.3;
    z-index: 1;
    background-color: rgba(255, 0, 0, 0.5); /* পরীক্ষা করার জন্য রেড কালার */
}






.box1::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('webfile/support2.png');
    background-size: cover;
    background-position: center;
    opacity: 0.3;
    z-index: 1;
    background-color: rgba(255, 0, 0, 0.5); /* পরীক্ষা করার জন্য রেড কালার */
}

.box2::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('webfile/bridge.png');
    background-size: cover;
    background-position: center;
    opacity: 0.3;
    z-index: 1;
    background-color: rgba(255, 0, 0, 0.5); /* পরীক্ষা করার জন্য রেড কালার */
}

.box3::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('webfile/support3.png');
    background-size: cover;
    background-position: center;
    opacity: 0.3;
    z-index: 1;
    background-color: rgba(255, 0, 0, 0.5); /* পরীক্ষা করার জন্য রেড কালার */
}



.service-box h3, .service-box p {
    position: relative;
    z-index: 2;
}



.service-card {
    background: linear-gradient(135deg, #f6d365, #fda085);
    border-radius: 15px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    width: 30%;
    padding: 20px;
    margin: 15px;
    transition: transform 0.3s ease, background 0.3s ease;
    cursor: pointer;
}

.service-box:hover {
    transform: translateY(-10px);
}


/* এনিমেশন তৈরি */
@keyframes gradientAnimation {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

footer {
    padding: 20px;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
}

@keyframes slideInDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}


@keyframes movePattern {
    from {
        background-position: 0 0;
    }
    to {
        background-position: 100% 100%;
    }
}


.service-box h3, .service-box p {
    position: relative;
    z-index: 2; /* টেক্সটের উপরে প্যাটার্নের এনিমেশন চলে যাওয়ার জন্য */
}


