@import url('https://fonts.googleapis.com/css2?family=Aclonica&family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Dancing+Script:wght@400..700&family=Josefin+Sans:ital,wght@0,100..700;1,100..700&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Nunito:ital,wght@0,200..1000;1,200..1000&family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Quicksand:wght@300..700&family=Qwigley&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&family=Rubik:ital,wght@0,300..900;1,300..900&display=swap');

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

a {
    text-decoration: none;
}

li {
    list-style: none;
}

body,
html {
    overflow-x: hidden;
    font-family: "Rubik";
}

.Container {
    max-width: 1200px;
    margin: auto;
    padding: 12px 0;
}



/* loader */
/* Loader styles */
.loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.loader-img {
    width: 100px;
    height: auto;
    animation: spin 3s linear infinite;
    /* light, slow rotation */
}

/* Keyframes for rotation */
@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* Hide the loader when page is loaded */
.fade-out {
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
}

/* navbar */
.navbar-nav {
    padding: 0 50px;
}

.navbar-nav .nav-link {
    color: #ffffff;
}

.navbar {
    position: sticky;
    top: 0;
    /* Sticks once it reaches the top of the viewport */
    z-index: 1020;
    /* Keeps it above page content */
    backdrop-filter: blur(45px);
    /* Your blur effect */
}



.consult-btn a {
    text-decoration: none;
    color: #fff;
    background-color: #000;
    padding: 10px 40px;
    border-radius: 20px;
    transition: 0.3s ease-in-out;
    border: 2px solid #fff;
}

.consult-btn a:hover {
    background-color: #FF2D55;
    border: 2px solid #000;
}

.nav-item .active {
    font-weight: 300 !important;
    color: #FF2D55 !important;
    border-bottom: 2px solid #FF2D55;
    font-size: 16px;

}

.nav-item .nav-link {
    font-weight: 300;
    transition: 0.3s ease-in-out;
    margin-right: 20px;
    font-size: 16px;
}

.nav-item .nav-link:hover {
    color: #fe1f48;
}

.carousel-item {
    position: relative;
    margin-top: -25px;
}

.navbar-toggler {
    border-color: white;
    /* optional: white border */
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='white' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.offcanvas-body {
    background-color: #000;
}


/* Make Offcanvas Fixed */
#offcanvasNavbar {
    position: fixed !important;
    top: 0;
    right: 0;
    height: 100vh;
    /* Full height */
    z-index: 1055;
    /* Above most elements but below modals */
}

/* navbar exit */
/* banner_wrapper */
.banner_wrapper {
    position: relative;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    height: 500px;
    z-index: 0;
    overflow: hidden;
    margin-top: 90px;
}

/* Black overlay */
.banner_wrapper::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    /* Adjust opacity here */
    z-index: 1;
}

/* Optional: Content inside should be above the overlay */
.banner_wrapper>* {
    position: relative;
    z-index: 2;
}

.banner_wrapper {
    position: relative;
    background-size: cover;
    background-position: center;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    overflow: hidden;
}

.banner_wrapper::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    /* Black overlay */
    z-index: 1;
}

.banner_content {
    position: relative;
    z-index: 2;
}

.banner_content h1 {
    font-size: 48px;
    font-weight: bold;
    margin: 0 0 20px 0;
}

.breadcrumb {
    background: #ff2d55;
    display: inline-block;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 16px;
}

.breadcrumb a {
    color: white;
    text-decoration: none;
    font-weight: 500;
}

.breadcrumb span {
    color: white;
    font-weight: 500;
}

@media (max-width:500px) {
    .banner_wrapper h1 {
        font-size: 20px;
    }

    .breadcrumb span {
        font-size: 15px;
    }
}

/* banner_wrapper_exit */
/* 
Services_inner */
/* housekeeping_services */
.Housekeeping-services {
    padding: 50px 20px;
    text-align: center;
}

.Housekeeping-services h2 {
    font-size: 28px;
    font-weight: 700;
    color: #002147;
    margin-bottom: 15px;
}

.Housekeeping-services .intro-text {
    max-width: 900px;
    margin: 0 auto 30px;
    color: #333;
    line-height: 1.6;
}

.Housekeeping-services .image-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 15px;
    margin-bottom: 30px;
}

.Housekeeping-services .image-grid img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 6px;
}

