/* navbar-hero-section-added */
.navbar {
    background-color: transparent !important;

}

.nav-link {
    color: white;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.navbar-brand img {
    width: 150px;
    margin-left: 55px;
}

.nav-item {
    margin-right: 80px;
}

.navbar-nav {
    margin-left: 100px;
}

.btn {
    background-color: #df6951;
    color: white;
    padding: 10px 20px;
}

.nav-link {
    color: white;
}

.nav-item a {
    color: #ffffff !important;
}

/* navbar-section-end */
/* hero-section */
.main-section {
    background-image: url("../images/bgimg.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 100px;
    background-image: url('../images/bgimg.png');

}

.hero-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 400px;
}

.hero-section h1 {
    font-family: "Yesteryear", cursive;
    color: white;
    font-size: 130px;
    text-align: center;
    padding: 10px 20px;
    margin-bottom: 0;/
}

.hero-section p {
    font-family: 'Albert Sans', sans-serif;
    color: white;
    text-align: center;
    padding: 10px 20px;
    margin-bottom: 20px;
}

.hero-content h1 {
    font-size: clamp(2.5rem, 7vw, 5rem);
    margin: 0 0 0.5rem 0;
    line-height: 1.1;
}

.hero-content h2 {
    font-size: clamp(1rem, 2.5vw, 1.8rem);
    margin: 0.5rem 0 1.5rem 0;
    font-style: italic;
    opacity: 0.9;
}

.hero-content p {
    font-size: clamp(0.9rem, 1.8vw, 1.1rem);
    margin: 1.5rem 0 2rem 0;
    line-height: 1.6;
    opacity: 0.9;
}

/* features-box */

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-250px * 4))
    }

}

.slider {
    background: white;
    box-shadow: 0 10px 20px -5px rgba(0, 0, 0, .125);
    height: 100px;
    margin: auto;
    overflow: hidden;
    position: relative;
    width: 90%;
    max-width: 960px;
    width: 70%;
    display: flex;
    gap: 50px;
    margin: 0 auto;
    justify-content: center;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    padding: 20px;
    margin-top: -60px;
    border-radius: 15px;
    background-color: rgb(242, 242, 242);

}

.slider::before,
.slider::after {
    content: "";
    height: 100px;
    position: absolute;
    width: 200px;
    z-index: 2;
}

.slider::before {
    left: 0;
    top: 0;
}

.slider::after {
    right: 0;
    top: 0;
    transform: rotateZ(180deg);
}

.slider .slide-track {
    animation: scroll 20s linear infinite;
    display: flex;
    width: calc(250px * 8);
}

.slider .slide {
    height: 100px;
    width: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    perspective: 100px;
}

.content {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: -10px;

}

.content img {
    width: 20px;
    margin-bottom: 20px;

}

.content p {
    font-weight: 400;
    white-space: nowrap;
}

.offcanvas {
    background: transparent !important;
}

.offcanvas-body {
    background: rgba(0, 0, 0, 0.6);
    color: white;
    text-align: center;
}

.offcanvas-body img {
    max-width: 150px;
    margin: 20px auto;
    display: block;
    animation: fadeInDown 1s;
}


@media (max-width: 576px) {
    .navbar-brand img {
        width: 120px;
        margin-left: 0;
    }

    .navbar-toggler {
        margin-left: auto;
    }
}


@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.main-section {
    background-image: url('./images/bgimg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 100vh;
    width: 100%;
}

.hero-section {
    padding: 100px 20px;
    color: white;
}

.hero-section h1 {
    font-family: "Yesteryear", cursive;
    font-size: 10vw;
    margin-bottom: 0;
}

.hero-section p {
    font-family: 'Albert Sans', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 12vw;
    }

    .hero-section p {
        font-size: 1.2rem;
    }
}

.custom-main-container {
    max-width: 1200px;
    width: 95%;
    margin: 0 auto;
    background-color: #fff;
    border-radius: 15px;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px, rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
    padding: 30px;
}


.card {
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
    border: none;
    height: 100%;
}

.card:hover {
    transform: translateY(-5px);
}

.card-header-custom {
    min-height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    position: relative;
    color: white;
    z-index: 0;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    padding: 15px 20px;
    overflow: hidden;
}

