﻿.instruction-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 80px 30px;
    margin-top: 50px;
}

.instruction-item {
    background-color: #ffffff;
    border-radius: 15px;
    padding: 30px 20px;
    position: relative;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    border-left: 5px solid #007bff;
    border-top: 1px solid #e9ecef;
    border-right: 1px solid #e9ecef;
    border-bottom: 1px solid #e9ecef;
}

    .instruction-item:hover {
        transform: scale(1.05);
        box-shadow: 0 8px 16px rgba(0,0,0,0.2);
    }

.instruction-image {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    position: absolute;
    top: -55px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #e9ecef;
    border: 4px solid white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: #007bff;
}

.instruction-number {
    font-size: 24px;
    font-weight: bold;
    color: #007bff;
    margin-top: 70px;
    margin-bottom: 10px;
}

.instruction-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 15px;
}

.instruction-desc {
    font-size: 14px;
    color: #6c757d;
}

@media (max-width: 991px) {
    .instruction-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .instruction-grid {
        grid-template-columns: 1fr;
    }
}

/* FAQ Styles */
.list-group-item {
    border-left: 4px solid transparent;
    transition: all 0.3s ease;
    font-weight: 500;
}

.list-group-item:hover {
    background-color: var(--gray);
    border-left: 4px solid var(--light-blue);
}

.list-group-item.active {
    background-color: var(--blue);
    border-color: var(--blue);
    color: var(--white);
}

.faq-header {
    cursor: pointer;
    transition: all 0.3s ease;
    border-left: 4px solid var(--gray);
    border-bottom: 1px solid var(--gray);
}

.faq-header:hover {
    background-color: var(--gray);
    border-left: 4px solid var(--light-blue);
}

.faq-header.active {
    background-color: var(--white);
    border-left: 4px solid var(--blue);
    border-bottom: 2px solid var(--light-blue);
}

.faq-header.active .faq-icon {
    transform: rotate(180deg);
    color: var(--blue);
}

.faq-icon {
    transition: transform 0.3s, color 0.3s;
    color: var(--light-blue);
}

.card {
    border: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    margin-bottom: 1.5rem;
}

.card:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    transform: translateY(-3px);
}

.card-header {
    border-bottom: none;
    background-color: white;
}

.card-body {
    background-color: var(--white);
    border-top: 1px solid var(--gray);
    color: var(--text-black);
}

/* Add gradient accent to the top of the FAQ sidebar */
.list-group::before {
    content: "";
    display: block;
    height: 5px;
    background: var(--gradient-lightblue);
    margin-bottom: 1px;
    border-radius: 5px 5px 0 0;
}

/* Contact Us Styles */
.contact-section {
    background-color: #1a3b5d;
    color: var(--white);
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.contact-info-item {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.contact-info-icon {
    font-size: 24px;
    margin-right: 15px;
    width: 50px;
    height: 50px;
    background-color: var(--blue);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.contact-info-item:hover .contact-info-icon {
    background-color: var(--lightest-blue);
    color: var(--text-black);
    transform: scale(1.1);
}

.contact-info-text {
    color: var(--white);
}

.contact-form .form-control {
    background-color: rgba(255,255,255,0.1);
    border: none;
    border-bottom: 2px solid var(--light-blue);
    border-radius: 0;
    color: var(--white);
    padding: 15px 10px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.contact-form .form-control:focus {
    box-shadow: none;
    background-color: rgba(255,255,255,0.15);
    border-bottom: 2px solid var(--blue);
}

.contact-form .form-control::placeholder {
    color: rgba(255,255,255,0.6);
}

.contact-form textarea.form-control {
    min-height: 120px;
    resize: none;
}

.contact-form-btn {
    background-color: var(--blue);
    color: var(--white);
    border: none;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.contact-form-btn:hover {
    background-color: var(--light-blue);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.contact-heading {
    position: relative;
    margin-bottom: 30px;
    padding-bottom: 15px;
}

.contact-heading:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 3px;
    background: var(--blue);
}

.bulk-info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.bulk-info-icon {
    font-size: 24px;
    margin-right: 15px;
    min-width: 50px;
    height: 50px;
    background-color: var(--blue);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.bulk-info-item:hover .bulk-info-icon {
    background-color: var(--lightest-blue);
    color: var(--blue);
    transform: scale(1.1);
}

.bulk-info-text {
    flex: 1;
}

    .bulk-info-text p {
        margin-bottom: 0;
        color: #212529;
    }
