/* --- Global Styles --- */
body {
    background-color: #f0f7f4;
    /* Light mint/pale green background color */
    font-family: 'Poppins', sans-serif;
    color: #172a3a;
    /* Dark text color for contrast */
}

h2 {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
}

.headingColor {
    color: #014339 !important;
    /* margin-left: 20px; */
    /* font-size: 14px; */
}
.headingColor1{
    color: #014339 !important;
    /* padding-left: -20px; */
    font-size: 18px;
}
.bgColor {
    background-color: #014339 !important;
}
.paraColor {
    color: #ffffff !important;
}
.Fontsizes{
    font-size: 14px;
}
.whiteBgColor {
    background-color: #ffffff !important;
}

.bggreenColor {
    background-color: #E3F3EC !important;
}
.bggreenColor vector_img{
    /* object-fit: contain; */
    height: 100%;
}

/* --- Section Styling --- *
/* --- "Get My Resume" Button Styling --- */
.btn-custom-green {
    background-color: #172a3a;
    /* Dark green/teal background */
    color: #ffffff;
    font-weight: 500;
    padding: 10px 25px;
    border: none;
    transition: background-color 0.3s;
}

.btn-custom-green:hover {
    background-color: #0d1a26;
    /* Slightly darker on hover */
    color: #ffffff;
}

/* --- Metric Row Spacing --- */
/* Custom column space as requested: Bootstrap's g-4 gives a spacing of 1.5rem (approx 24px).
   We can adjust it slightly for 20px gap. */
.metric-row {
    --bs-gutter-x: 20px;
    /* Custom horizontal gutter */
}


/* --- Metric Box Base Styling --- */
.metric-box {
    text-align: center;
    padding: 30px 10px;
    border-radius: 12px;
    /* Border radius between 10-15px */
    height: 100%;
    /* Ensure all boxes are same height */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.contact-img {
    object-fit: cover;
}

/* --- Light Box Theme --- */
.box-light {
    background-color: #e5f1ec;
    /* Lighter background for the light boxes */
    color: #172a3a;
}

.box-light .metric-icon svg path {
    fill: #fff;
    /* Dark icons for light background */
}

/* --- Dark Box Theme --- */
.box-dark {
    background-color: #172a3a;
    /* Dark background for the dark boxes */
    color: #ffffff;
}

.box-dark .metric-icon svg path {
    fill: #ffffff;
    /* Light icons for dark background */
}

/* --- Metric Content Styling --- */
.metric-icon {
    margin-bottom: 20px;
}

.metric-number-wrapper {
    font-size: 3rem;
    /* Large font size for the number */
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1;
}


.metric-text {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 400;
    margin-bottom: 0;
    font-weight: bold;
    text-align: center;
}

@media(max-width:768px){
    .metric-number-wrapper{
        font-size: 26px;
    }
    .metric-text {
       font-size: 14px; 
    }
}

.setings {
    background-color: rgb(7, 26, 52);
}



/* FAQ */
.faq-section {
    padding: 4rem 1rem;
}

.faq-title-container h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 0;
    line-height: 1.2;
}

.faq-title-container .have-questions-btn {
    color: var(--mid-green);
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 5px;
}

.faq-title-container .have-questions-btn:hover {
    color: var(--dark-green);
}

.faq-list {
    margin-top: 2rem;
}

.accordion-item {
    border: none;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
    background-color: transparent;
}

.accordion-body {
    color: #555;
    padding: 1rem 0 1.5rem;
}

.left-faq-column,
.right-faq-column {
    padding-right: 2rem;
}

.right-faq-column {
    padding-left: 2rem;
    border-left: 1px solid #e0e0e0;
}

@media (max-width: 767px) {
    .faq-title-container .have-questions-btn {
        justify-content: flex-start;
        margin-top: 1rem;
    }

    .right-faq-column {
        padding-left: 1rem;
        padding-right: 1rem;
        border-left: none;
        margin-top: 2rem;
    }

    .left-faq-column {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .faq-title-container {
        text-align: center;
    }

    .faq-title-container h2 {
        font-size: 2rem;
    }
}


/* <!-- Frequently Asked 2--> */

.faq-section {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    max-width: 1200px;
    margin: auto;
}

@media (max-width: 992px) {
    .faq-section {
        flex-direction: column;
    }
}

.faq-heading-container {
    flex: 1;
    text-align: left;
}

.faq-heading-container h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-purple);
    position: relative;
    display: inline-block;
    margin-bottom: 3rem;
}

/*.faq-heading-container h2::after {*/
/*    content: "";*/
/*    position: absolute;*/
/*    left: 0;*/
/*    right: 0;*/
/*    bottom: -15px;*/
/*    height: 10px;*/
/*    width: 40%;*/
/*    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 10" preserveAspectRatio="none"><path d="M0,5 Q25,0 50,5 T100,5" stroke="%238D51D1" fill="none" stroke-width="2" /></svg>');*/
/*    background-size: 100% 100%;*/
/*    background-repeat: no-repeat;*/
/*    background-position: center;*/
/*}*/

.faq-heading-container .faqs-icon {
    color: var(--icon-color);
    font-size: 1.5rem;
    position: absolute;
    top: 50%;
    left: -3rem;
    transform: translateY(-50%);
}

.accordion {
    flex: 2;
}

.accordion-item {
    border: none;
    border-radius: 0.75rem;
    margin-bottom: 1rem;
    background-color: #fff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.accordion-button {
    font-size: 14px !important;
    font-weight: 700;
    background-color: transparent;
    border: none;
    padding: 1.5rem 1.5rem;
    border-radius: 0.75rem !important;
    display: flex;
    /* flex-direction:column; */
    /* align-items: start; */
    gap: 1.5rem;
    justify-content: start;
}

.accordion-button:focus,
.accordion-button:not(.collapsed) {
    box-shadow: none;
}

/* .accordion-button{
    align-items: start !important;
} */
.accordion-button .accordion-icon {
    color: #014339;
    font-size: 1.5rem;
}



.accordion-body {
    color: var(--light-text);
    padding: 0 1.5rem 1.5rem 4.5rem;
}

.accordion-body p {
    margin-bottom: 0;
}

@media (max-width: 767px) {
    .faq-heading-container h2 {
        font-size: 2rem;
    }

    .accordion-button {
        padding: 1rem;
        font-size: 1rem;
    }

    .accordion-body {
        padding: 0 1rem 1rem 3.5rem;
    }
}

.custom-section{
    padding: 30px 0px;
}

.form-section .form-control{
    padding: 15px 10px;
}

