/* ---------------------------------- Global CSS ---------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
    /* --main_color: #101115; */
    --main_color: #033B60;
    --sec_color: #f16126;

    --headings_font: "Inter", sans-serif;
    --body_font: "Poppins", sans-serif;

    --main_spacer: clamp(30px, 10vh, 90px);
    --small_spacer: clamp(30px, 6vh, 50px);

    --h1-fontSize: clamp(30px, 5vw, 45px);
    --h2-fontSize: clamp(28px, 5vw, 35px);
    --h3-fontSize: 24px;
    --h4-fontSize: 20px;
    --h5-fontSize: 18px;

    --base-fontSize: 16px;
    --text-xs: 13px;
}

* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

*::-moz-selection {
    color: #ccc;
    background-color: #121212;
}

*::selection {
    color: #ccc;
    background-color: #121212;
}

html {
    font-size: var(--base-fontSize);
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    color: var(--main_color);
    background-color: var(--body_bg, #fff);
    font-family: var(--body_font);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: inherit;
    font-family: var(--headings_font);
}

a {
    color: inherit;
    display: inline-block;
    text-decoration: none;
}

p {
    color: inherit;
    margin-bottom: 0.5rem;
}

strong {
    font-weight: 600;
}

img,
video {
    width: 100%;
    height: auto;
    vertical-align: middle;
}

/* Target the specific number input and hide the spin buttons */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* For Firefox, you may need this additional CSS rule */
input[type="number"] {
    -moz-appearance: textfield;
}

button {
    border: none;
    outline: none;
    white-space: nowrap;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    -webkit-transition: opacity 0.2s ease-in-out;
    -o-transition: opacity 0.2s ease-in-out;
    transition: opacity 0.2s ease-in-out;
}

button.accordion-button,
button.nav-link {
    white-space: normal;
}

button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

section {
    position: relative;
    z-index: 1;
}

hr {
    border-color: #e4e4e4;
    opacity: 1;
}

.body_font {
    font-family: var(--body_font) !important;
}

.headings_font {
    font-family: var(--headings_font) !important;
}

.special_font {
    font-family: var(--speacial_font) !important;
}

.w-screen {
    width: 100dvw;
}

.max-w-full {
    max-width: 100%;
}

.w-fit {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
}

.h-fit {
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
}

.h-screen {
    height: 100vh;
}

.main_spacer {
    padding-block: var(--main_spacer);
}

.main_spacer_top {
    padding-top: var(--main_spacer);
}

.main_spacer_bottom {
    padding-bottom: var(--main_spacer);
}

@media only screen and (min-width: 992px) {
    .main_spacer_lg {
        padding-block: var(--main_spacer);
    }
}

.small_spacer {
    padding-block: var(--small_spacer);
}

.small_spacer_top {
    padding-top: var(--small_spacer);
}

.small_spacer_bottom {
    padding-bottom: var(--small_spacer);
}

body h1,
.main_heading {
    font-size: var(--h1-fontSize);
}

body h2,
.sec_heading {
    font-size: var(--h2-fontSize);
}

body h3,
.ter_heading {
    font-size: var(--h3-fontSize);
}



h4,
.quat_heading {
    font-size: var(--h4-fontSize);
}

.text_xs {
    font-size: var(--text-xs);
}

.main_color {
    color: var(--main_color);
}

.main_bg {
    color: #ccc;
    background-color: var(--main_color);
}

.border_main {
    border-color: var(--main_color) !important;
}

.main_bg *::-moz-selection {
    color: var(--main_color);
    background-color: #ccc;
}

.main_bg *::selection {
    color: var(--main_color);
    background-color: #ccc;
}

.hover_main_color:hover {
    color: var(--main_color);
}

.sec_color {
    color: var(--sec_color);
}

.sec_bg {
    background-color: var(--sec_color);
}

.sec_border {
    border-color: var(--sec_color) !important;
}

.text-justify {
    text-align: justify;
}

.text-underline {
    text-decoration: underline;
}

.min-h-screen {
    min-height: 100vh;
    /* min-height: calc(var(--vh, 1vh) * 100); */
}

@media only screen and (min-width: 992px) {
    .lg-min-h-screen {
        min-height: 100vh;
    }
}

.row {
    margin-inline: 0;
}

.rowMargin {
    margin-inline: calc(-0.5 * 1.5rem);
}

.-z-1 {
    z-index: -1;
}

.inset-0 {
    inset: 0;
}

.col_spacer {
    padding-inline: calc(1.5rem * .5);
}

.swiper-slide {
    height: auto;
}

.marquee-fb,
.marquee-fb2 .swiper-slide {
    width: 250px;
}

.aspect-ratio-1 {
    aspect-ratio: 1 / 1;
}

.stars {
    color: #f0ad4e;
}

.max-h-screen {
    max-height: 100vh;
}

.marqueeSwiper .swiper-wrapper {
    transition-timing-function: linear;
}

.top-5 {
    top: 1.5rem;
}

.top-7 {
    top: 7.5rem;
}

.min-h-view {
    min-height: calc(100vh - var(--header-height, 80px));
}

.pointer-events-none {
    pointer-events: none;
}

.pointer-events-auto {
    pointer-events: auto;
}

@media (min-width: 1400px) {
    body .container {
        max-width: calc(100% - 70px);
    }
}

.navbar-nav {
    gap: 10px;
}

/* ---------------------------------- Global END ---------------------------------------------- */

.light_bg {
    color: var(--main_color);
    background-color: #CDD8DF;
}

.page-link {
    color: var(--main_color);
}

.active>.page-link,
.page-link.active {
    background-color: var(--main_color);
}

/* ---------------------------------- Components ---------------------------------------------- */
.bg-img {
    position: absolute;
    inset: 0;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.bg-img::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.bg-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.breadcrumb {
    display: flex;
    gap: 6px;
    align-items: center;
}

.breadcrumb a.active {
    color: var(--sec_color);
    text-decoration: underline;
}

.inner-banner {
    min-height: 400px;
    padding-block: var(--header-height, 80px);
    color: var(--main_color);
    display: flex;
    align-items: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center top;
    background-size: 100% 100vh;
    position: relative;
    z-index: 2;
    background-image: url("../images/bg-texture/texture-3.jpg");
    transition: padding 0.3s ease-in-out;
}

/* Lists */

.s-faq ul {
    margin-block: 10px 1rem;
}

ul>li:last-child {
    margin-bottom: 0;
}

/* List Main */

.s-faq li {
    margin-bottom: 10px;
}

ul.my-list {
    margin-top: 10px;
    list-style: none;
    padding-left: 0;
}

ul.my-list>li {
    position: relative;
    margin-bottom: 10px;
    padding-left: 20px;
}

ul.my-list>li::before {
    content: "⇒";
    position: absolute;
    left: 0;
    color: inherit;
    display: inline-block;
    font-weight: 600;
}

/* check list */

ul.list-check>li::before {
    content: "✔";
}

/* cross list */

ul.list-cross>li::before {
    content: "✖";
}

/* Lists End */

/* Buttons */

.headerBtn-1 {
    width: fit-content;
    position: relative;
    padding: 10px;
    font-weight: 500;
    gap: 4px;
    z-index: 1;
    display: flex;
    overflow: hidden;
    align-items: center;
    color: var(--sec_color);
    background-color: #fff;
    border: 2px solid var(--sec_color);
    transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
}

.headerBtn-1:hover {
    color: #fff;
}

.headerBtn-1::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    transform: translateX(100%);
    background-color: var(--sec_color);
    transition: transform 0.3s ease-in-out;
}

.headerBtn-1:hover::before {
    transform: translateX(0);
}

.headerBtn-2 {
    width: fit-content;
    position: relative;
    padding: 10px;
    font-weight: 500;
    gap: 4px;
    z-index: 1;
    display: flex;
    overflow: hidden;
    align-items: center;
    color: #fff;
    border: 2px solid var(--sec_color);
    background-color: var(--sec_color);
    transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
}

.headerBtn-2:hover {
    color: var(--sec_color);
}

.headerBtn-2::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    transform: translateX(-100%);
    background-color: #fff;
    transition: transform 0.3s ease-in-out;
}