@media (max-width: 500px) {
    .Housekeeping-services .image-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        /* 2 columns */
        gap: 10px;
        /* space between images */
    }

    .Housekeeping-services .image-grid img {
        width: 100%;
        /* fill grid cell */
        height: 200px;
        object-fit: cover;
        border-radius: 6px;
    }
}


.Housekeeping-services .bottom-text {
    max-width: 900px;
    margin: 0 auto 30px;
    color: #333;
    line-height: 1.6;
}

.Housekeeping-services .btn-group {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-whatsapp {
    background: #25D366;
    color: white;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
}

.btn-booking {
    background: #002b8d;
    color: white;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
}

.btn-whatsapp:hover {
    background: #1ebe5b;
}

.btn-booking:hover {
    background: #001e66;
}
/* Services_inner_exit */
/* carousel */
.carousel-item img {
    margin-top: 120px;
    height: 500px;
}

.carousel-item {
    position: relative;
}

.carousel-item {
    position: relative;
}

.carousel-item img {
    height: 500px;
    object-fit: cover;
    margin-top: 120px;
}

/* Black overlay over image */
.carousel-item::after {
    content: "";
    position: absolute;
    top: 120px;
    left: 0;
    width: 100%;
    height: 500px;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

/* Caption content style */
.carousel-caption {
    z-index: 2;
    position: absolute;
    top: 65%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    text-align: center;
    padding: 10px 20px;
    width: 900px;
    /* adjust until you get 2 lines */
    white-space: normal;
    /* ensure wrapping happens */
}

.carousel-caption h5 {
    display: inline-block;
    max-width: 100%;
    font-weight: 600;
    font-size: 32px;
}

@media (max-width: 500px) {
    .carousel-item img {
        height: 400px;
        margin-top: 80px;
    }

    .carousel-item::after {
        height: 400px;
        top: 80px;
    }

    .carousel-caption {
        position: relative;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .carousel-caption h5 {
        font-size: 16px !important;
        max-width: 300px;
        position: absolute;
        z-index: 3;
        white-space: normal;
        text-align: center;
        top: -1033%;
        left: 305px;
    }


}

.carousel-item img,
.carousel-item::after {
    transition: all 0.3s ease-in-out;
}

/* Carousal_end */

/* services */

.container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    align-items: center;
    justify-content: space-between;
}

.services-list {
    flex: 1 1 50%;
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.services-list h2 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 30px;
    color: #0D3443;
    font-weight: 400;
}

.service-items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    text-align: center;
}

.service-item img {
    width: 60px;
    height: 60px;
    margin-bottom: 10px;
    border-radius: 100px;
    border: 1px solid transparent;
    /* fixed spacing issue */
    transition: all 0.3s ease-in-out;
}

/* Hover Effect */
.service-item img:hover {
    transform: scale(1.1);
    border-color: #ff9900;
    /* highlight border on hover */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.service-item p {
    font-weight: bold;
    font-size: 14px;
    color: #0D3443;
}

.service-images {
    flex: 1 1 40%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.service-images img {
    height: 500px;
    width: 500px;
    border-radius: 8px;
    object-fit: cover;
}

@media (max-width:500px) {
    .service-images img {
        height: 400px;
        width: 400px;
        border-radius: 8px;
        object-fit: cover;
        margin-top: 20px;
    }
}

@media (max-width:450px) {
    .service-images img {
        height: 400px;
        width: 380px;
        border-radius: 8px;
        object-fit: cover;
        margin-top: 20px;
    }
}

@media (max-width:401px) {
    .service-images img {
        height: 400px;
        width: 335px;
        border-radius: 8px;
        object-fit: cover;
        margin-top: 20px;
    }
}

@media (max-width:350px) {
    .service-images img {
        height: 400px;
        width: 315px;
        border-radius: 8px;
        object-fit: cover;
        margin-top: 20px;
    }
}

/* Services-exit */
/* inner_services */
.inner_services {
    margin-bottom: 40px;
}

.inner_services h3 {
    color: #000;
    font-size: 28px;
    font-weight: 500;
    margin-left: 50px;
}

@media (max-width:500px) {
    .inner_services h3 {
        color: #000;
        font-size: 22px;
        font-weight: 500;
        text-align: center;
    }
}


.inner_card {
    display: flex;
    flex-wrap: wrap;
    /* Allow cards to move to new lines */
    justify-content: center;
    /* Center the cards */
    gap: 10px;
    /* Space between cards */
    padding: 10px;
}

.inner_card_box {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: inline-block;
    padding: 10px 10px 0 10px;
    margin: 10px;
    max-width: 200px;
    height: 100%;
    flex: 1 1 calc(25% - 40px);

}

.inner_card_box h4 {
    font-size: 18px;
    margin-top: 15px;
    text-align: center;
    color: #000;
}

.inner_img img {
    height: 300px;
    width: 100%;
    border-radius: 15px;
    object-fit: cover;
}



/* Hover effect */
.inner_card_box:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
}

/* Responsive for tablets */
@media (max-width: 992px) {
    .inner_card_box {
        flex: 1 1 calc(33.333% - 40px);
    }
}

/* Responsive for mobile */
@media (max-width: 576px) {
    .inner_card_box {
        flex: 1 1 100%;
        max-width: 100%;
    }

    .inner_card_box h4 {
        font-size: 14px;
    }

    .inner_img img {
        height: 200px !important;
    }
}

/* inner_services_exit */
/* Package-deatils_wrapper */
.Package-deatils_wrapper {
    padding-bottom: 50px;
    background-color: #F8F3ED;
    margin-bottom: 50px;
}

.Package-deatils_wrapper h3 {
    text-align: center;
    font-size: 40px;
    font-weight: 600;
    padding: 40px 0;
    position: relative;
}

.Package-deatils_wrapper h3::after {
    content: "";
    position: absolute;
    bottom: 26%;
    left: 33%;
    transform: translateX(50%);
    width: 242px;
    height: 4px;
    background-color: #0989BD;
    border-radius: 2px;
}

.package-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
    padding: 10px;
}

.package-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.6);
    /* Adjust shadow as needed */
    transition: box-shadow 0.3s ease;
    /* Smooth shadow transition */
}

