@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap");

:root {
    --inter: "Inter", sans-serif;
    --blue-theme-color: #003884;
    --primary-color: #B31942;
    --secondary-color: #0e0e0e;
    --sub-bg: #f5f5f5;
    --heading-color: #32322f;
    --paragraph: #5e464d;
    --span: #888888;
    --border: #d9d9d9;
    --white: #ffffff;
    --black: #000000;
    --border-1px: 1px solid #d9d9d9;
    --border-2px: 2px solid #d9d9d9;
    --transition: all 0.4s ease-in-out;
    --shadow: 0px 4px 55px 0px #4baf4726;
}

/* Start - Service icon CSS */

.service-icon-box.text-center {
    background: #ffffff;
    /* margin: 0 50px; */
    padding: 10px 60px 20px;
    border-radius: 10px;
    transition: 0.5s all;
    /* border: 2px solid #cececd; */
    box-shadow: 10px 10px 40px #ccc;
    border-top: 8px solid var(--primary-color);
    cursor: pointer;
}

.service-icon-box h3 {
    color: var(--heading-color);
    font-size: 20px;
    margin-top: 12px;
}

.service-icon-box.text-center img {
    max-width: 150px;
}

/* End - Service icon CSS */

/* Start - Achievement CSS */

.achievement-five__wrp.bg-image {
    border: 3px solid var(--blue-theme-color);
    border-radius: 20px;
}

/* End - Achievement CSS */


/*--------------------------------------------------------------
# Start About Faq Section CSS
--------------------------------------------------------------*/

.accordion-2 span,
.title-color {
    color: var(--blue-theme-color);
}

.accordion-2 .accordion-item {
    border: 1px solid #6c663b;
    padding: 0 15px;
    margin: 10px 0;
    border-radius: 5px;
}

.accordion-2 .accordion-item button[aria-expanded='true'] {
    border-bottom: 1px solid #6c663b;
}

.accordion-2 button {
    position: relative;
    display: block;
    text-align: left;
    width: 100%;
    color: #000000;
    font-size: 16px;
    font-weight: 400;
    border: none;
    background: none;
    outline: none;
}

.accordion-2 button:hover,
.accordion-2 button:focus {
    cursor: pointer;
    color: #6c663b;
}

.accordion-2 button:hover::after,
.accordion-2 button:focus::after {
    cursor: pointer;
    color: #6c663b;
    border: 1px solid #6c663b;
}

.accordion-2 button .accordion-title {
    padding: 1em 1.5em 1em 0;
}

.accordion-2 button .icon {
    display: inline-block;
    position: absolute;
    top: 18px;
    right: 0;
    width: 22px;
    height: 22px;
    border: 1px solid;
    border-radius: 22px;
}

.accordion-2 button .icon::before {
    display: block;
    position: absolute;
    content: '';
    top: 9px;
    left: 5px;
    width: 10px;
    height: 2px;
    background: currentColor;
}

.accordion-2 button .icon::after {
    display: block;
    position: absolute;
    content: '';
    top: 5px;
    left: 9px;
    width: 2px;
    height: 10px;
    background: currentColor;
}

.accordion-2 button[aria-expanded='true'] {
    color: #000000;
}

.accordion-2 button[aria-expanded='true'] .icon::after {
    width: 0;
}

.accordion-2 button[aria-expanded='true']+.accordion-content {
    opacity: 1;
    max-height: 9em;
    transition: all 200ms linear;
    will-change: opacity, max-height;
}

.accordion-2 .accordion-content {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-in-out, opacity 0.4s ease-in-out;
    will-change: opacity, max-height;
}

.accordion-2 button[aria-expanded='true']+.accordion-content {
    opacity: 1;
    max-height: 500px;
    /* Adjust based on expected content height */
}

.accordion-2 .accordion-content p {
    color: #777 !important;
    font-size: 1rem;
    margin: 1em 0;
}

/*--------------------------------------------------------------
# End About Faq Section CSS
--------------------------------------------------------------*/

/* Start - Pen CSS */

.pen-size {
    max-width: 30px;
}

/* End - Pen CSS */

/* Breadcrumb - Pen CSS */

.breadcrumb-list {
    font-size: 42px;
    font-weight: 600;
}

/* Breadcrumb - Pen CSS */

/* Start - Single Service Sidebar List - CSS */

.service-details .service-box {
    background-color: #ffffff;
    padding: 20px;
    box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.1);
}

.service-details .service-box h4 {
    font-size: 24px;
    font-weight: 700;
    border-bottom: 2px solid color-mix(in srgb, var(--default-color), transparent 92%);
    padding-bottom: 15px;
    /* margin-bottom: 15px; */
}