.headerBtn-2:hover::before {
    transform: translateX(0);
}

/* Buttons End */

.accordianCss .accordion-item {
    margin-bottom: 20px;
    border-radius: 1.5rem;
    box-shadow: none;
    border: none;
    overflow: hidden;
    background-color: #fff;
    transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
}

.accordianCss .accordion-item .accordion-button {
    background-color: #033B6060;
    transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
}

.accordianCss .accordion-item .accordion-button,
.accordianCss .accordion-item .accordion-button:focus {
    box-shadow: none;
    font-weight: 600;
}

.accordianCss .accordion-item .accordion-button:not(.collapsed) {
    color: var(--main_color);
    background-color: transparent;
}

.accordianCss .accordion-item .accordion-collapse .accordion-body {
    opacity: 0;
    transform: scale(.9);
    transform-origin: center center;
    transition: opacity .1s ease-in-out, transform .25s ease-in-out;
}

.accordianCss .accordion-item .accordion-collapse.show .accordion-body {
    transform: scale(1);
    opacity: 1;
}

.box-highlight {
    margin-block: 12px;
    padding: 12px 7px;
    background-color: #f1612620;
    border-left: 4px solid var(--main_color);
    box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .15);
}

.box-highlight>ul:last-child {
    margin-bottom: 0;
}

