@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Shadows+Into+Light&family=Space+Grotesk:wght@300..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');

:root{
    --primary-color: #0381d5;
    --primary-light-color: #88cdfb;
    --secondary-color: #d5032d;
    --secondary-light-color: #fee2e2;
    --secondary-light002-color: #ffaeae;
    --secondary-dark-color: #3b010d;
    --yellobit: rgb(233, 190, 20);
    --primary-bright-color: #b2e0ff;
    --white: #fff;
    --primary-brighter-color: #eef8ff;
    --primary-gray: #a4a3a3;
    --primary-gray-extra: #717171;
    --primary-gray-light: #dcdcdc;
    --gray-lighter-color: #ededed;
    --primary-darker-color: #00060a;
    --primary-dark-color: #001525;
    --primary-dark-light: #04263f;
    --primary-dark-lighter-extra: #315e7e;
    --primary-dark-lighter: #143d5b;
    --primary-dark-lightest: #1f5276;
    --primary-font: "Inter", 'Gill Sans', 'Gill Sans MT',sans-serif;
    --secondary-font: "Shadows Into Light", cursive;
    --number-font: "Space Grotesk", sans-serif;
    --std-border-radius: 2rem;
    --std-flex-border-radius: clamp(1rem, 4vw, 2rem);
    --std-primary-gradient: linear-gradient(
        45deg,
        #0381d5,
        #001572
    );
    --std-secondary-gradient: linear-gradient(
        45deg, 
        #d5032d, 
        #7a0505
    );
    --std-dark-gradient: linear-gradient(
        45deg, 
        #001525, 
        #00060a
    );}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html{
    scroll-behavior: smooth;
}
body{
    font-family: var(--primary-font);
    font-weight: 300;
    font-style: normal;
    /* font-size: 1.2rem; */
    color: var(--primary-gray-extra);
}
a{
    text-decoration: none;
    color: inherit;
}
/* Common styles for all decorations */
.decoration {
    position: absolute;
    width: 30px;
    height: 30px; /* Orange color */
    border: 5px solid;
    border-radius: 30%;
    animation: spin 5s linear infinite;
    z-index: 0;
    opacity: 0.5;
}

/* Different positions for the decorations */
.decoration:nth-child(1) {
    border-color: var(--primary-bright-color);
    top: 5%;
    right: 20%;
    animation-duration: 20s;
}

.decoration:nth-child(2) {
    border-color: var(--secondary-color);
    top: 10%;
    left: 10%;
    animation-duration: 4s;
}

.decoration:nth-child(3) {
    border-color: var(--yellobit);
    bottom: 20%;
    left: 40%;
    animation-duration: 7s;
}

.decoration:nth-child(4) {
    border-color: #0381d5;
    bottom: 5%;
    right: 15%;
    animation-duration: 5s;
}
.decorations .fa-star{
    position: absolute;
    color: transparent;
    font-size: 2rem;
    -webkit-text-stroke: 5px #04263f;
    bottom: 5%;
    left: 15%;
    animation-duration: 5s;
    animation: spin 5s linear infinite;
}
.pattern{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}
.pattern .patt:nth-child(1){
    position: absolute;
    left: 0;
    bottom: 0;
}
.wrapper-container{
    margin-inline: auto;
    max-width: 1260px;
    padding: 1.5rem;
}
.danger-msg{
    color: var(--secondary-color);
    font-weight: 700;
    margin: 15px 0;
    padding: 1rem;
    background-color: rgba(255, 0, 0, 0.1);
    border: 0.01rem solid var(--secondary-color);
    border-radius: var(--std-flex-border-radius);
}
.success-msg{
    color: #3fbd00;
    font-weight: 700;
    margin: 15px 0;
    padding: 1rem;
    background-color: #e9ffde;
    border: 0.01rem solid #3fbd00;
    border-radius: var(--std-flex-border-radius);
}
.headings{
    margin: 25px 0;
}
.headings h1{
    text-transform: uppercase;
    font-size: clamp(1.5rem, 5vw, 3.5rem);
    letter-spacing: -3px;
}
.headings h2{
    padding-left: 10px;
    font-size: clamp(0.8rem, 8vw,  1.2rem);
    position: relative;
    display: inline-block;
}
.headings h2::after{
    position: absolute;
    content: '';
    background-color: var(--primary-color);
    width: 5px;
    height: 100%;
    left: 0;
    top: 0;
}
.headings h2::before{
    position: absolute;
    content: '';
    background-color: var(--primary-color);
    width: 100%;
    height: 1px;
    left: 0;
    bottom: 0;

}
.headings h3{
    color: var(--primary-color);
    text-transform: uppercase;
    font-family: var(--secondary-font);
    font-size: clamp(0.7rem, 2vw, 0.9rem);
    font-weight: 600;
    letter-spacing: 2px;
    position: relative;
}
.headings h3::after{
    content: '';
    position: r;
    background-color: var(--primary-color);
}
.font2-small-heading{
    text-transform: uppercase;
    font-family: var(--secondary-font);
    font-size: 1.2rem;
    font-weight: 500;
    position: relative;
    user-select: none;;
}
.font2-small-heading::after{
    content: '';
    position: absolute;
    width: 10%;
    height: 3px;
    border-radius: var(--std-border-radius);
    background-color: var(--primary-color);
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}
.subheading{
    font-family: var(--secondary-font);
    position: relative;
    margin-bottom: 20px;
}
.subheading::after{
    content: '';
    position: absolute;
    width: 20%;
    height: 2px;
    border-radius: var(--std-border-radius);
    background-color: var(--primary-color);
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}
.number-font{
    font-family: var(--number-font);
    font-weight: 600;
}