.package-card img {
    width: 100%;
    height: 200px;
    border-radius: 8px;
    object-fit: cover;
    transition: 0.5s ease;
    transition: box-shadow 0.3s ease;
}

@media (max-width:500px) {


    .package-title {
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 14px !important;
        margin-left: 15px;
    }

    .Package-deatils_wrapper h3 {
        font-size: 35px;
    }

    .Package-deatils_wrapper h3::after {
        content: "";
        position: absolute;
        bottom: 26%;
        left: -6%;
        transform: translateX(50%);
        width: 242px;
        height: 4px;
        background-color: #0989BD;
        border-radius: 2px;
    }

    .package-card {
        display: flex;
    }

    .pckg-text p {
        margin-left: 20px;
        margin-top: -15px;
    }

    .pckg-img img {
        height: 100px;
        width: 120px;
    }

}

.package-title {
    font-size: 16px;
    font-weight: 600;
    color: #000;
    text-align: center;
    padding: 15px 0;
    text-decoration: none;
}

.package-card:hover {
    color: #000;
}

.inner_card {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    /* space between cards */
}

.inner_card a {
    flex: 1 1 calc(50% - 10px);
    /* 2 cards per row */
    box-sizing: border-box;
    text-decoration: none;
    /* remove link underline */
}





/* Desktop view - more cards in a row */
@media (min-width: 768px) {
    .inner_card a {
        flex: 1 1 calc(20% - 10px);
        /* 5 cards per row, adjust as needed */
    }
}


/* Package-deatils_wrapper-end */
/* About */
.about_wrapper h3 {
    text-align: center;
    font-size: 45px;
    font-weight: 600;
    padding: 40px 0;
    position: relative;
}

.about_wrapper h3::after {
    content: "";
    position: absolute;
    bottom: 26%;
    left: 33%;
    transform: translateX(50%);
    width: 208px;
    height: 4px;
    background-color: #FF2D55;
    border-radius: 2px;
}

.about_wrapper h6 {
    font-size: 18px;
    color: #FF2D55;
}

.about_wrapper p {
    font-size: 15px;
    color: #000;
}

.about_wrapper {
    margin: 30px 0;
}


.about_wrap-text {
    padding-top: 80px;
}

.about_wrap-text p {
    color: #0D3443;
    font-weight: 600;
    font-size: 16px;
}

@media (max-width:500px) {
    .about_wrap-text p {
        color: #0D3443;
        font-weight: 600;
        font-size: 15px;
        padding: 0 20px;
    }

    .about_wrap-text ul li {
        padding: 0 20px;
    }

    .about_wrapper img {
        width: 100%;
    }

    .about_wrapper p {
        padding: 0 20px !important;
    }

    .about_wrapper h6 {
        text-align: center;
    }

    .banner_wrapper {
        width: 100%;
        height: 500px;
        margin-top: -20px;
    }
}

