* {
    font-family: "Nunito", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Rowdies", sans-serif;
}

html {
    scroll-behavior: smooth;
}

:root {
    --primary-color: #fc800a;
    --primary-color-light: #01afd1;
    --secondary-color: #1ab69d;
    --dark-color: #101c42;
    --red-color: rgb(242 101 34);
    --green-color: rgb(136 181 32);
    --purple-color: #8e56ff;
    --yellow-color: rgb(244 162 26);
    --para-color: #21465b;
}

a {
    text-decoration: none;
}

.container-fluid {
    max-width: 1755px;
}

img {
    transition: all 0.3s;
}

section {
    padding: 60px 0px;
    position: relative;
    overflow: hidden;
}

p {
    font-size: 16px;
    color: var(--para-color);
}

a {
    transition: all ease 0.5s;
    color: #21465b;
}

.bg-color-1 {
    background-color: #fffbf5;
    z-index: 1;
}

.subnav-partisan {
    position: relative;
    padding: 10px;
    gap: 50px;
    z-index: 1;
    color: #fff;
}

.subnav-partisan::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    left: -13pc;
    top: 0;
    background: var(--primary-color);
    z-index: -1;
    clip-path: polygon(0 0, 100% 0, 93% 100%, 0% 100%);
}

.sub-nav-address {
    font-size: 14px;
}

.sub-menu-right {
    display: flex;
    gap: 50px;
    align-items: center;
    justify-content: space-around;
}

a.navbar-brand {
    width: 100px;
}

a.navbar-brand img {
    width: 80%;
    height: auto;
    object-fit: contain;
}