/* Keyframes for rotation */
@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}
.donate-btn{
    width: max-content;
    text-transform: uppercase;
    font-family: var(--primary-font);
    font-weight: bold;
    border: none;
    outline: none;
    background-color: var(--primary-color);
    border-radius: 100px;
    color: #fff;
    padding: 0.75rem 1.5rem;
    cursor: pointer;
    transition: color 0.3s ease-in-out;
}
.block-link{
    display: inline-block;
    position: relative;
    color: var(--primary-color);
    font-weight: 600;
}
.block-link::before{
    position: absolute;
    content: '';
    width: 20%;
    height: 1.5px;
    background-color: var(--primary-color);
    bottom: 0;
    left: 0;
    transition: width 0.3s ease-in-out;    
}
.block-link:hover::before{
    width: 100%;
}
button{
    border: none;
    outline: none;
}
.inline-block{
    display: inline-block;
    margin: 20px 0;
}
.btn{
    padding: 0.5rem 1rem;
    border-radius: var(--std-border-radius);
    font-family: var(--primary-font);
    font-weight: 600;
    cursor: pointer;
}
.btn-primary{
    color: var(--white);
    background-color: var(--primary-color);
    outline: 2px solid var(--primary-color);
    transition: 0.3s ease-in-out;
}
.btn-primary:hover{
    background-color: transparent;
    outline: 2px solid var(--primary-color);
    color: var(--primary-color);
}
.btn-primary-border:hover{
    background-color: var(--primary-color);
    outline: 2px solid var(--primary-color);
    color: var(--white);
    border: none;
}
.btn-primary-border{
    background-color: transparent;
    color: var(--primary-color);
    outline: 2px solid var(--primary-color);
}
.btn-transparent-bg{
    background-color: transparent;
    font-family: var(--primary-font);
    color: var(--white);
    border: 1px solid var(--white);
    cursor: pointer;
}
.col-50{
    flex-basis: 50%;
}
header .kch-top-header{
    background-color: var(--primary-dark-color);
    color: var(--primary-brighter-color);
    display: flex;
    justify-content: space-between;
    position: relative;
}
header .kch-top-header::before,
header .kch-top-header::after
{
    position: absolute;
    content: '';
    width: 45px;
    height: 50px;
    background-color: transparent;
    bottom: -49px;
    z-index: -1;
}
header .kch-top-header::before{
    left: 0;
    border-top-left-radius: 20px;
    box-shadow: 0 -16px 0 var(--primary-dark-color);
}
header .kch-top-header::after{
    right: 0;
    border-top-right-radius: 20px;
    box-shadow: 0 -16px 0 var(--primary-dark-color);
}
header .kch-top-header .kch-top-header-item{
    padding: 0.5rem;
}
header .kch-top-header .kch-top-header-item span,
header .kch-top-header .kch-top-header-item .social
{
    display: inline-block;
    width: max-content;
}
header .kch-top-header .kch-top-header-item .social{
    display: flex;
    gap: 15px;
}
header .kch-top-header .kch-top-header-item a:hover{
    color: var(--primary-bright-color);
}
header .kch-navbar.desktop{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    color: var(--primary-dark-light);
}
header .kch-navbar .logo{
    width: 200px;
}
header .kch-navbar .logo img{
    width: 100%;
}
header .kch-navbar .contact span{
    display: block;
    color: var(--primary-color);
    font-weight: bold;
}
header .kch-navbar .contact i{
    width: 45px;
    height: 45px;
    color: var(--primary-color);
    border: 2px dashed var(--primary-color);
    border-radius: 50%;
    display: inline-grid;
    place-content: center;
}
.navbar-border-left{
    position: relative;
}
.navbar-border-left::before{
    position: absolute;
    content: '';
    background-color: var(--primary-gray-light);
    width: 1px;
    height: 100%;
}
header .kch-nav-item.top{
    border-bottom: 1px solid var(--primary-gray-light);
}
header .kch-navbar.desktop .kch-nav-item.bottom nav{
    width: 100%;
    height: 50px;
    align-items: center;
}
header .kch-nav-item.bottom ul{
    display: flex;
    list-style: none;
    margin-left: 10px;
}
header .kch-nav-item.bottom ul > li{
    display: inline-block;
    position: relative;
    width: max-content;
}
header .kch-navbar.desktop .kch-nav-item.bottom ul li::before{
    position: absolute;
    content: '';
    background-color: var(--primary-color);
    border-radius: 100px;
    width: 100%;
    height: 4px;
    top: -85%;
    left: 0;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease-in-out;
}
header .kch-navbar.desktop .kch-nav-item.bottom ul li:hover::before{
    transform: scaleX(1);
    transform-origin: left;
}
header .kch-navbar.desktop  .kch-nav-item.bottom ul li.active::before{
    transform: scaleX(1);
}
header .kch-nav-item.bottom ul li > a,
header .kch-nav-item.bottom ul li > span{
    cursor: pointer;
    text-transform: uppercase;
    padding: 0.5rem;
    letter-spacing: -0.5px;
    user-select: none;
    font-weight: 500;
}
header .kch-nav-item.bottom ul li > span > i{
    font-size: 0.7rem;
    font-weight: bolder;
}
header .kch-nav-item.bottom ul li > a:hover,
header .kch-nav-item.bottom ul li > span:hover,
header .kch-nav-item.bottom ul li:hover > span.dropdown{
    color: var(--primary-color);
}
header .kch-nav-item.bottom ul li.active > a,
header .kch-nav-item.bottom ul li.active > span{
    color: var(--primary-color);
}
header .kch-nav-item.bottom ul li .dropdown{
    position: relative;
}
header .kch-nav-item.bottom ul li .dropdown > .fa-plus{
    transition: 0.3s ease-in-out;
}
header .kch-nav-item.bottom ul li .dropdown > .fa-plus.cross{
    transform: rotate(135deg);
}
header .kch-nav-item.bottom ul li .dropdown-list{
    position: absolute;
    background-color: var(--primary-brighter-color);
    border-bottom: 3px solid var(--primary-color);
    border-radius: 10px 10px var(--std-border-radius) var(--std-border-radius);
    box-shadow: 3px 3px 5px rgba(0,0,0,0.2);
    top: 5rem;
    left: 50%;
    transform: translate(-50%);
    z-index: 500;
    visibility: hidden;
    opacity: 0;
    transition: 0.3s ease-in-out;
}
header .kch-nav-item.bottom ul li .dropdown-list.active{
    visibility: visible;
    opacity: 1;
    top: 2.1rem;
}
header .kch-nav-item.bottom ul li .dropdown-list::before{
    position: absolute;
    content: '';
    width: 3px;
    height: 3px;
    top: 0;
    left: 50%;
    border-left: 15px solid var(--primary-brighter-color);
    border-top: 15px solid var(--primary-brighter-color);
    transform: rotate(45deg) translateX(-50%);
    z-index: -1;
}
header .kch-nav-item.bottom ul li .dropdown-list .link{
    display: block;
    white-space: nowrap;
    padding: 1rem;
    transition: 0.3s ease-in-out;
}
header .kch-nav-item.bottom ul li .dropdown-list .link:hover{
    color: var(--primary-dark-lighter);
    background-color: var(--primary-bright-color);
    border-radius: var(--std-border-radius);
}
header .kch-nav-item.bottom ul li .dropdown-list .link:not(:last-of-type){
    border-bottom: 1px solid var(--primary-bright-color);
}
header .kch-nav-item.bottom ul li .dropdown-list.mega-menu{
    display: flex;
    gap: 10px;
    padding: 1rem;
}
header .kch-nav-item.bottom ul li .dropdown-list.mega-menu .mega-subheading{
    padding: 1rem;
    text-transform: uppercase;
    color: var(--primary-color);
    font-weight: bolder;
    font-size: 0.85rem;
    text-align: center;
    position: relative;
    user-select: none;
}
header .kch-nav-item.bottom ul li .dropdown-list.mega-menu
.mega-subheading::after{
    position: absolute;
    content: '';
    background-color: var(--primary-color);
    border-radius: 20px;
    width: 70%;
    height:2px;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
}
header .kch-nav-item.bottom ul li .dropdown-list.mega-menu .mega-menu-advert{
    padding: 1rem;
}
header .kch-nav-item.bottom ul li .dropdown-list.mega-menu .mega-menu-advert .image{
    width: 200px;
    height: 130px;
    margin-bottom: 10px;
}
header .kch-nav-item.bottom ul li .dropdown-list.mega-menu .mega-menu-advert .image img{
    width: 100%;
    object-fit: cover;
    object-position: center;
}
header .kch-nav-item.bottom ul li .dropdown-list.mega-menu .mega-menu-advert h2{
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--primary-gray);
}
header .kch-nav-item.bottom ul li .dropdown-list.mega-menu .mega-menu-advert p{
    display: -webkit-box;
    -webkit-line-clamp: 4; /* Limit to 3 lines */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 10px;
    line-height: 25px;
}
header .kch-nav-item.bottom .menu-icon{
    width: 35px;
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}
header .kch-nav-item.bottom .menu-icon .bar{
    background-color: var(--primary-color);
    border-radius: 100px;
    width: 100%;
    height: 5px;
    transition: 0.3s ease-in-out;  
}
header .kch-nav-item.bottom .menu-icon .bar:nth-child(1){
    width: 70%;
}
header .kch-nav-item.bottom .menu-icon .bar:nth-child(2){
    width: 60%;
}
header .kch-nav-item.bottom .menu-icon:hover .bar{
    width: 100%;
}
header .kch-nav-item.bottom .other-btns{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}
header .kch-nav-item.bottom .other-btns a{
    display: block;
}
header .kch-nav-item.bottom .other-btns a:first-of-type{
    border-right: 1px solid var(--primary-gray-light);
    padding-right: 10px;
}
header .kch-nav-item.bottom .other-btns a > button:active,
header .kch-nav-item.bottom a > svg:active{
    transform: scale(0.95);
}
header .kch-nav-item.bottom a > svg{
    width: 30px;
    fill: var(--primary-color);
}
header .kch-navbar.mobile{
    display: none;
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);  /* Semi-transparent black */
    opacity: 0;
    transition:  opacity 0.5s ease, right 1s ease;
    z-index: 40;
}