.about_wrap-text ul li {
    color: #000000;
    line-height: 30px;
}

.hover-img {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    padding: 4px;
    /* For the visible border */

}

.hover-img img {
    width: 100%;
    height: 400px;
    transition: opacity 0.7s ease;
    display: block;
    border-radius: 10px;
    background-color: white;
    /* Prevents transparency */
}

@media (max-width: 500px) {
    .about-column {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .hover-img {
        margin-bottom: 20px;
    }

    .about_wrapper h3 {
        font-size: 40px;
    }

    .about_wrapper h3::after {
        content: "";
        position: absolute;
        bottom: 26%;
        left: 0%;
        transform: translateX(50%);
        width: 208px;
        height: 4px;
        background-color: #FF2D55;
        border-radius: 2px;
    }
}

.hover-img .img-top {
    position: absolute;
    top: 4px;
    /* match padding */
    left: 4px;
    right: 4px;
    bottom: 4px;
    opacity: 1;
    border-radius: 10px;
}

.hover-img:hover .img-top {
    opacity: 0;
}

.hover-img img:hover {
    outline: 2px solid #001117;
}

.about-text ul li {
    color: #000;
}

.about-text {
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    padding: 30px;
    border-radius: 10px;
}

.about-btn a {
    color: #fff;
    background-color: #001117;
    padding: 10px 30px;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50%;
    margin-left: 25%;

}

/* About End */




/* countdown */
.funfacts-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 60px 10%;
    background: url('bg-pattern.png');
    background-size: contain;
}

.funfacts-content {
    max-width: 400px;
}

.funfacts-content h4 {
    color: red;
    font-size: 14px;
    margin-bottom: 10px;
}

.funfacts-content h2 {
    font-size: 36px;
    color: #0D3443;
    line-height: 1.3;
}

.funfacts-content button {
    margin-top: 20px;
    padding: 10px 20px;
    background-color: #0644c6;
    color: white;
    border: none;
    cursor: pointer;
    font-weight: bold;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 600px;
}

