@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,100..900;1,100..900&display=swap');

/* ------------------- */
/* Custom properties   */
/* ------------------- */

:root {
    --primary-color: #263a7f;
    --white-color: #fff;
    --secondry-color: #e62426;
    --accent-color: #ffcc01;
    --light-bg: rgba(158, 190, 230, .322);
    --light-blue-color: #bbd3ed;
    --lightbg-blue-color: #e0eaf7;
    --grey-color: #e9e7e2;
    --darkgrey-color: #3c3c3c;
    --light-grey-color: #8a8c8c;
    --greybg-color: #dddad3a6;
    --dark-blue: #9ec0e6;
}

/* ------------------- */
/* Reset               */
/* ------------------- */


/* Box sizing */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    line-height: 1.5;
    min-height: 100vh;
    text-rendering: optimizeSpeed;
    font-family: "Noto Sans", sans-serif;

    /* font-family: "Be Vietnam Pro", sans-serif; */
    font-style: normal;
    font-weight: 400;
    overflow-x: hidden;
}

/* Reset margins */
body,
h1,
h2,
h3,
h4,
h5,
p,
figure,
picture {
    margin: 0;
    padding: 0;
}


a {
    text-decoration: none;
    color: inherit;
}

ul,
ol {
    list-style: none;
    padding: 0;
}

/* make images easier to work with */
img,
picture {
    max-width: 100%;
    display: block;
}

/* make form elements easier to work with */
input,
button,
textarea,
select {
    font: inherit;
}

button {
    background: none;
    color: inherit;
    border: none;
    padding: 0;
    font: inherit;
    cursor: pointer;
    outline: inherit;
}


/* remove animations for people who've turned them off */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Remove autofill background color */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
    transition: background-color 5000s ease-in-out 0s;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
    font: inherit;
}

h1 {
    font-size: 2.2rem;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 1rem;
}

p {
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.bg-lightbg-blue {
    background-color: var(--lightbg-blue-color);
}

.bg-light-blue {
    background-color: var(--light-blue-color);
}

.bg-primary-blue {
    background-color: var(--primary-color);
}


.peach-bg {
    background: #e9e7e2;
}

.waves {
    pointer-events: none;
    top: -200px;
    left: 0;
    right: 0;
    margin: auto;
    position: absolute;
    animation: waves 5s ease-in-out infinite;
}

@keyframes waves {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.035);
    }

    100% {
        transform: scale(1);
    }
}


.read-more {
    display: block;
    vertical-align: middle;
    width: max-content;
    border: none;
    outline: none !important;
    background-color: var(--primary-color);
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    border-radius: 0;
    letter-spacing: 0;
    padding: 14px 26px;
    transition: 500ms;
    border-radius: 100px;
    text-transform: capitalize;
    position: relative;
    overflow: hidden;
    text-align: center;
    z-index: 9;
    cursor: pointer;
    margin-top: 1rem;
}

.read-more.yellow {
    background-color: var(--secondry-color);
}

.read-more::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    border-top: 30px solid var(--secondry-color);
    border-bottom: 30px solid var(--secondry-color);
    border-right: 30px solid transparent;
    transform: translateX(-100%);
    transition: 0.6s;
    z-index: -1;
}

.read-more::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    border-top: 30px solid var(--secondry-color);
    border-bottom: 30px solid var(--secondry-color);
    border-left: 30px solid transparent;
    transform: translateX(100%);
    transition: 0.6s;
    z-index: -1;
}

.read-more.yellow::before,
.read-more.yellow::after {
    border-top: 30px solid var(--primary-color);
    border-bottom: 30px solid var(--primary-color);
}

.read-more:hover {
    color: #fff;
}

.read-more.yellow:hover {
    color: #fff;
}

.read-more:hover::before {
    transform: translateX(-20%);
}

.read-more:hover::after {
    transform: translateX(20%);
}

/* .read-more:active {
    transform: scale(0.9);
} */

/* Header navbar  */

.header-sticky {
    transition: 0.3s ease-in;
    border-bottom: 1px solid #0000001f;
    background-color: #fcfcfc
}

.header-sticky.sticky-top {
    animation: 0.5s ease-in-out slideInDown;
}

@-webkit-keyframes slideInDown {
    0% {
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
        visibility: visible;
    }

    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
}

@keyframes slideInDown {
    0% {
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
        visibility: visible;
    }

    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
}

.d-l-n {
    display: block;
}

.d-l-n-2 {
    display: block;
}

.d-l-v {
    display: none;
}

.d-l-v-2 {
    display: none;
}

.header .nav-item {
    display: flex;
    align-items: center;
    position: relative;
}

.header .nav-link {
    font-size: 15px;
    font-weight: 500;
    text-transform: uppercase;
    color: var(--primary-color) !important;
    position: relative;
    padding: 10px 14px !important;
}

.header .nav-item:last-child .nav-link {
    padding-right: 0 !important;
}

.header .nav-item:focus .nav-link,
.header .nav-item:hover .nav-link {
    color: var(--secondry-color) !important;
    /* background-color: var(--lightbg-blue-color); */
}

.header .nav-link .text {
    position: relative;
}

.header .nav-link .text:before {
    content: "";
    position: absolute;
    height: 2px;
    bottom: -4px;
    left: 0;
    background: var(--primary-color);
    width: 100%;
    transform: scaleX(0);
    transform-origin: bottom right;
    transition: transform 0.25s ease-out;
}

/* .header .nav-item:hover .nav-link .text:before {
    transform: scaleX(1);
    transform-origin: bottom left;
} */

.header .nav-item.active .nav-link {
    color: var(--secondry-color) !important;
    /* background-color: var(--lightbg-blue-color); */
}

