

/*-----------------FOOTER-----------------*/



@import url('https://fonts.googleapis.com/css2?family=Great+Vibes&family=Poppins:wght@100;200;300;400;500;600;700;800;900&family=Antonio:wght@700;800&display=swap');


::selection {
    color: #fff;
    background-color: #c69570;
}

::-moz-selection {
    color: #fff;
    background-color: #c69570;
}

body,
html {
    margin: 0;
    padding: 0;
}

/* #Navigation
================================================== */
/* .header-margin-top
{
    width: 100%;
    height: 82px;
    display: block;
    background-color: transparent;
} */
.navigation-wrap {
    position: fixed;
    width: 100%;

    left: 0;
    z-index: 10000;
    -webkit-transition: all 0.45s cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: all 0.45s cubic-bezier(0.165, 0.84, 0.44, 1);
}


/* Header Top Bar */
.header-top-bar {
    background-color: #062246;
    font-size: 13px;
    font-family: 'Inter', sans-serif;
    color: #ffffff;
    max-height: 120px;
    opacity: 1;
    overflow: hidden;
    -webkit-transition: max-height 0.45s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 0.35s ease, padding 0.45s cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: max-height 0.45s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 0.35s ease, padding 0.45s cubic-bezier(0.165, 0.84, 0.44, 1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 8px 0;
}

.header-top-bar a {
    color: #ffffff;
    transition: color 0.2s ease-in-out;
}

.header-top-bar a:hover {
    color: #00b0f0;
}

.header-top-bar .text-primary-light {
    color: #00b0f0 !important;
}

.header-top-bar .small-label {
    font-weight: 700;
    letter-spacing: 0.5px;
    font-size: 11px;
}



@media (max-width: 991.98px) {
    .header-top-bar {
        display: none !important;
    }
}

@media (max-width: 767px) {
    .header-top-bar .d-flex {
        justify-content: center !important;
        text-align: center;
        flex-direction: column;
        gap: 8px !important;
    }
    .header-top-bar .header-top-left,
    .header-top-bar .header-top-right {
        justify-content: center !important;
    }
}

/* Collapsed state when scrolled */
.navigation-wrap.scroll-on .header-top-bar {
    max-height: 0;
    opacity: 0;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    border-bottom-color: transparent;
}

.start-header {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.02);
    top: 0px;
    opacity: 1;
    transform: translateY(0);
    padding: 0;
    -webkit-transition: background-color 0.45s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.45s cubic-bezier(0.165, 0.84, 0.44, 1), border-color 0.45s cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: background-color 0.45s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.45s cubic-bezier(0.165, 0.84, 0.44, 1), border-color 0.45s cubic-bezier(0.165, 0.84, 0.44, 1);
}