.service-details .services-list {
    background-color: #ffffff;
}

.service-details .services-list a.active {
    color: #ffffff;
    background-color: var(--primary-color);
}

.service-details .services-list a:first-child {
    margin-top: 0;
}

.service-details .services-list a {
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    background-color: color-mix(in srgb, var(--default-color), transparent 96%);
    display: flex;
    align-items: center;
    padding: 15px 20px;
    margin-top: 15px;
    transition: 0.3s;
    font-size: 18px;
    border-radius: 5px;
}

/* End - Single Service Sidebar List - CSS */

/* Start - Homepage about - CSS */

.we-are-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
    width: 100%;
    height: 900px;
}

@media screen and (max-width: 860px) {
    .we-are-block {
        height: 2200px;
    }
}

@media screen and (max-width: 500px) {
    .we-are-block {
        height: 2300px;
    }
}

#about-us-section {
    background: var(--blue-theme-color);
    width: 100%;
    height: 50%;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    position: relative;
}

@media screen and (max-width: 860px) {
    #about-us-section {
        flex-direction: column;
        justify-content: space-between;
    }
}

.about-us-image {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    overflow: hidden;
}

@media screen and (max-width: 860px) {
    .about-us-image {
        position: relative;
        width: 100%;
        height: 45%;
    }
}

@media screen and (max-width: 747px) {
    .about-us-image {
        height: 35%;
    }
}

@media screen and (max-width: 644px) {
    .about-us-image img {
        position: absolute;
        left: -220px;
    }
}

.about-us-info {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: space-evenly;
    width: 40%;
    height: 80%;
    margin-right: 850px;
    margin-left: 12px;
    z-index: 2;
}

@media screen and (max-width: 1353px) {
    .about-us-info {
        margin-right: 400px;
        width: 60%;
        background: var(--blue-theme-color)99;
        padding: 0px 25px 0px 0px;
    }
}

@media screen and (max-width: 1238px) {
    .about-us-info {
        margin-right: 340px;
        width: 100%;
    }
}

@media screen and (max-width: 1111px) {
    .about-us-info {
        margin-right: 270px;
    }
}

@media screen and (max-width: 910px) {
    .about-us-info {
        margin-right: 150px;
    }
}

@media screen and (max-width: 860px) {
    .about-us-info {
        margin: 0px 0px 0px 0px !important;
        padding: 0px 20px 0px 20px !important;
        width: 100%;
        height: 55%;
        align-items: center;
    }
}

@media screen and (max-width: 747px) {
    .about-us-info {
        height: 65%;
    }
}

.about-us-info h2 {
    color: white;
    font-size: 40pt;
    text-align: right;
}

@media screen and (max-width: 860px) {
    .about-us-info h2 {
        text-align: center;
    }
}

.about-us-info p {
    color: white;
    font-size: 14pt;
    text-align: right;
}

@media screen and (max-width: 860px) {
    .about-us-info p {
        text-align: center;
    }
}

.about-us-info a {
    background-color: white;
    color: var(--blue-theme-color);
    width: 180px;
    text-align: center;
    padding: 15px 0px 15px 0px;
    font-size: 14pt;
    box-shadow: rgb(38, 57, 77) 0px 20px 30px -10px;
}

.about-us-info a:hover {
    background: #404140;
    color: white;
    box-shadow: rgba(0, 0, 0, 0.56) 0px 22px 70px 4px;
    transform: translateY(10px);
}

#history-section {
    width: 100%;
    height: 50%;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    position: relative;
    background: var(--blue-theme-color);
    /* padding: 70px; */
}

@media screen and (max-width: 860px) {
    #history-section {
        flex-direction: column;
        justify-content: space-between;
    }
}

.history-image {
    position: absolute;
    top: 0;
    left: 0;
    max-width: 820px;
    height: 100%;
    overflow: hidden;
}

@media screen and (max-width: 860px) {
    .history-image {
        position: relative;
        width: 100%;
        height: 40%;
    }
}

@media screen and (max-width: 747px) {
    .history-image {
        height: 35%;
    }
}

@media screen and (max-width: 644px) {
    .history-image img {
        position: absolute;
        right: -220px;
    }
}

.history-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-evenly;
    width: 40%;
    height: 80%;
    margin-left: 850px;
    margin-right: 12px;
    margin-top: 30px;
    margin-bottom: 30px;
    z-index: 2;
}

@media screen and (max-width: 1353px) {
    .history-info {
        margin-left: 400px;
        width: 60%;
        background: var(--primary-color);
        padding: 25px;
        border-radius: 20px;
    }
}

@media screen and (max-width: 1238px) {
    .history-info {
        margin-left: 340px;
        width: 100%;
    }
}