.header .nav-item.active .nav-link .text:before {
    transform: scaleX(1);
    transform-origin: bottom left;
}

.Logo {
    /* max-height: 3rem; */
    max-width: 270px;
}

.navbar-toggler {
    border: none !important;
}

.navbar-toggler:focus {
    box-shadow: none !important;
}


.submenu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: white;
    list-style: none;
    min-width: 16rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 100;
}

.nav-item:hover>.submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-item:last-child .submenu {
    left: auto;
    right: 0;
}

.submenu li {
    border-bottom: 1px solid #ededed;
}

.submenu li a {
    display: block;
    padding: 0.75rem 1.2rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 400;
    transition: all 0.3s ease;
    /* border-left: 3px solid transparent; */
}

.submenu li a:hover {
    color: var(--secondry-color);
    /* border-left-color: var(--secondry-color); */
    /* padding-left: 1.75rem; */
}

/* .dropdown-arrow {
    display: inline-block;
    margin-left: 0.2rem;
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.nav-item:hover .dropdown-arrow {
    transform: rotate(180deg);
} */

.top-links {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;

}

.top-links a {
    text-decoration: none;
    color: var(--primary-color);
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: color 0.3s;
    padding: 4px 12px;
    border-right: 1px solid #e9ecef;
    font-weight: 500;
}

.top-links a:last-child {
    border-right-color: var(--primary-color);
}

.top-links a:hover {
    color: var(--secondry-color);
}

.top-links a i {
    width: 16px;
}

.top-nav__links {
    display: flex;
    align-items: center;
    gap: 0px;
    justify-content: end;
    padding-top: 12px;
}


.download-brochure {
    border: 1px solid var(--primary-color);
    border-radius: 5px;
    padding: 5px 8px;
}

.navbar-toggler-icon {
    width: 25px;
    height: 25px;
}

.nav-link.has-submenu i {
    display: none;
}

/* removed search-box input styling and updated for icon-only search */
/* .search-box {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-left: 18px;
}

.search-icon {
    font-size: 18px;
    color: #666;
    cursor: pointer;
    transition: color 0.3s;
}

.search-icon:hover {
    color: var(--secondry-color);
}

.search-bar {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%;
    height: 80px;
    background: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border-top: 1px solid #ddd;
    display: none;
    align-items: center;
    z-index: 999;
}

.search-bar.active {
    display: flex;
}

.search-input {
    flex: 1;
    height: 50px;
    border: none;
    font-size: 18px;
    outline: none;
    padding: 0 12px;
} */

/* removed search-box input styling and updated for icon-only search */
.search-box {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-left: 10px;
}

.search-icon {
    font-size: 16px;
    color: #666;
    cursor: pointer;
    transition: color 0.3s;
}

.search-icon:hover {
    color: var(--secondry-color);
}

.search-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border-top: 1px solid #ddd;
    display: none;
    align-items: center;
    z-index: 999;
}

.search-bar::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.85);
    z-index: -1;
    backdrop-filter: blur(4px);
}

.search-bar.active {
    display: flex;
}

.search-bar form {
    max-width: 800px;
}

.search-input {
    flex: 1;
    height: 100px;
    border: none;
    font-size: 20px;
    outline: none;
    padding: 0 50px;
    background: transparent;
    border: 4px solid white;
    border-radius: 100px;
    color: white;
    width: 100%;
}


.search-close-btn {
    position: absolute;
    top: 120px;
    right: 100px;
    color: white;
    font-size: 1.5rem;
    z-index: 1;
}

.search-icon-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 40px;
    color: white;
    font-size: 1.5rem;
    z-index: 1;
}


.custom-form .form-control {
    border-bottom-right-radius: 0;
    border-top-right-radius: 0;
    border-right: none;
}

.custom-form .form-control:focus {
    box-shadow: none;
    border-color: var(--secondry-color);
}

.custom-form .btn.btn-outline-primary {
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    font-weight: 500;
    transition: all 0.3s ease;
    border-bottom-left-radius: 0;
    border-top-left-radius: 0;
}

.custom-form .btn.btn-outline-primary:hover {
    background-color: var(--primary-color);
    color: var(--white-color);
}

.hero-section {
    height: 85vh;
}

.hero-section .splide__pagination {
    bottom: 1.5rem !important;
}

.splide__pagination {
    bottom: -1.5rem;
}

.splide__pagination__page {
    border-radius: 10px !important;
    height: 0.6rem !important;
    transition: all .2s linear !important;
    width: 0.6rem !important;
    margin: 5px !important;

}

.splide__pagination__page.is-active {
    transform: scale(1) !important;
    width: 2rem !important;
    height: 0.6rem !important;
    border-radius: 10px !important;
    background-color: var(--secondry-color);
    opacity: 1 !important;
}

.hero-section_track,
.splide__list,
.hero-banner {
    height: 100%;
}

.hero-banner_slide {
    height: 100%;
    position: relative;
}

.hero-banner-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-content {
    position: absolute;
    inset: 0;
    text-align: center;
    color: #fff;
    z-index: 10;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.4);
}

.hero-title {
    font-size: clamp(2rem, 1rem + 3.2vw, 2.8rem);
    font-weight: 700;
    margin-bottom: 15px;
}

.hero-description {
    font-size: 1.3rem;
    margin-bottom: 25px;
    line-height: 1.6;
    font-weight: 400;
}

.hero-btn {
    display: inline-block;
    background: #ffcc01;
    color: #000;
    padding: 18px 30px;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
    font-weight: 600;
    font-size: 20px;
    margin-top: 10px;
}

.hero-btn:hover {
    background: var(--primary-color);
    color: white;
}


