html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f4f4f4;
}


.navbar {
    background-color: #0056b3 !important;
}

.logo {
    font-size: 1.5rem;
    font-weight: 900 !important;
    color: #ffffff !important;
}


.hero_area {
    background: linear-gradient(rgba(14, 50, 194, 0.441), rgba(0, 0, 0, 0.6)), url('main-banner1.jpg');
    background-size: cover;
    background-position: center;
    min-height: 80vh;
}



.pricing_card {
    background: white;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.pricing_card:hover {
    transform: translateY(-10px);
}

.pricing_card ul li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

section {
    padding: 100px 0;
}

img {
    max-width: 100%;
}

.gallery-item img {
    transition: transform 0.3s ease;
    cursor: pointer;
}

.gallery-item img:hover {
    transform: scale(1.05);
}

html,
body {
    overflow-x: hidden;
    width: 100%;
}


@media (max-width: 576px) {
    .display-3 {
        font-size: 2.5rem !important;
    }

    section {
        padding: 60px 0;
    }

    .pricing_card {
        margin-bottom: 20px;
    }
}

.gallery-item img {
    width: 100%;
    height: auto;
    object-fit: cover;
}