* {
    padding: 0px;
    margin: 0px;
    box-sizing: border-box;
}


:root {
    /* COLORS */
    --color-primary: #084E9E;
    --color-secondary: #3A66EE;
    --color-accent: #EBBA47;
    --color-dark: #171C26;

    --color-text-primary: #171C26;
    --color-text-secondary: #676F7E;
    --color-text-light: #f9f7f5e2;

    --color-bg-light: #F7F9FC;

    /* 
--color-tertiary
--color-highlight */

    /* FONTS  */
    --font-primary: "DM Sans", sans-serif;
    --font-display: "Playfair Display", serif;
}

/* --------------------------------
   UTILITY CSS 
-------------------------------- */
body {
    font-family: var(--font-primary);
    background-color: #fff;
}

ul {
    padding: 0px;
    margin: 0px;
}

/*----- LOGOES CSS ----- */
.logo-lg {
    width: 10rem;
}

/*----- TYPOGRAPHY CSS ----- */
.t-heading {
    font-family: var(--font-display);
    color: var(--color-text-primary);
    font-size: 45px;
    font-weight: 700;
    margin: 0px;
    letter-spacing: -1px;
}

.t-sm-heading {
    font-family: var(--font-primary);
    color: var(--color-text-primary);
    font-size: 23px;
    font-weight: 700;
    margin: 0px;
}

.t-heading-light {
    color: var(--color-text-light);
}

.t-heading--highlight {
    color: var(--color-accent);
}

.t-desc {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: normal;
    color: var(--color-text-secondary);
    margin: 0px;
}

.t-desc-light {
    color: var(--color-text-light);
}

.t-long-desc {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: normal;
    color: var(--color-text-primary);
    margin: 0px;
}

.t-heading-tag {
    font-size: 16px;
    color: var(--color-primary);
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 2px;
    display: block;
}

.t-heading-tag--accent {
    color: var(--color-accent);
}

.rating-tag {
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 400;
    color: var(--color-text-light);
}

.rating-tag .box {
    display: flex;
    align-items: center;
    gap: 2px;
}

.rating-tag .box i {
    color: var(--color-accent);
}


@media screen and (max-width:440px) {
    .t-heading {
        font-size: 26px;
    }

    .t-heading-tag {
        font-size: 12px;
    }

    .t-desc {
        font-size: 12px;
    }
}

/*----- BACKGROUNDS & COLORS CSS ----- */

.overlay-bg {
    background-image: url('./../img/bg.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
}

.overlay-bg:before {
    content: '';
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background: linear-gradient(122deg, rgba(0, 45, 96, 0.92) 0%, rgba(39, 87, 236, 0.71) 100%);
}

.light-bg {
    background-color: var(--color-bg-light);
}

.primary-bg {
    background-color: var(--color-primary);
}


/*----- BUTTONS CSS ----- */
.t-btn {
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    padding: 14px 18px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-radius: 8px;
    transition: all ease-in-out 0.25s;
}

.t-primary-btn {
    background: var(--color-primary);
    color: #fff;
}

.t-primary-btn:hover {
    background-color: var(--color-secondary);
}

.t-accent-btn {
    background-color: var(--color-accent);
    color: var(--color-text-primary);
}

.t-accent-btn:hover {
    background-color: #ffca4f;
}

.t-outline-btn {
    border: 1px solid var(--color-text-light);
    color: var(--color-text-light);
}

.t-outline-btn:hover {
    border: 1px solid transparent;
    background-color: var(--color-secondary);
}

.t-menu-btn {
    background-color: var(--color-primary);
    display: inline-block;
    padding: 13px 14px;
    border-radius: 8px;
    color: #fff;
    font-size: 14px;
    transition: all ease-in-out 0.25s;
}

.t-menu-btn:hover {
    background-color: var(--color-secondary);
}

/*----- VIDEO CSS ----- */

.video-container {
    height: 500px;
    padding: 0px;
    border-radius: 12px;
    overflow: hidden;
}

.video-container iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media screen and (max-width:440px) {
    .video-container {
        height: 250px;
    }

}

/*----- OT CSS ----- */

/* --------------------------------
   NAVBAR CSS 
-------------------------------- */
nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 0px;
}

nav .nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
}

nav .nav-links .link {
    text-decoration: none;
    color: var(--color-text-primary);
    display: inline-block;
    padding: 8px 12px;
    font-size: 13px;
    font-weight: 500;
    transition: all ease-in-out 0.25s;
}

nav .nav-links .link:hover {
    color: var(--color-secondary);
}

/* --------------------------------
   HERO SECTION CSS 
-------------------------------- */
.hero-banner {
    /* height: 60vh; */
    background-color: var(--color-bg-light);
    width: 100%;
}

.hero-banner-sm {
    height: 30vh;
    background-color: #c6c6c6;
    width: 100%;
}

.hero-banner img {
    width: 100%;
}


/* --------------------------------
   STATICS SECTION CSS 
-------------------------------- */
.static-wrapper {
    background-color: var(--color-secondary);
    color: #fff;
    padding: 1rem;
}