/* .splide__pagination__page {
    border-radius: 10px !important;
    height: 0.6rem !important;
    transition: all .2s linear !important;
    ;
    width: 0.6rem !important;
    margin: 5px !important;
    background-color: var(--primary-color);
}

.splide__pagination__page.is-active {
    transform: scale(1) !important;
    width: 2rem !important;
    height: 0.6rem !important;
    border-radius: 10px !important;
} */

.section-intro {
    font-size: clamp(0.875rem, 0.8438rem + 0.1vw, 0.9rem);
    font-weight: 500;
    color: var(--secondry-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 6px;
}

.section-padding {
    padding: 3rem 0;
}

.section-padding-top {
    padding-top: 5rem;
}

.section-heading {
    font-size: clamp(1.6rem, 0.975rem + 2vw, 2.1rem);
    font-weight: 600;
    color: var(--primary-color);
}

.section-desc {
    font-size: clamp(1rem, 0.7656rem + 0.75vw, 1.1875rem);
    text-align: center;
    margin-bottom: 2rem;
}

.project-img {
    max-width: 495px;
    margin-right: 25px;
    z-index: 9;
    height: 32rem;
    position: relative;
    margin-left: auto;
}

.project-img::before {
    content: "";
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    background-color: var(--light-blue-color);
    transition: all 0.3s ease-in-out;
    border-radius: 10px;
    /* z-index: 1; */
}

.project-img:hover::before {
    border-color: var(--secondry-color);
}

.project-img img {
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: all 0.3s ease-in-out;
    border-radius: 10px;
}

.project-img-2 {
    position: absolute;
    bottom: 40px;
    left: -18%;
    max-width: 310px;
    max-height: 200px;
    height: 200px;
    padding: 8px;
    background-color: white;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.25);
}

.project-img-2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 0;
}

.project__desc {
    font-size: 19px;
}

.product-card {
    display: flex;
    flex-direction: column;
    /* background-color: var(--lightbg-blue-color); */
    position: relative;
    border: 0.5px solid var(--lightbg-blue-color);
    transition: all 0.3s ease-in-out;
    height: 100%;
    /* gap: 4px; */
    /* padding: 0.5rem; */
    border-radius: 16px;
}

.product-card:hover {
    border-color: var(--light-blue-color);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.product-card__content {
    /* position: absolute;
    z-index: 1;
    right: 30px;
    top: 85%;
    left: 30px; */
    /* position: relative; */
    padding: 25px 10px 25px 10px;
    overflow: hidden;
    /* background: rgb(255, 255, 255); */
    background-color: var(--primary-color);
    display: flex;
    color: white;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
    border-radius: 0 0 10px 10px;
    flex: 1;
}

/* .product-card__content .product-card__link {
    height: 40px;
    width: 40px;
    line-height: 40px;
    text-align: center;
    color: rgb(255, 255, 255);
    background: var(--secondry-color);
    margin: 0px 0px 0px 30px;
    border-radius: 0px 0px 12px;
    flex-shrink: 0;
    transition: all 0.3s ease-in-out;
}

.product-card__content .product-card__link:hover {
    background: var(--primary-color);
}

.product-card__content .product-card__link i {
    font-size: 22px;
} */

.product-card__content .pro-link {
    display: flex;
    align-items: center;
    font-size: 16px;
    font-weight: 500;
    color: var(--primary-color);
    transition: all 0.3s ease-in-out;
    position: absolute;
    bottom: -24px;
    left: 50%;
    transform: translate(-50%, 20px);
    background-color: var(--light-blue-color);
    border-radius: 5px;
    padding: 3px 8px 3px 16px;
    opacity: 0;
    visibility: hidden;

}

.product-card__content .pro-link i {
    font-size: 24px;
    transition: all 0.3s ease-in-out;
}

/* .product-card__content .pro-link:hover {
    color: var(--primary-color);
} */

.product-card__content .pro-link:hover i {
    transform: rotate(180deg);
}

.product-card:hover .product-card__content .pro-link {
    transform: translate(-50%, 0px);
    opacity: 1;
    visibility: visible;
}

/* .product-splide__track {
    padding-bottom: 5rem;
} */

.product-splide__track {
    padding-top: 1rem;
    padding-bottom: 2rem;
}

.product-card__img {
    width: 100%;
    /* height: 345px; */
    overflow: hidden;
    position: relative;
    border-radius: 16px 16px 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* .product-card__img a {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-color);
    transform: translateY(1rem);
    opacity: 0;
    transition: all 0.3s ease-in-out;
    visibility: hidden;
    z-index: 1;
    color: #fff;
    font-size: 30px;
}

.product-card__img a:hover {
    background-color: var(--accent-color);
    color: #000;
}

.product-card:hover .product-card__img a {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
} */

.product-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: all 0.3s ease-in-out;
    border-radius: 10px 10px 0 0;
    /* transform: scale(0.98); */
}

.product-card:hover .product-card__img img {
    transform: scale(1.1);
}

.product-card__title {
    font-size: 1.1rem;
    font-weight: 500;
    color: white;
    transition: all 0.3s ease;
    line-height: 1.3;
}

.product-card__title:hover {
    color: var(--secondry-color);
}

.splide__arrow--prev {
    left: -2.5rem;
}

.splide__arrow--next {
    right: -2.5rem;
}

.splide__arrow {
    width: 3rem;
    height: 3rem;
    border-radius: 0;
}

.border-right {
    border-right: 1px dashed var(--primary-color);
}

.border-left {
    border-left: 1px dashed var(--primary-color);
}

.section-heading.news {
    font-size: 1.4rem;
}

/* .news__img {
    width: 50%;
    margin-bottom: 14px;
} */

.news-wrapper {
    display: flex;
    gap: 22px;
    margin-top: 1.5rem;
    align-items: center;
}