a.nav-link {
    position: relative;
    font-size: 16px;
    font-weight: 500;
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link.show {
    color: var(--primary-color);
    font-weight: 600;
}

.navbar-nav .dropdown-menu {
    border: none;
    box-shadow: 0 0.275rem 1.25rem rgba(11, 15, 25, 0.05),
        0 0.25rem 0.5625rem rgba(11, 15, 25, 0.03);
}

.navbar-nav .dropdown-menu .dropdown-item {
    color: var(--dark-color);
}

.navbar-nav .dropdown-menu .dropdown-item:hover,
.navbar-nav .dropdown-menu .dropdown-item:focus {
    color: var(--primary-color);
    background-color: #fff;
}

section.hero-section {
    background-image: url(../images/banner/bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 80px 0;
    min-height: 800px;
    vertical-align: middle;
    display: grid;
    align-items: center;
    z-index: 1;
}

/* section.hero-section::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-image: url(../images/banner-before.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    animation: onOff 10s infinite linear;
} */
section.hero-section::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-image: url(../images/banner/bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    animation: onOff 3s infinite linear;
    filter: hue-rotate(45deg);
}

@keyframes onOff {
    0% {
        opacity: 0;
    }

    75% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}


nav.navbar.navbar-main {
    position: relative;
    z-index: 1;
}

nav.navbar.navbar-main::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 314px;
    z-index: -1;
    background-color: #70b7da;
    clip-path: polygon(20% 0%, 100% 0, 100% 100%, 0% 100%);
}

.header-navigation {
    position: relative;
    z-index: 10;
}

.auth-details-section i {
    color: #fff;
    font-size: 20px;
    line-height: normal;
    margin-bottom: 0;
}


.banner-images {
    width: 100%;
    height: 650px;
    position: relative;
}

img.banner-main {
    width: 340px;
    height: auto;
    margin: 0 auto;
    display: block;
    position: absolute;
    bottom: -41%;
    z-index: 2;
    right: 0;
    left: 0;
}

img.banner-circle {
    width: 390px;
    height: 390px;
    object-fit: contain;
    position: absolute;
    z-index: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    bottom: 100px;
    animation: boom 2s infinite linear;
}

img.banner-shapes {
    width: 100%;
    height: 650px;
    object-fit: contain;
    position: absolute;
    animation: rotateHalf 20s infinite linear;
}

img.banner-shape-1 {
    position: absolute;
    width: 60px;
    height: 60px;
    left: 10px;
    bottom: 0;
    animation: rotateHalf 2s infinite linear;
}

img.banner-shape-2 {
    position: absolute;
    width: 60px;
    height: 60px;
    top: 0;
    right: 10px;
    animation: rotateHalf 2s infinite linear;
}

@keyframes rotateHalf {
    0% {
        transform: rotate(0deg);
    }

    25% {
        transform: rotate(10deg);
    }

    50% {
        transform: rotate(0deg);
    }

    75% {
        transform: rotate(-10deg);
    }

    100% {
        transform: rotate(0deg);
    }
}

@keyframes boom {
    0% {
        scale: 1;
    }

    50% {
        scale: 1.05;
    }

    100% {
        scale: 1;
    }
}

@keyframes rocket-shake {
    0% {
        transform: translateX(0) rotate(0deg);
    }

    25% {
        transform: translateX(-3px) rotate(-1deg);
    }

    50% {
        transform: translateX(3px) rotate(1deg);
    }

    75% {
        transform: translateX(-2px) rotate(0deg);
    }

    100% {
        transform: translateX(0) rotate(0deg);
    }
}

.banner-top-move-rocket {
    position: absolute;
    right: 0;
    left: 0;
    margin: 0 auto;
    bottom: -15%;
    z-index: 0;
    width: 100px;
    height: 200px;
    object-fit: contain;
    transition: transform 0.2s linear, opacity 0.2s linear;
    animation: rocket-shake 0.25s infinite ease-in-out;
}

.sub-heading {
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 400;
    color: rgb(93, 163, 87);
}

h1.banner-title {
    font-size: 75px;
    font-weight: 400;
    position: relative;
    margin-bottom: 30px;
    color: var(--dark-color);
}

p.banner-description {
    font-size: 17px;
    color: #21465b;
    margin-bottom: 30px;
    width: 70%;
}

.btn-button {
    font-weight: bold;
    font-size: 14px;
    border: none;
    padding: 12px 30px;
    position: relative;
    z-index: 1;
    border-radius: 50px;
    transition: all ease 0.5s;
    background: var(--primary-color);
    text-transform: uppercase;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-button:hover {
    background-color: #ff9a3a;
}

span.arrow-icon svg {
    width: 25px;
    height: 25px;
    transition: all 0.5s;
}

.btn-button:hover span.arrow-icon svg {
    transform: rotate(45deg);
}

.btn-button.outline-btn {
    border: 1px solid #fc800a;
    background: transparent;
    color: #fc800a;
}

.btn-sec {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.feature-icon {
    background: var(--primary-color-light);
    width: 120px;
    height: 120px;
    border-radius: 40px;
    margin: 0 auto;
    margin-bottom: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon img {
    width: 70px;
    height: 70px;
    object-fit: contain;
}

.red-bg {
    background-color: var(--red-color);
}

.yellow-bg {
    background-color: var(--yellow-color);
}

.green-bg {
    background-color: var(--green-color);
}

.feature-box {
    text-align: center;
    padding: 25px;
}

h4.feature-title {
    font-size: 22px;
    padding: 0px 40px;
    line-height: 1.4;
    text-align: center;
    margin-bottom: 10px;
}

section.feature {
    background-image: url(../images/features-bg.png);
    background-size: cover;
    background-position: bottom center;
    background-repeat: repeat-x;
    overflow: visible;
    padding-top: 80px;
}

img.feature-right-shape {
    position: absolute;
    width: auto;
    height: auto;
    right: 0;
    bottom: 0;
    animation: moveBounce 6s infinite linear;
}

@keyframes moveBounce {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(50px);
    }

    100% {
        transform: translateY(0px);
    }
}

img.feature-left-shape {
    width: auto;
    height: auto;
    position: absolute;
    top: 35%;
    bottom: 0;
    left: 10pc;
    animation: moveBounce 9s infinite linear;
}

img.about-us-img {
    width: 100%;
    height: auto;
}

h2.sec-title {
    font-size: 36px;
    font-weight: 500;
    margin-bottom: 20px;
}

h2.sec-title a {
    font-size: inherit;
    font-family: inherit;
    color: inherit;
}

.list-items h5 {
    font-size: 18px;
}

ul.show-list.pt-3 {
    list-style: none;
    padding: 0;
}

.list-icon {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    mask-image: url(../images/icon/checked.png);
    mask-position: center;
    mask-size: contain;
}

li.list-items {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 15px;
}

.list-content {
    flex: 1;
}

.video-banner {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: end;
}

.video-banner video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.video-title h2 {
    background: var(--primary-color);
    display: block;
    color: #fff;
    padding: 5px 10px;
    font-size: 42px;
    font-weight: 600;
}

.video-icon i {
    color: #fff;
    font-size: 100px;
    background: rgb(0 0 0 / 36%);
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.video-icon i:hover {
    border-radius: 50%;
    box-shadow: 0 0 10px #f5f5dc;
}

.video-title {
    display: flex;
    align-items: center;
    gap: 30px;
}

.program-img img {
    width: 100%;
    height: auto;
}

.program-card {
    padding: 28px;
    background-image: repeating-linear-gradient(0deg,
            var(--primary-color),
            var(--primary-color) 12px,
            transparent 12px,
            transparent 23px,
            var(--primary-color) 23px),
        repeating-linear-gradient(90deg,
            var(--primary-color),
            var(--primary-color) 12px,
            transparent 12px,
            transparent 23px,
            var(--primary-color) 23px),
        repeating-linear-gradient(180deg,
            var(--primary-color),
            var(--primary-color) 12px,
            transparent 12px,
            transparent 23px,
            var(--primary-color) 23px),
        repeating-linear-gradient(270deg,
            var(--primary-color),
            var(--primary-color) 12px,
            transparent 12px,
            transparent 23px,
            var(--primary-color) 23px);
    background-size: 1px calc(100% + 23px), calc(100% + 23px) 1px,
        1px calc(100% + 23px), calc(100% + 23px) 1px;
    background-position: 0 0, 0 0, 100% 0, 0 100%;
    background-repeat: no-repeat;
    transition: all ease 0.5s;
    height: 100%;
    background-color: #fff;
}

.program-card:hover {
    animation: borderAnimation 1s infinite linear;
    transform: translateY(-10px);
}

@keyframes borderAnimation {
    0% {
        background-position: 0 0, -23px 0, 100% -23px, 0 100%;
    }

    100% {
        background-position: 0 -23px, 0 0, 100% 0, -23px 100%;
    }
}

.program-img img {
    width: 100%;
    height: auto;
    margin-bottom: 20px;
}

h3.pro-title {
    font-size: 22px;
    margin-bottom: 20px;
    font-weight: 500;
    color: #333;
    transition: all ease 0.5s;
}

.program-card:hover h3.pro-title {
    color: var(--primary-color);
}

span.age-limit {
    font-size: 18px;
}

.pto-topic {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

span.pro-top-title {
    font-weight: 700;
}

span.pro-days {
    font-size: 22px;
    font-weight: 800;
    color: var(--primary-color);
}

img.pro-bg-shapes {
    position: absolute;
    width: auto;
    height: auto;
}

img.pro-shapes-4 {
    right: 10px;
    bottom: 10px;
}

img.pro-shapes-3 {
    bottom: 30%;
    left: 10pc;
    animation: rotation 10s infinite linear;
}

img.pro-shapes-2 {
    top: 20%;
    left: 15pc;
    animation: rotation 10s infinite linear;
}

img.pro-shapes-1 {
    top: 30%;
    right: 10pc;
    animation: rotation 10s infinite linear;
}

@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(359deg);
    }
}

.testimonial-img img {
    width: 450px;
    height: 450px;
    object-fit: cover;
}

.testimonial-description {
    font-size: 20px;
    margin-bottom: 42px;
    line-height: 30px;
    font-weight: 500;
    color: var(--para-color);
}

.testimonial-card {
    display: flex;
    gap: 30px;
    align-items: center;
}

.testimonial-code {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    margin-bottom: 20px;
    mask-image: url(../images/icon/left.png);
    mask-position: center;
    mask-size: contain;
}

.testimonial-user {
    position: relative;
    font-size: 18px;
    font-weight: 600;
    display: flex;
    gap: 10px;
    align-items: center;
}

.testimonial-user::before {
    content: "";
    position: relative;
    display: block;
    width: 20px;
    height: 2px;
    background: var(--primary-color);
}

.slick-prev::before,
.slick-next::before {
    color: var(--primary-color) !important;
    font-size: 28px !important;
}

img.test-bg-shapes {
    position: absolute;
    width: auto;
    height: auto;
}

img.test-shapes-1 {
    left: 30px;
    bottom: 10px;
}

@keyframes rocketOrbit {
    0% {
        transform: rotate(0deg) translateX(50px) rotate(0deg);
    }

    25% {
        transform: rotate(90deg) translateX(50px) rotate(-90deg);
    }

    50% {
        transform: rotate(180deg) translateX(50px) rotate(-180deg);
    }

    75% {
        transform: rotate(270deg) translateX(50px) rotate(-270deg);
    }

    100% {
        transform: rotate(360deg) translateX(50px) rotate(-360deg);
    }
}

img.test-shapes-2 {
    position: absolute;
    top: 4pc;
    right: 10pc;
    animation: rocketOrbit 5s infinite linear;
}

.contact-top-img img {
    box-shadow: 5px 5px 0px #0a1823 !important;
    width: 100%;
    height: 100%;
}

.contact-form-sec {
    background: #fffbf5;
    padding: 83px 85px;
    position: relative;
}

img.form-shapes-1 {
    position: absolute;
    right: 20px;
    top: 20px;
    width: auto;
    height: auto;
    opacity: 0.6;
}

.contact-form-sec .sec-head {
    padding-bottom: 10px;
}

.form-control,
.form-select {
    background-color: #fff;
    border: 1px solid #d9d9d9;
    height: 60px;
    color: #0a1823;
    font-size: 15px;
    padding: 20px;
    width: 100%;
    transition: all ease 0.5s;
    border-radius: 0;
}

.form-control:focus,
.form-select:focus {
    color: var(--bs-body-color);
    background-color: var(--bs-body-bg);
    border-color: #425774;
    outline: 0;
    box-shadow: none;
}

label.form-label {
    font-weight: 600;
}

.margin-top-move {
    margin-top: -325px;
}

.reviews-title {
    font-size: 20px;
    font-weight: 500;
    color: #0a1823;
    margin-bottom: 15px;
}

.google-review-box {
    display: flex;
    align-items: center;
    gap: 20px;
}

.star-count i {
    color: #ffc107;
    font-size: 20px;
    margin-right: 6.5px;
}

.review-status {
    font-size: 18px;
    font-weight: 500;
}

.google-reviews-show {
    padding-top: 125px;
    padding-left: 38px;
}

.event-section {
    margin-top: 65px;
}

h4.sec-title {
    font-size: 22px;
    margin-bottom: 20px;
}

.event-box {
    border-bottom: 1px solid #d9d9d9;
    padding-bottom: 20px;
    margin-bottom: 20px;
    display: flex;
    gap: 10px;
    align-items: center;
}

.event-date {
    border-radius: 30px;
    background: #faeea8;
    font-size: 20px;
    width: 86px;
    height: 86px;
    text-align: center;
    color: #0a1823;
    font-family: "Rowdies", sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    text-transform: uppercase;
}

h5.event-title {
    font-size: 20px;
    margin-bottom: 10px;
}

.event-location,
.event-timing {
    font-size: 12px;
}

.event-location i,
.event-timing i {
    color: var(--primary-color);
}

.inspiring-img img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.inspiring-card {
    position: relative;
    background-color: #eeffc7;
    padding: 30px 85px;
}

h2.inspiring-title {
    font-size: 36px;
    color: #3a3f4f;
    margin-bottom: 45px;
}

.inspiring-bg-shapes {
    position: absolute;
    width: auto;
    height: auto;
}

img.inspiring-shapes-1 {
    bottom: 50px;
    left: 0;
    right: 10pc;
    margin: 0 auto;
}

img.inspiring-shapes-2 {
    top: 18px;
    left: 0;
    right: 0;
    margin: 0 auto;
    animation: onOff 5s infinite linear;
}

img.inspiring-shapes-3 {
    top: 50px;
    right: 6pc;
    animation: onOff 3s infinite linear;
}

section.footer-nav {
    background: var(--green-color);
    padding: 12px;
    text-align: center;
    z-index: 1;
}

section.footer-nav::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background-color: var(--primary-color);
    z-index: -1;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 5% 100%);
}

a.white-link {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
}

.dark-bg {
    background-color: #0a1823;
}

form.newsletter-form input.form-control {
    width: 330px;
    margin-right: 13px;
    border-color: #d9d9d9;
    background-color: #0a1823;
    color: #fff;
}

form.newsletter-form input.form-control::placeholder {
    color: #fff;
    opacity: 0.5;
}

section.newsletter-area {
    padding: 100px 0;
}

.follow-content ul li {
    margin-right: 16px;
}

.follow-content ul li a {
    text-decoration: none;
    display: block;
}

.follow-content ul li a i {
    color: #d9d9d9;
    font-size: 29px;
    transition: all ease 0.5s;
}

.follow-content ul li a i:hover {
    color: var(--primary-color);
}

img.newsletter-shapes-1 {
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    top: 11%;
    width: 100px;
    height: 100px;
    object-fit: contain;
    z-index: 0;
}

.ptb-100 {
    padding-top: 100px;
    padding-bottom: 60px;
}

h4.footer-heading {
    color: #fff;
    font-size: 23px;
    margin-bottom: 23px;
    display: inline-block;
    position: relative;
}

.text-clr,
.text-clr a,
.secondary-footer p {
    color: #d9d9d9;
}

.footer-info-area {
    font-size: 15px;
    display: flex;
    align-items: baseline;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-info-icon {
    color: var(--primary-color);
}

ul.footer-links {
    list-style: none;
    padding: 0;
}

ul.footer-links li {
    font-size: 18px;
    font-weight: 500;
    padding-bottom: 10px;
}

footer.secondary-footer {
    background: #0e2836;
}

span.text-color {
    color: var(--primary-color);
}

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

img.footer-shapes-1 {
    position: absolute;
    top: 0;
    left: 10pc;
    width: auto;
    height: auto;
    z-index: -1;
}

img.footer-shapes-2 {
    position: absolute;
    bottom: 10px;
    right: 10px;
    width: auto;
    height: auto;
    animation: onOff 10s infinite linear;
    z-index: -1;
}

/* Page Css */
h1.breadcrumb-title {
    font-size: 36px;
}

.breadcrumb-banner {
    text-align: center;
}

ol.breadcrumb {
    justify-content: center;
}

li.breadcrumb-item {
    font-size: 15px;
    font-weight: 600;
    color: var(--primary-color);
}

.breadcrumb-item.active {
    color: var(--primary-color);
}

li.breadcrumb-item a {
    color: #21465b;
}

li.breadcrumb-item a:hover {
    color: var(--primary-color);
}

section.breadcrumb-sec {
    background: #fffbf5;
    padding: 100px 0 200px 0;
    vertical-align: middle;
    display: grid;
    align-items: center;
    z-index: 1;
}

section.breadcrumb-sec::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-image: url(../images/banner-bg.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: top center;
    animation: onOff 10s infinite linear;
    z-index: -1;
}

section.breadcrumb-sec::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 180px;
    bottom: 0;
    left: 0;
    background-image: url(../images/page-banner-shape.png);
    background-repeat: repeat-x;
    background-size: contain;
    background-position: 0 bottom;
    animation: move-bg 30s linear infinite;
    z-index: -1;
}

@keyframes move-bg {
    0% {
        background-position: 0 bottom;
    }

    100% {
        background-position: -1000px bottom;
    }
}

.vis-mis-sec-card {
    background: beige;
    padding: 52px 56px;
    position: relative;
    margin-bottom: 30px;
    transition: all 0.5s;
    height: 100%;
}

.vis-mis-sec-card:hover {
    transform: translateY(-10px);
}

.vision-box.vis-mis-sec-card {
    background-color: #fff2ec;
}

.mission-box.vis-mis-sec-card {
    background-color: #eeffc7;
}

.mission-box.vis-mis-sec-card {
    background-color: #eeffc7;
}

.objectives-box.vis-mis-sec-card {
    background-color: #ffeac8;
}

.objective-item h5 {
    font-size: 18px;
    font-weight: 400;
    color: #556e5f;
    line-height: inherit;
}

img.programs-imgs {
    width: 100%;
    height: auto;
    object-fit: cover;
    margin-bottom: 30px;
}

h3.headings {
    color: #1a1b1e;
    font-size: 20px;
    margin-bottom: 15px;
}

span.headlights {
    font-size: 16px;
    font-weight: 700;
    color: #fa9823;
    margin-right: 5px;
}

section.program-page {
    text-align: justify;
}

h4.quote {
    font-size: 26px;
    line-height: inherit;
    font-style: italic;
    color: #fc800a;
    text-align: left;
    position: relative;
    text-shadow: 0px 0px 5px #ffffff;
}

h4.quote::before {
    content: "\f6b0";
    font-family: bootstrap-icons !important;
    color: #fedcbb;
    font-size: 80px;
    line-height: 0;
}

h4.quote::after {
    content: "\f7bf";
    font-family: bootstrap-icons !important;
    color: #fedcbb;
    transform: rotateY(180deg);
    line-height: 0;
    margin-right: 8px;
}

ul.list-style li {
    color: #1a1b1e;
    margin-bottom: 10px;
}

ul.list-style li::marker {
    color: #757c8e;
    font-size: 18px;
}

.sidebar-icon {
    width: 100px;
    height: 100px;
    overflow: hidden;
    border-radius: 10px;
    margin-right: 10px;
}

img.side-bar-icons {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

h4.link-title a {
    font-size: 20px;
    font-family: "Rowdies";
}

h4.link-title a:hover,
.active a {
    color: var(--primary-color);
}

.sidebar-list {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-top: 20px;
    border-top: 1px solid #cdcfd5;
    padding-top: 20px;
}

.side-bar {
    border-top: 1px solid #cdcfd5;
    border-radius: 6px;
    background-color: #fffbf5;
    padding: 16px 32px;
    border: 1px solid #cdcfd5;
}

.side-bar-form {
    margin-top: 30px;
    border-top: 1px solid #cdcfd5;
    padding-top: 30px;
    padding-bottom: 30px;
}

.sidebar-content {
    flex: 1;
}

h3.heading {
    font-size: 23px;
}

.age-box {
    text-align: center;
    background: #fc800a47;
    padding: 10px;
    margin-bottom: 20px;
    border-radius: 2em;
    font-size: 32px;
    font-family: "Rowdies";
    color: #fc800a;
}

.product-display {
    width: 100%;
    height: 300px;
    overflow: hidden;
    position: relative;
    background-color: #fff;
    padding: 20px;
}

img.product-thumb {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.product-body {
    background-color: transparent;
    padding: 30px 10px;
}

.product-card {
    height: 100%;
    background-color: #fffbf5;
    padding: 20px;
    transition: all 0.5s;
    border-radius: 3px;
    cursor: pointer;
}

.product-card:hover {
    transform: translateY(-10px);
}

.product-card.color-1,
.bg-color-1 {
    background-color: #fff2ec;
}

.product-card.color-2,
.bg-color-2 {
    background-color: #eeffc7;
}

.product-card.color-3,
.bg-color-3 {
    background-color: #ffeac8;
}

.product-card.color-4,
.bg-color-4 {
    background-color: #fdecff;
}

.product-price {
    color: var(--primary-color);
    font-size: 22px;
    font-weight: 800;
}

.card-btn {
    border: 1px solid var(--primary-color);
    background-color: #fff;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 15px;
    padding: 10px 29px;
    transition: all ease 0.5s;
    text-transform: uppercase;
}

.card-btn i {
    margin-left: 10px;
}

.price-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.card-btn:hover {
    color: #fff;
    background-color: var(--primary-color);
}

.highlight-tag {
    position: absolute;
    background: #ffffff91;
    display: inline-block;
    bottom: 10px;
    left: 10px;
    padding: 5px 20px;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 700;
    color: var(--primary-color);
    box-shadow: 0 0 5px 2px #ffa50057;
    animation: shadowEffect 3s ease-in-out infinite;
}

@keyframes shadowEffect {
    0% {
        box-shadow: 0 0 5px 2px #ffa50057;
    }

    50% {
        box-shadow: 0 0 15px 6px #ffa500aa;
    }

    100% {
        box-shadow: 0 0 5px 2px #ffa50057;
    }
}

.product-price del {
    font-weight: 400;
    font-size: 18px;
    color: #ff6868;
}

.contact-icons {
    border-radius: 30px;
    background: #faeea8;
    font-size: 35px;
    width: 86px;
    height: 86px;
    text-align: center;
    color: #fff;
    font-family: "Rowdies", sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    text-transform: uppercase;
    line-height: 0;
}

.contact-icons.color-red {
    background-color: #f26522;
}

.contact-icons.color-green {
    background-color: #88b520;
}

.contact-icons.color-org {
    background-color: #f4a21a;
}

.contact-box {
    border-bottom: 1px solid #d9d9d9;
    padding-bottom: 20px;
    margin-bottom: 20px;
    display: flex;
    gap: 10px;
    align-items: center;
}

.contact-items {
    color: #21465b;
    font-size: 16px;
}

.event-content {
    flex: 1;
}

.event-content a {
    display: block;
    margin-bottom: 5px;
}

.custom-toast {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    padding: 14px 24px;
    border-radius: 8px;
    color: #fff;
    font-weight: 500;
    font-size: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    animation: fadeInOut 4s ease forwards;
}

.success-toast {
    background-color: #333;
}

.error-toast {
    background-color: #d9534f;
}

@keyframes fadeInOut {
    0% {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
    }

    10%,
    90% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }

    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
    }
}

.programs-page-main {
    background: linear-gradient(135deg, #f5f8fa, #ffffff);
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.07);
    padding: 2rem;
    font-family: "Segoe UI", sans-serif;
    transition: all 0.3s ease-in-out;
}

.programs-page-main .headings {
    font-size: 28px;
    color: #344767;
    font-weight: 600;
    border-bottom: 2px solid #fedcbb;
    display: inline-block;
    padding-bottom: 8px;
    margin-bottom: 24px;
}

.programs-page-main .row {
    row-gap: 1rem;
}

.programs-page-main .list-style {
    list-style: none;
    padding-left: 0;
}

.programs-page-main .list-style li {
    position: relative;
    padding: 12px 18px 12px 42px;
    margin-bottom: 12px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    line-height: 1.5;
    font-size: 16px;
    color: #505050;
    transition: transform 0.2s ease, background-color 0.3s ease;
}

.programs-page-main .list-style li::before {
    content: "\f26d";
    font-family: "bootstrap-icons";
    position: absolute;
    top: 50%;
    left: 14px;
    transform: translateY(-50%);
    font-size: 18px;
    color: #ff8c42;
}

.list-style li:hover {
    transform: translateY(-2px);
    background-color: #fef6f0;
}

.abt-imgs img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.abt-imgs {
    width: 100%;
    padding: 10px;
    border: 2px dashed orange;
}

img.abt-shape-img-top {
    width: auto;
    height: auto;
    position: absolute;
    top: 30px;
    left: 10pc;
}

img.abt-shape-img-bottom {
    width: auto;
    height: auto;
    position: absolute;
    bottom: 18px;
    right: 10pc;
}

section.vis-sec {
    background-image: url(../images/hero-bg.webp);
    background-position: bottom center;
    background-size: cover;
}

section.vis-sec p.sec-description {
    font-size: 18px;
    text-align: justify;
}

img.abt-shape-img-bottom.right-10 {
    right: 10px;
}

.obj-cards {
    padding: 30px;
    position: relative;
    height: 100%;
    transition: all 0.5s;
}

.obj-cards:hover {
    box-shadow: 0 0px 4px 2px rgb(255 91 34 / 13%);
}

h5.sec-title {
    font-size: 20px;
    margin-bottom: 20px;
    margin-top: 10px;
}

h5.sec-title a {
    font-family: inherit;
    color: inherit;
}

a.view-btn {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 20px;
}

a.view-btn:hover {
    color: var(--primary-color);
}

span.arrow-icon {
    display: inline-block;
    transition: transform 0.3s ease-in-out;
    transform-origin: center;
}

a.view-btn:hover span.arrow-icon {
    transform: rotate(45deg);
}

.product-img.product-display {
    height: 500px;
}

.product-profile-area {
    background: #fffbf5;
    overflow: hidden;
    padding: 30px;
}

p.product-description {
    font-size: 18px;
    text-align: justify;
}

.share-ops {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin: 20px 0;
}

.shear-title {
    font-size: 1.1rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: #333;
}

.share-medias {
    display: flex;
    gap: 15px;
}

.share-medias a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #f3f3f3;
    border-radius: 50%;
    color: #555;
    transition: all 0.3s ease;
    text-decoration: none;
}

