.navbar-logo {
    height: 60px;
    width: auto;
}

/* Tablet */
@media (max-width: 991px) {
    .navbar-logo {
        height: 55px;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .navbar-logo {
        height: 50px;
    }
}

.feature-box {
    transition: all 0.3s ease;
    cursor: pointer;
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    background: #fff;
}


/* CARD STRUCTURE */
.service-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    border-radius: 12px;
    overflow: hidden;
    transition: 0.3s;
}

/* BODY FLEX */
.service-card .card-body {
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* TEXT SAME HEIGHT */
.service-card p {
    min-height: 90px;
}

.service-card .btn {
    margin-top: auto;
    padding: 10px;
}

/* HOVER EFFECT */
.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

/*----------------contact-----------*/
.bt-contact-section {
    padding: 40px 0;
    background-color: #fcfcfc;
}

/* Contact Info List */
.bt-contact-content ul {
    list-style: none; /* Removes the default black bullets */
    padding-left: 0;
    margin-top: 30px;
}

.bt-contact-content ul li {
    display: flex; /* Aligns the icon and text horizontally */
    align-items: flex-start;
    margin-bottom: 25px;
}

.bt-contact-content ul li .icon {
    font-size: 20px;
    color: #f28b00; /* Orange accent */
    margin-right: 20px;
    background: #fff4e6;
    min-width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.bt-contact-content ul li .content h5 {
    font-size: 18px;
    margin-bottom: 5px;
    font-weight: 600;
    color: #0d2346; /* Dark blue matching the logo */
}

.bt-contact-content ul li .content a, 
.bt-contact-content ul li .content {
    color: #6c757d;
    text-decoration: none;
    font-size: 15px;
    line-height: 1.6;
}

.bt-contact-content ul li .content a:hover {
    color: #f28b00;
}

/* Social Icons */
.social-links {
    display: flex; /* Forces them into a horizontal row */
    gap: 12px;
    margin-top: 35px;
}

.social-links .btn-square {
    width: 45px;
    height: 45px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #eef2f6;
    color: #0d2346;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 16px;
}

.social-links .btn-square:hover {
    background: #f28b00;
    color: #fff;
    transform: translateY(-3px); /* Slight hover lift */
}

/* Form Container */
.contact-form-box {
    background: #ffffff;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

/* Form Inputs */
.contact-form-box .input-group-text {
    background-color: #f8f9fa;
    border: 1px solid #ced4da;
    border-right: none;
    color: #f28b00;
}

.contact-form-box .form-control {
    padding: 12px 15px;
    font-size: 15px;
}

.contact-form-box .form-control:focus {
    box-shadow: none;
    border-color: #f28b00;
}

.contact-form-box .input-group:focus-within .input-group-text {
    border-color: #f28b00;
}

/* Theme Button */
.theme-btn {
    background-color: #0d2346;
    color: #ffffff;
    padding: 15px 30px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s all ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.theme-btn:hover {
    background-color: #f28b00;
}

.theme-btn i {
    transition: transform 0.3s ease;
}

.theme-btn:hover i {
    transform: translateX(5px); /* Arrow moves slightly on hover */
}

/* Fix Captcha Layout */
#captcha-image {
    border-radius: 4px;
    border: 1px solid #ced4da;
    max-width: 100%;
}

/*----------------------faq----------------------*/
  .faq-section .accordion-item {
        border: none;
        border-radius: 10px;
        margin-bottom: 20px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        overflow: hidden;
    }
    .faq-section .accordion-button {
        font-weight: 600;
        font-size: 1.05rem;
        color: #0d2346; /* Brand Dark Blue */
        background-color: #ffffff;
        padding: 20px;
    }
    .faq-section .accordion-button:not(.collapsed) {
        color: #f28b00; /* Brand Orange */
        background-color: #fff4e6; /* Light Orange Tint */
        box-shadow: none;
    }
    .faq-section .accordion-button:focus {
        box-shadow: none;
        border-color: transparent;
    }
    .faq-section .accordion-body {
        color: #6c757d;
        line-height: 1.7;
        padding: 20px;
        background-color: #ffffff;
        border-top: 1px solid rgba(0,0,0,0.03);
    }