/*** Spinner Start ***/
/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}
/*** Spinner End ***/

.back-to-top {
    position: fixed;
    right: 1.875rem; /* 30px */
    bottom: 1.875rem; /* 30px */
    transition: 0.5s;
    z-index: 99;
}

/*** Button Start ***/
.btn {
    font-weight: 600;
    transition: .5s;
}

.btn-square {
    width: 2rem; /* 32px */
    height: 2rem; /* 32px */
}

.btn-sm-square {
    width: 2.125rem; /* 34px */
    height: 2.125rem; /* 34px */
}

.btn-md-square {
    width: 2.75rem; /* 44px */
    height: 2.75rem; /* 44px */
}

.btn-lg-square {
    width: 3.5rem; /* 56px */
    height: 3.5rem; /* 56px */
}

.btn-xl-square {
    width: 4.125rem; /* 66px */
    height: 4.125rem; /* 66px */
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square,
.btn-xl-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

.btn.btn-primary {
    color: var(--bs-white);
    border: none;
}

.btn.btn-primary:hover {
    background: var(--bs-dark);
    color: var(--bs-primary);
}

.btn.btn-light {
    color: var(--bs-primary);
    border: none;
}

.btn.btn-light:hover {
    color: var(--bs-white);
    background: var(--bs-primary);
}


/*** Topbar Start ***/
.topbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    vertical-align: middle;
    margin-left: 0.5rem; /* 8px */
    color: var(--bs-primary);
}

.topbar .dropdown .dropdown-menu a:hover {
    background: var(--bs-primary);
    color: var(--bs-white);
}

.topbar .dropdown .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    background: var(--bs-light);
    padding-top: 0.6875rem; /* 11px */
    border: 0;
    transition: .5s;
    opacity: 1;
}

/*** Topbar End ***/



/*** Navbar ***/
.navbar-light .navbar-nav .nav-link {
    font-family: 'Roboto', sans-serif;
    position: relative;
    margin-right: 1.5625rem; /* 25px */
    padding: 2.1875rem 0; /* 35px 0 */
    color: var(--bs-white);
    font-size: 0.9rem; /* reduced for 150% scaling */
    font-weight: 400;
    outline: none;
    transition: .5s;
}

.sticky-top.navbar-light .navbar-nav .nav-link,
.sticky-top.navbar-light .navbar-nav .nav-item .nav-link {
    padding: 1.25rem 0; /* 20px 0 */
    color: var(--bs-dark);
}

.navbar-light .navbar-nav .nav-item .nav-link {
    color: var(--bs-white);
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active,
.navbar-light .navbar-nav .nav-item .nav-link:hover,
.navbar-light .navbar-nav .nav-item .nav-link.active  {
    color: var(--bs-primary);
}

.navbar-light .navbar-brand img {
    max-height: 3.75rem; /* 60px */
    width: auto;
    transition: all 0.3s ease;
    filter: brightness(1) contrast(1);
}

.navbar-light .navbar-brand img:hover {
    transform: scale(1.05);
    filter: brightness(1.1) contrast(1.1);
}

.sticky-top.navbar-light .navbar-brand img {
    max-height: 2.8125rem; /* 45px */
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    vertical-align: middle;
    margin-left: 8px;
}

.dropdown .dropdown-menu a:hover {
    background: var(--bs-primary);
    color: var(--bs-white);
}

.navbar .nav-item:hover .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    background: var(--bs-light);
    transition: .5s;
    opacity: 1;
}