.share-medias a:hover {
    background-color: #007bff;
    color: #fff;
    transform: scale(1.05);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.share-medias a:nth-child(1):hover {
    background-color: #25d366;
}

.share-medias a:nth-child(2):hover {
    background-color: #3b5998;
}

.share-medias a:nth-child(3):hover {
    background-color: #e1306c;
}

@media (max-width: 576px) {
    .share-medias {
        gap: 10px;
    }

    .share-medias a {
        width: 35px;
        height: 35px;
    }
}

.high-icon {
    width: 100px;
    height: 100px;
    overflow: hidden;
    margin-right: 10px;
}

.high-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-highlight-box {
    padding: 10px;
    margin-top: 20px;
    display: flex;
    align-items: start;
    gap: 20px;
}

.high-decs {
    flex: 1;
}

.high-decs ul {
    padding: 0;
    list-style: none;
}

.high-decs ul li {
    background: #fffbf5;
    display: block;
    padding: 10px;
    margin-bottom: 10px;
    font-size: 15px;
    color: #000;
    font-weight: 600;
}

.btn-close:focus {
    outline: 0;
    box-shadow: none !important;
}

ul.abt-dsc {
    list-style: none;
    padding: 0;
    position: relative;
    z-index: 1;
}

ul.abt-dsc li {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 40px;
    font-size: 18px;
}

span.con {
    flex: 1;
}

span.numbs {
    width: 60px;
    height: 60px;
    background: #fffbf5;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 25px;
    font-weight: 800;
    border-width: 1px;
    border-style: dashed;
    border-color: var(--primary-color);
    transition: all 0.5s;
}

ul.abt-dsc::before {
    content: "";
    position: absolute;
    width: 3px;
    height: 90%;
    background: #ffd79a;
    left: 28px;
    top: 10px;
    bottom: 0;
    vertical-align: middle;
    z-index: -1;
}

ul.abt-dsc li:hover span.numbs {
    background-color: var(--primary-color);
    color: #fff;
}


.blog-banner {
    width: 100%;
    height: auto;
    border-radius: 20px;
    object-fit: cover;
}

img#mail-image {
    height: 300px;
    width: 100%;
    object-fit: cover;
}