.news__img {
    width: 9.5rem;
    height: 9.5rem;
    flex-shrink: 0;
    overflow: hidden;
    border-radius: 10px;

}

.new__date {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-bottom: 10px;
    font-size: clamp(0.875rem, 0.7188rem + 0.5vw, 1rem);
}

.new__date i {
    color: var(--secondry-color);
    font-size: clamp(0.9375rem, 0.7813rem + 0.5vw, 1.0625rem);
}

.new__date span {
    font-weight: 600;
    color: #333;
}

.news__title {
    font-size: clamp(1rem, 0.75rem + 0.8vw, 1.2rem);
    font-weight: 500;
    line-height: 1.4;
    color: var(--primary-color);
    transition: all 0.3s ease;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    overflow: hidden;
    width: 90%;
}

.news__title:hover {
    color: var(--secondry-color);
}

.news__desc {
    font-size: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    overflow: hidden;
    margin-bottom: 8px;
}

.project-update {
    margin-top: 8px;
}

.project-update__img {
    margin-bottom: 16px;
    max-height: 178px;
    width: 100%;
    height: 178px;
    overflow: hidden;
    border-radius: 10px;
    position: relative;
}

.project-update__img:after {
    content: "";
    position: absolute;
    width: 200%;
    height: 0%;
    left: 50%;
    top: 50%;
    background-color: rgba(255, 255, 255, .3);
    transform: translate(-50%, -50%) rotate(-45deg);
    z-index: 1;
}

.project-update:hover .project-update__img:after {
    height: 250%;
    transition: all 600ms linear;
    background-color: transparent;
}

.project-update__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: all 0.3s ease-in-out;
}

.project-update:hover .project-update__img img {
    transform: scale(1.1);
}

.project__title {
    font-size: clamp(1.1rem, 0.975rem + 0.4vw, 1.2rem);
    font-weight: 500;
    line-height: 1.4;
    transition: all 0.3s ease;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    overflow: hidden;
}

.project__title:hover {
    color: var(--secondry-color);
}

.proj__desc {
    font-size: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    overflow: hidden;
    margin-bottom: 8px;
}

.read-all {
    display: flex;
    align-items: center;
    font-size: 16px;
    gap: 6px;
    transition: all 0.3s ease;
    color: var(--secondry-color);
    font-weight: 600;
}

.read-all i {
    transition: all 0.3s ease;
    font-size: 24px;
}

.read-all:hover {
    color: var(--primary-color)
}

.read-all:hover i {
    transform: translateX(5px);
    color: var(--secondry-color);
}

.certification p {
    font-size: 15px;
    margin-bottom: 0.3rem;
}

.project p {
    font-size: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    overflow: hidden;
    margin-bottom: 6px;
}

.capacity-wrapper {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 16px;
    padding-inline: 10px;
}

.capacity-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    text-align: center;
    padding-block: 20px;
    border: 1px solid var(--light-grey-color);
    border-radius: 10px;
    transition: all 0.3s ease-in-out;
}

.capacity-item:hover {
    border: 1px solid var(--secondry-color);
}

.capacity-item p {
    margin-bottom: 0;
}

.capacity-icon {
    width: 70px;
    height: 70px;
}

.capacity-icon svg {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.capacity-number {
    font-size: clamp(1.75rem, 1.2813rem + 1.5vw, 2.125rem);
    font-weight: 300;
    color: var(--secondry-color);
}

.capacity-title {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.5;
    color: var(--primary-color);

}

/* About Page Style Start */

.breadcrumb-wrapper {
    position: relative;
    padding: 100px 0px;
    overflow: hidden;
}

.breadcrumb__img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: -1;
}

/* .breadcrumb-wrapper::before {
    content: "";
    display: block;
    position: absolute;
    top: 0px;
    bottom: 0px;
    left: 0px;
    right: 0px;
    width: 100%;
    height: 100%;
    z-index: 0;
    background: linear-gradient(270deg, rgba(0, 0, 0, 0) 23.99%, rgba(0, 0, 0, 0.8) 100%);
} */

.breadcrumb-wrapper h1 {
    color: white;
    font-size: 60px;
    font-weight: 400;
    line-height: 1.2em;
    letter-spacing: -0.01em;
    margin-bottom: 5px;
    cursor: none;
}


.breadcrumb-wrapper ol li.breadcrumb-item {
    text-transform: capitalize;
    color: white;
}

.breadcrumb-wrapper ol li.breadcrumb-item.active {
    color: var(--primary-color);
    font-weight: 600;
}

.breadcrumb-wrapper ol .breadcrumb-item+.breadcrumb-item::before {
    content: "\f111";
    font-family: "FontAwesome";
    font-size: 6px;
    color: var(--primary-color);
    margin-top: 9px;
}

.breadcrumb-item+.breadcrumb-item {
    padding-left: 1rem;
}

.about-img {
    height: 20rem;
}

.about-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.about-heading {
    font-size: 30px;
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 1rem;
}

.why-work {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    height: 100%;
}

.why-work__img {
    margin-bottom: 10px;
    max-height: 230px;
    width: 100%;
    overflow: hidden;
    position: relative;
}

.why-work__img:after {
    content: "";
    position: absolute;
    width: 200%;
    height: 0%;
    left: 50%;
    top: 50%;
    background-color: rgba(255, 255, 255, .2);
    transform: translate(-50%, -50%) rotate(-45deg);
    z-index: 1;
}

.why-work:hover .why-work__img:after {
    height: 250%;
    transition: all 600ms linear;
    background-color: transparent;
}

.why-work__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: all 0.3s ease-in-out;
}

.why-work:hover .why-work__img img {
    transform: scale(1.1);
}

.why-work__content {
    padding: 16px 18px;
}

