:root {
    --theme-color-1: #222551;
    --theme-color-2: #83bfea;
    --theme-border-color: #EAECF2;
    --theme-color-3: #f6f6f6;
    --theme-text-color: #5D666F;
    --font-red: "Red Hat Display", sans-serif;
    --font-dm: "DM Sans", sans-serif;
}

* {
    font-family: "DM Sans", sans-serif;
    transition: all 0.5s;
    color: var(--theme-text-color);
}

html {
    scroll-behavior: smooth;
}

h1,
h2,
h3,
h4,
h5 {
    font-family: "Red Hat Display", sans-serif;
}

section {
    padding: 60px 0;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

a {
    text-decoration: none !important;
}

.container-fluid {
    max-width: 1700px;
}

.animate-item {
    opacity: 0;
    transform: translateY(60px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.scroll-animate.active .animate-item {
    opacity: 1;
    transform: translateY(0);
}

/* Scroll activated */
.slide-left {
    transform: translateX(-100px);
    transition: transform 1s ease;
}

.slide-right {
    transform: translateX(100px);
    transition: transform 1s ease;
}

.scroll-animate.active .slide-left,
.scroll-animate.active .slide-right {
    transform: translateX(0);
}

.slide-up {
    transform: translateY(100px);
    transition: transform 1s ease;
}

.slide-down {
    transform: translateY(-100px);
    transition: transform 1s ease;
}

.scroll-animate.active .slide-up,
.scroll-animate.active .slide-down {
    transform: translateY(0);
}

/* Nav Bar */
.secondary-navbar {
    position: relative;
    z-index: 1;
    border-bottom: 1px solid var(--theme-border-color);
    margin-bottom: 90px;
}

.secondary-navbar::before {
    content: '';
    position: absolute;
    top: 0;
    left: -5%;
    width: 40%;
    height: 100%;
    background-color: var(--theme-color-1);
    z-index: -1;
    transform: skew(-20deg);
}

.menutext {
    color: #fff;
}

@media (max-width: 991px) {
    .navbar-custom .nav-link {
        margin-left: 0;
        margin-bottom: 0.5rem;
    }

    .sub-navbar .nav {
        flex-direction: column;
        align-items: center;
    }

    .sub-navbar .nav-link {
        padding: 0.5rem 0;
    }
}

/* Main Navbar */
.header-navigation .navbar-custom {
    background-color: rgb(255, 255, 255);
    transition: background-color 0.3s ease, padding 0.3s ease;
    z-index: 1050;
    top: 41px;
    box-shadow: 0 15px 40px 0 rgba(13.000000000000004, 24.000000000000004, 53, .050980392156862744);
}

.navbar-custom.scrolled {
    top: 0;
}

a.button-link {
    display: inline-flex;
    font-weight: 600;
    align-items: center;
    justify-content: space-between;
    gap: 5px;
}

.menutext a.button-link {
    color: inherit;
}

.button-link i {
    line-height: normal;
    font-size: 18px;
    transition: all 0.5s;
    color: inherit;
}

.button-link:hover i {
    transform: translateX(5px);
}

.button-link {
    color: var(--theme-color-1);
    font-weight: 700;
}

.button-link:hover {
    color: var(--theme-color-2);
}

ul.sub-menu-ul {
    list-style: none;
    padding-left: 0;
    display: flex;
    gap: 10px;
    margin-bottom: 0;
}

li.sub-menu-list {
    font-size: 14px;
    font-weight: 300;
    display: flex;
    align-items: center;
    gap: 5px;
}

li.sub-menu-list.submenu-list-border {
    position: relative;
    padding-right: 10px;
}

li.sub-menu-list.submenu-list-border::after {
    content: '';
    position: absolute;
    width: 1px;
    height: 42px;
    background: var(--theme-border-color);
    right: 0;
    top: -10px;
    transform: skew(-10deg);
    z-index: -1;
}

a.header-social-media-items {
    color: #000;
    font-size: 16px;
    margin-left: 10px;
}

a.header-social-media-items:hover {
    color: var(--theme-color-1);
}

a.header-social-media-items i {
    color: inherit;
}

.main-logo {
    width: 300px;
    height: auto;
}

.nav-contact-icon {
    background: var(--theme-color-3);
    color: var(--theme-color-1);
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 1rem;
}

.nav-contact-icon span {
    color: inherit;
}

.nav-contact-box {
    display: flex;
    gap: 10px;
    align-items: center;
}

.ncc-title {
    font-size: 14px;
}

a.ncc-number {
    font-size: 20px;
    color: var(--theme-color-1);
    font-weight: 600;
}

.btn-button {
    display: inline-block;
    color: #fff;
    padding: 13px 30px;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0;
    background-color: var(--theme-color-1);
    border-radius: 15px;
    transition: all 0.5s;
    text-align: center;
}

.btn-button:hover {
    background-color: var(--theme-color-2);
}

.btn-white {
    color: var(--theme-color-1);
    background: #fff;
}

.btn-white:hover {
    background-color: var(--theme-color-1);
    color: #fff;
}

.navbar-nav .nav-link {
    font-size: 16px;
    font-weight: 500;
    color: var(--theme-color-1);
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link.show {
    color: var(--theme-color-2) !important;
}

@media (min-width: 992px) {
    .nav-item.dropdown:hover .dropdown-menu {
        display: block;
        margin-top: 0;
    }
}

li.nav-item.dropdown ul.dropdown-menu {
    border: none;
    margin: 0;
    border-radius: 0 0 15px 15px;
    border-top: 3px solid var(--theme-color-1);
    padding: 0;
    overflow: hidden;
}

li.nav-item.dropdown ul.dropdown-menu a.dropdown-item {
    padding: 10px 20px;
}

li.nav-item.dropdown ul.dropdown-menu a.dropdown-item.active,
li.nav-item.dropdown ul.dropdown-menu a.dropdown-item:focus {
    background-color: var(--theme-color-2);
    color: #fff;
}

/* Banner */
section.hero-section {
    padding: 0;
}

.hero-section img {
    height: 820px;
    object-fit: cover;
}

.hero-section .carousel-caption {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 60%;
}

.hero-section .carousel-caption h2.banner-title {
    font-size: 85px;
    font-weight: 300;
    text-transform: capitalize;
    color: #fff;
    margin-bottom: 20px;
    display: block;
}

.hero-section .carousel-caption h2.banner-title span.big-text {
    font-weight: 700;
    color: #fff;
}

.hero-section .carousel-caption p {
    font-size: 1.3rem;
    font-weight: 400;
    margin-top: 10px;
}

h5.banner-sub-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
}

section.hero-section .carousel-control-next-icon,
section.hero-section .carousel-control-prev-icon {
    background-color: #f6f6f661;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    overflow: hidden;
    background-size: 40px;
}

/* Banner Animation */
.hero-anim-item {
    opacity: 0;
    transform: translateY(50px);
    transition: transform 0.8s cubic-bezier(.2, .9, .2, 1), opacity 0.8s cubic-bezier(.2, .9, .2, 1);
    will-change: transform, opacity;
}

.hero-anim-show {
    opacity: 1;
    transform: translate(0, 0);
}

.hero-anim-up {
    transform: translateY(100px);
}

.hero-anim-down {
    transform: translateY(-100px);
}

.hero-anim-left {
    transform: translateX(-100px);
}

.hero-anim-right {
    transform: translateX(100px);
}

.hero-anim-show.hero-anim-up,
.hero-anim-show.hero-anim-down,
.hero-anim-show.hero-anim-left,
.hero-anim-show.hero-anim-right {
    transform: translate(0, 0);
}

/* service */
.section-head {
    position: relative;
    z-index: 1;
    display: block;
    margin-bottom: 40px;
}

.sub-title {
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 1px;
    color: #5D666F;
    margin-bottom: 15px;
    text-transform: capitalize;
}

h2.section-title {
    font-size: 48px;
    margin-bottom: 25px;
    font-weight: 700;
    line-height: 63px;
    color: var(--theme-color-1);
}

.big-title {
    line-height: .8;
    color: #fff;
    background-color: #000;
    background-size: 100% 100%;
    background-clip: text;
    -webkit-text-stroke: .5px #fff0;
    font-size: 150px;
    opacity: .30;
    position: absolute;
    left: 0;
    top: -40px;
    right: 0;
    font-family: "Red Hat Display", sans-serif;
    font-weight: 900;
    z-index: -1;
    overflow-wrap: break-word;
}

section.service-section {
    background-image: url(../images/bg/bg-2.jpg);
    margin-top: -220px;
    margin-bottom: 0;
    padding-top: 330px;
    z-index: 0;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

.service-item {
    position: relative;
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    box-shadow: 0 13px 40px rgb(24 16 16 / .0392156863);
    height: 450px;
}

.service-icon {
    width: 100%;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.service-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-number {
    position: absolute;
    width: 50px;
    height: 50px;
    background: #fff;
    z-index: 3;
    top: 0;
    right: 0;
    font-size: 20px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0px 15px 0px 15px;
    color: var(--theme-color-1);
}

.service-body {
    padding: 40px;
    overflow: hidden;
    position: absolute;
    bottom: 0px;
    cursor: pointer;
    z-index: 1;
    background: #fff;
    transition: max-height 0.5s;
    transition-timing-function: ease-in-out;
    box-sizing: border-box;
}

h3.service-title {
    font-size: 22px;
    line-height: normal;
    font-weight: 700;
    color: #000;
    margin-bottom: 10px;
}

.service-box-content {
    max-height: 90px;
    overflow: hidden;
    transition: 0.5s ease-in-out;
}


.service-item:hover .service-box-content {
    max-height: 200px;
    overflow: hidden;
    transition: 0.5s ease-in-out;
}

/* contact banner */
section.contact-banner-section {
    padding: 100px 0;
    background-color: #25204f;
    color: #fff;
    background-image: url(../images/bg/contact-banner-bg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

.contact-banner-icon {
    background: #ffffff;
    width: 120px;
    height: 120px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
}

.contact-banner-icon span {
    color: var(--theme-color-1);
    font-size: 50px;
}

p.contact-banner-title {
    font-size: 22px;
    font-weight: 600;
    color: #fff;
}

a.contact-banner-number {
    font-family: 'Red Hat Display';
    font-size: 72px;
    font-weight: 700;
    color: #fff;
}

.contact-banner-content {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

/* About Section */
.text-description {
    font-size: 18px;
    padding-bottom: 1em;
}

.abt-img-area {
    position: relative;
}

img.abt-img {
    width: 100%;
    height: auto;
    object-fit: contain;
    margin-top: 40px;
}

img.abt-shape {
    width: 100%;
    height: auto;
    object-fit: contain;
    transition: all 0.5s;
    position: absolute;
    z-index: -1;
    animation: topdown 6s infinite alternate ease-in-out;
}

@keyframes topdown {
    0% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(20px);
    }
}

section.about-section {
    padding: 100px 0;
}

.abt-tab-title.active {
    color: var(--theme-color-1);
    font-weight: 700;
}

.abt-tab-content {
    display: none;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.abt-tab-content.show {
    display: block;
    opacity: 1;
}

.abt-tab-box {
    padding: 30px;
    border: 1px solid #EDEFF3;
    border-radius: 20px;
    background: #fff;
    text-align: left;
}

.abt-tab-title {
    background: transparent !important;
    color: #5D666F;
    padding-bottom: 20px;
    border-bottom: 1px solid #EDEFF3;
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: 600;
    text-align: left;
    padding-left: 0;
    cursor: pointer;
}

.abt-tab-title:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.abt-tab-content {
    font-size: 16px;
    font-weight: 500;
    color: #1C2539;
    line-height: 26px;
    animation: slide-down 2s ease-out;
}

@keyframes slide-down {
    0% {
        opacity: 0;
        transform: translateY(50%);
    }

    50% {
        opacity: 1;
        transform: translateY(0);
    }
}

p.abt-tab-text {
    color: #000;
}

ul.check-list li {
    font-weight: 400;
    position: relative;
    list-style: none;
}

ul.check-list li::before {
    content: '\F633';
    font-family: bootstrap-icons !important;
    font-weight: 900;
    position: absolute;
    left: -30px;
    top: 5px;
    color: #fff;
    background: var(--theme-color-1);
    width: 17px;
    height: 17px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    line-height: 0;
    font-size: 12px;

}

/* Work Steps */
.ws-circle {
    width: 192px;
    height: 192px;
    border: 2px dashed var(--theme-color-1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-bottom: 33px;
    transition: 0.3s;
    position: relative;
}

.ws-box {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.ws-box-number {
    position: absolute;
    right: 20px;
    top: 0;
    background: var(--theme-color-1);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    transform: scale(0);
    transition: 0.3s;
}

.ws-circle-icon {
    border-radius: 100px;
    background-color: #ffffff;
    width: 144px;
    height: 144px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ws-box:hover .ws-box-number {
    transform: scale(1);
}

h3.ws-box-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--theme-color-1);
}

section.work-steps {
    background-image: url(../images/bg/bg-ws.jpg);
    background-position: center center;
    background-size: contain;
    background-repeat: no-repeat;
    padding: 100px 0;
    margin-bottom: 50px;
}

.ws-box-bottom {
    max-width: 80%;
}

/* Why choose us */

img.why-img-bottom {
    width: 520px;
    height: 430px;
    object-fit: contain;
    float: inline-end;
    position: relative;
    z-index: 1;
}

img.why-img-top {
    width: 288px;
    height: 320px;
    object-fit: contain;
    animation: topdown2 6s infinite alternate ease-in-out;
    position: absolute;
    z-index: 2;
    top: -10px;
    right: 0;
    left: 0;
    margin: 0 auto;
    border-radius: 0px 15px 15px;
}

@keyframes topdown2 {
    0% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(10px);
    }
}

.why-img-area {
    position: relative;
    width: 100%;
    height: 100%;
    background-image: url(../images/shape/why-bg.png);
    background-repeat: no-repeat;
    background-position: top left;
}

.why-succ-count {
    font-size: 40px;
    font-weight: 700;
    font-family: 'Red Hat Display';
    color: #fff;
    margin-bottom: 5px;
}

.why-succ-text {
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    font-family: 'Red Hat Display';
}

.why-success-box {
    display: inline-block;
    padding: 50px 0 30px 40px;
    margin-right: 30px;
}

ul.list-style {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    padding: 0;
}

li.list-style-item {
    margin-left: 5px;
    word-break: break-word;
    display: flex;
    padding: 11px 15px;
    background: #fff;
    border: 1px solid #EEE;
    border-radius: 15px;
    max-width: max-content;
    margin-right: 17px;
    margin-bottom: 15px;
    cursor: pointer;
    transition: 0.3s;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
}

i.list-style-icon {
    color: var(--theme-color-1);
    font-size: 20px;
    margin-right: 10px;
    line-height: normal;
}

li.list-style-item:hover {
    box-shadow: 0 9px 18px rgb(24 16 16 / .0509803922);
}

img.why-con-profile-img {
    width: 70px;
    height: 70px;
    object-fit: contain;
    border-radius: 15px;
    margin-right: 20px;
}

.why-contact-box {
    display: flex;
}

p.why-con-text {
    color: var(--theme-color-2);
    margin-bottom: 5px;
}

a.why-con-number {
    font-size: 20px;
    font-weight: 800;
    font-family: 'Red Hat Display';
    color: #000;
}

/* Agitation Banner */
section.agitation-banner {
    background-image: url(../images/bg/bg.jpg);
    padding: 100px 0;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top center;
}

img.agitation-logo {
    width: 190px;
    height: 80px;
    object-fit: contain;
    border-radius: 15px;
    background-color: #fff;
    display: inline-block;
}

.agitation-logo-area {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* testimonials section */
section.tesimonials-section {
    padding: 100px 0;
    background-image: url(../images/bg/bg-testimonial.webp);
    background-size: inherit;
    background-position: top center;
    color: #fff;
    background-repeat: no-repeat;
}

section.dark-section .sub-title,
section.dark-section h2.section-title {
    color: #fff;
}

.head-wdth-btn {
    display: flex;
    align-items: start;
    justify-content: space-between;
}

.testimonials-item {
    background-color: #fff;
    margin: 10px;
    padding: 40px;
    border-radius: 15px;
    position: relative;
    border: 1px solid var(--theme-border-color);
    cursor: grab;
}

img.testimonial-profile-img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    margin-right: 15px;
    border-radius: 50%;
}

.testimonial-profile {
    display: flex;
    margin-bottom: 30px;
    align-items: center;
    justify-content: flex-start;
}

.testimonial-profile-name {
    font-size: 20px;
    font-weight: 600;
    color: var(--theme-color-1);
}

.testimonials-content {
    font-size: 16px;
    margin-bottom: 2rem;
    border-bottom: 1px solid var(--theme-border-color);
    padding-bottom: 2rem;
}

.testimonial-rating {
    display: flex;
    align-items: center;
    font-size: 20px;
    gap: 10px;
    justify-content: end;
    color: var(--theme-color-2);
}

.testimonial-rating i {
    color: inherit;
}

.testimonial-company-logo img {
    width: 130px;
    height: 30px;
    overflow: hidden;
    object-fit: contain;
}

/* footer */
h3.footer-heading {
    font-size: 36px;
    font-weight: 300;
    margin-bottom: 1em;
    color: #1C2539;
}

h3.footer-heading span.big-text {
    font-weight: 700;
    font-family: inherit;
    color: #000;
    display: block;
}

h4.footer-heading {
    color: #1c2539;
    font-size: 24px;
    font-weight: 700;
    line-height: 30px;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    position: relative;
}

h4.footer-heading::before {
    content: "";
    position: absolute;
    width: 60px;
    height: 1px;
    bottom: 0;
    left: 0;
    border-bottom: 2px dashed var(--theme-color-1);
}

ul.footer-links,
ul.footer-contact-info {
    padding: 0;
    margin: 0;
    list-style: none;
}

ul.footer-links li {
    font-weight: 400;
    position: relative;
    list-style: none;
    color: #5D666F;
}

ul.footer-links li a {
    color: #5D666F;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    margin-bottom: 11px;
    gap: 10px;
    font-size: 16px;
}

ul.footer-links li a:hover {
    color: var(--theme-color-1);
}

ul.footer-links li a span {
    color: inherit;
    font-size: 18px;
    line-height: inherit;
}

ul.footer-contact-info li {
    display: flex;
    margin-bottom: 20px;
    align-items: self-start;
    justify-content: start;
    gap: 10px;
}

span.footer-contact-icon {
    background-color: #fff;
    box-shadow: 0px 9px 18px 0px rgba(24, 16.000000000000004, 16.000000000000004, 0.050980392156862744);
    width: 33px;
    height: 33px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    border-radius: 50%;
    color: var(--theme-color-2);
}

.footer-contact-text {
    flex: 1;
}

.footer-con-title {
    font-size: 15px;
    margin-bottom: 5px;
}

.footer-con-link {
    color: #000;
    font-weight: 600;
}

.footer-con-link:hover {
    color: var(--theme-color-2);
}

footer.footer.footer-main {
    background-image: url(../images/bg/footer-bg.webp);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: auto;
}

footer.footer-secondary {
    padding: 20px;
}

.footer-bottom-text p,
.footer-bottom-text {
    margin-bottom: 0;
    font-size: 16px;
    color: #000;
    font-weight: 600;
}



/* About Us */
section.breadcrumb-sec {
    background-image: url(../images/bg/breadcrumb-banner.jpg);
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}

h1.breadcrumb-title {
    font-size: 48px;
    font-weight: 800;
    color: #fff;
    flex: 1;
}

ol.breadcrumb-list {
    list-style: none;
    margin: 0;
    background: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 20px 40px;
    border-radius: 2rem;
    gap: 10px;
}

.breadcrumb-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 80px 0px;
}

.breadcrumb-items {
    font-size: 16px;
    font-weight: 600;
    color: var(--theme-text-color);
    padding-right: 20px;
    position: relative;
}

.breadcrumb-items::after {
    content: "\f285";
    font-family: bootstrap-icons !important;
    position: absolute;
    top: 0;
    right: 0;
    font-size: inherit;
    color: inherit;
}

.breadcrumb-items.active {
    pointer-events: none;
    padding-right: 0;
    color: var(--theme-color-2);
}

.breadcrumb-items.active::after {
    content: none;
}

/* About us Page */

.about-image-area {
    width: 100%;
    height: 100%;
    border-top: 10px solid var(--theme-color-1);
    display: flex;
    align-items: end;
    justify-content: space-between;
    position: relative;
}

.about-image-area img.about-image-sub {
    width: 295px;
    height: 526px;
    position: absolute;
    object-fit: cover;
    border-radius: 15px;
    padding: 0;
    border-width: 10px !important;
    border-style: solid !important;
    border-color: #fff !important;
}

.about-image-area img.about-image-sub {
    width: 295px;
    height: 526px;
    position: absolute;
    object-fit: cover;
    border-radius: 15px;
    padding: 0;
    border-width: 10px !important;
    border-style: solid !important;
    border-color: #fff !important;
    right: 0;
    top: -30px;
    animation: topmove 6s infinite alternate ease-in-out;
}

@keyframes topmove {
    0% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

img.about-image-main {
    width: 430px;
    height: 500px;
    object-fit: cover;
    margin-top: 20px;
    border-radius: 15px;
}

a.video-button-round {
    position: relative;
    z-index: 2;
    background: #fff;
    width: 130px;
    height: 130px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 41px;
    color: var(--theme-color-1);
    overflow: hidden;
    transform: translate(-129%, 10px);
}

a.video-button-round i {
    color: inherit;
    animation: ripple 1.5s linear infinite;
    transition: all 0.7s ease;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    line-height: 0;
    font-size: 40px;
}


@keyframes ripple {
    0% {
        box-shadow:
            0 0 0 0 rgba(34, 37, 81, 0.3),
            0 0 0 1px rgba(34, 37, 81, 0.3),
            0 0 0 3px rgba(34, 37, 81, 0.3),
            0 0 0 5px rgba(34, 37, 81, 0.3);
    }

    100% {
        box-shadow:
            0 0 0 0 rgba(34, 37, 81, 0.3),
            0 0 0 4px rgba(34, 37, 81, 0.3),
            0 0 0 20px rgba(34, 37, 81, 0),
            0 0 0 30px rgba(34, 37, 81, 0);
    }
}

.highlight {
    color: var(--theme-color-2);
}

section.about-page {
    padding: 100px 0px;
    background-image: url(../images/bg/about-bg.jpg);
    background-size: contain;
    background-position: top center;
}

section.vision-mission-content {
    overflow: visible;
    padding-top: 100px;
}

.vis-mis-box {
    background: #FCF6E9;
    padding: 30px;
    margin-bottom: 30px;
    display: flex;
    column-gap: 30px;
    gap: 30px;
    border-radius: 5rem;
    align-items: center;
    z-index: 1;
    position: sticky;
    top: 200px;
}

.vis-mis-icon span {
    width: 80px;
    height: 80px;
    background: #FFAF02;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 30px;
    color: #fff;
}

.vis-mis-title {
    font-size: 22px;
    font-weight: 800;
    font-family: var(--font-red);
    color: #000;
    width: 200px;
}

.vis-mis-text {
    font-size: 17px;
    flex: 1;
    text-wrap-style: pretty;
}

.vis-mis-box.mis-box {
    background: #E6F5F9;
}

.vis-mis-box.mis-box .vis-mis-icon span {
    background: #0599C6;
}

.vis-mis-text ul.check-list li {
    margin-bottom: 10px;
}

.vis-mis-text ul.check-list li::before {
    background: #0599C6;
}

.pro-icon img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    margin-right: 30px;
}

.pro-card {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 15px 0px 15px 10px;
}

.pro-content {
    flex: 1;
}

h3.pro-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--theme-color-1);
}

.border-right {
    border-right: 1px solid var(--theme-border-color);
}

.border-bottom {
    border-bottom: 1px solid var(--theme-border-color);
}


/* Programs */

.program-container {
    padding-top: 60px;
    background-image: url(../images/bg/bg-01.webp);
}

.program-container {
    padding-top: 60px;
    background-image: url(../images/bg/bg-01.webp);
    padding-bottom: 30px;
    background-position: center center;
    background-size: cover;
}

img.programs-profile-img {
    width: 520px;
    height: 480px;
    object-fit: contain;
    animation: topdown 6s infinite alternate ease-in-out;
    position: relative;
    z-index: 1;
}

img.programs-round-img {
    position: absolute;
    top: -30%;
    left: -10%;
    width: 600px;
    height: 600px;
    z-index: -1;
    animation: rotationAnimation 20s linear infinite;
}

@keyframes rotationAnimation {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.programs-slider-box {
    background: #FCF6E9;
    padding: 30px;
    margin-bottom: 30px;
    display: flex;
    column-gap: 30px;
    gap: 30px;
    border-radius: 3rem;
    align-items: start;
    z-index: 1;
    position: sticky;
    top: 100px;
}

.programs-slider-icon {
    width: 200px;
    background: #FFAF02;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 3rem;
    position: relative;
    line-height: 0;
    color: #fff;
    font-size: 120px;
    font-family: "Red Hat Display", sans-serif;
    font-weight: 900;
    z-index: -1;
    overflow-wrap: break-word;
}

/* .programs-slider-icon::before {
    content: '';
    position: absolute;
    width: 80px;
    height: 80px;
    mask-image: url(../images/icon/National-Foundation.png);
    background-color: #000;
    mask-size: contain;
    mask-repeat: no-repeat;
} */
.programs-slider-title {
    font-size: 22px;
    font-weight: 800;
    font-family: var(--font-red);
    color: #000;
}

.programs-slider-text {
    font-size: 17px;
    flex: 1;
    text-wrap-style: pretty;
}

.programs-slider-text ul.check-list li::before {
    background: #0599C6;
}

.programs-slider-text ul.check-list li {
    margin-bottom: 10px;
}

section.programs-slider-section {
    overflow: visible;
}

.programs-slider-box.slider-box-1 {
    background-color: #F6F4F0;
}

.slider-box-1 ul.check-list li::before {
    background: #FF4405;
}

.slider-box-1 .programs-slider-icon {
    background: #FF4405;
}

.programs-slider-box.slider-box-2 {
    background-color: #F0F1F6;
}

.slider-box-2 ul.check-list li::before {
    background: #4F46E5;
}

.slider-box-2 .programs-slider-icon {
    background: #4F46E5;
}

.programs-slider-box.slider-box-3 {
    background-color: #FCF6E9;
}

.slider-box-3 ul.check-list li::before {
    background: #FFAF02;
}

.slider-box-3 .programs-slider-icon {
    background: #FFAF02;
}

.programs-slider-box.slider-box-4 {
    background-color: #E6F5F9;
}

.slider-box-4 ul.check-list li::before {
    background: #0599C6;
}

.slider-box-4 .programs-slider-icon {
    background: #0599C6;
}

.programs-slider-box.slider-box-5 {
    background-color: #EFF3EE;
}

.slider-box-5 ul.check-list li::before {
    background: #159690;
}

.slider-box-5 .programs-slider-icon {
    background: #159690;
}

.programs-slider-box.slider-box-6 {
    background-color: #dbffd9;
}

.slider-box-6 ul.check-list li::before {
    background: #89ea83;
}

.slider-box-6 .programs-slider-icon {
    background: #89ea83;
}



/* Contact Us */
.contact-card-icon span {
    color: var(--theme-color-2);
    font-size: 70px;
    margin-bottom: 20px;
}

h4.contact-card-title {
    font-size: 16px;
    font-weight: 600;
}

.contact-card-link {
    font-size: 28px;
    font-weight: 800;
    color: var(--theme-color-1);
}

.contact-card {
    display: grid;
    gap: 10px;
    justify-content: center;
    align-items: center;
    justify-items: center;
    text-align: center;
    padding: 20px;
}

section.contact-page-section {
    background-image: url(../images/bg/header-banner.webp);
    background-size: cover;
    background-position: top center;
    padding: 100px 0;
}

section.contact-map-section {
    filter: grayscale(1);
}

.map-container {
    border-radius: 2rem;
    overflow: hidden;
}

.contact-form-card .form-control {
    border: none;
    margin-bottom: 20px;
    padding: 15px 20px;
    border-radius: 15px 15px 15px 15px;
    color: #5D666F;
    background-color: #F7F7F7;
}

section.contact-form-section {
    padding: 100px 0;
}

.contact-form-body {
    padding-top: 40px;
}

.contact-form-card {
    border: 1px solid #E6E9F0;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    padding: 30px;
}

h4.section-title {
    font-size: 26px;
    font-weight: 700;
    color: var(--theme-color-1);
}

.social-media-icon img {
    width: 100px;
    height: 100px;
    object-fit: contain;
}

.social-media-icon-box {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.social-media-icon:hover img {
    filter: drop-shadow(2px 2px 3px #0000003d);
    scale: 1.1;
}

/* Chapter Section */

.chapter-icon {
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 15px;
    font-size: 50px;
    font-weight: 800;
    background: var(--theme-color-2);
    color: #fff;
    margin-right: 20px;
    font-family: var(--font-red);
}

.chapter-content {
    flex: 1;
    font-size: 19px;
    font-weight: 800;
    color: #000;
    font-family: 'Red Hat Display';
}


img.chapter-img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 15px;
}

.chapter-box {
    display: flex;
    gap: 10px;
    height: 100%;
    background-color: #fff;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 15px 40px 0 rgba(13, 24, 53, .05);
    border: 1px solid #EAEDF5;
    background-image: url(../images/bg/box-bg-1.png);
    background-size: cover;
    background-position: bottom right;
}

.chapter-box:hover {
    background-position: top left;
}

.chapter-content {
    flex: 1;
    font-size: 20px;
    font-weight: 800;
}

section.innovation-section {
    padding: 100px 0;
    background-image: url(../images/bg/bg-section.jpg);
    background-size: cover;
    background-position: center center;
}

.big-title.mini {
    font-size: 85px;
    top: 0;
}

img.abt-tab-img {
    width: 100%;
    height: 360px;
    border-radius: 15px;
    object-fit: cover;
}

.chapter-responsibility-icon {
    width: 80px;
    height: 80px;
    background: #E8EDF9;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.chapter-responsibility-icon img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

h4.cr-title {
    color: var(--theme-color-1);
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 20px;
}

.chapter-responsibility-box {
    padding: 40px 30px;
    background-color: #fff;
    background-image: url(../images/bg/box-bg-2.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 30px;
    border-style: solid;
    border-width: 1px 1px 1px 1px;
    border-color: #EAEDF5;
    box-shadow: 0 15px 40px 0 rgba(13.000000000000004, 24.000000000000004, 53, .050980392156862744);
    display: grid;
    gap: 20px;
    height: 100%;
    align-items: start;
    justify-items: start;
    align-content: flex-start;
}

.cr-text {
    margin-bottom: 1em;
}

section.mini-banner {
    padding: 100px 0;
    background-image: url(../images/bg/mini-banner-bg.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    color: #fff;
    position: relative;
}

section.mini-banner::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgb(34 37 81 / 80%);
    top: 0;
    left: 0;
    z-index: -1;
}

h2.mini-banner-head {
    margin: 0;
    font-size: 40px;
    font-weight: 700;
    color: #fff;
}

/* Membership */
.membership-card {
    border: 1px solid #E6E9F0;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
}

img.membership-img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.membership-body {
    padding: 50px;
}

.membership-body ul.check-list li {
    margin-bottom: 15px;
}

.membership-quote {
    padding: 40px;
    margin: 20px 0 30px;
    text-align: center;
    position: relative;
    background: #F6F6F6;
    border-radius: 15px;
    font-size: 30px;
    font-weight: 800;
    font-style: italic;
    font-family: 'Red Hat Display';
    color: var(--theme-color-1);
}

.blog-profile img {
    width: 85px;
    height: 85px;
    object-fit: cover;
    border-radius: 15px;
}

.membership-sidebar {
    border: 1px solid #E6E9F0;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    padding: 30px;
    background: #f6f6f6;
    position: sticky;
    top: 100px;
}

h5.membership-sidebar-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 30px;
    font-family: var(--font-red);
    color: #000;
}

.blog-card {
    display: flex;
    align-items: start;
    gap: 10px;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--theme-border-color);
}

.blog-card-title {
    font-size: 17px;
    color: var(--theme-color-1);
    font-weight: 800;
    margin-bottom: 10px;
    font-family: var(--font-red);
}

.blog-card-content p {
    font-size: 14px;
}

section.membership-section {
    overflow: visible;
}

img.wm-img-base {
    width: 490px;
    height: 550px;
    object-fit: cover;
    border-radius: 15px;
    position: relative;
}

.why-membership-image {
    position: relative;
    width: 100%;
    text-align: end;
}

img.wm-img-float {
    width: 210px;
    height: 240px;
    object-fit: cover;
    border-radius: 15px;
    border: 10px solid #fff !important;
    position: absolute;
    top: -10%;
    left: 0%;
    z-index: 1;
    animation: topmove 6s infinite alternate ease-in-out;
}

ul.list-style-2 li.list-style-item {
    font-size: 16px;
    margin: 0px 0px 10px 0px;
    position: relative;
    border-color: var(--theme-color-1);
    display: block;
    color: var(--theme-color-1);
    width: 100%;
    padding: 15px 30px;
    max-width: none;
}

ul.list-style-2 li.list-style-item .list-number {
    background: var(--theme-color-1);
    position: absolute;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    font-weight: 800;
    border-radius: 15px;
    top: 15%;
    left: -20px;
}

ul.list-style-2 li.list-style-item:hover {
    border-color: var(--theme-color-2);
}

ul.list-style-2 li.list-style-item:hover .list-number {
    background-color: var(--theme-color-2);
}