.blog-main-img.blog-img-create {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    border: 1px dashed #ddd;
}

input#main_image {
    position: absolute;
    bottom: 0;
    padding: 20px;
    left: 0;
    right: 0;
    margin: 0 auto;
    cursor: pointer;
    background: #c5c5c569;
    height: 150px;
}

.blog-create label {
    font-weight: 600;
    padding-bottom: 10px;
    display: block;
    margin-top: 5px;
}

input.form-control-file {
    background: #c8c8c824;
    display: block;
    width: 100%;
    padding: 30px;
    border: 1px dashed #ddd;
    border-radius: 30px;
    margin-bottom: 20px;
}

.blog-item {
    overflow: hidden;
    background: #fefbf5;
    padding: 20px;
    position: relative;
    margin-bottom: 30px;
}

img.blog-img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    margin-bottom: 20px;
}

.blog-side-bar {
    background: #fefbf5;
    padding: 20px;
    margin-bottom: 30px;
}

.form-search-blog-inputs {
    position: relative;
    width: 100%;
}

input#search-blog {
    width: 100%;
    background-color: #F9FAFB;
    border: 1px solid #D2D2D2;
    height: 55px;
    padding: 8px 15px;
    display: block;
    outline: 0;
    border-radius: 5px;
    color: #0A1823;
}