@media (max-width: 991.98px) {
    .sticky-top.navbar-light {
        position: relative;
        background: var(--bs-white);
    }

    .navbar.navbar-expand-lg .navbar-toggler {
        padding: 10px 20px;
        border: 1px solid var(--bs-primary);
        color: var(--bs-primary);
    }

    .navbar-light .navbar-collapse {
        margin-top: 15px;
        border-top: 1px solid #DDDDDD;
    }

    .navbar-light .navbar-nav .nav-link,
    .sticky-top.navbar-light .navbar-nav .nav-link {
        padding: 10px 0;
        margin-left: 0;
        color: var(--bs-dark);
    }

    .navbar-light .navbar-nav .nav-item .nav-link {
        color: var(--bs-dark);
    }

    .navbar-light .navbar-brand img {
        max-height: 45px;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        border: 0;
        border-radius: 10px;
        transition: .5s;
        opacity: 0;
    }

    .navbar-light {
        position: absolute;
        width: 100%;
        top: 0;
        left: 0;
        border-bottom: 1px solid rgba(255, 255, 255, .1);
        z-index: 999;
    }
    
    .sticky-top.navbar-light {
        position: fixed;
        background: var(--bs-light);
    }

    .navbar-light .navbar-nav .nav-link::before {
        position: absolute;
        content: "";
        width: 0;
        height: 2px;
        bottom: -1px;
        left: 50%;
        background: var(--bs-primary);
        transition: .5s;
    }

    .navbar-light .navbar-nav .nav-link:hover::before,
    .navbar-light .navbar-nav .nav-link.active::before {
        width: calc(100% - 2px);
        left: 1px;
    }

    .navbar-light .navbar-nav .nav-link::after {
        position: absolute;
        content: "";
        width: 0;
        height: 0;
        bottom: -1px;
        left: 50%;
        background: var(--bs-primary);
        transition: .5s;
    }

    .navbar-light .navbar-nav .nav-link:hover::after,
    .navbar-light .navbar-nav .nav-link.active::after {
        width: 2px;
        height: 12px;
    }
}
/*** Navbar End ***/

/*** Carousel Hero Header Start ***/
.header-carousel .header-carousel-item img {
    object-fit: cover;
}

.header-carousel .header-carousel-item,
.header-carousel .header-carousel-item img {
        height: 700px;
}


.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
    position: absolute;
    width: 2.5rem !important;
    height: 2.5rem !important;
    border-radius: 60px;
    background: var(--bs-primary);
    color: var(--bs-white);
    font-size: 1rem !important;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
}

.header-carousel .owl-nav .owl-prev {
    bottom: 30px;
    left: 30px;
    margin-left: 90px;
}
.header-carousel .owl-nav .owl-next {
    bottom: 30px;
    left: 30px;
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
    box-shadow: inset 0 0 100px 0 var(--bs-light);
    color: var(--bs-primary);
}


.header-carousel .header-carousel-item .carousel-caption {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    bottom: 0;
    padding-top: 1.2rem !important;
    padding-bottom: 1.2rem !important;
    min-height: 160px !important;
    background: rgba(0,0,0,0.6) !important;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.header-carousel .header-carousel-item .carousel-caption h1, 
.header-carousel .header-carousel-item .carousel-caption h2, 
.header-carousel .header-carousel-item .carousel-caption h3 {
    white-space: normal !important;
    word-break: break-word !important;
    text-shadow: 1px 1px 4px #222;
    font-weight: 700;
}

@media (max-width: 991px) {
    .header-carousel .header-carousel-item .carousel-caption {
        padding-top: 45px;
    }
}

@media (max-width: 767px) {
    .header-carousel .owl-nav .owl-prev {
        left: 50%;
        transform: translateX(-50%);
        margin-left: -45px;
    }


    .header-carousel .owl-nav .owl-next {
        left: 50%;
        transform: translateX(-50%);
        margin-left: 45px;
    }
}


.header-carousel .header-carousel-item img {
    animation-name: image-zoom;
    animation-duration: 10s;
    animation-delay: 1s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    transition: 1s;
}

@keyframes image-zoom {
    0%  {height: 100%; opacity: 0.9;}

    25% {height: 110%; opacity: 0.50;}

    50% {height: 115%; opacity: 1;}

    75% {height: 110%; opacity: 0.50;}

    100% {height: 100%; opacity: 0.9;}
}
/*** Carousel Hero Header End ***/


/*** Single Page Hero Header Start ***/
body:not(.home) .bg-breadcrumb {
    background: linear-gradient(135deg, rgba(0,0,0,0.7), rgba(0,0,0,0.5)), url('../img2/evog4.jpg') center bottom/cover no-repeat !important;
    min-height: 320px !important;
    height: 38vh !important;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    box-shadow: 0 2px 16px rgba(0,0,0,0.12);
}

.bg-breadcrumb h4, .bg-breadcrumb h1, .bg-breadcrumb .breadcrumb {
    text-align: center;
    color: #fff !important;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.bg-breadcrumb::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0, 84, 147, 0.1), rgba(0, 255, 185, 0.05));
    pointer-events: none;
}

@media (min-width: 992px) {
    .bg-breadcrumb {
        padding: 140px 0 60px 0;
    }
}

@media (max-width: 991px) {
    .bg-breadcrumb {
        padding: 60px 0 60px 0;
        background-attachment: scroll;
    }
}

.bg-breadcrumb .breadcrumb {
    position: relative;
    z-index: 2;
}

.bg-breadcrumb .breadcrumb .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: 0.3s;
}