.why-work__title {
    font-size: 22px;
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.why-work__para {
    font-size: 18px;
    margin-bottom: 16px;
}

.about-desc {
    font-size: 19px;
    /* color: var(--primary-color); */
}

.feedback-form-title {
    color: var(--primary-color);
    font-size: 25px;
    font-weight: 500;
    margin-bottom: 1rem;
    text-align: center;
}

.feedback-button {
    color: var(--secondry-color);
    text-decoration: underline;
    text-underline-offset: 4px;
    font-weight: 400;
    transition: all 0.3s ease-in-out;
}

.feedback-button:hover {
    color: var(--primary-color);
}

.rs-about-twelve .rs-about-wrapper {
    position: relative;
    z-index: 1;
}

.rs-about-twelve .rs-about-shape {
    position: absolute;
    inset-inline-end: 50px;
}

.rs-about-twelve .rs-about-thumb {
    width: 375px;
    height: 245px;
    object-fit: cover;
}

.rs-about-twelve .rs-about-thumb img {
    width: 100%;
}

.rs-about-twelve .rs-about-content {
    padding: 30px 40px 30px 30px;
    background: var(--lightbg-blue-color);
    border-bottom: 4px solid var(--primary-color);
    border-radius: 4px;
    margin-inline-start: 215px;
    /* margin-inline-start: 180px; */
    margin-top: -150px;
    position: relative;
    z-index: 1;
    min-height: 366px;
}

.rs-about-twelve .rs-about-title {
    margin-bottom: 15px;
    font-size: 24px;
    color: var(--primary-color);
    font-weight: 500;
}

.mission-text {
    position: relative;
    font-size: 19px;
}

.mission-text::before {
    position: relative;
    display: inline-block;
    content: "\f10d";
    font-family: "FontAwesome";
    font-size: 24px;
    color: var(--dark-blue);
    top: -6px;
    left: -8px;
}

.mission-text::after {
    position: relative;
    display: inline-block;
    content: "\f10e";
    font-family: "FontAwesome";
    font-size: 24px;
    color: var(--dark-blue);
    top: 6px;
    right: -8px;
}

.mission-wrapper {
    border: 1px solid var(--lightbg-blue-color);
    padding: 1.5rem;
    border-radius: 16px;
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.mission-wrapper::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0%;
    height: 0%;
    transition: all .4s ease-in-out;
    background-color: var(--lightbg-blue-color);
    z-index: -1;
}

.mission-wrapper.active::before {
    width: 100%;
    height: 100%;
}

.mission-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    background-color: white;
    border-radius: 8px;
    margin-bottom: 2rem;
    border: 1px solid var(--lightbg-blue-color);
}

.mission-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.mission-title {
    font-size: 24px;
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.mission-desc {
    font-size: 18px;
    margin-bottom: 0;
    color: var(--primary-color);
}

/* .mission .col-lg-4:nth-child(2) .mission-wrapper {
    background-color: var(--lightbg-blue-color);
} */

.compass-img {
    max-height: 28rem;
    height: 100%;
}

.compass-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.leader-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.leader-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    border-radius: 5px;
    background-color: var(--lightbg-blue-color);
    overflow: hidden;
}

.leader-wrapper .leader-content {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 0%;
    transition: all .4s ease-in-out;
    background-color: var(--light-blue-color);
    z-index: 1;
    overflow: hidden;
    border-radius: 5px;
}

.leader-wrapper:hover .leader-content {
    height: 100%;
}

.leader-grid .leader-grid-item:last-child .leader-wrapper .leader-content {
    left: auto;
    right: 0;
}

.leader-img {
    width: 100%;
    /* height: 470px; */
}

.leader-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}

.leader-name {
    font-size: 18px;
    color: var(--primary-color);
    font-weight: 500;
    margin-top: 16px;
}

.leader-title {
    font-size: 16px;
    color: var(--primary-color);
}

.leader-content {
    display: flex;
    flex-direction: column;
}

.leader-content__name {
    font-size: 24px;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0;
    padding: 1rem 1rem 0rem 1rem;
}

.leader-content__title {
    font-size: 18px;
    font-weight: 400;
    color: var(--primary-color);
    padding-inline: 1rem;
}

.leader-content__desc {
    font-size: 16px;
    color: black;
    margin-bottom: 0;
    padding-inline: 1rem;
}

.scope-objective-title {
    font-size: 22px;
    font-weight: 400;
    color: var(--secondry-color);
    margin-bottom: 10px;
}

.scope-objective-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-inline: 2rem;
    margin-bottom: 1.5rem;
}

.scope-objective-list-item-icon {
    color: var(--secondry-color);
}

.scope-objective-list-item {
    display: flex;
    align-items: start;
    gap: 10px;
    margin-top: 10px;
    padding: 0;
    border: none;
}

.list-group-numbered>.list-group-item::before {
    margin-top: 4px;
    color: var(--secondry-color);
}

.scope-objective-list-item-text {
    font-size: 18px;
    font-weight: 300;
}

.environment-box {
    border-radius: 10px;
    background-color: var(--lightbg-blue-color);
    padding: 1.5rem;
    position: relative;
    overflow: hidden;
    height: 100%;
    margin-top: 1rem;
    border: 2px solid transparent;
    transition: all .4s ease-in-out;
}

.environment-box:hover {
    border: 2px solid var(--primary-color);
}

.environment-icon {
    width: 75px;
    height: 75px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    border: 3px solid var(--dark-blue);
    padding: 1rem;
    background-color: white;
}

.environment-box p {
    font-size: 18px;
}

.environment-link {
    position: absolute;
    right: 1rem;
    bottom: 1rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: white;
    font-size: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease-in-out;
    transform: translateY(60px);
    opacity: 0;
    visibility: hidden;
}