.static--box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.static--box h4 {
    padding: 0px;
    margin: 0px;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -1px;
}

.static--box p {
    margin: 0px;
    padding: 0px;
    font-size: 13px;
    font-weight: 400;
}

@media screen and (max-width:440px) {
    .static--box {
        width: 50%;
    }

    .static--box h4 {
        font-size: 17px;
    }

    .static--box:nth-child(1) {
        margin-bottom: 2.5rem;
    }

    .static--box:nth-child(2) {
        margin-bottom: 2.5rem;
    }

    .static--box p {
        font-size: 12px;
    }

    .static-wrapper {
        padding: 2rem 1rem;
    }

}

/* --------------------------------
   CARDS CSS 
-------------------------------- */

/*----- CARD 1 CSS ----- */
.card-1 {
    background-color: #fff;
    border: 1px solid #f3f3f3;
    border-radius: 12px;
    padding: 32px;
}

.card-1 .icon {
    background-color: var(--color-primary);
    width: 50px;
    height: 50px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.card-1 .icon img {
    width: 20px;
}

.card-1 h5 {
    font-family: var(--font-display);
    font-size: 20px;
    color: var(--color-text-primary);
    font-weight: 600;
    margin-bottom: 10px;
}

.card-1 p {
    font-size: 12px;
    color: var(--color-text-secondary);
    margin: 0px;
}

/*----- CARD 2 CSS ----- */
.card-2 {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
}

.card-2::before {
    content: '';
    position: absolute;
    top: 0px;
    left: 0px;
    background: linear-gradient(0deg, rgb(0 0 0 / 77%) 0%, rgb(0 0 0 / 0%) 100%);
    width: 100%;
    height: 100%;
    z-index: 1;
}

.card-2 .profile-wrapper {
    height: 250px;
    display: flex;
}

.card-2 .profile-wrapper .peal {
    background-color: rgb(255 255 255 / 43%);
    color: #fff;
    text-transform: uppercase;
    font-size: 12px;
    padding: 5px 13px;
    border-radius: 100px;
    align-items: center;
    letter-spacing: 1px;
    line-height: normal;
    position: absolute;
    bottom: 4rem;
    left: 0px;
    right: 0px;
    margin: auto;
    width: fit-content;
    height: fit-content;
    z-index: 2;
}

.t-peal {
    background-color: var(--color-secondary) !important;
}

.card-2 .profile-wrapper div {
    width: 50%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.card-2 .profile-wrapper div:first-child {
    background-color: #003571;
}

.card-2 .profile-wrapper div:last-child {
    background-color: #0e7fff;
}

.card-2 .profile-wrapper div img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.card-2 .content {
    position: absolute;
    bottom: 0px;
    width: 100%;
    padding: 12px;
    z-index: 2;
}

.card-2 .content h4 {
    margin: 0px;
    font-size: 14px;
    font-weight: normal;
    color: var(--color-text-light);
    margin-bottom: 2px;
}

.card-2 .content p {
    margin: 0px;
    font-size: 12px;
    color: var(--color-text-light);
    font-weight: 300;
    opacity: 70%;
}


/*----- CARD 3 CSS ----- */
.card-3 {
    background-color: #f8f8f8;
    border-radius: 12px;
    padding: 18px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.card-3 .icon {
    background-color: var(--color-secondary);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 17px;
}

.card-3 .icon img {
    width: 20px;
}

.card-3 h5 {
    font-family: var(--font-display);
    font-size: 16px;
    color: var(--color-text-primary);
    font-weight: 600;
    margin-bottom: 6px;
}

.card-3 p {
    font-size: 12px;
    color: var(--color-text-secondary);
    margin: 0px;
    text-align: center;
    width: 90%;
}

/*----- CARD 4 CSS ----- */
.card-4 {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 24rem;
    background-color: var(--color-primary);
}

.card-4::before {
    content: '';
    position: absolute;
    top: 0px;
    left: 0px;
    background: linear-gradient(180deg, rgba(8, 78, 158, 0.26) 0%, rgba(5, 73, 151, 0.83) 71.34%, #00418A 100%);
    width: 100%;
    height: 100%;
    z-index: 1;
}

.card-4 .content {
    width: 100%;
    padding: 20px;
    position: absolute;
    z-index: 2;
    bottom: 0px;
}

.card-4 .content h4 {
    margin: 0px;
    font-size: 18px;
    font-weight: 600;
    font-family: var(--font-display);
    color: var(--color-text-light);
    margin-bottom: 2px;
}

.card-4 .content p {
    margin: 0px;
    font-size: 13px;
    color: var(--color-text-light);
    font-weight: 300;
    opacity: 70%;
}

@media screen and (max-width:440px) {
    .card-4 {
        height: 20rem;
    }

}

/*----- CARD 4 CSS ----- */
.card-5 {
    background-color: #fff;
    padding: 22px;
    border: 1px solid #E5E0DC80;
    border-radius: 8px;
}

.card-5 .text {
    margin: 0px;
    font-size: 14px;
}

.card-5 .info-box {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #E5E0DC;
}

.card-5 .info-box h4 {
    font-size: 16px;
    margin: 0px;
    color: var(--color-text-primary);
}

.card-5 .info-box p {
    margin: 0px;
    padding: 0px;
    font-size: 13px;
    color: var(--color-text-secondary);
    opacity: 85%;
}

@media screen and (max-width:440px) {
    .card-5 {
        padding: 15px;
    }

}


/*----- EXPERTS CARD CSS ----- */
.expert-card {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: rgba(0, 0, 0, 0.08) 0px 4px 12px;
}

.expert-card .profile {
    height: 400px;
    overflow: hidden;
    position: relative;
    background-repeat: no-repeat;
    background-size: cover;
    background-position-y: -1rem;
}

.expert-card .meta-info {
    padding: 22px;
}

.expert-card .meta-info .title {
    margin: 0px;
    font-family: var(--font-display);
    color: var(--color-text-primary);
    font-size: 22px;
    font-weight: 700;
}

.expert-card .meta-info .label {
    display: inline-block;
    color: #f5ac00;
    font-size: 14px;
    font-weight: 500;
}

.expert-card .meta-info p {
    color: var(--color-text-secondary);
    font-size: 14px;
    margin-top: 1rem;
}

.expert-card ul {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.expert-card ul li {
    background-color: var(--color-bg-light);
    color: var(--color-primary);
    font-size: 12px;
    padding: 8px 12px;
    border-radius: 100px;
    font-weight: 500;
    align-items: center;
    line-height: normal;
    width: fit-content;
    height: fit-content;
    list-style: none;
}

.expert-card ul li i {
    margin-right: 2px;
}




/* --------------------------------
   CONTACT INFO CSS 
-------------------------------- */
.contact-meta-info li {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.contact-meta-info li span {
    color: var(--color-text-light);
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 1px;
    line-height: normal;
    display: block;
    opacity: 70%;
    font-weight: 200;
}

.contact-meta-info li a {
    color: var(--color-text-light);
    font-size: 13px;
    line-height: 20px;
    text-decoration: none;
    display: block;
}

.contact-meta-info .icon {
    background-color: var(--color-secondary);
    max-width: 50px;
    min-width: 50px;
    height: 50px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-meta-info .icon img {
    width: 20px;
}

/* --------------------------------
   FORM CSS 
-------------------------------- */
.form-wrapper {
    background-color: #fff;
    width: 100%;
    /* height: 100%; */
    border-radius: 16px;
    padding: 26px 32px;
}

.form-wrapper .heading {
    font-family: var(--font-display);
    color: var(--color-text-primary);
    font-size: 24px;
    font-weight: 600;
    margin: 0px;
    letter-spacing: -1px;
}


.form-wrapper form {}

.form-wrapper .f-input,
.f-textarea {
    background-color: #f0f2f5;
    color: var(--color-text-primary);
    width: 100%;
    font-size: 14px;
    padding: 12px;
    border-radius: 8px;
}

.form-wrapper .f-input:focus-visible {
    border: none;
}

.form-wrapper form .f-textarea {
    height: 100px;
}


/* --------------------------------
   THEME ACCORDION CSS 
-------------------------------- */
.t-accordion {}

.t-accordion .accordion-item {
    margin-bottom: 20px;
    border: 1px solid #E5E0DC80;
    border-radius: 8px;
}

.t-accordion .accordion-header {
    background-color: transparent;
    font-family: var(--font-display);
    color: var(--color-text-primary);
}

.t-accordion .accordion-header button {
    background-color: transparent !important;
    box-shadow: none !important;
    font-size: 19px;
    font-weight: 600;
}

.t-accordion .accordion-body {
    font-size: 14px;
    color: var(--color-text-primary);
}

@media screen and (max-width:440px) {

    .t-accordion .accordion-header button {
        font-size: 15px;
    }

    .t-accordion .accordion-body {
        font-size: 12px;
    }

    .t-accordion .accordion-item {
        margin-bottom: 8px;
    }

}




/* --------------------------------
   FOOTER CSS 
-------------------------------- */
footer {
    background-color: var(--color-dark);
    color: var(--color-text-light);
}

footer h4 {
    font-family: var(--font-display);
    color: var(--color-text-light);
    font-size: 18px;
    font-weight: 700;
    margin: 0px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

footer .links {
    display: flex;
    flex-direction: column;
    margin-top: 20px;
}

footer .links li {
    list-style: none;
    margin-bottom: 5px;
}

footer .link {
    font-size: 13px;
    text-decoration: none;
    color: var(--color-text-light);
    opacity: 70%;
    font-weight: normal;
    transition: all ease-in-out 0.25s;
}

footer .link:hover {
    color: #D99726;
    margin-left: 12px;
}

footer .copyright {
    margin: 0px;
    font-size: 12px;
    color: var(--color-text-secondary);
    text-align: center;
    margin-top: 3rem;
    padding-top: 17px;
    border-top: 1px solid #F9F7F51A;
    font-weight: 300;
}