@media screen and (max-width: 1111px) {
    .history-info {
        margin-left: 270px;
    }
}

@media screen and (max-width: 910px) {
    .history-info {
        margin-left: 150px;
    }
}

@media screen and (max-width: 860px) {
    .history-info {
        margin: 0px 0px 0px 0px !important;
        padding: 0px 40px 0px 40px !important;
        width: 100%;
        height: 60%;
        align-items: center;
    }
}

@media screen and (max-width: 747px) {
    .history-info {
        height: 65%;
    }
}

.history-info h2 {
    color: #E9E9E9;
    font-size: 40pt;
    text-align: left;
}

@media screen and (max-width: 860px) {
    .history-info h2 {
        text-align: center;
    }
}

.history-info p {
    color: #E9E9E9;
    text-align: left;
    margin-top: 12px;
}

@media screen and (max-width: 860px) {
    .history-info p {
        text-align: center;
    }
}

.history-info a {
    background-color: #E9E9E9;
    color: var(--blue-theme-color);
    width: 180px;
    text-align: center;
    padding: 15px 0px 15px 0px;
    box-shadow: rgb(38, 57, 77) 0px 20px 30px -10px;
    border-radius: 100px;
    margin-top: 12px;
}

.history-info a:hover {
    background: var(--primary-color);
    color: #E9E9E9;
    box-shadow: rgba(0, 0, 0, 0.56) 0px 22px 70px 4px;
    transform: translateY(10px);
    border-radius: 100px;
}

.custom-boxs {
    background: #f2eff0;
    padding: 30px 40px 40px;
    border-radius: 10px;
    transition: 0.5s all;
    box-shadow: 10px 10px 40px #ccc;
    border-top: 8px solid var(--primary-color);
    cursor: pointer;
}

/* End - Homepage about - CSS */

/* Start - Are You Ready - CSS */

.wrap-banner {
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--primary-color);
}

.wrap-banner h2 {
    color: #ffffff;
}

.wrap-banner p {
    color: #b0c2cc;
}

.wrap-banner a {
    margin-left: 45px;
    padding: 10px 50px;
    border: 2px solid var(--blue-theme-color);
    color: var(--white);
    background-color: var(--blue-theme-color);
    border-radius: 100px;
    transition: var(--transition);
}

.wrap-banner a.simple {
    border: 2px solid #E9E9E9;
    background-color: #E9E9E9;
    color: var(--blue-theme-color);
}

.wrap-banner a:hover {
    border: 2px solid #E9E9E9;
    background-color: #E9E9E9;
    color: var(--blue-theme-color);
}

.wrap-banner a.simple:hover {
    border: 2px solid var(--blue-theme-color);
    color: var(--white);
    background-color: var(--blue-theme-color);
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 999;
    padding-top: 100px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.6);
}

.modal-content {
    background-color: #fff;
    margin: auto;
    padding: 30px;
    border-radius: 10px;
    width: 90%;
    max-width: 500px;
    position: relative;
}

.modal-content h3 {
    margin-bottom: 20px;
}

.modal-content input,
.modal-content textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 6px;
}

.modal-content button {
    background-color: var(--blue-theme-color);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 100px;
    cursor: pointer;
}

.modal-content button:hover {
    background-color: var(--primary-color);
}

.close {
    position: absolute;
    right: 15px;
    top: 10px;
    font-size: 24px;
    cursor: pointer;
}

/* Two Column Layout */
.modal-content.two-column {
    display: flex;
    flex-direction: row;
    padding: 0;
    max-width: 1000px;
    overflow: hidden;
}

.modal-left {
    width: 50%;
    background-color: #f3f3f3;
}

.modal-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal-right {
    width: 50%;
    padding: 40px;
    box-sizing: border-box;
}

.modal-right h3 {
    margin-bottom: 20px;
}

.modal-right input,
.modal-right textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 6px;
}

.modal-right button {
    background-color: var(--blue-theme-color);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 100px;
    cursor: pointer;
    width: 100%;
}

.modal-right button:hover {
    background-color: var(--primary-color);
}

/* End - Are You Ready - CSS */

.custom-read-more {
    margin-top: 12px;
    color: var(--blue-theme-color);
}

/* Start - Menuscript - CSS */

.banner2 {
    background-color: #f5f5f5;
}

.banner2 .banner-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.3;
    color: #222;
}

.banner2 .theme-b-color {
    color: var(--blue-theme-color);
}

.banner2 .banner-text p {
    margin-bottom: 12px;
    color: #555;
}

.banner2 .banner-img img {
    max-width: 100%;
    height: auto;
}