.box-highlight ul li {
    margin-bottom: 8px;
}

.box-highlight ul li:last-child {
    margin-bottom: 0;
}

.d-card {
    height: 100%;
    overflow: hidden;
    border-radius: 20px;
    color: var(--main_color);
    background-color: #fff;
    box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .15);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.d-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, .175);
}

.d-card .img_wrapper {
    height: 200px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}

.d-card .img_wrapper img {
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease-in-out;
}

.d-card:hover .img_wrapper img {
    transform: scale(1.06);
}

.d-card .d-info {
    padding: 20px;
}

.nav-link:focus-visible {
    box-shadow: none;
}

.dropdown-item.active,
.dropdown-item:active {
    color: #fff;
    background-color: var(--sec_color);
}

/* Form */
.image-preview {
    max-width: 150px;
    max-height: 150px;
    margin-top: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    object-fit: contain;
}

.file-preview {
    margin-top: 10px;
}

.image-preview-container {
    margin-bottom: 15px;
}

.form-text {
    margin-top: 5px;
}

.form-section {
    margin-bottom: 2rem;
}

.form-control:focus {
    border-color: var(--main_color);
    box-shadow: 0 0 0 .25rem #033B6025;
}

.form-error {
    color: red;
    padding: 12px;
    margin-block: 12px;
    border: 1px solid red;
    background-color: lightyellow;
}

.form-success {
    padding: 12px;
    color: green;
    margin-block: 12px;
    background-color: lightgreen;
    border: 1px solid green;
}

.terms-box {
    max-height: 400px;
    overflow-y: auto;
}

/* ---------------------------------- Components END ---------------------------------------------- */

/* ---------------------------------- Site Header ---------------------------------------------- */

#site-header {
    top: var(--topstrip-height, 20px);
    transition: top 0.25s ease-in-out, background-color 0.25s ease-in-out, box-shadow 0.25s ease-in-out;
}

body.scrolled #site-header {
    top: 0;
    background-color: #ffffff;
    box-shadow: 0 10px 10px rgba(13, 41, 51, 0.30);
}

#site-header .navbar-nav .nav-link {
    padding: 0;
    width: fit-content;
}

#site-header .navbar-nav .nav-link.profile-icon {
    width: 40px;
    height: 40px;
    color: #fff;
    display: flex;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    background-color: var(--main_color);
}