.environment-link:hover {
    background-color: var(--secondry-color);
    color: white;
}

.environment-link i {
    transform: rotate(-45deg);
    transition: all 0.3s ease-in-out;
}

.environment-link:hover i {
    transform: rotate(0deg);
}

.environment-link-2 {
    color: var(--primary-color);
    font-weight: 500;
    position: absolute;
    transition: all 0.3s ease-in-out;
    /* transform: translateY(60px); */
    opacity: 0;
    visibility: hidden;
    left: 50%;
    transform: translate(-50%, 60px);
    width: 100%;
    display: flex;
    gap: 10px;
    padding-inline: 1.5rem;
}

.environment-box:hover .environment-link-2 {
    /* transform: translateY(0); */
    transform: translate(-50%, 0px);
    opacity: 1;
    visibility: visible;
}

.environment-link-2:hover {
    color: var(--secondry-color);
}

.environment-box:hover .environment-link {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.environment-icon-2 {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    /* margin-top: 1.5rem; */
    margin-bottom: 20px;
    border: 3px solid var(--dark-blue);
    padding: 1.1rem;
}

#textWrapper .about-desc {
    display: none;
}

#textWrapper .about-desc:first-of-type {
    display: block;
}


/* About Page Style End */


/* Inner Page Styling Start */

/* .breadcrumb-wrapper-2 {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding-block: 1rem;
} */

.breadcrumb-wrapper-2 ol li.breadcrumb-item {
    text-transform: capitalize;
    color: white;
}

.breadcrumb-wrapper-2 ol li.breadcrumb-item.active {
    color: white;
    font-weight: 600;
}

.breadcrumb-wrapper-2 ol .breadcrumb-item+.breadcrumb-item::before {
    content: "\f105";
    font-family: "FontAwesome";
    font-size: 16px;
    color: white;
    margin-top: 1px;
}

.breadcrumb-item+.breadcrumb-item {
    padding-left: 1rem;
}

.breadcrumb-wrapper-2__content {
    position: absolute;
    bottom: 0;
    left: 0;
    padding-block: 40px;
    z-index: 1;
}

.breadcrumb-wrapper-2__content h2 {
    /* font-size: 50px; */
    font-size: clamp(1.875rem, 0.3125rem + 5vw, 3.125rem);
    color: white;
    font-weight: 500;
    margin-bottom: 1rem;
}

.breadcrumb-wrapper-2__img {
    position: relative;
    z-index: 0;
    overflow: hidden;
    max-height: 25rem;
}

.breadcrumb-wrapper-2__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.breadcrumb-wrapper-2__img::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    /* background: linear-gradient(90.1deg, rgba(71, 92, 116, .5) 1.59%, rgba(158, 192, 230, 0) 99.59%); */
    background: linear-gradient(90.1deg, rgb(71 92 116 / 62%) 1.59%, rgb(158 192 230 / 0%) 99.59%);
    width: 100%;
    height: 100%;
    z-index: 1;
    mix-blend-mode: multiply;
}

.sustain-page .about-desc {
    font-weight: 400;
    font-size: 20px;
}

.sustain-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.sustain-img {
    border: 2px solid var(--secondry-color);
    width: 5rem;
    height: 5rem;
    display: flex;
    padding: 14px;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    transition: all 0.3s ease-in-out;
}

.sustain-wrapper:hover .sustain-img {
    border-radius: 50%;
}

.sustain-title {
    text-align: center;
    font-size: 20px;
    color: var(--primary-color);
}

.sustain-object {
    background-color: var(--lightbg-blue-color);
    overflow: hidden;
    border-radius: 8px;
}

