/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Anek Bangla', Arial, sans-serif;
}

body {
    background-color: #f9f9f9;
    color: #333;
    line-height: 1.6;
}

/* Navbar Styles */
nav {
    width: 100%;
    background-color: #e60000;
    padding: 10px 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 1;
}

.container {
    width: 85%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar-brand {
    display: flex;
    align-items: center;
    color: #ffffff;
    font-size: 1rem;
    font-weight: bold;
    text-decoration: none;
}

.navbar-brand img {
    margin-right: 10px;
    border-radius: 5px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 10px;
}

.nav-menu li a {
    color: #ffffff;
    text-decoration: none;
    font-size: 1rem;
    padding: 8px 15px;
    transition: background 0.3s, color 0.3s;
    border-radius: 5px;
}

.nav-menu li a:hover {
    background-color: #ffffff;
    color: #e60000;
}

/* Mobile Menu Icon */
.menu-icon {
    display: none;
    font-size: 1.5rem;
    color: #ffffff;
    cursor: pointer;
}

/* Responsive Navbar Styles */
@media (max-width: 768px) {
    .menu-icon {
        display: block;
    }

    .nav-menu {
        display: none;
        position: absolute;
        right: 0;
        top: 100%;
        background-color: #e60000;
        width: auto;
        flex-direction: column;
        padding: 10px 0;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li {
        text-align: left;
    }

    .nav-menu li a {
        display: block;
        padding: 10px;
        width: 100%;
    }
}

/* General Styles for Image Section */
/* General Styles for Image Section */
.image-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding: 20px;
}

.image-container {
    width: 49%; /* প্রতিটি ইমেজের জন্য অর্ধেকের সামান্য কম জায়গা */
}

.image-container img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

/* Responsive Styles for smaller screens */
@media (max-width: 765px) {
    .image-section {
        flex-direction: column;
        width: fixed;
        margin-left: -10px;
        margin-right: -30px;
        margin-bottom: -30px;
    }
    .image-container {
        width: 100%; /* মোবাইলের জন্য পূর্ণ প্রস্থ */
    }
}




/* Main Content Styles */
.main-content {
    text-align: center;
    padding: 40px 0;
}

.main-content h1 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #e74c3c;
}

.main-content p {
    font-size: 18px;
    margin-bottom: 40px;
}

/* Image Slider */
.image-slider {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}

.image-slider .slider-image {
    width: 100%;
    max-width: 1000px;
    margin: 0 10px;
    border-radius: 10px;
}

/* Footer Styles */
footer {
    background: #e60000;
    color: #fff;
    text-align: center;
    padding: 20px 0;
}

footer p {
    margin: 0;
}

/* Form Styles */
form {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 400px;
    margin: 40px auto;
}

form label {
    display: block;
    margin-bottom: 10px;
    color: #333;
}

form input, form select, form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}

form button {
    background: #e60000;
    color: #fff;
    border: none;
    padding: 10px;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
}

form button:hover {
    background: #0cbe15;
}

/* Table Styles */
table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 40px;
}

table th, table td {
    padding: 10px;
    border: 1px solid #ddd;
    text-align: left;
}

table th {
    background-color: #e74c3c;
    color: #fff;
}

table tbody tr:nth-child(even) {
    background-color: #f2f2f2;
}

/* Gallery Styles */
.gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 40px;
}

.gallery-item {
    width: 300px;
    height: 200px;
    overflow: hidden;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

/* Content Block Styles */
.content-block {
    display: flex;
    align-items: center;
    margin: 20px 0;
}

.text-content {
    flex: 1;
    padding: 20px;
}

.image-content {
    flex: 1;
}

.responsive-image {
    width: 100%;
    height: auto;
    max-width: 400px;
    border-radius: 10px;
}

.reverse {
    flex-direction: row-reverse;
}

h2 {
    color: #c00;
    margin-left: 40px;
    font-size: 22px;
    font-family: 'Hind Siliguri', Arial, sans-serif;

}

/* Contact Us Styles */
.footer-content {
    text-align: center;
    margin-top: 1px;
}

.footer-content p {
    font-size: 18px;
    color: #333;
    margin-bottom: 20px;
}

.social-media {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-media img {
    width: 40px;
    height: 40px;
    transition: transform 0.2s;
}

.social-media img:hover {
    transform: scale(1.1);
}

/* Floating Button Styles */
.floating-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 80px;
    background-color: red;
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    z-index: 1000;
    transition: transform 0.3s ease-in-out;
}

.floating-button:hover {
    transform: scale(1.2) rotate(-45deg);
}

.floating-button::before {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background-color: red;
    border-radius: 50%;
    top: -10px;
    left: 20px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .nav-menu {
        flex-direction: column;
        align-items: flex-start;
    }

    .gallery {
        display: block;
    }

    .gallery-item {
        width: 100%;
    }

    .main-content {
        padding: 20px;
    }

    form {
        width: 100%;
        padding: 15px;
    }

    .content-block {
        flex-direction: column;
    }

    .text-content, .image-content {
        width: 100%;
    }
}

@media (max-width: 600px) {
    table, tr, th, td {
        display: block;
        width: 100%;
    }

    th, td {
        text-align: left;
        padding: 10px;
        border: none;
    }
}