.menuscript-btn-p {
    margin-top: 10px;
    padding: 12px 60px;
    border: 2px solid var(--primary-color);
    background-color: var(--primary-color);
    color: #fff;
    border-radius: 100px;
    font-weight: 500;
    transition: all 0.3s ease-in-out;
    display: inline-block;
}

.menuscript-btn-p:hover {
    background-color: transparent;
    color: var(--primary-color);
    text-decoration: none;
    transform: translateY(-2px);
}

.menuscript-btn-b {
    margin-top: 10px;
    padding: 12px 60px;
    border: 2px solid var(--blue-theme-color);
    background-color: var(--blue-theme-color);
    color: #fff;
    border-radius: 100px;
    font-weight: 500;
    transition: all 0.3s ease-in-out;
    display: inline-block;
}

.menuscript-btn-b:hover {
    background-color: transparent;
    color: var(--blue-theme-color);
    text-decoration: none;
    transform: translateY(-2px);
}

.ghostwriting-banner {
    background: linear-gradient(to right, #fff, #f0f4fa);
    padding: 60px 0;
}

.ghostwriting-banner .banner-text h2 {
    font-size: 2rem;
    line-height: 1.4;
    font-weight: 700;
    color: #0a2f5d;
}

.ghostwriting-banner .banner-text p {
    font-size: 1.1rem;
    color: #444;
    line-height: 1.8;
    margin-bottom: 15px;
}

.ghostwriting-banner {
    background: linear-gradient(to right, #fff, #f0f4fa);
}

.banner-text h2 {
    font-size: 2rem;
    line-height: 1.4;
    font-weight: 700;
    color: #0a2f5d;
}

@media (max-width: 767.98px) {
    .ghostwriting-banner .banner-text h2 {
        font-size: 1.7rem;
    }

    .ghostwriting-banner .banner-text p {
        font-size: 1rem;
    }
}

/* End - Menuscript - CSS */

/* Start - FAQ CSS */

.faq-section {
    background: linear-gradient(to right, #f9fbff, #eef3fa);
}

.faq-section .text-theme-color {
    color: var(--primary-color);
}

.faq-card {
    background-color: var(--white);
    border-bottom: 2px solid var(--primary-color);
    border-radius: 30px;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease forwards;
}

.faq-card:hover {
    background-color: var(--primary-color);
    color: var(--white) !important;
}

.faq-card:hover h4,
.faq-card:hover p {
    color: var(--white) !important;
}

.faq-card h4 {
    color: var(--primary-color);
    transition: color 0.3s ease;
}

.icon-wrapper {
    background-color: #343a40;
    padding: 10px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-section button {
    margin-top: 10px;
    padding: 12px 60px;
    border-radius: 100px;
    font-weight: 500;
    transition: all 0.3s ease-in-out;
    display: inline-block;
}

.faq-section button#loadMoreBtn {
    border: 2px solid var(--blue-theme-color);
    background-color: var(--blue-theme-color);
    color: var(--white);
}

.faq-section button#loadLessBtn {
    border: 2px solid var(--blue-theme-color);
    background-color: var(--white);
    color: var(--blue-theme-color);
}

/* Animation Keyframes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Staggered Animation Delay */
.faq-card:nth-child(1) {
    animation-delay: 0.1s;
}

.faq-card:nth-child(2) {
    animation-delay: 0.2s;
}

.faq-card:nth-child(3) {
    animation-delay: 0.3s;
}

.faq-card:nth-child(4) {
    animation-delay: 0.4s;
}

.faq-card:nth-child(5) {
    animation-delay: 0.5s;
}

.faq-card:nth-child(6) {
    animation-delay: 0.6s;
}

.extra-faq:nth-child(7) .faq-card {
    animation-delay: 0.7s;
}

.extra-faq:nth-child(8) .faq-card {
    animation-delay: 0.8s;
}

.extra-faq:nth-child(9) .faq-card {
    animation-delay: 0.9s;
}

.extra-faq:nth-child(10) .faq-card {
    animation-delay: 1.0s;
}

/* Mobile tweaks */
@media (max-width: 767.98px) {
    .faq-card {
        padding: 1.5rem;
    }
}

/* End - FAQ CSS */

/* Start - Book Banner CSS */

.guide-section {
    background-color: #f9fbff;
}

.guide-section .accordion-button {
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--blue-theme-color);
}

.guide-section .accordion-button:not(.collapsed) {
    background-color: #e6efff;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.guide-section .accordion-body {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #333;
}

.guide-image-box img {
    width: 100%;
    height: auto;
    transition: all 0.3s ease-in-out;
}

.guide-image-box {
    text-align: center;
}

/* End - Book Banner CSS */