﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.top-header {
    background: #198754;
    font-size: 14px;
}

.social-icon {
    color: #fff;
    margin-left: 12px;
    font-size: 18px;
    transition: 0.3s;
}

    .social-icon:hover {
        color: #ffd700;
    }

@media (max-width: 767px) {
    .social-icon {
        margin: 0 8px;
    }
}
/* Navbar */
.navbar {
    background: #ffffff !important;
    padding: 15px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 999;
}

/* Logo */
.navbar-brand {
    font-size: 28px;
    font-weight: 700;
    color: #198754 !important;
    letter-spacing: 1px;
}

/* Menu */
.navbar-nav .nav-link {
    color: #222 !important;
    font-size: 15px;
    font-weight: 600;
    margin-left: 8px;
    padding: 10px 18px !important;
    border-radius: 30px;
    transition: all 0.3s ease;
    position: relative;
}

    /* Hover Effect */
    .navbar-nav .nav-link:hover {
        color: #198754 !important;
        background: rgba(25, 135, 84, 0.08);
    }

    /* Active Menu */
    .navbar-nav .nav-link.active {
        background: linear-gradient(135deg, #198754, #146c43);
        color:white !important;
    }

    /* Underline Animation */
    .navbar-nav .nav-link::after {
        content: "";
        position: absolute;
        left: 50%;
        bottom: 5px;
        width: 0;
        height: 2px;
        background: #198754;
        transition: all 0.3s ease;
        transform: translateX(-50%);
    }

    .navbar-nav .nav-link:hover::after {
        width: 60%;
    }

/* Mobile Toggle */
.navbar-toggler {
    border: none;
    box-shadow: none !important;
}

    .navbar-toggler:focus {
        box-shadow: none !important;
    }

/* Mobile Menu */
@media (max-width: 991px) {
    .navbar-collapse {
        margin-top: 15px;
        background: #fff;
        padding: 15px;
        border-radius: 15px;
        box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    }

    .navbar-nav .nav-link {
        margin: 5px 0;
        text-align: center;
    }

        .navbar-nav .nav-link::after {
            display: none;
        }
}

.footer {
    background: #111827;
    color: #fff;
    padding: 60px 0 20px;
}

.footer-row {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: space-between;
}

.footer-col {
    flex: 1;
    min-width: 220px;
}

    .footer-col h3 {
        font-size: 20px;
        margin-bottom: 20px;
        position: relative;
    }

        .footer-col h3::after {
            content: "";
            width: 40px;
            height: 3px;
            background: #198754;
            position: absolute;
            left: 0;
            bottom: -8px;
        }

    .footer-col p {
        color: #d1d5db;
        line-height: 1.8;
    }

    .footer-col ul {
        list-style: none;
        padding: 0;
    }

        .footer-col ul li {
            margin-bottom: 10px;
        }

            .footer-col ul li a {
                color: #d1d5db;
                text-decoration: none;
                transition: 0.3s;
            }

                .footer-col ul li a:hover {
                    color: #198754;
                    padding-left: 5px;
                }

.social-links {
    display: flex;
    gap: 12px;
}

    .social-links a {
        width: 42px;
        height: 42px;
        background: #1f2937;
        color: #fff;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        transition: 0.3s;
        font-size: 18px;
    }

        .social-links a:hover {
            background: #198754;
            transform: translateY(-4px);
        }

.footer-bottom {
    border-top: 1px solid #374151;
    margin-top: 40px;
    padding-top: 20px;
    text-align: center;
    color: #9ca3af;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .footer {
        text-align: center;
    }

    .footer-col h3::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .social-links {
        justify-content: center;
    }
}

.contact-banner {
    position: relative;
    height: 350px;
    background: url('img/banner.png') center center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .contact-banner .overlay {
        position: absolute;
        inset: 0;
        background: rgba(0,0,0,0.55);
    }

.banner-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
}

    .banner-content h1 {
        font-size: 60px;
        font-weight: 700;
        margin-bottom: 10px;
    }

    .banner-content p {
        font-size: 18px;
        margin-bottom: 20px;
    }

.breadcrumb-custom {
    font-size: 16px;
}

    .breadcrumb-custom a {
        color: #fff;
        text-decoration: none;
    }

    .breadcrumb-custom span {
        margin: 0 5px;
    }

/* Mobile */
@media (max-width:768px) {

    .contact-banner {
        height: 250px;
    }

    .banner-content h1 {
        font-size: 38px;
    }

    .banner-content p {
        font-size: 15px;
        padding: 0 15px;
    }
}

.contact-section {
    padding: 80px 0;
    background: #f8fafc;
}

.contact-form-box,
.contact-info-box {
    background: #fff;
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    height: 100%;
}

    .contact-form-box h2,
    .contact-info-box h2 {
        margin-bottom: 25px;
        font-weight: 700;
    }