.sustain-object-img {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.sustain-object-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sustain-object-content {
    padding: 20px 20px;
}

.sustain-object-title {
    font-size: 20px;
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 10px;
}

.sustain-object-desc {
    font-size: 18px;
    color: var(--primary-color);
    margin-bottom: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    overflow: hidden;
}

.read-more-2 {
    display: block;
    vertical-align: middle;
    width: max-content;
    border: none;
    outline: none !important;
    background-color: var(--primary-color);
    color: #ffffff;
    font-size: 16px;
    font-weight: 400;
    border-radius: 0;
    letter-spacing: 0;
    padding: 4px 16px;
    transition: all 0.3s ease-in-out;
    border-radius: 100px;
    margin-top: 1rem;
    display: flex;
    align-items: center;
    gap: 4px;
}

.read-more-2:hover {
    background-color: var(--secondry-color);
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
    transform: translateY(-3px);
}

.read-more-2 i {
    font-size: 24px;
}

.sustain-object-img:after {
    content: "";
    position: absolute;
    width: 200%;
    height: 0%;
    left: 50%;
    top: 50%;
    background-color: rgba(255, 255, 255, .3);
    transform: translate(-50%, -50%) rotate(-45deg);
    z-index: 1;
}

.sustain-object:hover .sustain-object-img:after {
    height: 250%;
    transition: all 600ms linear;
    background-color: transparent;
}

.fs-20 {
    font-size: 20px;
}

.list-number {
    list-style: decimal;
}

.contact-heading {
    font-size: 20px;
    font-weight: 500;
    color: black;
    margin-bottom: 1rem;
}

.contact-address {
    padding-inline: 10px;
    margin-bottom: 2rem;
}

.contact-address p {
    display: flex;
    align-items: start;
    gap: 8px;
    font-size: 16px;
    margin-bottom: 8px;
}

.contact-address p i {
    color: var(--secondry-color);
    margin-top: 4px;
}

.contact-address p span a {
    transition: all 0.3s ease-in-out;
}

.contact-address p span a:hover {
    color: var(--secondry-color);
}

.contact-form {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid var(--lightbg-blue-color);
}

.form-label {
    font-weight: 600;
    margin-bottom: 0.8rem;
    display: block;
}

.form-control {
    border: 2px solid var(--lightbg-blue-color);
    border-radius: 12px;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.form-select {
    background-color: #f8f9fa;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(102, 107, 177, 0.25);
    background: white;
}

.required {
    color: #dc3545;
}

.compass-wrapper {
    display: flex;
    /* flex-direction: column; */
    gap: 1.5rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.compass-item {
    display: flex;
    align-content: center;
    gap: 14px;
}

.compass-color {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    flex-shrink: 0;
}

.compass-color.white {
    background-color: white;
}

.compass-color.blue {
    background-color: #263A7F;
}

.compass-color.red {
    background-color: var(--secondry-color);
}

.compass-title {
    font-size: 24px;
    font-weight: 300;
    line-height: 1;
    color: var(--primary-color);
}

.value-img {
    height: 30rem;
    position: relative;
}

.value-img .value-heading {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 20px 54px;
    z-index: 2;
}

.value-img .value-heading h3 {
    font-size: 30px;
    font-weight: 500;
    color: white;
}

.value-img .value-heading p {
    font-size: 45px;
    font-weight: 300;
    color: white;
}

.value-img:before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: linear-gradient(90.1deg, rgba(71, 92, 116, .5) 1.59%, rgba(158, 192, 230, 0) 99.59%);
    width: 100%;
    height: 100%;
    z-index: 1;
    mix-blend-mode: multiply;
}

.value-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: right;
}

.value-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.value-item {
    padding: 1rem;
}

.value-title {
    font-size: 24px;
    font-weight: 500;
    color: var(--secondry-color);
    margin-bottom: 8px;
}

.value-desc {
    font-size: 18px;
    font-weight: 300;
    color: var(--primary-color);
}

.value-wrapper .value-item:nth-child(1) {
    border-right: 1px solid var(--lightbg-blue-color);
    border-bottom: 1px solid var(--lightbg-blue-color);
}

.value-wrapper .value-item:nth-child(2) {
    border-bottom: 1px solid var(--lightbg-blue-color);
}

.value-wrapper .value-item:nth-child(3) {
    border-right: 1px solid var(--lightbg-blue-color);
}

.misr-section .nav-pills {
    width: 100%;
    justify-content: space-between;
    border: 1px solid var(--lightbg-blue-color);
    border-radius: 16px;
    overflow: hidden;
    padding: 5px;
    gap: 10px;
    flex-wrap: nowrap;
}

.misr-section .nav-pills .nav-item {
    flex: 1;
}

.misr-section .nav-pills .nav-item .nav-link {
    width: 100%;
    border-radius: 10px;
    font-size: 20px;
    font-weight: 500;
    color: white;
}

.misr-section .nav-pills .nav-link.active,
.misr-section .nav-pills .show>.nav-link {
    background-color: var(--lightbg-blue-color);
    color: var(--primary-color);
}


.misr-section .tab-content .tab-pane {
    font-size: 18px;
    font-weight: 300;
    color: white;
    position: relative;
}

.misr-section .tab-content .tab-pane::before {
    position: relative;
    display: inline-block;
    content: "\f10d";
    font-family: "FontAwesome";
    font-size: 20px;
    color: var(--lightbg-blue-color);
    top: -6px;
    left: 0;
}

.misr-section .tab-content .tab-pane::after {
    position: relative;
    display: inline-block;
    content: "\f10e";
    font-family: "FontAwesome";
    font-size: 20px;
    color: var(--lightbg-blue-color);
    top: 6px;
    right: 0;
}

.news-page .project-update__img {
    max-height: 264px;
}

.news-page .project__title {
    color: var(--primary-color);
}

.news-page .project__title:hover {
    color: var(--secondry-color);
}

.news-page .news__desc {
    font-size: 18px;
    -webkit-line-clamp: 3;
    margin-bottom: 8px;
}

.project-update-coming-soon {
    background-color: var(--light-blue-color);
    border-radius: 8px;
    padding: 10px;
    height: 330px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--primary-color);
    font-weight: 500;
    margin-top: 25px;
}

.project-update-coming-soon p {
    font-size: 22px;
}


.gallery-wrapper {
    width: 100%;
    background-color: var(--lightbg-blue-color);
    border-radius: 8px;
    padding: 10px;
}

.gallery-img {
    display: block;
    height: 200px;
    width: 100%;
    position: relative;
    overflow: hidden;
    border-radius: 6px;
}

.gallery-img .gallery-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0px;
    height: 0px;
    background-color: rgba(255, 255, 255, 0.514);
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease-in-out;
    opacity: 0;
    visibility: hidden;
    backdrop-filter: blur(1px);
}

.gallery-img:hover .gallery-icon {
    width: 70px;
    height: 70px;
    opacity: 1;
    visibility: visible;
    border-radius: 5px;
}

.gallery-img img {
    height: 200%;
    width: 100%;
    object-fit: cover;
    object-position: center;
}

.gallery-icon {
    font-size: 20px;
    color: var(--secondry-color);
}

.gallary-title {
    font-size: 22px;
    font-weight: 500;
    color: var(--primary-color);
    text-align: center;
    margin-top: 16px;
    margin-bottom: 6px;
}

.press-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.press-item {
    padding-block: 2rem;
    border-top: 1px solid var(--primary-color);
}

.press-title {
    font-size: 25px;
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 14px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    overflow: hidden;
}

.press-desc {
    font-size: 18px;
    font-weight: 300;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    overflow: hidden;
}

.product-detail .nav-pills {
    gap: 0;
    justify-content: center;
    width: 65%;
    margin-left: auto;
    margin-right: auto;
}