button.blog-side-bar-btn {
    border: none;
    background: none;
    color: var(--primary-color);
    position: absolute;
    top: 0;
    right: 0;
    width: 40px;
    height: 100%;
}

img.blog-rc-img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 5px;
}

.recent-blogs-list {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 10px;
}

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

.blog-page-img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 20px;
    overflow: hidden;
    background: #1385a140;
    text-align: center;
    padding: 0px;
}

.blog-page-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-admin-details {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.left-name-details {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: flex-start;
}

.left-name-details img {
    width: 42px;
    height: 42px;
    object-fit: cover;
    border-radius: 50%;
}

a h2.sec-title:hover,
a h6:hover {
    color: var(--primary-color);
}

.d-flex.justify-content-between {
    flex-wrap: wrap;
}

.testimonials-position {
    text-transform: uppercase;
    font-size: 14px;
    margin-top: 10px;
    color: var(--secondary-color);
    font-weight: 500;
}

.testimonial-page-list {
    background: #fefbf5;
    padding: 20px;
}

.gallery-container {
    background-color: #fefbf5;
    padding: 30px;
    border-radius: 10px;
}

.tz-gallery h3 {
    border-left: 5px solid var(--primary-color);
    padding-left: 10px;
    font-weight: bold;
}

.tz-gallery img {
    transition: transform 0.3s ease;
}

.tz-gallery img:hover {
    transform: scale(1.03);
}



.custom-modal {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
}

.custom-close {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 10;
    background-color: #fff;
    border-radius: 50%;
    padding: 6px;
    opacity: 1;
}

.form-section {
    padding: 35px;
}

.modal-title {
    font-weight: 600;
}

.custom-input {
    border-radius: 10px;
    padding: 10px;
    border: 1px solid #ddd;
    transition: 0.3s;
}

.custom-input:focus {
    border-color: #4e73df;
    box-shadow: 0 0 0 0.1rem rgba(78, 115, 223, 0.25);
}

.submit-btn {
    background: linear-gradient(45deg, #4e73df, #1cc88a);
    border: none;
    padding: 12px;
    border-radius: 10px;
    font-weight: 600;
    color: #fff;
    transition: 0.3s;
}

.submit-btn:hover {
    opacity: 0.9;
}

.banner-section {
    height: 100%;
    background-image: url('/images/tech-nova-modal-banner.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
}

.banner-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.3));
}

.banner-overlay {
    position: absolute;
    bottom: 30px;
    left: 25px;
    right: 25px;
    color: #fff;
    z-index: 2;
}

.brand-title {
    font-weight: 700;
    letter-spacing: 1px;
    font-size: 18px;
    margin-bottom: 10px;
}

.main-text {
    font-size: 22px;
    font-weight: 700;
    line-height: 1.4;
}

.highlight {
    color: var(--primary-color);
    font-weight: inherit;
    font-family: inherit;
}

.sub-text {
    font-size: 14px;
    margin-top: 10px;
    opacity: 0.9;
}

.banner-overlay h3 {
    font-weight: 700;
}

.banner-overlay p {
    font-size: 14px;
}

.fw-8 {
    font-weight: 800;
}