.card-body {
    padding: 15px 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.info-icons {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: #6b7280;
    margin-bottom: 10px;
    width: 100%;
    padding: 0;
    flex-wrap: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.info-icons span {
    display: flex;
    align-items: center;
    white-space: nowrap;
    margin-right: 5px;
}

.info-icons i {
    margin-right: 5px;
    font-size: 1rem;
}

.card-title-main {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 8px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.card-text-description {
    font-size: 0.9rem;
    color: #4b5563;
    line-height: 1.5;
    margin-bottom: 15px;
    flex-grow: 1;
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1rem;
    font-weight: 500;
    color: #1f2937;
    padding: 15px 20px;
    background-color: #f8f9fa;
    border-top: 1px solid #dee2e6;
    flex-wrap: wrap;
    gap: 10px;
}

.price {
    font-weight: 700;
    color: #df6951;
    font-size: 1.1rem;
}

.rating {
    display: flex;
    align-items: center;
    color: #f59e0b;
    white-space: nowrap;
}

.rating i {
    margin-left: 5px;
    font-size: 1rem;
}

.form-container {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.form-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1rem;
}

.form-description {
    font-size: 0.95rem;
    color: #4b5563;
    margin-bottom: 1.5rem;
}

.plan-trip-form .form-control {
    width: 100%;
    padding: 12px 15px;
    border-radius: 8px;
    border: 1px solid #ced4da;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.plan-trip-form .form-control:focus {
    border-color: #df6951;
    box-shadow: 0 0 0 0.25rem rgba(223, 105, 81, 0.25);
    outline: none;
}

.plan-trip-form .btn-primary {
    background-color: #df6951;
    border-color: #df6951;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.plan-trip-form .btn-primary:hover {
    background-color: #c75b47;
    border-color: #c75b47;
}

.form-below-image-wrapper {
    text-align: center;
}

.form-below-image {
    max-width: 100%;
    height: auto;
    margin-top: 30px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 990px) {
    .form-below-image {
        display: none;
    }
}



.pagination {
    margin-top: 30px;
    --bs-pagination-padding-x: 0.75rem;
    --bs-pagination-padding-y: 0.375rem;
    --bs-pagination-font-size: 1rem;
    --bs-pagination-color: #6b7280;
    --bs-pagination-bg: #fff;
    --bs-pagination-border-width: 0;
    --bs-pagination-border-color: transparent;
    --bs-pagination-border-radius: 50%;
    --bs-pagination-hover-color: #4b5563;
    --bs-pagination-hover-bg: #e5e7eb;
    --bs-pagination-hover-border-color: transparent;
    --bs-pagination-focus-color: #4b5563;
    --bs-pagination-focus-bg: #e5e7eb;
    --bs-pagination-focus-box-shadow: none;
    --bs-pagination-active-color: #fff;
    --bs-pagination-active-bg: #df6951;
    --bs-pagination-active-border-color: #df6951;
    --bs-pagination-disabled-color: #adb5bd;
    --bs-pagination-disabled-bg: #e9ecef;
    --bs-pagination-disabled-border-color: transparent;
}

.pagination .page-item .page-link {
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50% !important;
    margin: 0 5px;
}

@media (max-width: 390px) {
    .custom-main-container {
        padding: 10px;
        width: 100%;
    }

    .col-12.col-lg-8 {
        padding-left: 5px;
        padding-right: 5px;
    }

    .card {
        margin-bottom: 15px;
    }

    .card-header-custom {
        min-height: 200px;
        padding: 10px;
    }

    .info-icons {
        font-size: 0.75rem;
        
    }

    .info-icons span {
        margin-right: 3px;
    }

    .card-body {
        padding: 10px 15px;
    }

    .card-title-main {
        font-size: 1.1rem;
    }

    .card-text-description {
        font-size: 0.8rem;
    }

    .card-footer {
        padding: 10px 15px;
        font-size: 0.9rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }

    .price {
        font-size: 1rem;
    }

    .rating {
        font-size: 0.9rem;
    }

    .col-12.col-lg-4 {
        padding-left: 5px;
        padding-right: 5px;
    }

    .form-container {
        padding: 15px;
    }

    .form-title {
        font-size: 1.5rem;
    }

    .form-description {
        font-size: 0.85rem;
    }

    .plan-trip-form .form-control {
        padding: 10px 12px;
        font-size: 0.9rem;
    }

    .plan-trip-form .btn-primary {
        padding: 10px 15px;
        font-size: 1rem;
    }

    .form-below-image {
        margin-top: 15px;
    }

    .pagination .page-item .page-link {
        width: 30px;
        height: 30px;
        font-size: 0.8rem;
        margin: 0 3px;
    }
}


@media (max-width: 991.98px) {
    .custom-main-container {
        padding: 20px;
    }
}

@media (max-width: 767.98px) {

    
    .custom-main-container {
        padding: 15px;
    }

    .form-container {
        padding: 20px;
    }

    .form-below-image {
        margin-top: 20px;
    }

    .pagination .page-item .page-link {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 20px;
    }

    .card-page {
        grid-template-columns: 1fr;
    }
}

.trip-form {
    display: flex;
}

.trips {
    display: flex;
}
@media (max-width: 990px) {
    .form-below-image-wrapper {
        display: none;
    }
}
body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}
.custom-btn {
    background: transparent;
    border: 2px solid white;
    color: white;
    transition: background 0.3s, color 0.3s, border-color 0.3s;
}

.custom-btn:hover {
    background: #e76f51;
    border-color: #e76f51;
    color: white;
}

@media (max-width: 991.98px) {
    .custom-main-container {
        padding: 15px;
    }

    .row-cols-1.row-cols-md-2 {
        row-gap: 20px;
    }
}

@media (max-width: 767.98px) {
    .custom-main-container {
        padding: 15px;
    }

    .col-12.col-lg-8 {
        padding-left: 0;
        padding-right: 0;
    }

    .col-12.col-lg-4 {
        padding-left: 0;
        padding-right: 0;
        margin-top: 30px;
    }

    .card {
        width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .form-below-image-wrapper {
        display: none;
    }
}

@media (max-width: 480px) {
    .custom-main-container {
        padding: 10px;
    }

    .form-container {
        padding: 15px;
    }

    .card-header-custom {
        min-height: 180px;
        padding: 10px;
    }

    .card-body {
        padding: 10px 12px;
    }

    .card-footer {
        padding: 10px 12px;
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }

    .form-title {
        font-size: 1.4rem;
    }

    .form-description {
        font-size: 0.85rem;
    }

    .plan-trip-form .form-control {
        padding: 10px 12px;
        font-size: 0.9rem;
    }

    .plan-trip-form .btn-primary {
        padding: 10px;
        font-size: 1rem;
    }

    .pagination .page-item .page-link {
        width: 28px;
        height: 28px;
        font-size: 0.75rem;
        margin: 0 2px;
    }
}

.info-icons {
    font-size: 0.75rem;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 6px;
}

.info-icons span {
    margin-right: 0;
    flex: 1 1 100%;
}

@media (max-width: 300px) {
    .custom-main-container {
        padding: 5px;
    }

    .card {
        margin: 0 auto;
        width: 100%;
    }

    .card-header-custom {
        padding: 8px;
        min-height: 180px;
    }

    .info-icons {
        flex-direction: column;
        align-items: flex-start;
        font-size: 0.7rem;
        gap: 4px;
    }

    .info-icons span {
        flex: none;
        width: 100%;
        margin-right: 0;
    }

    .card-title-main {
        font-size: 1rem;
        text-align: left;
    }

    .card-text-description {
        font-size: 0.75rem;
        text-align: left;
    }

    .card-footer {
        font-size: 0.85rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 3px;
    }

    .form-below-image-wrapper {
        display: none;
    }

    .plan-trip-form .btn-primary {
        font-size: 0.9rem;
        padding: 8px 10px;
    }

    .pagination {
        flex-wrap: wrap;
        gap: 5px;
    }

    .pagination .page-item .page-link {
        width: 28px;
        height: 28px;
        font-size: 0.75rem;
        margin: 2px;
    }
}

@media (max-width: 300px) {
    .custom-main-container {
        padding: 0 !important;
        background: none !important;
        box-shadow: none !important;
    }
}

@media (max-width: 300px) {
    .custom-main-container {
        display: flex !important;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 0 !important;
        background: none !important;
        box-shadow: none !important;
    }

    .custom-main-container .row {
        width: 100%;
        margin: 0;
        flex-direction: column;
        align-items: center;
    }

    .custom-main-container .col-12 {
        width: 100% !important;
        max-width: 280px;
    }

    .form-below-image-wrapper {
        display: none !important;
    }
}

@media (max-width: 300px) {
    .custom-main-container {
        display: flex !important;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 0 !important;
        background: none !important;
        box-shadow: none !important;
    }

    .custom-main-container .row {
        flex-direction: column;
        align-items: center;
        width: 100%;
        margin: 0;
    }

    .custom-main-container .col-12.col-lg-8,
    .custom-main-container .col-12.col-lg-4 {
        width: 100% !important;
        max-width: 280px;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    #cardContainer {
        width: 100%;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .card {
        width: 100%;
        max-width: 280px;
    }

    .form-below-image-wrapper {
        display: none !important;
    }
}

@keyframes shake {

    0%,
    100% {
        transform: translateX(0);
    }

    20%,
    60% {
        transform: translateX(-5px);
    }

    40%,
    80% {
        transform: translateX(5px);
    }
}

.shake {
    animation: shake 0.5s ease;
}

.card {
    border-radius: 0.75rem;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    transition: transform 0.2s ease-in-out;
    border: none;
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
}

.card:hover {
    transform: translateY(-5px);
}

.paris {
    background-image: url("../images/bgimg.png");
}

.card-header-custom {
    min-height: 200px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.card-body {
    padding: 1.5rem;

}

.card-title-main {
    font-size: 1.5rem;
    font-weight: bold;
    margin-top: 0.5rem;
    margin-bottom: 0.75rem;
}

.card-text-description {
    font-size: 0.9rem;
    color: #6c757d;
    margin-bottom: 1.5rem;
}

.info-icons {
    font-size: 0.85rem;
    color: white;
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    background-color: #df6951;
    margin-top: -45px;
    width: 300px;
    padding: 10px;
    z-index: 2;
    position: relative;
}

.form {
    margin-top: 200px;
}

.info-icons i {
    margin-right: 0.25rem;
}

.card-footer {
    background-color: #fff;
    border-top: 1px solid #dee2e6;
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom-left-radius: 0.75rem;
    border-bottom-right-radius: 0.75rem;
}

.price {
    font-size: 1.2rem;
    font-weight: bold;
    color: #000;
}

.rating {
    font-size: 1.1rem;
    font-weight: bold;
    color: #ffc107;
}

.rating i {
    margin-left: 0.25rem;
}

.pagination .page-item .page-link {
    border-radius: 0.5rem;
    margin: 0 0.25rem;
}

.pagination .page-item.active .page-link {
    background-color: #df6951;
    border-color: #df6951;
    box-shadow: 0 0.125rem 0.25rem rgba(13, 110, 253, 0.2);
}

.pagination {
    --bs-pagination-border-radius: 0.5rem;
}

.login-form-container {
    padding: 1.5rem;
    border-radius: 0.75rem;
    background-color: #fff;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}

.login-form-container h2 {
    font-size: 1.8rem;
    font-weight: bold;
    color: #28a745;
}

.form-control.rounded-pill {
    border-radius: 50rem !important;
}

/* extra-section-started */
.parallax-hero {
    position: relative;
    padding: 100px 0;
    min-height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    background-image: url('https://www.novo-monde.com/app/uploads/2019/05/travel-the-world.png');
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
    background-repeat: no-repeat;
}

.parallax-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.45);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    background: #df6951c0;
    padding: 2.5rem 2rem;
    border-radius: 8px;
    max-width: 700px;
    width: 90%;
    box-sizing: border-box;
    margin: 0 auto;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.hero-content h1 {
    font-size: clamp(2.5rem, 7vw, 5rem);
    margin: 0 0 0.5rem 0;
    line-height: 1.1;
}

.hero-content h2 {
    font-size: clamp(1rem, 2.5vw, 1.8rem);
    margin: 0.5rem 0 1.5rem 0;
    font-style: italic;
    opacity: 0.9;
}

.hero-content p {
    font-size: clamp(0.9rem, 1.8vw, 1.1rem);
    margin: 1.5rem 0 2rem 0;
    line-height: 1.6;
    opacity: 0.9;
}

.button {
    background: white;
    color: #df6951;
    padding: 0.9rem 2rem;
    text-decoration: none;
    font-weight: bold;
    border-radius: 50px;
    transition: background 0.3s, color 0.3s, transform 0.3s;
    display: inline-block;
    margin-top: 1rem;
    border: 2px solid white;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.button:hover {
    background: #df6951;
    color: white;
    border-color: #df6951;
    transform: translateY(-2px);
}



@media (max-width: 991.98px) {
    .parallax-hero {
        padding: 80px 0;
        min-height: 400px;
        background-position: center;
    }

    .hero-content {
        padding: 2rem 1.5rem;
        max-width: 95%;
    }
}

@media (max-width: 767.98px) {
    .parallax-hero {
        padding: 60px 0;
        min-height: 350px;
        background-attachment: scroll;
        background-position: center;
    }

    .hero-content {
        padding: 1.5rem 1rem;
        width: 95%;
    }

    .hero-content h1 {
        font-size: clamp(2rem, 9vw, 3rem);
    }

    .hero-content h2 {
        font-size: clamp(0.9rem, 3.5vw, 1.2rem);
    }

    .hero-content p {
        font-size: clamp(0.8rem, 2.5vw, 1rem);
    }

    .button {
        padding: 0.8rem 1.5rem;
    }
}

@media (max-width: 575.98px) {
    .parallax-hero {
        padding: 40px 0;
        min-height: 300px;
    }

    .hero-content {
        padding: 1.2rem 0.8rem;
    }
}

/* extra-section-ended */

/* footer started */
.footer {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

.footer {
    background-image: url(./images/footerbg.png);
    background-repeat: no-repeat;
    background-size: cover;

    color: #fff;
    font-family: 'Arial', sans-serif;
    position: relative;
    padding-top: 60px;
}

.footer-top-banner {
    background-color: #DF6951;
    padding: 30px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 8px;
    margin: 0 auto 40px;
    max-width: 1200px;
    flex-wrap: wrap;
    text-align: center;
    color: #fff;
}

.footer-top-banner h2 {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 10px;
}

.footer-top-banner .social-links {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-top-banner .social-links span {
    font-weight: bold;
    margin-right: 10px;
}

.footer-top-banner .social-links a {
    background: #fff;
    color: #DF6951;
    padding: 10px;
    border-radius: 50%;
    font-size: 14px;
    text-decoration: none;
    transition: 0.3s;
}

.footer-top-banner .social-links a:hover {
    background-color: #e64829;
    color: white;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    padding: 40px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 15px;
}



.footer-col h4 {
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: 600;
}

.footer-col p,
.footer-col a {
    color: #ccc;
    font-size: 14px;
    line-height: 1.6;
    text-decoration: none;
}

.footer-col a:hover {
    color: #ffffff;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 8px;
}

.footer-col i {
    color: #ffffff;
    margin-right: 8px;
}

.footer-col form {
    margin-top: 15px;
}

.footer-col input[type="email"] {
    padding: 10px 15px;
    border: 1px solid #ffffff;
    background: transparent;
    color: #fff;
    border-radius: 30px;
    width: 100%;
    margin-bottom: 10px;
}

input {
    color: white;
}

.footer-col button {
    background-color: #DF6951;
    color: #fff;
    padding: 10px 20px;
    border-radius: 30px;
    border: none;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s ease;
}

.footer-col button span {
    margin-left: 6px;
}

.footer-col button:hover {
    background-color: #b63a22;
}

.footer-bottom {
    text-align: center;
    padding: 20px 10px;
    font-size: 14px;
    color: #ffffff;
    background-color: #bba8a8;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom span {
    color: #ce3c1e;
}

.footer {
    background: rgba(0, 0, 0, 0.4); 
    color: white;
    padding: 40px 20px;
    font-family: sans-serif;
}
.footer {
    background: rgba(0, 0, 0, 0.4); 
    color: white;
    padding: 40px 20px;
    font-family: sans-serif;
    margin-top: 60px;

    background-image: url('./images/footerbg.png'); 
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.footer {
    position: relative;
    overflow: hidden; 
}

.footer::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4); 
    z-index: 0;
}

.footer * {
    position: relative;
    z-index: 1; 
}

.footer-top-banner {
    background: #d56c54;
    color: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    margin-bottom: 30px;
}

.footer-top-banner h2 {
    margin: 0 0 10px;
    font-size: 24px;
}

.footer-top-banner .social-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.footer-top-banner .social-links a {
    color: white;
    background: rgba(255, 255, 255, 0.2);
    padding: 10px;
    border-radius: 50%;
    text-decoration: none;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
    max-width: 1200px;
    margin: auto;
}

.footer-col {
    flex: 1 1 200px;
    min-width: 200px;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: bold;
}

.footer-col p, .footer-col a, .footer-col li {
    font-size: 14px;
    line-height: 1.6;
    color: #fff;
    text-decoration: none;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 8px;
}

.footer-col ul li a:hover {
    text-decoration: underline;
}

.footer-col.newsletter form {
    display: flex;
    flex-direction: column;
}

.footer-col.newsletter input[type="email"] {
    padding: 10px;
    border: none;
    border-radius: 20px;
    margin-bottom: 10px;
}

.footer-col.newsletter button {
    background: #d56c54;
    color: white;
    border: none;
    padding: 10px;
    border-radius: 20px;
    cursor: pointer;
}

.footer-col.newsletter button:hover {
    background: #c05644;
}

.footer-bottom {
    text-align: center;
    margin-top: 30px;
    font-size: 13px;
    color: #eee;
}

.footer-logo img {
    max-width: 100px;
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .footer-top-banner .social-links {
        flex-wrap: wrap;
    }
}
.footer {
    margin-top: 40px; 
}




/* footer ended */