.product-detail .nav-pills .nav-item {
    flex: 1;
}


.product-detail .nav-pills .nav-item .nav-link {
    border-radius: 0;
    font-size: 22px;
    padding: 1rem 2rem;
    font-weight: 500;
    color: black;
    background-color: var(--grey-color);
    width: 100%;
}

.product-detail .nav-pills .nav-item:first-child .nav-link {
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}

.product-detail .nav-pills .nav-item:last-child .nav-link {
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}

.product-detail .nav-pills .nav-link.active,
.product-detail .nav-pills .show>.nav-link {
    background-color: var(--primary-color);
    color: white;
}


.product-detail .tab-content .tab-pane {
    font-size: 18px;
    font-weight: 300;
    color: white;
    position: relative;
}

.product-detail .scope-objective-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0px;
    padding-inline: 0rem;
    margin-top: 2rem;
    margin-bottom: 1.5rem;
}

.product-detail .scope-objective-list-item-text {
    color: black;
    margin-bottom: 1rem;
}

.product-application {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 2.5rem;
}

.product-page .about-desc {
    font-size: 18px;
}

.product-app-img {
    display: block;
    position: relative;
    overflow: hidden;
}

.product-app-img .product-app-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0px;
    height: 0px;
    background-color: rgba(255, 255, 255, 0.514);
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease-in-out;
    opacity: 0;
    visibility: hidden;
    backdrop-filter: blur(1px);
}

.product-app-img:hover .product-app-icon {
    width: 70px;
    height: 70px;
    opacity: 1;
    visibility: visible;
    border-radius: 5px;
}

.product-app-icon i {
    color: var(--secondry-color);
}

.product-app-item a img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.links {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.links a {
    text-decoration: none;
    color: var(--primary-color);
    font-size: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: color 0.3s ease-in-out;
    border-right: 1px solid #e9ecef;
    font-weight: 500;
}

.links a:hover {
    color: var(--secondry-color);
}

.section-separator {
    border-bottom: 1px solid #495057;
    /* Darker gray divider */
}



.form-container {
    background-color: #ffffff;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    padding: 40px;
    border: 1px solid #e4e4e4;
    /* Bootstrap Primary Blue */
}

.form-label {
    font-weight: 500;
    color: #2b2b2b;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.form-control,
.form-select {
    border-radius: 5px;
    padding: 14px 15px;
    border: 1px solid #ced4da;
    transition: all 0.3s ease;
}

.form-control:focus,
.form-select:focus {
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.15);
    border-color: var(--primary-color);
}

/* Custom File Input Styling */
.file-upload-wrapper {
    position: relative;
    margin-top: 5px;
}

.char-count {
    font-size: 0.8rem;
    color: #6c757d;
    text-align: right;
    margin-top: 5px;
}

.btn-submit {
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    width: 100%;
}

/* Error message styling */
.invalid-feedback {
    font-size: 0.85rem;
}

/* Inner Page Styling End */






.footer {
    background-color: var(--greybg-color);
    border-top: 5px solid var(--secondry-color);
    color: #ddd;
    padding-top: 40px;
    font-size: 15px;
}

/* .footer-logo {
    background-color: white;
    padding: 24px 10px;
} */

/* .footer-logo img {
    width: 12rem;
} */

.footer-logo {
    display: block;
    max-width: 250px;
    max-height: 220px;
}

.footer-social {
    margin-top: 1rem;
    display: flex;
    align-items: center;
}

.footer-social a {
    display: inline-block;
    color: black;
    text-align: center;
    border-radius: 50%;
    margin-right: 16px;
    transition: all 0.3s ease;
    text-decoration: none;
    font-size: 20px;
}

.footer-social a:hover {
    color: var(--secondry-color) !important;
}

.footer-contact {
    margin-bottom: 1.5rem !important;
}

.footer-contact i {
    margin-right: 10px;
    color: var(--secondry-color);
    width: 20px;
}

.footer-top {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 30px;
    /* border-bottom: 1px solid #333; */
    /* padding-bottom: 30px; */
}

.footer-col h4 {
    color: var(--primary-color);
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: 600;
    padding-bottom: 10px;
    position: relative;
}


.footer-col h4::before {
    position: absolute;
    bottom: 0;
    left: 0;
    content: "";
    width: 50px;
    height: 3px;
    background-color: var(--secondry-color);
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 6px;
    color: #000;
}

.footer-col ul li a {
    color: #000;
    text-decoration: none;
    transition: color 0.3s;
    /* font-size: 16px; */
}

.footer-col ul li a:hover {
    color: var(--secondry-color);
}

.footer-col p {
    margin-bottom: 15px;
    line-height: 1.6;
    color: #000;
}

.footer-col a {
    color: #000;
    text-decoration: none;
}

.footer-col a:hover {
    color: #000;
}


.footer-visitor {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 1rem;
    padding-bottom: 1rem;
}

.footer-visitor h5 {
    font-size: 2rem;
}

.footer-visitor p {
    font-size: 2rem;
    font-weight: 200;
    margin-bottom: 0;
}

.footer-bottom {
    text-align: center;
    padding-block: 12px;
    border-top: 1px solid #b3b3b3;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    margin-bottom: 0;
    font-weight: 300;
    font-size: 16px;
    color: #161616;
}

.footer-bottom a:hover {
    color: #fff;
}

.visit-count {
    font-size: 18px !important;
    color: #000 !important;
    background-color: #fff;
    width: max-content;
    padding: 14px 14px;
    margin-bottom: 0 !important;
    margin-top: 1.5rem;
    font-weight: 400 !important;
}

.visit-counter {
    color: #1f1f1f !important;
    font-weight: 300 !important;
}