.bg-breadcrumb .breadcrumb .breadcrumb-item a:hover {
    color: var(--bs-primary);
    text-shadow: 0 0 10px rgba(0, 84, 147, 0.5);
}

.bg-breadcrumb h1 {
    font-size: 2.5rem !important;
    font-weight: 800;
    letter-spacing: 0.5px;
}
.bg-breadcrumb h4 {
    font-size: 1.4rem !important;
    font-weight: 700;
    letter-spacing: 0.2px;
}
.bg-breadcrumb p {
    font-size: 1.15rem !important;
    font-weight: 400;
}

/*** Service Start ***/
.service .service-item {
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
    border: 1px solid rgba(0, 84, 147, 0.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.service .service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 84, 147, 0.15);
    background: linear-gradient(145deg, #ffffff 0%, #e3f2fd 100%);
}

.service .service-item .service-img {
    position: relative;
    overflow: hidden;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    transition: 0.5s;
}

.service .service-item .service-img img {
    transition: 0.5s;
}

.service .service-item:hover .service-img img {
    transform: scale(1.2);
}
/*** Service End ***/


/*** Features Start ***/
.feature .feature-item {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border: 1px solid rgba(0, 84, 147, 0.08);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.feature .feature-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 84, 147, 0.12);
    background: linear-gradient(135deg, #ffffff 0%, #e8f5e8 100%);
}

.feature .feature-item .feature-icon {
    background: var(--bs-white);
    border-radius: 10px;
    display: inline-block;
}
/*** Features End ***/

/*** Offer Start ***/
.offer-section .nav a.accordion-link {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border: 1px solid rgba(0, 84, 147, 0.1);
    transition: all 0.3s ease;
}

.offer-section .nav a.accordion-link.active {
    background: linear-gradient(135deg, var(--bs-primary) 0%, #005B96 100%);
    color: white;
    box-shadow: 0 3px 15px rgba(0, 84, 147, 0.3);
}

.offer-section .nav a.accordion-link h5 {
    transition: 0.5s;
}

.offer-section .nav a.accordion-link.active h5 {
    color: var(--bs-white);
}
/*** Offer End ***/

/*** Blog Start ***/
.blog .blog-item {
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
    border: 1px solid rgba(0, 84, 147, 0.08);
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.blog .blog-item a {
    transition: 0.5s;
}

.blog .blog-item:hover a:hover {
    color: var(--bs-primary);
}

.blog .blog-item .blog-img {
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}

.blog .blog-item .blog-img img {
    transition: 0.5s;
}

.blog .blog-item:hover .blog-img img {
    transform: scale(1.2);
}

.blog .blog-item .blog-img::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-radius: 10px;
    background: rgba(0, 208, 132, 0.1);
    opacity: 0;
    transition: 0.5s;
    z-index: 1;
}

.blog .blog-item:hover .blog-img::after {
    opacity: 1;
}

.blog .blog-item .blog-img .blog-title {
    position: absolute;
    bottom: 25px;
    left: 25px;
    z-index: 5;
}

.blog .blog-item .blog-img .blog-title a {
    color: var(--bs-white);
    background: var(--bs-primary);
    transition: 0.5s;
}

.blog .blog-item:hover .blog-img .blog-title a:hover {
    color: var(--bs-dark);
}

.blog-carousel .owl-stage-outer {
    margin-top: 58px;
}

.blog .owl-nav .owl-prev {
    position: absolute;
    top: -58px;
    left: 0;
    background: var(--bs-primary);
    color: var(--bs-white);
    padding: 6px 35px;
    border-radius: 30px;
    transition: 0.5s;
}

.blog .owl-nav .owl-prev:hover {
    background: var(--bs-dark);
    color: var(--bs-primary);
}

.blog .owl-nav .owl-next {
    position: absolute;
    top: -58px;
    right: 0;
    background: var(--bs-primary);
    color: var(--bs-white);
    padding: 6px 35px;
    border-radius: 30px;
    transition: 0.5s;
}

.blog .owl-nav .owl-next:hover {
    background: var(--bs-dark);
    color: var(--bs-primary);
}
/*** Blog End ***/


/*** FAQs Start ***/
.faq-section .accordion .accordion-item .accordion-header .accordion-button {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border: 1px solid rgba(0, 84, 147, 0.1);
    transition: all 0.3s ease;
}

.faq-section .accordion .accordion-item .accordion-header .accordion-button.collapsed {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.faq-section .accordion .accordion-item .accordion-header .accordion-button:hover {
    background: linear-gradient(135deg, #e3f2fd 0%, #f8f9fa 100%);
    transform: translateX(2px);
}
/*** FAQs End ***/

/*** Team Start ***/
.team .team-item {
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
    border: 1px solid rgba(0, 84, 147, 0.08);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.team .team-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 84, 147, 0.15);
    background: linear-gradient(145deg, #ffffff 0%, #e3f2fd 100%);
}

.team .team-item::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    bottom: 0;
    left: 0;
    background: var(--bs-light);
    border-radius: 10px;
    transition: 0.5s;
    z-index: -1;
}

.team .team-item:hover::before {
    height: 0;
}

.team .team-item::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    bottom: 0;
    left: 0;
    border-radius: 10px;
    transition: 0.5s;
    z-index: -1;
}

.team .team-item:hover::after {
    height: 100%;
    background: var(--bs-primary);
}

.team .team-item .team-img {
    width: 100%; 
    height: 100%;
    border-radius: 100%;
    position: relative;
    margin-top: 50%;
    transform: translateY(-50%);
    margin-bottom: -50%;
    display: flex;
    justify-content: center;
    border: 4px solid var(--bs-primary);
    border-style: dotted;
    padding: 4px;
    background: var(--bs-white);
    transition: 0.5s;
}

.team .team-item:hover .team-img {
    border: 4px solid var(--bs-white);
    border-style: dotted;
    background: 0;
}

.team .team-item .team-img img {
    width: 100%;
    height: 100%;
    border-radius: 100%;
    transition: 0.5s;
}

.team .team-item .team-title {
    padding: 25px 0 25px 0;
    text-align: center;
}

.team .team-item .team-title h4,
.team .team-item .team-title p {
    transition: 0.5s;
}

.team .team-item:hover .team-title h4,
.team .team-item:hover .team-title p {
    color: var(--bs-white);
}

.team .team-item .team-icon {
    display: flex;
    justify-content: center;
}

.team .team-item .team-icon a {
    transition: 0.5s;
}

.team .team-item:hover .team-icon a {
    color: var(--bs-dark);
    background: var(--bs-white);
}

.team .team-item:hover .team-icon a:hover {
    color: var(--bs-primary);
    background: var(--bs-dark);
}
/*** Team End ***/

/*** Testimonial Start ***/
.testimonial .testimonial-item {
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
    border: 1px solid rgba(0, 84, 147, 0.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.testimonial .testimonial-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--bs-primary), var(--bs-secondary));
    z-index: 1;
}

.testimonial .testimonial-item .testimonial-img {
    display: flex;
    justify-content: center;
}

.testimonial .testimonial-item .testimonial-img img {
    width: 100px; 
    height: 100px;
    border-radius: 100px;
    border: 5px solid var(--bs-light);
    border-style: double;
    background: var(--bs-white);
}

.testimonial .testimonial-item .testimonial-text {
    padding: 25px 0;
    text-align: center;
}

.testimonial .testimonial-item .testimonial-title {
    display: flex;
    justify-content: space-between;
}

.testimonial .testimonial-item  .testimonial-quote-left {
    position: absolute;
    width: 60px; 
    height: 60px;
    top: 20px;
    left: 25px;
    border-radius: 60px;
    color: var(--bs-primary);
    background: var(--bs-white);
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial .testimonial-item  .testimonial-quote-right {
    position: absolute;
    width: 60px; 
    height: 60px;
    bottom: -30px;
    right: 25px;
    margin-top: -5px;
    border-radius: 60px;
    color: var(--bs-primary);
    background: var(--bs-white);
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-carousel .owl-stage-outer {
    margin-top: 58px;
    margin-right: -1px;
}

.testimonial .owl-nav .owl-prev {
    position: absolute;
    top: -58px;
    left: 0;
    background: var(--bs-primary);
    color: var(--bs-white);
    padding: 5px 30px;
    border-radius: 30px;
    transition: 0.5s;
}

.testimonial .owl-nav .owl-prev:hover {
    background: var(--bs-secondary);
    color: var(--bs-white);
}

.testimonial .owl-nav .owl-next {
    position: absolute;
    top: -58px;
    right: 0;
    background: var(--bs-primary);
    color: var(--bs-white);
    padding: 5px 30px;
    border-radius: 30px;
    transition: 0.5s;
}

.testimonial .owl-nav .owl-next:hover {
    background: var(--bs-secondary);
    color: var(--bs-white);
}

.testimonial-carousel .owl-dots {
    display: flex;
    justify-content: center;
}

.testimonial-carousel .owl-dots .owl-dot {
    width: 30px;
    height: 30px;
    border-radius: 30px;
    margin: 20px 10px 0 10px;
    background: var(--bs-primary);
    transition: 0.5s;
}

.testimonial-carousel .owl-dots .owl-dot.active {
    width: 30px;
    height: 30px;
    border-radius: 30px;
    background: var(--bs-secondary);
    transition: 0.5s;
}

.testimonial-carousel .owl-dots .owl-dot span {
    position: relative;
    margin-top: 50%;
    margin-left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.testimonial-carousel .owl-dots .owl-dot.active span::after {
    background: var(--bs-primary);
}

.testimonial-carousel .owl-dots .owl-dot span::after {
    content: "";
    width: 15px;
    height: 15px;
    border-radius: 15px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--bs-white);
    transition: 0.5s;
}

/*** Testimonial End ***/

/*** Footer Start ***/
.footer {
    background: linear-gradient(135deg, #003459 0%, #005B96 50%, #0077CC 100%);
    position: relative;
    overflow: hidden;
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
    min-height: 32px !important;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(0, 255, 185, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 84, 147, 0.1) 0%, transparent 50%),
        linear-gradient(90deg, transparent, rgba(0, 255, 185, 0.05), transparent);
    animation: electricPulse 6s ease-in-out infinite;
}

@keyframes electricPulse {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.02);
    }
}

.footer .footer-item {
    display: flex;
    flex-direction: column;
}

.footer .footer-item a {
    line-height: 1.7;
    color: var(--bs-body);
    transition: 0.5s;
    display: inline;
    align-items: unset;
    padding: 0;
    margin-bottom: 0.3rem;
}

.footer .footer-item p {
    line-height: 35px;
}

.footer .footer-item a:hover {
    color: var(--bs-primary);
}

.footer .footer-item .footer-btn a,
.footer .footer-item .footer-btn a i {
    transition: 0.5s;
}

.footer .footer-item .footer-btn a:hover {
    background: var(--bs-white);
}

.footer .footer-item .footer-btn a:hover i {
    color: var(--bs-primary);
}

.footer .footer-item img {
    max-height: 50px;
    width: auto;
    transition: all 0.3s ease;
    filter: brightness(1.2) contrast(1.1);
}

.footer .footer-item img:hover {
    transform: scale(1.05);
    filter: brightness(1.3) contrast(1.2);
}

.footer .footer-item a:hover {
    transform: translateY(-1px);
}

/*** copyright Start ***/
.copyright {
    background: linear-gradient(90deg, #002244 0%, #003459 100%);
    position: relative;
}

.copyright::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 185, 0.03), transparent);
    animation: subtlePulse 8s ease-in-out infinite;
}