.stat-card {
    background-color: white;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: 0.3s;
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-card i {
    font-size: 30px;
    color: orange;
    margin-bottom: 10px;
}

.stat-card h3 {
    font-size: 32px;
    margin: 10px 0;
    color: #0D3443;
}

.stat-card p {
    font-weight: bold;
    color: #0D3443;
}

.stats-grid.hidden {
    display: none;
}

@media (max-width: 768px) {
    .funfacts-section {
        flex-direction: column;
        text-align: center;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    padding: 40px;
    text-align: center;
}

.stat-card {
    background: #f5f5f5;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
}

/* contact_wrapper */
.contact_wrapper {
    padding: 80px 0;
}

.contact_wrapper h3 {
    text-align: center;
    font-size: 40px;
    color: #000;
    margin-bottom: 30px;
}

.contact_wrapper h3 {
    font-size: 35px;
    text-align: center;
    position: relative;
    padding-top: 15px;
}

.contact_wrapper h3::after {
    content: "";
    position: absolute;
    bottom: -10%;
    left: 50%;
    transform: translateX(-50%);
    width: 208px;
    /* adjust as needed */
    height: 4px;
    background-color: #fe1f48;
    border-radius: 2px;
}

.contact_list {
    font-size: 20px;
    text-align: left;
}

@media (max-width:500px) {
    .contact_map {
        margin-top: 20px;
        width: 100% !important;
    }
}



@media(max-width:450px) {
    .contact_text {
        width: 107%;
    }
}

.Contact-text {
    background-color: #FF2D55;
    padding: 80px 30px;
}

.contact_list {
    color: #fff;
}

.Contact-text li {
    list-style: none;
    margin-bottom: 20px;
}

/* contact_wrapper */
/* Careers_wrapper */
.Careers_wrapper {
    padding: 50px 0;
}

.Careers_wrapper h4 {
    color: #000;
    font-size: 32px;
}

.Careers_wrapper p {
    font-size: 14px;
    color: #000000;
}

.careers_inner h5 {
    color: #000;
    margin-bottom: 10px;
}

.careers_inner p {
    color: #000000;
}

@media (max-width:500px) {
    .careers_inner h5 {
        text-align: center;
    }

    .careers_inner p {
        color: #000000;
        padding: 0 20px;
    }

    .Careers_wrapper h4 {
        color: #000;
        font-size: 30px;
        text-align: center;
    }

    .Careers_wrapper p {
        font-size: 14px;
        color: #000000;
        padding: 0 20px;
    }
}

.careers_inner {
    padding-bottom: 50px;
}

.careers_btn button {
    width: 100%;
    max-width: 400px;
}

.careers_btn {
    text-align: center;
}

.career_btn {
    background-color: #FF2D55;
}

.career_btn:hover {
    border: 2px solid #FF2D55;
}

.career_btn:hover {
    color: #000 !important;
}

/* Form */
.form-section {
    max-width: 1000px;
    margin: 50px auto;
    padding: 20px;
}

h2 {
    font-size: 32px;
    font-weight: 700;
    color: #002147;
    margin-bottom: 20px;
}

form {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

input,
select,
textarea {
    width: 100%;
    padding: 15px;
    font-size: 16px;
    border: none;
    background: #f6f7fa;
    border-radius: 6px;
    outline: none;
}

textarea {
    grid-column: span 2;
    min-height: 120px;
    resize: none;
}

.submit-btn {
    grid-column: span 2;
    text-align: center;
}

.submit-btn .button-btn {
    background: linear-gradient(90deg, #0047ab, #002b80);
    color: white;
    padding: 12px 40px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s ease-in-out;
}

.submit-btn .button-btn:hover {
    background-color: #FF2D55 !important;
}


button {
    background: linear-gradient(90deg, #0047ab, #002b80);
    color: white;
    padding: 12px 40px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

button:hover {
    opacity: 0.85;
}

@media (max-width: 768px) {
    form {
        grid-template-columns: 1fr;
    }

    textarea,
    .submit-btn {
        grid-column: span 1;
    }
}

/* Careers_wrapper */
#backToTop {
    display: none;
    /* Hidden by default */
    position: fixed;
    bottom: 75px;
    right: 20px;
    z-index: 99;
    font-size: 18px;
    border: none;
    outline: none;
    background-color: #007bff;
    color: white;
    cursor: pointer;
    padding: 12px 21px;
    border-radius: 100%;
    transition: background-color 0.3s, transform 0.3s;
}

#backToTop:hover {
    background-color: #0056b3;
    transform: scale(1.1);
}


/* footer_start */
.footer {
    background-color: #222;
    color: #fff;
    padding: 80px 0 30px 0;
    font-family: sans-serif;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: auto;
}

.footer-column {
    flex: 1 1 220px;
    margin: 10px;
}

.footer-column img {
    height: 80px;
    width: 100%;
    margin-left: -35px;
    margin-bottom: 10px;
}

.footer-column h4 {
    margin-bottom: 15px;
    font-size: 18px;
    border-bottom: 2px solid #555;
    padding-bottom: 5px;
}

.footer-column ul,
.footer-column a {
    font-size: 14px;
    color: #fff;
}

.footer-column p {
    font-size: 14px;
    color: #fff;
    width: 250px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column a {
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #FF2D55;
    font-weight: 600;
}

.social-icons a {
    display: inline-block;
    margin-right: 10px;
}

.social-icons img {
    width: 18px;
    height: 18px;
    filter: brightness(1) invert(1);
    transition: transform 0.3s ease;
}

.social-icons a:hover img {
    transform: scale(1.3);
}


/* Mobile Responsive */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-column {
        margin: 20px 0;
    }
}

/* footer_End */
/* copyright */
.footer-container .copyright-section {
    padding: 1rem 0 1rem;
    text-align: center;
    border-top: 1px solid #fff;
    font-size: 14px;
}

.footer-container .copyright-section a {
    color: #FF2D55;
    font-weight: 600;
    text-decoration: none;

}

@media(max-width:450px) {
    .navbar-brand img {
        width: 323px;
        height: 50px !important;
    }
}

/* whatsapp_icon */
.fixed-contact-icons {
    position: fixed;
    bottom: 17px;
    right: 20px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.fixed-contact-icons a {
    width: 50px;
    height: 50px;
    background-color: #25D366;
    /* WhatsApp green for both by default */
    color: white;
    font-size: 24px;
    border-radius: 50%;
    text-align: center;
    line-height: 50px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s;
}

.fixed-contact-icons .call-icon {
    background-color: #0d6efd;
    /* Blue for call */
}

.fixed-contact-icons a:hover {
    transform: scale(1.1);
}

.fixed-contact-icons {
    position: fixed;
    bottom: 20px;
    z-index: 999;
}

/* ------------------------------------------------END---------------------------------------------------------------------------- */