/* Show overlay */
.mobile-menu-overlay.active {
    right: 0;
    opacity: 1;
    transition: 1s ease-in-out;
}

.decoration-container{
    position: relative;
    z-index: 1;
}
.image-decorations{
    position: relative;
}
.image-decorations::after,
.image-decorations::before{
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    border-radius: var(--std-border-radius);
}
.image-decorations::after{
    background: transparent;
    border: 2px solid var(--primary-light-color);
    top: -20px;
    left: 20px;
    animation: smoothanim01 1.5s ease-in-out alternate infinite;
}
.image-decorations::before{
    background: repeating-linear-gradient(
        45deg,
        var(--primary-color),
        var(--primary-color) 5px,
        transparent 5px,
        transparent 15px 
    );
    border-radius: var(--std-border-radius);
    top: 20px;
    right: 20px;
    z-index: -1;
    animation: smoothanim00 3s ease-in-out alternate infinite;
}
.image-decorations.right::after{
    left: 0;
    right: 20px;
}
.flex{
    display: flex;
    justify-content: center;
    gap: 20px;
}
.flex .col-50{
    flex-shrink: 50%;
}
.col-img-flex{
    display: flex;
    gap: 20px;
    max-height: 400px;
}
.col-img-flex img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--std-border-radius);
}
.col-img-flex .flex-img{
    display: flex;
    flex-direction: column;
    gap: 10px;
    transform: translateY(30px);
}
@keyframes upDown {
    to{
        transform: translateY(-10px);
    }
}
.flex-img .img1{
    width: 65%;
    height: 65%;
    position: relative;
    z-index: 1;
}
.flex-img .img1::after,
.flex-img .img1::before{
    content: '';
    position: absolute;
    border-radius: var(--std-border-radius);
    width: 70%;
    height: 70%;
    z-index: -1;
}
.flex-img .img1::after{
    background-color: var(--primary-color);
    top: -20px;
    right: -20px;
    animation: upDown 3s alternate infinite;
}
.flex-img .img1::before{
    border: 2px solid var(--primary-color);
    top: -40px;
    right: 30px;
    z-index: 20;
    animation: smoothanim01 2s ease-in-out alternate infinite;
}
.flex-img .img2{
    max-width: 300px;
}
.margin-tb-15px{
    margin: 15px 0;
}
.color-primary{
    color: var(--primary-color);
}
.color-white{
    color: var(--white);
}
.test-bg{
    background-color: var(--primary-color);
}
footer{
    padding: clamp(2rem, 25vh, 8rem) 0;
    color: var(--primary-dark-lighter-extra);
    border-top-right-radius: var(--std-border-radius);
    border-top-left-radius: var(--std-border-radius);
    position: relative;
}
footer .footer-head{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    gap: 20px;
}
@media screen and (max-width:812px){
    footer .footer-head{
        flex-direction: column;
    }
}
footer .footer-head .logo{
    width: 200px;
}
footer .footer-head .logo img{
    width: 100%;
}
footer .footer-head .social{
    display: flex;
    align-items: center;
    gap: 20px;
    user-select: none;
}
footer .footer-head .social p:nth-child(1){
    font-size: clamp(0.95rem, 4vw, 1.5rem);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 3px;
}
footer .footer-head .social p:nth-child(1) a i:hover.s-h{
    color: var(--primary-color);
}
footer .footer-head a{
    display: inline-block;
}
footer .footer-head a i{
    display: grid;
    place-content: center;
    width: clamp(30px, 4vw, 50px);
    height: clamp(30px, 4vw, 50px);
    font-size: clamp(0.7rem, 4vw, 1rem);
    margin-bottom: 5px;
    border-radius: 50%;
    background-color: var(--primary-dark-lighter);
    color: var(--primary-bright-color);
    transition: 0.3s ease-in-out;
}
footer .footer-head a i:hover{
    background-color: var(--primary-bright-color);
    color: var(--primary-dark-light);
}
footer .footer-desc{
    line-height: 25px;
}
footer h2{
    color: var(--primary-light-color);
}
footer p,
footer a,
footer li{
    font-size: 1rem;
}
.footer-grid{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 50px;
}
.footer-grid .logo{
    width: 150px;
}
.footer-grid .logo img{
    width: 100%;
}
.footer-grid ul{
    list-style: none;
    display: grid;
    gap: 15px;
}
.footer-grid ul li{
    position: relative;
    padding-left: 15px;
    transition: all 0.3s ease-in-out;
}
.footer-grid ul li::before{
    position: absolute;
    content: '≫';
    left: -10px;
    visibility: hidden;
    transition: all 0.3s ease-in-out;
}
.footer-grid ul li:hover::before{
    color: var(--primary-color);
    left: 0;
    visibility: visible;
}
.footer-grid ul li:hover{
    padding-left: 22px;
    color: var(--primary-bright-color);
}
.footer-grid .deco-lines span,
.footer-grid .deco-lines span::after{
    left: 0;
    transform: translateX(0);
}
.footer-grid .deco-lines{
    margin-bottom: 20px;
}
.footer-grid .gallery-grid{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 5px;
}
.footer-grid .gallery-grid .gallery-grid-item{
    width: 100%;
    height: 100%;
}
.footer-grid .gallery-grid .gallery-grid-item img{
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: var(--std-border-radius);
}
.footer-grid .contact.email a,
.footer-grid .contact.location span
{
    display: block;
    font-size: 0.9rem;
    word-wrap: break-word;
}
.footer-grid .deco-lines-00{
    margin-bottom: 20px;
}
.footer-grid .deco-lines-00 span{
    display: inline-block;
    width: 15%;
    position: relative;
}
.footer-grid .deco-lines-00 span::after{
    position: absolute;
    content: '';
    width: 50%;
    bottom: -9px;
    right: 0;
}
.footer-grid .deco-lines-00 span,
.footer-grid .deco-lines-00 span::after{
    height: 4px;
    border-radius: var(--std-border-radius);
    background-color: var(--primary-color);
}
.footer-contact-details .contact{
    display: flex;
    flex-direction: row-reverse;
    gap: 15px;
    margin-bottom: 15px;
}
.footer-contact-details .contact p{
    width: 180px;
}
.footer-contact-details .contact i{
    display: inline-grid;
    place-content: center;
    width: 30px;
    height: 30px;
    background-color: var(--primary-dark-lighter-extra);
    border-radius: 8px;
    color: var(--primary-dark-light);
}
footer .footer-foot{
    margin-top: 20px;
}
footer .footer-foot .foot:nth-child(1){
    display: flex;
    justify-content: space-between;
    padding: 30px 0;
    border-top: 1px solid var(--primary-dark-lighter);
    border-bottom: 1px solid var(--primary-dark-lighter);
    margin-bottom: 20px;
}
footer .footer-foot .foot:nth-child(1) a{
    transition: 0.3s ease-in-out;
    font-size: 0.85rem;
}
footer .footer-foot .foot:nth-child(1) a:hover{
    color: var(--primary-bright-color);
}
footer .footer-foot .foot:nth-child(2) p{
    text-align: center;
    font-size: 0.8rem;
}
footer .footer-foot .foot:nth-child(2) p a{
    font-size: 0.8rem;
    color: var(--primary-color);
    transition: 0.3s ease-in-out;
}
footer .footer-foot .foot:nth-child(2) p a:hover{
    color: var(--primary-bright-color);
}
/* Page Headers */
.page-header {
    width: 100%;
    min-height: 300px;
    max-height: 450px;
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;     
    background-size: cover;
    background-position: center;
    overflow: hidden;            
}