.start-header.scroll-on {
    top: 0px;
    background-color: #ffffff;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    -webkit-box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.05);
    -moz-box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.05);
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.05);
    padding: 0;
    -webkit-transition: background-color 0.45s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.45s cubic-bezier(0.165, 0.84, 0.44, 1), border-color 0.45s cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: background-color 0.45s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.45s cubic-bezier(0.165, 0.84, 0.44, 1), border-color 0.45s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.start-header.scroll-on .navbar-brand img {
    height: 50px; 
    width: auto;
    -webkit-transition: height 0.45s cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: height 0.45s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.navbar {
    padding: 12px 0 !important;
    background-color: transparent !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    border-radius: 0 !important;
    border: none !important;
    box-shadow: none !important;
    color: #2a2a2a !important;
    -webkit-transition: padding 0.45s cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: padding 0.45s cubic-bezier(0.165, 0.84, 0.44, 1);
}


.start-header.scroll-on .navbar {
    background-color: transparent !important;
    color: #2a2a2a !important;
    padding: 8px 0 !important;
    border-radius: 0 !important;
    border: none !important;
    box-shadow: none !important;
}


.start-header.scroll-on .nav-item:hover .nav-link,
.nav-item:hover .nav-link {
    color: var(--bs-primary) !important;    
    transition: all 0.3s ease-in-out;
}


.navbar-expand-xl .navbar-collapse {
    justify-content: end;
}

.navbar-brand img {
    width: auto;
    display: block;
    filter: brightness(100%);
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
    height: 58px;
}
@media (max-width: 1599.98px) {
    .navbar-brand img { height: 44px; }
    .header-top-bar { font-size: 12px; }
    .nav-link { font-size: 0.92rem; }
    .dropdown-menu { font-size: 13.5px; }
    .footer-desc,
    .footer-links-list a,
    .footer-contact-item span { font-size: 13.5px; }
    .footer-copyright,
    .footer-bottom-links a { font-size: 12px; }
}


@media (max-width: 1399.98px) {.navbar-brand img { height: 44px; } }

/* Large devices (below xl) */
@media (max-width: 1199.98px) { }

/* Medium devices (below lg) */
@media (max-width: 991.98px) { }

/* Small devices (below md) */
@media (max-width: 767.98px) { }

/* Extra Small devices (below sm) */
@media (max-width: 575.98px) { }



.navbar-toggler {
    float: right;
    border: none !important;
    padding-right: 0;
    color: #fff;
}

.navbar-toggler:focus,
.navbar-toggler:active {
    outline: none !important;
    box-shadow: none !important;
}

.start-header.scroll-on .navbar-toggler-icon{
    border-bottom: 1px solid var(--bs-primary);
}

.start-header.scroll-on .navbar-light .navbar-toggler-icon:after,
.start-header.scroll-on .navbar-light .navbar-toggler-icon:before {
    background-color: var(--bs-primary);
}

.navbar-light .navbar-toggler-icon {
    width: 24px;
    height: 17px;
    background-image: none;
    position: relative;
    border-bottom: 1px solid var(--bs-primary);
    transition: all 300ms linear;
}

.navbar-light .navbar-toggler-icon:after,
.navbar-light .navbar-toggler-icon:before {
    width: 24px;
    position: absolute;
    height: 1px;
    background-color: var(--bs-primary);
    top: 0;
    left: 0;
    content: '';
    z-index: 2;
    transition: all 300ms linear;
}

.navbar-light .navbar-toggler-icon:after {
    top: 8px;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
    transform: rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before {
    transform: translateY(8px) rotate(-45deg);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
    border-color: transparent;
}

.mobile-call-btn {
    background-color: var(--bs-primary, #0070c0) !important;
    color: #ffffff !important;
    font-size: 13px;
    font-weight: 600;
    padding: 6px 16px;
    border-radius: 50px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.mobile-call-btn i {
    font-size: 12px;
}

.mobile-call-btn:hover {
    background-color: #005090 !important;
    color: #ffffff !important;
}

.nav-link {
    color: inherit !important;
    font-weight: 400;
    transition: all .3s ease-in-out;
}

.nav-item.active .nav-link,
.start-header.scroll-on .nav-item.active .nav-link {
    color: #0f3d6b !important;
    font-weight: 700 !important;
}

.nav-item.active .nav-link i,
.nav-item.active .dropdown-chevron,
.start-header.scroll-on .nav-item.active .dropdown-chevron {
    color: #097cd4 !important;
}

.nav-item:hover .nav-link,
.start-header.scroll-on .nav-item:hover .nav-link {
    color: #097cd4 !important;
}

.nav-item:hover .dropdown-chevron,
.nav-item.show .dropdown-chevron,
.dropdown.show .dropdown-chevron {
    color: #097cd4 !important;
}

.nav-link {
    position: relative;
    padding: 5px 0 !important;
    display: inline-block;
}

.nav-link:after {
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2.5px;
    content: '';
    background: linear-gradient(90deg, #097cd4 0%, #00d2c4 100%);
    border-radius: 2px;
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.35s cubic-bezier(0.25, 1, 0.5, 1);
    pointer-events: none;
}

.nav-link:hover:after,
.nav-item:hover .nav-link:after {
    transform: scaleX(1);
}

.nav-item {
    position: relative;
    transition: all 200ms linear;
    margin-left: 25px;
}

.nav-item .dropdown-menu {
    transform: translate3d(0, 10px, 0);
    visibility: hidden;
    opacity: 0;
    max-height: 0;
    display: block;
    padding: 0;
    margin: 0;
    transition: all 200ms linear;
}

.nav-item.show .dropdown-menu,
.dropdown.show .dropdown-menu,
.dropdown-menu.show {
    opacity: 1;
    visibility: visible;
    max-height: 999px;
    transform: translate3d(0, 0px, 0);
}

.dropdown-menu {
    padding: 10px !important;
    margin: 0;
    font-size: 14.5px;
    letter-spacing: 0.5px;
    color: #212121;
    background-color: #fff;
    border: none !important;
    border-radius: 8px !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08) !important;
    transition: all 200ms linear;
}

.dropdown-toggle i {
    color: var(--bs-primary);
    font-size: .8rem;
}

.dropdown-toggle::after {
    display: none;
}

.dropdown-item {
    padding: 8px 18px;
    color: #333333;
    border-radius: 8px !important;
    font-weight: 500;
    transition: all 0.2s ease-in-out;
}

.dropdown-item:hover,
.dropdown-item:focus {
    color: #0f3d6b !important;
    background-color: rgba(9, 124, 212, 0.08) !important;
}

.dropdown-item.active {
    color: #ffffff !important;
    background: linear-gradient(135deg, #097cd4 0%, #00d2c4 100%) !important;
    font-weight: 600 !important;
    box-shadow: 0 4px 14px rgba(9, 124, 212, 0.25) !important;
}

/* #Media - Modern Mobile Drawer View
================================================== */

@media (max-width: 1199.98px) {

   

    .navigation-wrap .navbar-collapse {
        background: rgba(255, 255, 255, 0.98) !important;
        backdrop-filter: blur(24px);
        -webkit-backdrop-filter: blur(24px);
        border-radius: 16px !important;
        border: 1px solid rgba(0, 112, 192, 0.12) !important;
        box-shadow: 0 16px 36px rgba(6, 34, 70, 0.12) !important;
        padding: 12px 14px 14px 14px !important;
        margin-top: 10px !important;
        max-height: none !important;
        overflow-y: visible !important;
        transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    }

    /* Disable legacy dash and hover pseudo-elements on mobile */
    .nav-item::before,
    .nav-item::after,
    .nav-link::after,
    .dropdown-toggle::after {
        display: none !important;
    }

    .nav-item {
        margin-left: 0 !important;
        margin-bottom: 2px;
        border-radius: 10px;
        transition: background-color 0.2s ease;
    }

    .nav-link {
        padding: 8px 12px !important;
        font-size: 0.92rem !important;
        font-weight: 600 !important;
        color: #1a2e40 !important;
        border-radius: 10px;
        display: flex !important;
        align-items: center;
        width: 100%;
        transition: all 0.2s ease;
    }

    .nav-link .mobile-nav-icon {
        font-size: 1rem;
        color: var(--bs-primary, #0070c0);
        width: 22px;
        text-align: center;
        opacity: 0.85;
        transition: transform 0.2s ease, opacity 0.2s ease;
    }

    .nav-item:hover .nav-link,
    .nav-item.active .nav-link {
        background: linear-gradient(135deg, rgba(9, 124, 212, 0.08) 0%, rgba(0, 210, 196, 0.06) 100%) !important;
        color: #0f3d6b !important;
        border-left: 3px solid #097cd4 !important;
        font-weight: 700 !important;
    }

    .nav-item:hover .mobile-nav-icon,
    .nav-item.active .mobile-nav-icon {
        opacity: 1;
        color: #097cd4 !important;
        transform: scale(1.1);
    }

    /* Chevron rotation on expanded */
    .dropdown-chevron {
        transition: transform 0.3s ease;
        color: #637688;
    }

    .dropdown-toggle[aria-expanded="true"] .dropdown-chevron,
    .dropdown.show .dropdown-chevron {
        transform: rotate(180deg);
        color: var(--bs-primary, #0070c0);
    }

    /* Mobile Dropdown Visibility & Sleek 2-Column Compact Grid */
    .dropdown-menu {
        display: none;
        position: static !important;
        float: none !important;
        width: 100% !important;
        background-color: rgba(0, 112, 192, 0.04) !important;
        border: 1px solid rgba(0, 112, 192, 0.1) !important;
        border-radius: 12px !important;
        padding: 6px !important;
        margin: 4px 0 6px 0 !important;
        box-shadow: none !important;
        transform: none !important;
    }

    .dropdown-menu.show,
    .dropdown.show > .dropdown-menu,
    .show > .dropdown-menu,
    .nav-item.show .dropdown-menu {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 4px !important;
        opacity: 1 !important;
        visibility: visible !important;
        max-height: none !important;
    }

    .dropdown-item-full {
        grid-column: span 2 !important;
    }

    .dropdown-item {
        padding: 6px 8px !important;
        font-size: 0.8rem !important;
        font-weight: 500 !important;
        color: #2c3e50 !important;
        border-radius: 8px !important;
        background-color: #ffffff !important;
        border: 1px solid rgba(0, 112, 192, 0.08) !important;
        display: flex !important;
        align-items: center;
        justify-content: center;
        text-align: center !important;
        white-space: normal !important;
        line-height: 1.2;
        min-height: 34px;
        transition: all 0.2s ease !important;
    }

    .dropdown-item-all {
        font-weight: 600 !important;
        color: var(--bs-primary, #0070c0) !important;
        background-color: rgba(0, 112, 192, 0.08) !important;
    }

    .dropdown-item:hover,
    .dropdown-item.active {
        background: linear-gradient(135deg, #097cd4 0%, #00d2c4 100%) !important;
        color: #ffffff !important;
        border-color: transparent !important;
        transform: translateY(-1px);
        box-shadow: 0 4px 12px rgba(9, 124, 212, 0.25) !important;
    }

    /* Mobile Timing & Quick Contact Card */
    .mobile-timing-card {
        background: linear-gradient(135deg, #ffffff 0%, #f4f9fc 100%);
        border: 1px solid rgba(0, 112, 192, 0.12) !important;
        box-shadow: 0 4px 15px rgba(6, 34, 70, 0.04);
    }

    .mobile-timing-icon-box {
        width: 38px;
        height: 38px;
        border-radius: 12px;
        background: rgba(0, 112, 192, 0.08);
        border: 1px solid rgba(0, 112, 192, 0.12);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.15rem;
        flex-shrink: 0;
    }

    .mobile-timing-badge {
        font-size: 0.65rem;
        letter-spacing: 0.8px;
        background-color: rgba(0, 112, 192, 0.08);
        color: var(--bs-primary, #0070c0);
    }

    .extra-small {
        font-size: 0.72rem;
    }

    /* Mobile Drawer Custom Buttons */
    .mobile-drawer-buttons-wrap {
        margin-top: 16px !important;
        padding-top: 16px !important;
        gap: 12px !important;
    }

    .mobile-drawer-btn {
        font-size: 0.85rem;
        letter-spacing: 0.3px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border: none !important;
        padding: 9px 16px !important;
        transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    }

    .mobile-drawer-btn i {
        margin-right: 8px !important;
        font-size: 0.95rem;
        display: inline-block;
    }

    .mobile-drawer-btn-call {
        background: linear-gradient(135deg, #0070c0 0%, #00a0e0 100%) !important;
        color: #ffffff !important;
    }

    .mobile-drawer-btn-call:hover,
    .mobile-drawer-btn-call:active {
        background: linear-gradient(135deg, #005090 0%, #0080c0 100%) !important;
        color: #ffffff !important;
        transform: translateY(-1px);
        box-shadow: 0 6px 16px rgba(0, 112, 192, 0.25);
    }

    .mobile-drawer-btn-wa {
        background: linear-gradient(135deg, #25d366 0%, #12b851 100%) !important;
        color: #ffffff !important;
    }

    .mobile-drawer-btn-wa:hover,
    .mobile-drawer-btn-wa:active {
        background: linear-gradient(135deg, #1ebd5a 0%, #0ea043 100%) !important;
        color: #ffffff !important;
        transform: translateY(-1px);
        box-shadow: 0 6px 16px rgba(37, 211, 102, 0.25);
    }
}

/* #Link to page
================================================== */

.logo {
    position: absolute;
    bottom: 30px;
    right: 30px;
    display: block;
    z-index: 100;
    transition: all 250ms linear;
}

.logo img {
    height: 26px;
    width: auto;
    display: block;
    filter: brightness(10%);
    transition: all 250ms linear;
}




/*-----------------Footer-----------------*/

.prarthana-footer {
    width: 100%;
    text-align: left;
    position: relative;
    overflow: visible;
}

/* Marquee Top Banner */
.footer-top-banner {
    width: 100%;
    background: #062246;
    padding: 15px 0;
    border-bottom: none;
    overflow: hidden;
    box-sizing: border-box;
    min-height: 130px;
}

.footer-banner-left {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    font-weight: 500;
    font-size: 16px;
    color: #00aeef;
    letter-spacing: 2px;
    line-height: 1.25;
    padding-right: 40px;
    border-right: 1px solid rgba(255, 255, 255, 0.15);
    text-transform: uppercase;
}

.footer-banner-right {
    flex-grow: 1;
    overflow: hidden;
    white-space: nowrap;
    display: flex;
    align-items: center;
    margin-left: 40px;
}

.marquee-wrapper {
    display: inline-flex;
    gap: 120px;
    animation: marquee-animation 20s linear infinite;
}

.marquee-text {
    font-family: 'Antonio', sans-serif;
    font-weight: 800;
    font-size: 90px;
    color: transparent;
    -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.18);
    letter-spacing: 2px;
    text-transform: uppercase;
    line-height: 1.1;
    transition: all 0.4s ease;
}

.marquee-text:hover {
    color: #00aeef;
    -webkit-text-stroke-color: #00aeef;
}

@keyframes marquee-animation {
    0% {
        transform: translate3d(0, 0, 0);
    }
    100% {
        transform: translate3d(-50%, 0, 0);
    }
}

@media (max-width: 992px) {
    .marquee-text {
        font-size: 65px;
    }
    .footer-top-banner {
        min-height: 100px;
        padding: 10px 5%;
    }
    .footer-banner-left {
        font-size: 12px;
        padding-right: 25px;
    }
    .footer-banner-right {
        padding-left: 25px;
    }
}

@media (max-width: 768px) {
    .footer-top-banner {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
        min-height: auto;
        padding: 20px 5%;
    }
    .footer-banner-left {
        border-right: none;
        padding-right: 0;
        padding-bottom: 10px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        width: 100%;
    }
    .footer-banner-right {
        padding-left: 0;
        width: 100%;
    }
    .marquee-text {
        font-size: 50px;
    }
}


/* Columns Area with Notch */
.footer-columns-area {
    width: 100%;
    background: linear-gradient(135deg, #051427 0%, #0a264a 100%);
    position: relative;
    overflow: visible;
    padding-top: 0;
    padding-bottom: 0;
}

/* Pocket Logo Notch aligned relative to Bootstrap Container */
.footer-logo-pocket {
    position: absolute;
    left: 12px;
    top: 0;
    width: 170px;
    height: 110px;
    z-index: 10;
    display: flex;
}

@media (max-width: 768px) {
    .footer-logo-pocket {
        position: relative;
        left: auto;
        top: auto;
        width: 110px;
        margin: 30px auto 10px auto;
        display: flex;
        justify-content: center;
    }
}

.footer-logo-box {
    position: relative;
    width: 110px;
    height: 110px;
    background-color: #062246;
    border-bottom-left-radius: 55px;
    border-bottom-right-radius: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}

.pocket-shape-left {
    margin-right: -1.5px;
    flex-shrink: 0;
}

.pocket-shape-right {
    margin-left: -1.5px;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .pocket-shape-left, .pocket-shape-right {
        display: none;
    }
}

@keyframes spin-slow {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.footer-logo-img {
    position: absolute;
    width: 106px;
    height: 106px;
    top: 2px;
    left: 2px;
    border-radius: 50%;
    background-color: transparent;
    padding: 0;
    box-shadow: none;
    animation: spin-slow 16s linear infinite;
}

@media (min-width: 769px) {
    .footer-brand-content {
        margin-top: 85px;
    }
}

.footer-brand-title {
    font-weight: 700;
    font-size: 20px;
    color: #ffffff;
    letter-spacing: 0.5px;
    margin-top: 10px;
    display: block;
}

.footer-brand-subtitle {
    font-weight: 400;
    font-size: 12px;
    color: #00aeef;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 15px;
}

.footer-tagline {
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 2px;
    color: #00aeef;
    text-transform: uppercase;
    margin-bottom: 10px;
    display: block;
}

.footer-desc {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-heading {
    font-weight: 500;
    font-size: 18px;
    color: #ffffff;
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 12px;
    text-transform: none;
    letter-spacing: 0.5px;
        font-family: 'Bricolage Grotesque', 'Manrope', sans-serif;
}

@media (max-width: 768px) {
    .footer-heading {
        margin-top: 15px;
    }
}



.footer-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links-list a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14.5px;
    display: inline-flex;
    align-items: center;
    position: relative;
    transition: all 0.3s ease;
}

.footer-links-list a::before {
    content: '→';
    position: absolute;
    left: -15px;
    opacity: 0;
    color: #00aeef;
    transition: all 0.3s ease;
}

.footer-links-list a:hover {
    color: #00aeef;
    transform: translateX(15px);
    text-decoration: none;
}

.footer-links-list a:hover::before {
    opacity: 1;
}

.footer-socials {
    display: flex;
    gap: 12px;
    margin-top: 15px;
}

.footer-social-btn {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 174, 239, 0.2);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.footer-social-btn:hover {
    background-color: #0070c0;
    border-color: #00aeef;
    color: #ffffff;
    transform: translateY(-4px) scale(1.08);
    box-shadow: 0 5px 15px rgba(0, 174, 239, 0.4);
}

.footer-contact-details {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-contact-item {
    display: flex !important;
    align-items: flex-start !important;
    gap: 12px !important;
    line-height: 1.5 !important;
}

.footer-contact-item i {
    color: #00aeef !important;
    font-size: 18px !important;
    margin-top: 0 !important;
    flex-shrink: 0 !important;
    align-self: flex-start !important;
}

.footer-contact-item span {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14.5px;
}

.footer-contact-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact-item a:hover {
    color: #00aeef;
    text-decoration: none;
}

.footer-bottom {
    width: 100%;
    padding: 25px 0;
    margin-top: 00px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.5);
    position: relative;
    z-index: 2;
}

.footer-copyright {
    margin: 0;
    font-size: 13px;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #00aeef;
    text-decoration: none;
}

/* Subtle Mobile Call Button style */
.mobile-call-btn {
    border: 1px solid rgba(0, 112, 192, 0.4) !important;
    background-color: rgba(0, 112, 192, 0.06) !important;
    color: var(--bs-primary) !important;
    font-weight: 600;
    font-size: 13px;
    padding: 6px 14px !important;
    transition: all 0.2s ease-in-out;
}

.mobile-call-btn:hover,
.mobile-call-btn:focus {
    background-color: var(--bs-primary) !important;
    color: #ffffff !important;
    border-color: var(--bs-primary) !important;
}