#site-header .navbar-nav .nav-link.profile-icon::after {
    content: none;
}

#site-header .logo-wrap {
    max-width: 70px;
    transition: max-width 0.3s ease-in-out;
}

body.scrolled #site-header .logo-wrap {
    max-width: 50px;
}

@media only screen and (max-width: 992px) {
    #site-header .logo-wrap {
        max-width: 90px;
    }

    body.scrolled #site-header .logo-wrap {
        max-width: 50px;
    }
}

@media only screen and (max-width: 1600px) {
    #site-header .logo-wrap {
        max-width: 80px;
    }

    body.scrolled #site-header .logo-wrap {
        max-width: 50px;
    }
}

@media only screen and (min-width: 1600px) {
    #site-header .logo-wrap {
        max-width: 120px;
    }

    body.scrolled #site-header .logo-wrap {
        max-width: 50px;
    }
}

#site-header .navbar-nav {
    gap: 12px;
}

.top_strip .nav-item {
    transition: color 0.3s;
}

#site-header .nav-link:hover,
.top_strip .nav-item:hover {
    color: var(--sec_color);
}

.navbar-nav .nav-link.active {
    color: var(--sec_color);
    text-decoration: underline;
}

/* ---------------------------------- Site Header End ---------------------------------------------- */

/* ---------------------------------- Site Footer ---------------------------------------------- */

#site-footer .logo-wrap {
    max-width: 100px;
    filter: grayscale(100%) brightness(10);
}

#site-footer .nav-link {
    width: fit-content;
    color: #aaa;
    padding: 0;
    transition: color 0.3s;
}

#site-footer .nav-link.active,
#site-footer .nav-link:hover {
    color: var(--sec_color);
}

/* ---------------------------------- Site Footer End ---------------------------------------------- */


/* ---------------------------------- Banner ---------------------------------------------- */

.home-banner .banner_img {
    max-width: 500px;
}

.home-banner .min-h-screen {
    padding-bottom: var(--main_spacer);
    padding-top: var(--header-height, 80px);
    min-height: calc(100vh - var(--topstrip-height, 40px));
    transition: min-height 0.3s ease-in-out, padding 0.3s ease-in-out;
}

@media only screen and (min-width: 992px) {
    .home-banner h1 {
        font-size: var(--h3-fontSize);
    }
}

@media only screen and (min-width: 1200px) {
    .home-banner h1 {
        font-size: var(--h2-fontSize);
    }
}

@media only screen and (min-width: 1800px) {
    .home-banner h1 {
        font-size: var(--h1-fontSize);
    }
}

@media only screen and (max-width: 991px) {
    .home-banner {
        padding-top: var(--header-height, 80px);
    }
}

/* .about-banner {
    background-image: url("../images/banner/about-us.jpg");
}

.patent-banner {
    background-image: url("../images/banner/02.jpg");
    background-position: center center;
} */

/* ---------------------------------- Banner End ---------------------------------------------- */

/* ---------------------------------- Clients Section ---------------------------------------------- */

.s-client .clientsSwiper .img_wrapper {
    padding: 25px;
    border-radius: 12px;
    background-color: #fff;
    box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .15);
}

/* ---------------------------------- Clients Section END ---------------------------------------------- */


/* ---------------------------------- Background Textures ---------------------------------------------- */

.bg-texture-1,
.bg-texture-2,
.bg-texture-3 {
    position: relative;
    z-index: 1;
}

.bg-texture-1::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("../images/bg-texture/texture-1.webp") no-repeat center center;
    background-size: cover;
    z-index: -1;
}

.bg-texture-2::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("../images/bg-texture/texture-2.png") no-repeat center center;
    background-size: cover;
    z-index: -1;
}

.bg-texture-3::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("../images/bg-texture/texture-3.jpg") repeat center center;
    background-attachment: fixed;
    background-size: cover;
    z-index: -1;
}

/* ---------------------------------- Background Textures ---------------------------------------------- */