.page-header .wrapper-container {
    width: 100%;
}

.page-header .headers {
    max-width: 1260px;
    width: 100%;
    padding: 1.5rem;
    margin: 0 auto;
    color: var(--white);
    user-select: none;
}


.page-header h1{
    text-transform: uppercase;
    font-size: clamp(1rem, 5vw, 3rem);
}
.page-header p{
    font-weight: 200;
    font-size: clamp(0.7rem, 2vw, 1rem);
    margin-bottom: 15px;
}
.page-header .st-dline{
    display: flex;
    width: 100%;
    margin: 25px 0;
    border-radius: var(--std-border-radius);
    overflow: hidden;
}
.page-header .st-dline hr{
    border: 1px solid;
}
.page-header .st-dline hr.line-50{
    width: 50%;
    border-color: var(--primary-color);
}
.page-header .st-dline hr.line-25{
    width: 25%;
    border-color: var(--secondary-color);
}
.page-header .st-dline hr.line-15{
    width: 15%;
    border-color: var(--white);
}
.page-header .st-dline hr.line-10{
    width: 10%;
    border-color: var(--primary-darker-color);
}
.page-header .bread-crumb{
    text-transform: uppercase;
    font-weight: 600;
    font-size: clamp(0.6rem, 2vw, 1rem);
}
.page-header .bread-crumb a{
    text-decoration: underline;
}
/* Contact Page Styles */
.address-container h2{
    text-transform: uppercase;
    color: var(--primary-darker-color);
}
.address-container .container-row{
    gap: 20px;
    margin-bottom: 25px;
}
.contact-form form{
    margin-top: 15px;
}
.contact-form form p{
    width: 100%;
}
form label{
    display:block;
    font-style: italic;
    margin-bottom: 10px;
    color: var(--primary-dark-light);
}
.contact-form form .input-box,
.contact-form form textarea{
    font-family: var(--primary-font);
    padding: 0.9rem;
    width: 100%;
    background-color: var(--primary-brighter-color);
    border-radius: var(--std-border-radius);
    border: none;
    outline: 1px solid var(--primary-gray);
    transition: 0.3s ease-in-out;
}
.contact-form form .input-box:focus,
.contact-form form textarea:focus{
    outline: 1px solid var(--primary-color);
}
.contact-form form textarea{
    resize: none;
    padding: 0.7rem;
}
.contact-form form button{
    border: none;
    background-color: var(--primary-darker-color);
    font-family: var(--primary-font);
    color: var(--white);
    padding: 0.5rem 1rem;
    text-transform: uppercase;
    font-weight: 800;
    font-size: 1rem;
    display: block;
    margin-top: 15px;
    border-radius: var(--std-border-radius);
    cursor: pointer;
    transition: 0.3s ease-in-out;
}
.contact-form form button:hover{
    background-color: var(--primary-color);
}
.contact-form .agree{
    display: flex;
    gap: 5px;
    align-content: center;
    margin: 15px 0;
}
.contact-form .agree input[type="checkbox"]{
    width: 20px;
    height: 20px;
    cursor: pointer;
}
.contact-form .agree label{
    cursor: pointer;
    color: var(--primary-dark-color);
}
.contact-form .agree label > a{
    color: var(--primary-color);
    text-decoration: underline;
}
/* .addresses{
    padding: clamp(1.5rem, 4vw, 2rem);
} */
.addresses .address-item{
    display: flex;
    gap: clamp(20px, 5vw, 40px);
    margin-bottom: 5px;
    padding: 15px;
    border-bottom: 2px solid var(--primary-gray-light);
    position: relative;
}
.addresses .address-item::after{
    position: absolute;
    content: '';
    background-color: var(--primary-color);
    width: 15%;
    height: 2px;
    bottom: -2px;
    left: 0;
}
.addresses .address-item h3{
    margin-bottom: 3px;
    color: var(--primary-darker-color);
}
.addresses .address-item p i{
    color: var(--primary-color);
}
.addresses .address-item span{
    display: block;
}
.address-container .social{
    margin: 25px 0;
}
.address-container .social a {
    display: inline-block;
}
.address-container .social a i{
    width: 40px;
    height: 40px;
    background-color: var(--primary-dark-lighter);
    border-radius: 50%;
    display: grid;
    place-content: center;
    color: var(--primary-light-color);
    transition: 0.3s ease-in-out;
}
.address-container .social a i:hover{
    background-color: var(--primary-color);
    color: var(--white);
}
/* contact page */
.grid-container{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}
.grid-container .grid-item{
    transition: transform 0.3s ease-in-out;
    align-items: stretch;
}
.about-image{
    height: 100%;
}
.about-image img{
    border-radius: var(--std-border-radius);
    width: 100%;
    height: 100%;
    object-fit: cover;
}
#about{
    padding: clamp(1.5rem, 4vw, 2rem);
}
#about  .flex{
    gap: 20px;
}
#about .flex-item {
    flex-basis: 50%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