@keyframes subtlePulse {
    0%, 100% {
        opacity: 0.2;
    }
    50% {
        opacity: 0.5;
    }
}
/*** copyright end ***/

/* Responsive logo sizing */
@media (max-width: 768px) {
    .navbar-brand img {
        max-height: 50px;
    }
    
    .sticky-top.navbar-light .navbar-brand img {
        max-height: 40px;
    }
    
    .footer .footer-item img {
        max-height: 40px;
    }
}

@media (max-width: 576px) {
    .navbar-brand img {
        max-height: 45px;
    }
    
    .sticky-top.navbar-light .navbar-brand img {
        max-height: 35px;
    }
    
    .footer .footer-item img {
        max-height: 35px;
    }
}

/* Logo container styling */
.navbar-brand {
    display: flex;
    align-items: center;
    padding: 0;
}

.footer .footer-item a {
    display: flex;
    align-items: center;
    padding: 0;
    margin-bottom: 15px;
}

/* Enhanced navbar brand hover effect */
.navbar-brand:hover {
    transform: translateY(-1px);
}

/* Enhanced footer logo container */
.footer .footer-item a:hover {
    transform: translateY(-1px);
}

/* Logo loading animation */
.navbar-brand img,
.footer .footer-item img {
    animation: logoFadeIn 0.5s ease-in-out;
}