/* ---------------------------------- About Page ---------------------------------------------- */
.s-about .img_wrapper {
    overflow: hidden;
    max-width: 370px;
    border-radius: 100%;
    background-color: var(--sec_color);
    box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .15);
}

.s-story .img_wrapper {
    max-width: 400px;
}

.s-story .list-progress {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.s-story .list-progress li {
    margin-bottom: 14px;
}

.s-story .list-progress li span {
    padding: 1px 5px;
    margin-right: 10px;
}

.s-story .list-progress li:nth-child(1) span {
    background-color: #3064A4;
}

.s-story .list-progress li:nth-child(2) span {
    background-color: #7030A0;
}

.s-story .list-progress li:nth-child(3) span {
    background-color: #7C9E38;
}

.s-story .list-progress li:nth-child(4) span {
    background-color: #D99694;
}

.s-story .list-progress li:nth-child(5) span {
    background-color: #FAC090;
}

.s-story .list-progress li:nth-child(6) span {
    background-color: #D27020;
}

.s-ripple-effect .circular_wrapper {
    max-width: 450px;
    border-radius: 100%;
    display: flex;
    justify-content: center;
}

.s-ripple-effect .circular_wrapper .circle {
    border-radius: 100%;
    display: flex;
    font-weight: 600;
    padding: 15px;
}

.s-ripple-effect .circular_wrapper .circle-1 {
    width: 100%;
    height: 100%;
    align-items: start;
    justify-content: center;
    color: var(--sec_color);
    background-color: #1936B2;
    box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .15);
}

.s-ripple-effect .circular_wrapper .circle-2 {
    width: 80%;
    height: 80%;
    left: auto;
    right: auto;
    top: auto;
    bottom: 0;
    color: #fff;
    align-items: start;
    justify-content: center;
    background-color: #A066CB;
}

.s-ripple-effect .circular_wrapper .circle-3 {
    width: 60%;
    height: 60%;
    left: auto;
    right: auto;
    top: auto;
    bottom: 0;
    color: var(--main_color);
    align-items: start;
    justify-content: center;
    background-color: #fff;
}

/* ---------------------------------- About Page END ---------------------------------------------- */

/* ---------------------------------- Contact Page ---------------------------------------------- */
.s-chiefs .d-chief {
    padding: 20px;
    text-align: center;
    border-radius: 20px;
    color: var(--main_color);
    backdrop-filter: blur(12px);
    background-color: #ffffff;
    box-shadow: 0 .5rem 1rem rgba(255, 255, 255, .15);
}

.s-chiefs .d-chief .img_wrapper {
    max-width: 200px;
    aspect-ratio: 1 / 1;
    border-radius: 100%;
    overflow: hidden;
    margin: 0 auto;
    border: 4px solid #fff;
    background-color: var(--sec_color);
    margin-bottom: 15px;
    box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .15);
}

.s-members .d-member {
    padding: 15px;
    height: 100%;
    border-radius: 20px;
    background-color: #ffffff;
    box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .15);
}

.s-members .d-member p {
    margin-bottom: 0;
}

.s-members .d-member .img_wrapper {
    max-width: 120px;
    aspect-ratio: 1 / 1;
    border-radius: 100%;
    overflow: hidden;
    border: 4px solid #fff;
    background-color: var(--sec_color);
    margin-bottom: 15px;
    box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .15);
}

.s-map .d-content {
    padding: 20px;
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
    border-radius: 12px;
    background-color: #ffffff;
    box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .15);
}

.s-map .row>* .d-content:last-child {
    margin-bottom: 0;
}

/* ---------------------------------- View Tables Pages ---------------------------------------------- */
.s-view .table img {
    max-width: 60px;
    max-height: 60px;
    object-fit: contain;
}

.s-view .table .main_bg>tr>th {
    color: #fff;
    padding: 10px;
    font-weight: 400;
    white-space: nowrap;
    background-color: var(--main_color);
}

.s-view .table .large_cell {
    min-width: 300px;
}