#about .flex-item.grid{
    display: grid;
    gap: 20px;
    place-content: center;
}
.stats{
    border-radius: var(--std-border-radius);
    padding: clamp(1rem, 4vw, 2rem);
    color: var(--white);
    text-align: center;
}
.stats span{
    text-transform: uppercase;
    font-weight: 800;
}
.stats p{
    font-size: clamp(1.2rem, 4vw, 5.5rem);
}
#approach .flex{
    gap: 30px;
}
.sentence {
    line-height: 1.5;
    margin-bottom: 20px;
}
.bullet-list{
    list-style: none;
    margin: 15px 0;
}
.bullet-list li{
    position: relative;
    padding-left: 20px;
}
.bullet-list li:not(:last-of-type),
.numbered-list li:not(:last-of-type){
    margin-bottom: 10px;
}
.bullet-list li:after{
    position: absolute;
    content: '◈';
    color: var(--primary-color);
    left: 0;
    top: 0;
}
.numbered-list {
    list-style: none;               /* remove browser numbers */
    counter-reset: num_counter;     /* initialize counter */
    margin: 15px 0;
}
.numbered-list li.numbered-list-item {
    position: relative;
    padding-left: 30px;
    counter-increment: num_counter; /* increase counter */
}
.numbered-list li.numbered-list-item:before {
    content: counter(num_counter, decimal-leading-zero) ".";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--primary-color);
}
.article-head{
    color: var(--primary-dark-color);
    font-size: 1.3rem;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}
.article-head::after{
    position: absolute;
    content: '';
    background: var(--primary-color);
    border-radius: 20px;
    width: 10%;
    height: 2px;
    bottom: -5px;
    left: 0;
}
.col-img{
    width: 100%;
    max-height: 50%;
}
.col-img img{
    margin-top: 20px;
    width: 100%;
    max-height: 250px;
    object-fit: cover;
    object-position: top;
    border-radius: var(--std-border-radius);
}
.circle-img-deco{
    width: 70%;
    height: 70%;
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: -1;
    opacity: 0.3;
    top: 50%;
    transform: translate(-50%, -50%);
}
.circle-img-deco img{
    width: 100%;
    animation: rotateCircle 20s linear infinite;
}
.deco-area{
    position: relative;
    overflow: hidden;
}
#workshop-subsection .grid-container{
    gap: 15px;
    margin-bottom: 20px;
}
#workshop-subsection
.grid-item img{
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: var(--std-border-radius);
}
#workshop-subsection .featured .content{
    margin-bottom: 20px;
}
#workshop-subsection .stats{
    background: linear-gradient(
        45deg,
        #0381d5,
        #001572
    );
}
.image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--std-border-radius);
}
/* privacy policy */
#policy{
    position: relative;
    z-index: 1;
}
#policy .water-mark{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    z-index: -1;
    opacity: 0.1;
    text-align: center;
}
#policy .water-mark img{
    width: 50%;
    height: 50%;
    object-fit: cover;
    object-position: center;
}
#policy aside{
    position : sticky;
    top: 1rem;
    align-self: start;
    
}
#policy section {
  scroll-margin-top: 15px;
}
#policy section h2,
#policy section h3{
    color: var(--primary-dark-color);
    margin-bottom: 15px;
}
@media screen and (max-width: 600px) {
    #policy aside{
        position: static;
        margin-bottom: 20px;
    }
}
.sidebar-menu{
    background: var(--std-dark-gradient);
    list-style: none;
    color: var(--white);
    padding: 0 20px;
    overflow-y: auto;
    z-index: 1000;
}
.sidebar-menu li{
    margin-bottom: 10px;
    text-transform: uppercase;
    font-size: 0.85rem;
    font-weight: 600;
}
.sidebar-menu li:first-of-type{
    margin-top: 20px;
}
.sidebar-menu li:last-of-type{
    margin-bottom: 20px;
}
.sidebar-menu li:not(:last-of-type){
    border-bottom: 1px solid var(--primary-gray);
    padding-bottom: 10px;
}
.sidebar-menu li:hover a{
    color: var(--primary-color);
}
.grid-article aside .side-item{
    background-color: var(--gray-lighter-color);
    padding: clamp(1rem, 4vw, 2rem) 1.5rem;
    border-radius: 15px;
}
.grid-article aside form{
    position: relative;
}
.grid-article aside form input{
    font-family: var(--primary-font);
    padding: 0.75rem 1rem;
    width: 100%;
    border-radius: var(--std-border-radius);
    box-shadow: 0 0 5px rgba(0,0,0,0.15);
    border: none;
}
.grid-article aside form input::placeholder{
    font-family: var(--primary-font);
}
.grid-article aside form input:hover{
    outline: 1px solid var(--primary-gray);
}
.grid-article aside form input:active,
.grid-article aside form input:focus{
    outline: 1px solid var(--primary-color);
}
.grid-article aside form button{
    position: absolute;
    top: 50%;
    right: 1rem;
    font-size: 1.2rem;
    transform: translateY(-8%);
    background: none;
    color: var(--primary-color);
    cursor: pointer;
}

.grid-article aside .side-item h2{
    font-size: clamp(1rem, 3vw, 1.5rem);
    text-transform: uppercase;
}

