/*

Primary colour code : #053c6f; //blue
    color: #ffc72c; // Yellow
*/

.navbar .navbar-nav {
    background: #ffffff;
}

.btn-primary {
    color: #fff;
    background-color: #053c6f !important;
    border-color: #053c6f !important;
}

.text-primary {
    color: #053c6f !important;
}

.header-carousel .owl-nav .owl-prev:hover, .header-carousel .owl-nav .owl-next:hover {
    box-shadow: inset 0 0 100px 0 #ffc72c;
}

.navbar-light .navbar-nav .nav-item:hover, .navbar-light .navbar-nav .nav-item.active, .navbar-light .navbar-nav .nav-item:hover .nav-link, .navbar-light .navbar-nav .nav-item.active .nav-link {
    color: #053c6f !important;
    font-weight: 700 !important;
}

.navbar-light .navbar-nav .nav-link {
    font-weight: 700;
}

.dropdown .dropdown-menu .dropdown-item:hover{
    background: #053c6f !important;
}


.feature .feature-item:hover {
    background: #053c6f !important;
    color: #ffffff !important;
}

.feature h1, .our-services-section h1{
     color: #053c6f !important;
}

.feature .feature-item .btn-primary:hover {
    background: #ffffff !important;
    color: #053c6f !important;
}

.feature .feature-item .feature-icon {
    color:  #053c6f !important;;
}

.team .team-item .team-title {
    background: #053c6f !important;
}

.faq-section .accordion .accordion-item .accordion-header .accordion-button {
    color: var(--bs-white);
    background: #053c6f;
    font-size: 18px;
}

.faq-section .accordion .accordion-body {
    padding: 1rem 1.25rem;
    color: #000000;
}

.faq-section .accordion .accordion-item .accordion-header .accordion-button.collapsed {
    color: #053c6f;
    background: var(--bs-light);
    font-weight: 700;
}

/* Begin Our Services CSS */
.our-services-section .service-heading {
    color: #053c6f;
    font-weight: bold;
}
.our-services-section .service-icon {
    font-size: 60px;
    color: #007bff;
}
.our-services-section .service-card {
    border: 1px solid #e0e0e0;
    padding: 20px;
    border-radius: 20px;
    text-align: center;
    transition: transform 0.3s ease;
}
.our-services-section .service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.1);
    background: #bcddff;
}

.our-services-section .text-primary {
    font-weight: 600;
    color: #053c6f !important;
}

.our-services-section p {
    margin-top: 0;
    margin-bottom: 1rem;
    color: black;
}

/* End Our Services CSS */

/* footer css */
.footer-link {
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 6px 0;
    display: inline-block;
    width: 100%;
    font-size: 1.1rem;
}

.footer-link:hover {
    color: #F66014;
    transform: translateX(10px);
}

.footer-section:hover {
    transform: translateY(-5px);
}

.title-underline {
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 50px;
    height: 2px;
    background: linear-gradient(to right, #F66014, #053C6F);
}

.contact-card {
    position: relative;
    overflow: hidden;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.contact-link {
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.contact-link:hover {
    color: #F66014;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, #F66014, #053C6F);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.social-icon:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(246,96,20,0.4);
    color: white;
}

.policy-link {
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    margin: 0 0.5rem;
}

.policy-link:hover {
    color: #F66014;
}

.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
    background: linear-gradient(45deg, #F66014, #053C6F);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(246,96,20,0.3);
    z-index: 999;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(246,96,20,0.4);
    color: white;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.pulse {
    animation: pulse 2s infinite;
}

.footer-links {
    display: flex;
    justify-content: center;
    justify-content: md-end;
    gap: 1rem;
}
/* footer css end */