.form-control {
    border-radius: 10px;
    padding: 12px 15px;
    border: 1px solid #ddd;
}

    .form-control:focus {
        box-shadow: none;
        border-color: #198754;
    }

.btn-submit {
    background: #198754;
    color: #fff;
    border: none;
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 600;
    transition: .3s;
}

    .btn-submit:hover {
        background: #146c43;
    }

.info-item {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

    .info-item i {
        width: 55px;
        height: 55px;
        background: #198754;
        color: #fff;
        border-radius: 50%;
        font-size: 22px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .info-item h5 {
        margin-bottom: 5px;
        font-weight: 600;
    }

    .info-item p {
        margin: 0;
        color: #666;
    }

/* Mobile */
@media (max-width:768px) {

    .contact-section {
        padding: 50px 0;
    }

    .contact-form-box,
    .contact-info-box {
        padding: 25px;
    }

    .info-item {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
}

/* Banner */
.gallery-banner {
    position: relative;
    height: 350px;
    background: url('img/banner.png') center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .gallery-banner .overlay {
        position: absolute;
        inset: 0;
        background: rgba(0,0,0,.55);
    }

.banner-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
}

    .banner-content h1 {
        font-size: 60px;
        font-weight: 700;
    }

    .banner-content p {
        font-size: 18px;
    }

/* Gallery */
.gallery-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.gallery-item {
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,.1);
}

    .gallery-item img {
        width: 100%;
        height: 260px;
        object-fit: cover;
        transition: .4s;
    }

    .gallery-item:hover img {
        transform: scale(1.08);
    }

/* Mobile */
@media (max-width:768px) {

    .gallery-banner {
        height: 250px;
    }

    .banner-content h1 {
        font-size: 40px;
    }

    .gallery-section {
        padding: 50px 0;
    }

    .gallery-item img {
        height: 180px;
    }
}
/* Banner */
.plan-banner {
    position: relative;
    height: 350px;
    background: url('img/banner.png') center center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .plan-banner .overlay {
        position: absolute;
        inset: 0;
        background: rgba(0,0,0,.55);
    }

.banner-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
}

    .banner-content h1 {
        font-size: 60px;
        font-weight: 700;
        margin-bottom: 10px;
    }

    .banner-content p {
        font-size: 18px;
    }

/* Plan Section */
.plan-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.plan-item {
    overflow: hidden;
    border-radius: 15px;
    background: #fff;
    box-shadow: 0 5px 20px rgba(0,0,0,.1);
}

    .plan-item img {
        width: 100%;
        height: 200px;
        object-fit: cover;
        transition: .4s;
    }

    .plan-item:hover img {
        transform: scale(1.08);
    }

/* Mobile */
@media (max-width:768px) {

    .plan-banner {
        height: 250px;
    }

    .banner-content h1 {
        font-size: 40px;
    }

    .banner-content p {
        font-size: 15px;
    }

    .plan-section {
        padding: 50px 0;
    }

    .plan-item img {
        height: 180px;
    }
}

.about-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.about-img img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
}

.sub-title {
    color: #198754;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-content h2 {
    font-size: 38px;
    font-weight: 700;
    margin: 15px 0;
    color: #222;
}

.about-content p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 25px;
}

.read-more-btn {
    display: inline-block;
    padding: 12px 30px;
    background: #198754;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: .3s;
}

    .read-more-btn:hover {
        background: #146c43;
        color: #fff;
    }

/* Mobile */
@media (max-width:768px) {

    .about-section {
        padding: 50px 0;
    }

    .about-content {
        text-align: center;
    }

        .about-content h2 {
            font-size: 28px;
        }
}

.carousel-item img {
    height: 450px; /* আপনার প্রয়োজন অনুযায়ী */
    object-fit: cover;
}

.download-section {
    text-align: center;
    padding: 10px 0;
}

.download-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #198754;
    color: #fff;
    text-decoration: none;
    padding: 10px 25px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    transition: all .3s ease;
    box-shadow: 0 5px 15px rgba(25,135,84,.3);
}

    .download-btn:hover {
        background: #146c43;
        color: #fff;
        transform: translateY(-3px);
    }

    .download-btn i {
        font-size: 18px;
    }

.navbar-brand img {
    height: 60px;
    width: auto;
    max-width: 100%;
    display: block;
}
.notice-bar{
    background:#001430;
    padding:18px 0;
    overflow:hidden;
}

.notice-bar marquee{
    display:flex;
    align-items:center;
    color:#00ff66;
    font-size:18px;
    font-weight:700;
}

.notice-img{
    width:80px;
    height:80px;
    /*margin-right:10px;*/
    vertical-align:middle;
}

.notice-bar span{
    color:#00ff66;
    vertical-align:middle;
    font-size:36px
}