@keyframes logoFadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Logo focus states for accessibility */
.navbar-brand:focus img,
.footer .footer-item a:focus img {
    outline: 2px solid var(--bs-primary);
    outline-offset: 2px;
    border-radius: 4px;
}

/* Logo print styles */
@media print {
    .navbar-brand img,
    .footer .footer-item img {
        filter: grayscale(100%) contrast(200%);
        max-height: 40px;
    }
}

/* Global compact layout adjustments */
section, .container, .row, .about, .service, .feature, .testimonial, .faq-section, .footer, .bg-breadcrumb {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
    margin-top: 0.3rem !important;
    margin-bottom: 0.3rem !important;
}

.card, .service-item, .feature-item, .faq-section .accordion-item, .testimonial-item {
    padding: 0.8rem 0.8rem !important;
    margin-bottom: 0.7rem !important;
}

h1, .display-1, .carousel-caption h1 {
    font-size: 1.5rem !important;
    line-height: 1.7rem !important;
    margin-bottom: 0.5rem !important;
}
h2, .display-2, .carousel-caption h2 {
    font-size: 1.2rem !important;
    line-height: 1.4rem !important;
    margin-bottom: 0.4rem !important;
}
h3, .display-3, .carousel-caption h3 {
    font-size: 1rem !important;
    line-height: 1.2rem !important;
    margin-bottom: 0.3rem !important;
}

.card-title, .service-item h4, .feature-item h4, .faq-section .accordion-button {
    font-size: 1rem !important;
    margin-bottom: 0.3rem !important;
}

.card-text, .service-item p, .feature-item p, .faq-section .accordion-body, .testimonial-item p {
    font-size: 0.95rem !important;
    margin-bottom: 0.2rem !important;
}

.btn, .btn-primary, .btn-lg, .btn-xl, .btn-square, .btn-md-square, .btn-lg-square, .btn-xl-square {
    font-size: 0.9rem !important;
    padding: 0.3rem 0.8rem !important;
}

.faq-section .accordion-item {
    margin-bottom: 0.5rem !important;
}

.faq-section .accordion-button, .faq-section .accordion-body {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
}

.footer, .footer * {
    pointer-events: auto !important;
    z-index: 1000 !important;
}
.footer {
    position: relative !important;
}

.footer .footer-item a span.text-white.ms-2.fw-bold,
.navbar-brand .text-white.ms-2.fw-bold,
span.text-white.ms-2.fw-bold {
    color: #0074D9 !important;
}

.navbar-brand .fw-bold,
.footer .fw-bold {
    color: #0074D9 !important;
}