.grid-article aside .side-item .item h3{
    display: -webkit-box;
    -webkit-line-clamp: 3; /* Limit to 3 lines */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 20px;
    color: var(--primary-dark-color);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 5px;
    transition: 0.3s ease-in-out;
}
.grid-article aside .side-item .item h3:hover{
    color: var(--primary-color);
}
.grid-article aside .side-item .date{
    display: inline-block;
    background: var(--primary-dark-light);
    color: var(--white);
    padding: 0.2rem 0.5rem;
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: 5px;
    margin-bottom: 10px;
}
.grid-article aside .side-item .categories-list{
    list-style: none;
}
.grid-article aside .side-item .categories-list li{
    padding: 0.5rem;
    color: var(--primary-dark-lighter);
    transition: 0.3s ease-in-out;
    display: flex;
    justify-content: space-between;
}
.grid-article aside .side-item .categories-list li a{
    max-width: 200px;
}
.grid-article aside .side-item .categories-list li span{
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: inline-grid;
    place-content: center;
    color: var(--primary-color);
    font-weight: 500;
}
.grid-article aside .side-item .categories-list li:hover{
    color: var(--primary-dark-color);
}
.grid-article aside .side-item .categories-list li:hover span{
    background-color: var(--primary-color);
    color: var(--white);
}
.grid-article aside .side-item .social{
    display: flex;
    justify-content: space-around;
}
.grid-article aside .side-item .social a{
    width: 40px;
    height: 40px;
    background-color: var(--primary-bright-color);
    display: inline-grid;
    place-content: center;
    color: var(--primary-dark-lighter-extra);
    border-radius: 50%;
}
.grid-article .post-imgs{
    width: 100%;
    position: relative;
}
.grid-article .post-imgs img{
    width: 100%;
    max-height: 500px;
    height: 100%;
    object-fit: cover;
    border-radius: var(--std-flex-border-radius);
}
.grid-article .post-imgs .date{
    background: var(--primary-color);
    position: absolute;
    color: var(--white);
    max-width: clamp(65px, 18vw, 110px);
    max-height: clamp(65px, 18vw, 110px);
    width: 100%;
    height: 100%;
    border-radius: var(--std-flex-border-radius);
    display: grid;
    place-content: center;
    text-align: center;
    left: 50px;
    bottom: -20px;
}
.grid-article .post-imgs figcaption{
    position: absolute;
    bottom: 15px;
    right: 15px;
    width: 40%;
    font-size: clamp(0.7rem, 3vw, 1rem);
    color: var(--primary-brighter-color);
    background-color: rgba(31, 82, 118,0.7);
    padding: 10px;
    border-radius: clamp(0.25rem, 5vw, 0.5rem);
    margin-top: 15px;
}
.grid-article .post-imgs .date .day{
    font-size: clamp(1.5rem, 5vw, 3rem);
    font-weight: 700;
}
.grid-article .post-imgs .date .month-year{
    font-weight: 400;
}
.grid-article header{
    margin: 35px 0 20px 0;
    color: var(--primary-dark-light);
}
.grid-article header h1{
    font-size: clamp(1.3rem, 5vw, 2.5rem);
}
.grid-article .news-signature{
    display: flex;
    gap: 10px;
    align-items: center;
    margin-bottom: 10px;
    font-size: 0.8rem;
}
.grid-article .news-signature i{
    font-size: 1rem;
    color: var(--primary-color);
    margin-right: 5px;
}
.grid-article hr{
    border: 0.5px solid var(--gray-lighter-color);
    margin: 15px 0;
}
/* staff portal resources */
.grid-article .more-imgs{
    margin: 20px 0;
}
.grid-article .more-imgs img{
    width: 100%;
    border-radius: var(--std-flex-border-radius);
}
.grid-article .columns .text-col{
    padding: 15px;
    border-radius: var(--std-flex-border-radius);
}
.grid-article blockquote{
    margin: 15px 0;
    color: var(--primary-dark-lighter);
    background-color: var(--primary-bright-color);
    border-radius: var(--std-border-radius);
    padding: clamp(1.5rem, 4vw, 2.5rem);
    position: relative;
    user-select: none;
}
.grid-article blockquote::after{
    position: absolute;
    content: '‟';
    font-size: clamp(2rem, 7vw, 4rem);
    opacity: 0.3;
    top: 30%;
    left: 10px;
}
.grid-article .news-footer{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.grid-article .news-footer .cat{
    text-transform: uppercase;
    font-weight: 600;
    color: var(--primary-dark-color);
}
.grid-article .news-footer .social{
    display: flex;
    align-items: center;
    gap: 5px;
}
.grid-article .news-footer .social a{
    width: 40px;
    height: 40px;
    background-color: var(--primary-dark-color);
    display: inline-grid;
    place-content: center;
    color: var(--primary-bright-color);
    border-radius: 50%;
}

/* E shop */
.product-grid{
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    align-items: c;
    gap: 20px;
}
.product-grid .product-item{
    height: max-content;
    border-radius: var(--std-border-radius);
    border: 1px solid var(--primary-gray-light);
    padding: 15px;
    position: relative;
    overflow: hidden;
    transition: 0.3s ease-in-out;
    cursor: pointer;
}
.product-grid .product-item:hover{
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}
.product-grid .product-header{
    width: 100%;
    margin-bottom: 20px;
}
.product-grid .product-header img{
    object-fit: cover;
    border-radius: clamp(1rem, 4vw, 1.5rem);
    width: 100%;
    height: 200px;
}
.product-grid .product-body h3{
    text-transform: uppercase;
    font-size: clamp(0.85rem, 5vw, 1rem);
    color: var(--primary-dark-color);
    margin-bottom: 10px;
}
.product-grid .product-btns{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid var(--primary-gray-light);
}
.load-btn{
    text-align: center;
    margin: 50px 0;
}
.load-btn i{
    width: 30px;
    height: 30px;
    display: inline-grid;
    place-content: center;
    border-radius: 50%;
    color: var(--primary-dark-lighter-extra);
    background-color: var(--primary-light-color);
    transition: 0.3s ease-in-out;
}
.load-btn button:hover i{
    background-color: var(--primary-color);
    color: var(--white);
}
/* products */
.products-heading{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}
.products-heading h2{
    text-transform: uppercase;
    position: relative;
    padding-left: 10px;
    margin-bottom: 10px;
}
.products-heading h2::after{
    position: absolute;
    content: '';
    width: 3px;
    height: 100%;
    background-color: var(--primary-color);
    left: 0;
}
.products-heading select{
    padding: 0.5rem 1rem;
    border-radius: var(--std-border-radius);
    border: 1px solid var(--primary-gray-light);
    background-color: var(--primary-brighter-color);
    color: var(--primary-dark-light);
    font-size: 1rem;
    cursor: pointer;
}
/* product details */
.product-header{
    margin-bottom: 15px;
}
.product-header h2{
    font-size: clamp(1.2rem, 5vw, 2.5rem);
    text-transform: capitalize;
    color: var(--primary-dark-color);
    margin-bottom: 5px;
}
.product-header h3{
    display: inline-block;
    background-color: var(--primary-brighter-color);
    color: var(--primary-light-color);
    text-transform: capitalize;
    font-weight: 500;
    font-size: 0.8rem;
    padding: 0.25rem 0.5rem;
    border-radius: 5px;
}
.product-details .buttons{
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
}
.accordian-wrapper h2{
    display: flex;
    gap: 5px;
    align-items: center;
}
.accordian-wrapper h2 i{
    color: var(--secondary-light002-color);
}
.accordian-wrapper h2 span{
    text-transform: uppercase;
    font-size: 1rem;
    color: var(--primary-dark-color);
}
.accordian-wrapper .content{
    color: var(--primary-dark-lighter);
}

/* checkout page */
.checkout fieldset:not(:last-of-type){
    margin-bottom: 20px;
}
.checkout fieldset{
    padding: 1rem;
    border-radius: var(--std-flex-border-radius);
}
.checkout fieldset legend{
    color: var(--primary-dark-color);
    text-transform: uppercase;
    font-weight: 600;
}
.checkout .check-options label{
    display: inline-block;
    cursor: pointer;
}
.checkout .check-options input{
    cursor: pointer;
}
.checkout .container-row{
    gap: clamp(15px, 5vw, 30px);
}
.checkout .input{
    width: 100%;
}
.checkout .input[type="radio"]{
    width: 20px;
    height: 20px;
    cursor: pointer;
}
.checkout .disclaimer{
    background-color: #ffd6dc;
    border: 1px solid #ff2a4a;
    padding: clamp(0.8rem, 4vw, 1rem);
    border-radius: var(--std-flex-border-radius);
    color: var(--primary-dark-color);
    font-size: clamp(0.8rem, 4vw, 1rem);
}
.checkout textarea,
.checkout input:not(input[type = 'radio']){
    width: 100%;
    padding: 0.9rem;
    border-radius: var(--std-flex-border-radius);
    font-family: var(--primary-font);
    border: none;
    outline: 1px solid var(--primary-gray);
    transition: 0.3s ease-in-out;
}
.checkout textarea{
    resize: none;
}
.hidden {
    display: none;
}
.checkout table img{
    border-radius: var(--std-flex-border-radius);
    width: 100px;
    height: 100px;
    object-fit: cover;
}
.checkout table input[type="number"]{
    width: 60px;
    padding: 0.5rem;
    border-radius: var(--std-flex-border-radius);
    color: var(--primary-dark-light);
}
.checkout .checkout-btn{
    margin-top: 15px;
}
.checkout .checkout-btn input{
    background-color: var(--primary-color);
    border: none;
    color: var(--white);
    font-size: var(--primary-font);
    font-weight: 500;
    outline: none;
    cursor: pointer;
}
.table-container{
    overflow-x: auto;
}
table {
    border-collapse: separate;
    border-spacing: 0;
    border-radius: var(--std-flex-border-radius);
    overflow: hidden;
    font-family: var(--primary-font);
    margin-top: 15px;
}
table thead{
    background-color: var(--primary-dark-color);
    color: var(--white);
}

th, td {
    padding: 12px 16px;
    border: 1px solid var(--primary-gray-light);
    text-align: left;
}

/* Zebra striping for rows */
tbody tr:nth-child(odd) {
    background-color: var(--primary-brighter-color);
}

tbody tr:nth-child(even) {
    background-color: var(--white);
}

/* Smooth transition on hover */
tbody tr {
    color: var(--primary-dark-color);
    transition: background-color 0.3s ease;
}

tbody tr:hover {
    background-color: var(--primary-bright-color);
}

@media screen and (max-width: 768px) {
    .checkout .row{
        flex-direction: column;
    }
}
/* Modal */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100%;
    background-color: rgba(0,0,0,0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.modal.hidden {
    display: none;
}

.modal-content {
    background-color: var(--white);
    padding: clamp(1.5rem, 4vw, 2rem);
    max-width: 800px;
    width: 90%;
    border-radius: var(--std-flex-border-radius);
    position: relative;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.close-btn {
    color: var(--primary-dark-color);
    position: absolute;
    top: 12px;
    right: 20px;
    font-size: 1.5rem;
    cursor: pointer;
    transition: 0.3s ease-in-out;
}
.close-btn:hover{
    color: var(--primary-color);
    transform: rotate(180deg);
}

.modal-section {
    margin-top: 1rem;
}
.modal-content h2{
    color: var(--primary-dark-color);
    text-transform: uppercase;
    font-size: 1rem;
    text-align: center;
    margin-bottom: 15px;
}
.modal-content hr{
    border: 1px solid var(--primary-gray-light);
}

.modal-section h4 {
    margin-bottom: 0.5rem;
    color: #333;
}

.modal-actions {
    margin-top: 2rem;
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
}

.modal-actions button {
    padding: 0.6rem 1.2rem;
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
    border-radius: 6px;
}

#editFormBtn {
    background-color: #ccc;
}

#confirmSubmitBtn {
    background-color: #007bff;
    color: white;
}

/* timeline styles */
.timeline{
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
}
.timeline-container{
    position: relative;
    z-index: 1;
}
.timeline-item{
    width: 50%;
    padding: clamp(0.5rem, 4vw, 1.5rem) clamp(1.5rem, 4vw, 2rem);
    position: relative;
    opacity: 0;
    transform: translateY(-35px);
    animation: movedown 1s linear forwards;
    transition: 0.3s ease-in-out;
}
@keyframes movedown {
    100%{
        opacity: 1;
        transform: translateY(0);
    }
}
.timeline-item:nth-child(1){
    animation-delay: 0s;
}
.timeline-item:nth-child(2){
    animation-delay: 1s;
}
.timeline-item:nth-child(3){
    animation-delay: 2s;
}
.timeline-item:nth-child(4){
    animation-delay: 3s;
}
.timeline-item:nth-child(5){
    animation-delay: 4s;
}
.timeline-item img{
    width: 25px;
    height: 25px;
    background-color: var(--white);
    border-radius: var(--std-flex-border-radius);
    position: absolute;
    top: 45px;
    right: -15px;
    z-index: 1;
}
.right-timeline img{
    left: -11px;
}
.timeline-item .content{
    background: var(--white);
    padding: clamp(1.2rem, 5vw, 1.7rem);
    border-radius: var(--std-flex-border-radius);
}
.timeline-item .content small{
    background-color: var(--primary-color);
    padding: 5px;
    display: inline-block;
    border-radius: 10px;
    color: var(--white);
    margin-bottom: 10px;
    font-weight: 600;
}
.timeline-item .content p{
    color: var(--primary-dark-color);
}
.right-timeline{
    left: 50%;
}
.timeline-container::after{
    content: '';
    position: absolute;
    background-color: var(--white);
    border-radius: 2.5rem;
    width: 5px;
    height: 0;
    top: 0;
    left: 50%;
    z-index: -1;
    animation: moveline 6s linear forwards;
    transition: 0.3s ease;
}
@keyframes moveline {
    100%{
        height: 100%;
    }
}
.left-timeline-pointer,
.right-timeline-pointer{
    height: 0;
    width: 0;
    position: absolute;
    top: 45px;
    z-index: 1;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
}
.left-timeline-pointer{
    border-left: 15px solid var(--white);
    right: 21px;
}
.right-timeline-pointer{
    border-right: 15px solid var(--white);
    left: 21px;
}
.partner-logos{
    display: flex;
    flex-wrap: wrap;
    gap: clamp(20px, 5vw, 40px);
    justify-content: center;
    align-items: center;
}
.partner-logos .p-logo{
    max-width: 150px;
    width: 100%;
}
.partner-logos .p-logo img{
    width: 100%;
    object-fit: contain;
    transition: 0.3s ease-in-out;
    cursor: pointer;
}
.partner-logos .p-logo img:hover{
    filter: grayscale(100%);
    opacity: 0.7;
}
@media screen and (max-width:550px){
    .timeline-container{
        margin: 50px auto;
    }
    .timeline-item{
        margin-left: 31px;
    }
    .timeline-container::after{
        left: 31px;
    }
    .right-timeline, .left-timeline{
        left: 0;
        width: 90%;
    }
    .timeline img{
        left: -10px;
    }
    .left-timeline-pointer,
    .right-timeline-pointer{
        border-right: 15px solid var(--white);
        border-left: 0;
        left: 17px;
    }
}



@media screen and (max-width:548px) {
    .products-heading{
        flex-direction: column;
    }
    .products-heading .select{
        margin-top: 10px;
    }
}
@keyframes rotateCircle {
    from{
        transform: rotate(0);
    }
    to{
        transform: rotate(360deg);
    }
}
@keyframes smoothanim00 {
    0%{
        transform: translate(0,0);
    }
    50%{
        transform: translate(5px, -5px);
    }
    100%{
        transform: translate(5px, 5px);
    }
}
@keyframes smoothanim01 {
    from{
        transform: translate(0,0);
    }
    to{
        transform: translate(-5px, 0);
    }
}

/* product-details */

@media screen and (max-width:1174px){
    header .kch-nav-item.bottom ul li > a{
        font-size: 0.9rem;
    }
    header .kch-nav-item.bottom .other-btns a > button{
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }
    header .kch-nav-item.bottom a > svg{
        width: 25px;
    }
}

@media screen and (max-width:950px) {
    header .kch-navbar .logo{
        width: 150px;
    }
    header .kch-nav-item.top span,
    header .kch-navbar .contact i,
    header .kch-navbar .contact a{
        font-size: 0.9rem;
    }
    header .kch-navbar .contact i{
        width: 40px;
        height: 40px;
    }
    .navbar-border-left::before{
        background: none;
    }
    header .kch-nav-item.bottom .other-btns a > button{
        padding: 0.5rem 1rem;
    }
}

@media screen and (max-width:900px) {
    body.no-scroll{
        overflow: hidden;
    }
    header .kch-top-header{
        background-color: var(--primary-color);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        line-height: 1px;
    }
    header .kch-top-header::after{
        border-top-right-radius: 10px;
    }
    header .kch-top-header::before{
        border-top-left-radius: 10px;
    }
    header .kch-top-header::after,
    header .kch-top-header::before{
        box-shadow: 0 -19px 0 var(--primary-color);
    }
    header .kch-top-header .kch-top-header-item .social{
        gap: 10px;
        margin-top: -5px;
    }
    header .kch-nav-item.bottom nav{
        justify-content: right;
    }
    header .kch-nav-item.bottom ul.menu.desktop,
    header .kch-nav-item.bottom .other-btns.desktop
    {
        display: none;
    }
    header .kch-nav-item.bottom .other-btns svg{
        fill: var(--primary-brighter-color);
    }
    header .kch-nav-item.bottom .menu-icon{
        display: flex;
    }
    header .kch-nav-item.bottom .menu-icon:hover.bar{
        transform: scale(4);
    }
    header .kch-navbar.mobile{
        width: 50%;
        height: 100%;
        display: flex;
        background-color: var(--primary-darker-color);
        box-shadow: -3px 3px 5px rgba(0,0,0,0.2);
        flex-direction: column;
        position: fixed;
        right: -100%;
        opacity: 0;
        top: 0;
        overflow-y: scroll;
        z-index: 50;
        transition: 0.5s ease-in-out;
    }
    header .kch-navbar.mobile.open{
        right: 0;
        opacity: 1;
    }
    header .kch-navbar.mobile ul{
        flex-direction: column;
        margin-left: 0;
    }
    header .kch-navbar.mobile ul li{
        display: inline-block;
        width: 100%;
        cursor: pointer;
    }
    header .kch-navbar.mobile ul li > a,
    header .kch-navbar.mobile ul li > span{
        padding: 1rem;
        font-size: 1rem;
        color: #fff;
        display: block;
    }
    header .kch-navbar.mobile ul li .dropdown-list{
        flex-direction: column;
        position: static;
        visibility: visible;
        opacity: 1;
        width: 100%;
        transform: translateX(0);
        background-color: var(--primary-dark-color);
        color: #fff;
        max-height: 0;
        overflow: hidden;
        border-color: transparent;
        transition: 0.3s ease-in-out;
    }
    .mobile-menu-overlay.slide-back{
        left: 0;
    }
    header .kch-navbar.mobile ul li .dropdown-list.mega-menu{
        padding: 0;
    }
    header .kch-navbar.mobile ul li .dropdown-list.active{
        max-height: 1200px;
        padding: 0;
    }
    header .kch-navbar.mobile ul li .dropdown-list::before{
        border-style: none;
    }
    header .kch-nav-item.bottom ul li .dropdown-list .link:not(:last-of-type){
        border-bottom: 1px solid var(--primary-dark-light);
    }
    header .kch-nav-item.bottom ul li.active{
        background-color: var(--primary-dark-lighter);
    }
    header .kch-nav-item.bottom ul li.active a,
    header .kch-nav-item.bottom ul li.active span{
        color: var(--primary-brighter-color);
    }
    header .kch-nav-item.bottom ul li > a:hover,
    header .kch-nav-item.bottom ul li > span:hover,
    header .kch-nav-item.bottom ul li:hover > span.dropdown{
        background-color: var(--primary-dark-lighter);
        color:  var(--primary-brighter-color);
    }
    header .kch-nav-item.bottom ul li .dropdown-list.mega-menu .mega-subheading{
        color: var(--primary-bright-color);
    }
    header .kch-nav-item.bottom ul li .dropdown-list.mega-menu
    .mega-subheading::after{
        background-color: var(--primary-bright-color);
        height: 1.5px;
    }
    header .kch-nav-item.bottom ul li .dropdown-list.mega-menu .link{
        color: var(--primary-bright-color);
    }
    header .kch-nav-item.bottom ul li .dropdown-list.mega-menu .link:hover{
        background-color: var(--primary-bright-color);
        color: var(--primary-dark-lighter);
    }
    header .kch-nav-item.bottom .close{
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 1rem;
    }
    header .kch-nav-item.bottom .close span{
        display: inline-grid;
        place-content: center;
        width: 20px;
        height: 60px;
        color: var(--primary-brighter-color);
        font-size: 2rem;
        margin: 10px;
        cursor: pointer;
    }
    header .kch-nav-item.bottom .close span i{
        opacity: 0;
        transition: all 0.5s ease-in-out;
    }
    header .kch-nav-item.bottom .close span i.rotate{
        opacity: 1;
        transform: rotate(225deg);
    }
    header .kch-nav-item.bottom .close .show-logo{
        display: none;
    }
    header .kch-nav-item.bottom .other-btns{
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 15px 0;
    }
    header .kch-nav-item.bottom .contact-info{
        display: flex;
        flex-direction: column;
        justify-content: start;
        align-items: start;
        padding: 1rem;
        gap: 1rem;
    }
    header .kch-nav-item.bottom .contact-info i{
        color: #fff;
        border-color: #fff;
    }
    header .kch-nav-item.bottom .contact-info span{
        color: var(--primary-bright-color);
    }
    header .kch-nav-item.bottom .contact-info a{
        color: #fff;
    }
}
@media screen and (max-width:700px){
    header .kch-nav-item.top{
        display: none;
    }
    header .kch-navbar .logo{
        width: 120px;
    }
    .flex{
        flex-direction: column;
    }
    .address-container .row{
        flex-direction: column-reverse;
    }
    .grid-container{
        grid-template-columns: 1fr;
    }
    #about .flex-item {
        flex-basis: 100%;
    }
    .circle-img-deco{
        width: 150%;
        height: 150%;
    }
}
@media screen and (max-width:600px){
    :root{
        --std-border-radius: 1rem;
    }
    header .kch-navbar.mobile{
        width: 70%;
    }
    .image-decorations::after{
        top: -15px;
        left: 15px;
    }
    .image-decorations::before{
        background: repeating-linear-gradient(
        45deg,
        var(--primary-color),
        var(--primary-color) 2.5px,
        transparent 2.5px,
        transparent 7.5px 
        );
        top: 10px;
        bottom: -10px;
    }
}
@media screen and (max-width:550px){
    footer .footer-foot .foot:nth-child(1){
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
}
@media screen and (max-width:400px){
    header .kch-navbar.mobile{
        width: 100%;
    }
    header .kch-nav-item.bottom .close .show-logo{
        display: block;
    }
}
