body {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    scroll-behavior: smooth;
    font-family: 'Inter', sans-serif;
    top: 0 !important;
}

html:has([data-aos]),
body:has([data-aos]) {
    overflow-x: clip;
}

/*=====common Styling Start Here=====*/
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
button,
ul,
ol,
figure {
    padding: 0px;
    margin: 0px;
    list-style: none;
    text-decoration: none;
    border: none;
    outline: none;
}

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

a {
    color: var(--darkcolor);
    display: inline-block;
}

:root {
    --primarycolor: #ff3c1f;
    --secondarycolor: #1ea7b6;
    --gradient: linear-gradient(135deg, #1ea7b6, #0f6fff);
    --darkcolor: #0b0f1a;
    --lightcolor: #fff;
    --bgcolor: #f7f7f7;
    --textcolor: #111827;
    --textlight: #6b7280;
    --bordercolor: #e5e7eb;
}

.common-style {
    display: inline-block;
    width: 100%;
    padding: 45px 0px;
}

.common-title-box {
    text-align: center;
}

.common-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--secondarycolor);
    background: var(--lightcolor);
    border: 1px solid #dce4e8;
    font-size: 15px;
    font-weight: 500;
    text-transform: capitalize;
    padding: 5px 15px;
    border-radius: 100px;
    letter-spacing: 0.2px;
    margin-bottom: 16px;
    box-shadow:
        0 1px 2px rgba(0, 0, 0, .03),
        inset 0 1px 0 rgba(255, 255, 255, .9);
}

.common-label::before {
    content: "";
    width: 6px;
    height: 6px;
    background: var(--secondarycolor);
    border-radius: 50%;
}

.common-title {
    color: var(--darkcolor);
    font-size: 37px;
    font-weight: 700;
    text-transform: capitalize;
    margin-bottom: 32px;
}

.common-btn {
    display: inline-block;
    padding: 14px 28px;
    color: var(--lightcolor);
    background: var(--primarycolor);
    font-size: 15px;
    font-weight: 600;
    text-transform: capitalize;
    border-radius: 100px;
    cursor: pointer;
    transition: all 0.25s ease;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.5px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

.common-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
}

.common-btn::before {
    content: "";
    position: absolute;
    top: 0%;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(120deg,
            rgba(255, 255, 255, 0.4),
            rgba(255, 255, 255, 0));
    transition: 0.6s ease;
}

.common-btn:hover::before {
    left: 120%;
}

.owl-nav {
    margin-top: 0px !important;
}

.owl-nav button {
    width: 36px;
    height: 36px;
    border-radius: 50% !important;
    color: var(--lightcolor) !important;
    background: var(--secondarycolor) !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    line-height: normal;
    position: absolute;
    top: 43%;
    margin: 0px !important;
}

.owl-nav button i {
    color: var(--lightcolor);
    font-size: 14px;
}

.owl-nav .owl-prev {
    left: -19px;
}

.owl-nav .owl-next {
    right: -19px;
}

.owl-dots {
    margin-top: 24px !important;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
    background-color: var(--primarycolor);
}

.bgcolor {
    background-color: var(--bgcolor);
}

.fancybox-container {
    z-index: 9999999999;
}

body.no-scroll {
    overflow: hidden;
}

.pagination-box {
    margin-top: 30px;
}

.pagination {
    width: fit-content;
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0px auto;
}

.pagination .page-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    padding: 0px;
    border-radius: 50% !important;
    color: var(--darkcolor);
    background-color: var(--lightcolor);
    font-size: 16px;
    font-weight: 500;
    transition: all 0.25s ease;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    border: 0px;
}

.pagination .page-link:hover {
    transform: translateY(-1px);
    color: var(--lightcolor);
    background-color: var(--primarycolor);
}

.pagination .page-item.active .page-link {
    color: var(--lightcolor);
    background-color: var(--primarycolor);
}

.play-btn {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    color: var(--lightcolor);
    background: var(--gradient);
    font-size: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
    box-shadow: 0 8px 20px rgba(30, 167, 182, 0.35);
}

.play-btn::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: var(--secondarycolor);
    opacity: 0.4;
    animation: ripple 1.5s infinite;
    z-index: -1;
}

.common-tab .nav {
    justify-content: center;
    align-items: center;
    border: none;
    flex-wrap: nowrap;
    list-style: none;
    padding: 0px;
    margin: 0px;
}

.common-tab .nav-item {
    margin: 0px;
    margin-right: 15px;
}

.common-tab .nav-link {
    white-space: nowrap;
    border: 1px solid var(--primarycolor);
    text-align: center;
    color: var(--primarycolor);
    font-size: 16px;
    font-weight: 600;
    text-transform: capitalize;
    text-align: center;
    border-radius: 8px;
    padding: 12px;
    line-height: normal;
    letter-spacing: 0.3px;
    transition: all 0.3s ease-in-out;
}

.common-tab .nav-link:hover {
    color: var(--primarycolor);
    border-color: var(--primarycolor);
}

.common-tab .nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
    color: var(--lightcolor);
    border-color: var(--primarycolor);
    background: var(--primarycolor);
}

.custom-space {
    padding-bottom: 20px;
}

.whatsapp-btn img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: inherit;
}

.whatsapp-btn {
    position: fixed;
    bottom: 15px;
    right: 19px;
    z-index: 99;
    border-radius: 50%;
    box-shadow: 0 4px 6px #0000004d;
    width: 50px;
    height: 50px;
    animation: pluse 2s linear infinite;
}

/*=====common Styling End Here=====*/
/*-------------------------------Home Page Styling Start Here-------------------------------*/
/*=====Header Styling Start Here======*/
.header {
    width: 100%;
    position: fixed;
    top: 0%;
    left: 0%;
    z-index: 9999999999;
    transition: all 0.3s ease;
    padding: 0px 12px;
}

.header.is-sticky {
    position: fixed;
    background: rgba(11, 21, 30, 0.9);
    backdrop-filter: blur(8px);
    box-shadow: 0 7px 29px rgba(0, 0, 0, 0.2);
    animation: smoothSlideDown 0.4s ease forwards;
    padding: 0px 12px !important;
}

.header .navbar-brand img {
    height: 70px;
    object-fit: contain;
    border-radius: 4px;
}

.header .nav-item {
    margin-right: 4px;
}

.header .nav-link {
    color: var(--lightcolor);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 8px 16px !important;
    transition: all 0.3s ease;
    border-radius: 4px;
    border-radius: 100px;
    text-transform: capitalize;
}

.header .navbar-expand-lg {
    padding: 5px 0px;
}

.header .navbar-nav {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border-radius: 100px;
    z-index: 9;
    -webkit-backdrop-filter: blur(70px);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: 1s all cubic-bezier(0.075, 0.82, 0.165, 1) 0.2s;
    padding: 8px;
    margin-left: 5px;
}

.header .nav-link:hover,
.header .nav-link.active {
    background-color: var(--lightcolor);
    color: var(--darkcolor) !important;
}

.nav-header {
    display: none;
}

.phone-number {
    color: var(--lightcolor);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
}

.phone-icon {
    color: var(--lightcolor);
    font-size: 1.2rem;
    opacity: 0.9;
}

.grid-menu-btn {
    width: 46px;
    height: 46px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 6px;
    color: var(--darkcolor);
    cursor: pointer;
    background: rgba(255, 255, 255, 0.4);
    animation: glowRing 2s infinite;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 31px;
}

.phone-info {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--lightcolor);
}

.phone-info i {
    color: var(--lightcolor);
    font-size: 22px;
    animation: phoneRing 1s ease-in-out infinite;
    transform-origin: center;
}

.phone-info .small-label {
    display: block;
    font-size: 12px;
    color: var(--lightcolor);
}

.phone-info a {
    color: var(--lightcolor);
    font-size: 16px;
    font-weight: 500;
}

.header-right .btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--gradient);
    color: #fff;
    padding: 10px 18px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    text-transform: capitalize;
    transition: 0.3s ease;
}

.header-right .btn i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.header-right .btn:hover {
    background: linear-gradient(90deg, #1e47e6, #3a63e0);
}

.header-right .btn:hover i {
    transform: translateX(4px);

}

.grid-menu-btn {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: 0.3s;
}

.grid-menu-btn i {
    color: #fff;
    font-size: 18px;
}

.grid-menu-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

/*=====Header Styling End Here======*/

/*=====Hero Panel Styling Start Here=====*/
.hero-panel {
    width: 100%;
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.hero-panel::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;

    background: linear-gradient(90deg,
            rgba(5, 10, 20, 0.85) 0%,
            rgba(5, 10, 20, 0.75) 25%,
            rgba(5, 10, 20, 0.5) 45%,
            rgba(5, 10, 20, 0.2) 60%,
            rgba(5, 10, 20, 0) 75%);
}


.hero-panel .hero-wrapper {
    position: relative;
    width: 100%;
    min-height: 100vh;
}

.hero-panel .hero-slider,
.hero-panel .hero-slider picture,
.hero-panel .hero-slider img {
    display: block;
    width: 100%;
    min-height: 100vh;
}

.hero-panel .hero-slider img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    display: flex;
    align-items: center;
}

.hero-content .content {
    padding-top: 0;
    max-width: 600px;
}

.hero-panel .badge-tag {
    display: inline-flex;
    align-items: center;
    backdrop-filter: blur(10px);
    color: var(--lightcolor);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 6px 14px 6px 6px;
    border-radius: 100px;
    font-size: 12px;
    letter-spacing: 1px;
    margin-bottom: 25px;
}

.hero-panel .badge-brand {
    color: var(--lightcolor);
    background: var(--gradient);
    padding: 4px 12px;
    margin-right: 10px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 700;
}

.hero-panel .hero-title {
    color: var(--lightcolor);
    font-size: 64px;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -1px;
    margin-bottom: 20px;
}

.hero-panel .hero-title span {
    background: var(--gradient);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-panel p {
    color: #c7d0d9;
    font-size: 15px;
    max-width: 520px;
    line-height: 24px;
}

.hero-content .hero-btns {
    display: flex;
    align-items: center;
    margin-top: 35px;
}

.hero-content .hero-btns .common-btn {
    display: inline-block;
    padding: 12px 24px;
    color: var(--lightcolor);
    background: var(--secondarycolor);
    font-size: 15px;
    font-weight: 600;
    border-radius: 100px;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    margin-right: 15px;
}

/*=====Hero Panel Styling End Here=====*/

/*=====Features Panel Styling Start Here=====*/
.features-panel {
    position: relative;
    z-index: 10;
    margin-top: -56px;
    padding-bottom: 20px;
}

.features-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding: 30px;
    padding: 18px;
    border-radius: 20px;
    background: var(--lightcolor);
    backdrop-filter: blur(12px);
    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.features-container .features-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 18px;
    border-radius: 14px;
    background: linear-gradient(145deg, #ffffff, #f3f4f6);
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    transition: all 0.35s ease;
    cursor: pointer;
}

.features-container .features-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow:
        0 15px 35px rgba(0, 0, 0, 0.12);
    background: var(--lightcolor);
}

.features-container i {
    font-size: 19px;
    color: var(--lightcolor);
    min-width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: var(--gradient);
    box-shadow:
        0 6px 15px rgba(99, 102, 241, 0.4);
}

.features-container h3 {
    font-size: 17px;
    font-weight: 600;
    color: var(--darkcolor);
    margin-bottom: 5px;
}

.features-container p {
    font-size: 13px;
    color: var(--textlight);
    line-height: 1.5;
}

.features-item {
    animation: fadeUp 0.6s ease forwards;
}

/*=====Features Panel Styling End Here=====*/

/*=====About Us Panel Styling Start Here=====*/
.about-panel {
    padding-top: 16px !important;
}

.about-wrapper {
    width: 100%;
    height: 100%;
    padding: 30px;
    border-radius: 15px;
    background-color: var(--lightcolor);
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.about-wrapper .main-img {
    width: 100%;
    height: 100%;
    border-radius: 15px;
}

.about-wrapper .main-img img {
    width: 100%;
    height: 100%;
    object-fit:contain;
    /* object-fit: cover; */
    border-radius: 15px;
}

.about-content .common-title {
    font-size: 32px;
    margin-bottom: 18px;
}

.about-content p {
    color: var(--textlight);
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 39px;
}

.about-content .mission-wrapper {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 25px;
    padding-bottom: 36px;
    border-bottom: 1px solid #e9e9e9;
    gap: 15px;
}

.about-content .identity-block {
    width: 48%;
    padding: 20px;
    border-radius: 10px;
    background-color: #f7f7f7;
}

.about-content i {
    width: 52px;
    height: 52px;
    background: var(--gradient);
    color: var(--lightcolor);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    margin-bottom: 16px;
}

.about-content h3 {
    color: var(--darkcolor);
    font-size: 20px;
    font-weight: 600;
    text-transform: capitalize;
    margin-bottom: 8px;
}

.about-content .identity-block p {
    color: var(--textlight);
    font-size: 15px;
    line-height: 21px;
    margin-bottom: 0px;
}

/*=====About Us Panel Styling End Here=====*/

/*=====Products Styling Start Here======*/
.product-panel {
    padding-bottom: 24px;
}

.Products-container .common-tab {
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
    -ms-overflow-style: none;
    user-select: none;
    -webkit-user-select: none;
    margin-bottom: 32px;
    background-color: transparent;
    border: none;
}

.Products-container .common-tab::-webkit-scrollbar {
    display: none;
}

.Products-container .common-tab .nav-tabs {
    display: flex;
    flex-wrap: nowrap;
    width: max-content;
    gap: 10px;
    border: none;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-bottom: 4px;
     margin:0px auto;
}

.Products-container .common-tab .nav-item {
    flex: 0 0 auto;
}

.Products-container .common-tab .nav-link {
    white-space: nowrap;
    color: #000;
    background: transparent;
    border: 0px;
    border-radius: 0px;
    padding: 0px;
    font-size: 17px;
    font-weight: 400;
    text-transform: capitalize;
    text-align: center;
    line-height: normal;
    letter-spacing: 0.3px;
    transition: all 0.3s ease-in-out;
    width: auto;
}

.Products-container .common-tab .nav-item:hover .nav-link,
.Products-container .common-tab .nav-link.active {
    color: #000;
    border-bottom: 1px solid black;
}

.product-box {
    width: 100%;
    padding: 15px 15px 12px;
    border-radius: 15px;
    position: relative;
    overflow: hidden;
    margin-bottom: 26px;
    background-color: var(--lightcolor);
}

.product-box .product-img {
    width: 100%;
    height: 280px;
    border-radius: 15px;
    perspective: 1000px;
}

.product-img .flip-inner {
    width: 100%;
    height: 100%;
    border-radius: inherit;
    position: relative;
    transition: transform 0.7s ease;
    transform-style: preserve-3d;
}

.product-img:hover .flip-inner {
    transform: rotateY(180deg);
}

.product-img img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: inherit;
    backface-visibility: hidden;
    transition: all 0.3s ease-in-out;
}

.product-img .back-img {
    transform: rotateY(180deg);
    border-radius: inherit;
}

.product-box .product-bottom {
    position: absolute;
    bottom: 5px;
    right: 8px;
    display: flex;
    align-items: center;
}

.product-box .product-description {
    padding: 17px 2px 13px;
}

.product-box h3 {
    color: var(--darkcolor);
    font-size: 19px;
    font-weight: 600;
    text-transform: capitalize;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    height: 27px;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    margin-bottom: 6px;
}

.product-box p {
    color: var(--textlight);
    font-size: 15px;
    line-height: 24px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    height: 47px;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    margin-bottom: 21px;
}

.product-box .cta-btns {
    width: 100%;
    display: flex;
    gap: 8px;
}

.product-box .btn-whatsapp,
.view-btn {
    width: 50%;
    text-align: center;
    padding: 9px 12px;
    border-radius: 5px;
    font-size: 14px;
    border: 1px solid var(--secondarycolor);
}

.product-box .view-btn {
    color: var(--lightcolor);
    background-color: var(--secondarycolor);
}

.btn-whatsapp {
    background-color: #0C9F16;
    color: var(--lightcolor);
    border-color: #0C9F16 !important;
}

.product-box .common-btn i {
    font-size: 15px;
}

/*=====Products Styling End Here=====*/

/*=====Counter Panel Styling Start Here=====*/
.counter-panel {
    display: block;
    padding: 0px !important;
}

.counter-container {
    width: 100%;
    height: 480px;
    background-image: url("../images/more-images/bg-img2.webp");
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.counter-wrap {
    height: 100%;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 26px;
}

.counter-wrap .counter-card {
    width: 22%;
    background: var(--lightcolor);
    border: 1px solid #cfcfcf;
    padding: 50px 10px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.counter-wrap .count {
    display: flex;
    align-items: center;
    justify-content: center;
}

.counter-wrap span {
    color: var(--secondarycolor);
    font-size: 52px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 16px;
}

.counter-wrap h3 {
    color: var(--textlight);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/*=====Counter Panel Styling Start Here=====*/

/*=====Cet Panel Styling Start Here=====*/
.cet-slider .category-item {
    text-align: center;
    background: rgba(99, 102, 241, 0.08);
    border-radius: 15px;
    padding: 20px;
    position: relative;
    overflow: hidden;
}

.cet-slider .owl-item:nth-child(4n+1) .category-item {
    background: rgba(99, 102, 241, 0.08);
}

.cet-slider .owl-item:nth-child(4n+2) .category-item {
    background: rgba(16, 185, 129, 0.08);
}

.cet-slider .owl-item:nth-child(4n+3) .category-item {
    background: rgba(245, 158, 11, 0.08);
}

.cet-slider .owl-item:nth-child(4n+4) .category-item {
    background: rgba(239, 68, 68, 0.08);
}

.cet-slider .category-item img {
    width: auto;
    height: 80px;
    object-fit: contain;
    margin: 0px auto 15px;
}

.cet-slider p {
    color: var(--textlight);
    font-size: 14px;
    font-weight: 500;
    text-transform: capitalize;
    margin-top: 10px;
}

/*=====Cet Panel Styling End Here=====*/

/*=====Reviews Panel Styling Start Here=====*/
.reviews-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 24px;
}

.reviews-box {
    width: 23%;
    background: var(--lightcolor);
    border-radius: 14px;
    padding: 25px;
    border: 1px solid var(--bordercolor);
    transition: all .35s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.04);
}

.platform-box {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--bordercolor);
}

.platform-box .icon-box {
    width: 48px;
    height: 48px;
    background: #fff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--bordercolor);
}

.platform-box .icon-box img {
    width: 27px;
    height: auto;
    object-fit: contain;
}

.platform-box h3 {
    font-size: 22px;
    color: var(--darkcolor);
    font-weight: 600;
}

.review-bottom {
    margin-top: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.review-bottom .stars {
    display: flex;
    gap: 3px;
}

.review-bottom .stars i {
    width: 19px;
    height: 19px;
    border-radius: 4px;
    font-size: 9px;
    line-height: normal;
    padding: 0px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--lightcolor);
    background: var(--gradient);
}

.review-bottom span {
    color: var(--textlight);
    font-size: 13px;
    line-height: normal;
}

/*=====Reviews Panel Styling End Here=====*/

/*=====Testimonial Panel Styling Start Here====*/
.common-title-box.text-start {
    text-align: left;
}

.testimonial-slide {
    width: 100%;
    background-color: var(--lightcolor);
    border-radius: 0px 25px 0px 25px;
    padding: 25px;
}

.testimonial-slide i {
    color: var(--secondarycolor);
    font-size: 29px;
    margin-bottom: 18px;
}

.testimonial-slide p {
    color: var(--textlight);
    font-size: 15px;
    line-height: 24px;
    display: -webkit-box;
    -webkit-line-clamp: 20;
    line-clamp: 20;
    height: 119px;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
}

.testimonial-slide .reviewer-box {
    display: flex;
    align-items: center;
    margin-top: 28px;
}

.testimonial-slide .reviewer-box img {
    width: 43px;
    height: auto;
    object-fit: contain;
    margin-right: 12px;
}

.testimonial-slide h4 {
    color: var(--darkcolor);
    font-size: 15px;
    font-weight: 600;
    text-transform: capitalize;
    margin-bottom: 2px;
}

.testimonial-slide .reviewer-box span {
    color: var(--textlight);
    font-size: 13px;
}

.testimonial-slider .owl-nav button {
    width: 30px;
    height: 30px;
    border-radius: 50% !important;
    background: var(--gradient) !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    top: -24%;
}

.testimonial-slider .owl-nav button i {
    font-size: 12px;
}

.testimonial-slider .owl-nav .owl-prev {
    left: unset;
    right: 41px;
}

.testimonial-slider .owl-nav .owl-next {
    right: 1px;
}

/*=====Testimonial Panel Styling End Here=====*/

/*=====Faq Panel Styling Start Here=====*/
.faq-wrapper .accordion-item {
    width: 100%;
    border: 0px;
    padding: 0px;
    border-radius: 8px !important;
    margin-bottom: 24px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.faq-wrapper .accordion-header {
    margin: 0px !important;
}

.faq-wrapper .accordion-item:last-child {
    margin-bottom: 0px;
}

.faq-wrapper .accordion-button.collapsed {
    color: var(--darkcolor) !important;
    background-color: var(--lightcolor);
}

.faq-wrapper .accordion-button {
    color: var(--lightcolor);
    background-color: var(--secondarycolor);
    font-size: 16px;
    font-weight: 600;
    text-transform: capitalize;
    padding: 15px 14px;
    padding-right: 58px;
}

.faq-wrapper .accordion-button:focus {
    box-shadow: none;
}

.faq-wrapper p {
    color: var(--textlight);
    font-size: 15px;
    line-height: 24px;
}

.faq-wrapper p a {
    color: var(--secondarycolor);
    text-decoration: underline;
    text-underline-offset: 5px;
}

.faq-wrapper .accordion-button::after {
    position: absolute;
    content: "\f067";
    font-family: "Font Awesome 7 Free";
    font-weight: 700;
    right: 12px;
    font-size: 14px;
    text-align: center;
    transition: all 0.4s ease-in-out;
    color: var(--lightcolor);
    width: 31px;
    height: 31px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px dashed var(--lightcolor);
    border-radius: 100px;
    text-align: center;
    background-color: var(--secondarycolor);
    background-image: none !important;
    transform: rotate(0deg);
}

.faq-wrapper .accordion-button:not(.collapsed)::after {
    content: "\f068";
    font-family: "Font Awesome 7 Free";
    color: var(--secondarycolor);
    background-color: var(--lightcolor);
}

.faq-wrapper .accordion-body {
    padding: 15px 14px;
}

/*=====Faq Panel Styling End Here=====*/

/*=====Footer Styling Start Here=====*/
footer .top-footer {
    padding: 30px 0px;
}

footer img {
    height: 68px;
    object-fit: contain;
    border-radius: 12px;
    margin-bottom: 16px;
}

footer p {
    color: var(--textlight);
    font-size: 16px;
    line-height: 22px;
    margin-bottom: 30px;
}

footer .social-links {
    display: flex;
    align-items: center;
    gap: 10px;
}

footer .social-links a {
    width: 32px;
    height: 32px;
    border-radius: 4px;
    background: var(--gradient);
    color: var(--lightcolor);
    font-size: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease-in-out;
}

footer .social-links a:hover {
    transform: translateY(-3px);
}

footer h2 {
    color: var(--darkcolor);
    font-size: 18px;
    font-weight: 600;
    text-transform: capitalize;
    margin-bottom: 14px;
}

footer .ftr-box ul li {
    margin-bottom: 10px;
}

footer .ftr-box ul a {
    color: var(--textlight);
    font-size: 15px;
    font-weight: 500;
    text-transform: capitalize;
    transition: all 0.3s ease-in-out;
}

footer .ftr-box ul a:hover,
footer .ftr-contact a:hover {
    color: var(--primarycolor);
}

footer .ftr-contact li {
    display: flex;
    gap: 10px;
    margin-bottom: 16px;
}

footer .ftr-contact li:last-child {
    margin-bottom: 0px;
}

footer .ftr-contact span {
    width: 30px;
    height: 30px;
    border-radius: 5px;
    color: var(--lightcolor);
    background: var(--gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

footer .ftr-contact div {
    width: 84%;
}

footer .ftr-contact a {
    color: var(--textlight);
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease-in-out;
}

footer .bottom-footer {
    width: 100%;
    background: var(--bgcolor);
    padding: 12px;
    text-align: center;
}

footer .bottom-footer p {
    color: var(--darkcolor);
    font-size: 14px;
    font-weight: 500;
    line-height: normal;
    margin: 0px;
    padding: 0px;
}

/*====Footer Styling End Here=====*/

/*=====Ticker Panel Styling Start Here=====*/
.ticker-wrapper {
    width: 100%;
    overflow: hidden;
    color: var(--lightcolor);
    background: var(--gradient);
    padding: 18px 0;
    position: relative;
}

.ticker {
    display: flex;
    width: max-content;
    animation: tickerScroll 20s linear infinite;
}

.ticker span {
    color: inherit;
    margin-right: 28px;
    font-size: 21px;
    font-weight: 500;
    text-transform: capitalize;
    white-space: nowrap;
    opacity: 0.95;
}

.ticker-wrapper:hover .ticker {
    animation-play-state: paused;
}

.ticker-wrapper2 .ticker {
    animation: tickerScroll 20s linear infinite reverse;
}

/*=====Ticker Panel Styling End Here=====*/

/*=====Connect Wrap Panel Styling Start Here=====*/
.connect-wrap {
    position: relative;
    border-radius: 20px;
    padding: 35px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    background: var(--gradient);
    overflow: hidden;
}

.connect-wrap .cta-content {
    max-width: 600px;
}

.connect-wrap .cta-label {
    color: var(--lightcolor);
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 10px;
}

.connect-wrap .cta-title {
    color: var(--lightcolor);
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 10px;
}

.connect-wrap .cta-subtext {
    color: var(--lightcolor);
    font-size: 14px;
}

.connect-wrap .cta-actions {
    display: flex;
    gap: 12px;
}

.connect-wrap .cta-btn {
    padding: 12px 22px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s ease;
}

.connect-wrap .cta-btn.primary {
    color: var(--primary-blue);
    background: var(--lightcolor);
}

.connect-wrap .cta-btn:hover {
    transform: translateY(-2px);
}

.connect-wrap .cta-btn.secondary {
    color: var(--lightcolor);
    border: 1px solid var(--lightcolor);
}

/*=====Connect Wrap Panel Styling End Here=====*/

/*=====Work with Us Panel Styling Start Here=====*/
.work-content .common-title {
    margin-bottom: 17px;
}

.work-content p {
    color: var(--textlight);
    font-size: 16px;
    line-height: 24px;
}

.work-content .why-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 28px;
}

.work-content .why-card {
    width: 48%;
    background: var(--lightcolor);
    border-radius: 18px;
    padding: 20px;
    border: 1px solid #e2e8f0;
    transition: 0.4s ease;
    position: relative;
}

.work-content .why-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.work-content i {
    color: var(--lightcolor);
    background: var(--gradient);
    width: 54px;
    height: 54px;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 22px;
    margin-bottom: 20px;
}


.work-content h3 {
    color: var(--darkcolor);
    font-size: 18px;
    font-weight: 600;
    text-transform: capitalize;
    margin-bottom: 10px;
}

.work-content p {
    color: var(--textlight);
    font-size: 14px;
    line-height: 22px;
    margin: 0px;
    /* display: -webkit-box;
    -webkit-line-clamp:3;
    line-clamp:3;
    height:65px;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical; */
}

.work-media {
    width: 100%;
    height: 100%;
    align-content: center;
    text-align: center;
}

.work-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/*=====Work with Us Panel Styling Start Here=====*/

/*=====Post Panel Styling Start Here=====*/
.post-box {
    width: 100%;
    padding: 15px;
    border-radius: 15px;
    background-color: var(--lightcolor);
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    margin-bottom: 24px;
    transition: all 0.3s ease-in-out;
}

.post-slider .post-box {
    border: 1px solid var(--bordercolor);
    margin-bottom: 0px;
    box-shadow: none;
}

.post-box figure {
    width: 100%;
    height: 240px;
    border-radius: 10px;
    position: relative;
}

.post-box figure a {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: inherit;
}

.post-box figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: inherit;
}

.post-box .post-description {
    padding: 20px 0px 5px;
}

.post-box h3 {
    color: var(--darkcolor);
    font-size: 17px;
    font-weight: 600;
    text-transform: capitalize;
    margin-bottom: 12px;
    line-height: 23px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    height: 45px;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    transition: all 0.3s ease-in-out;
}

.post-box p {
    color: var(--textlight);
    font-size: 15px;
    line-height: 22px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    height: 44px;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;

}

.post-box .readmore-btn {
    color: var(--primarycolor);
    font-size: 15px;
    font-weight: 500;
    text-transform: capitalize;
    margin-top: 16px;
    transition: all 0.3s ease-in-out;
}

.post-box:hover h3 a {
    color: var(--primarycolor);
}

.post-box .post-meta {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.post-box .post-meta span {
    font-size: 14px;
    text-transform: capitalize;
    margin-right: 14px;
}

.post-box .post-meta span a {
    color: var(--textlight);
}

.post-box .post-meta span i {
    color: var(--secondarycolor);
}

.post-box .post-date {
    position: absolute;
    z-index: 2;
    bottom: -45px;
    right: 0px;
}

.post-box .post-date span {
    display: block;
    padding: 12px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    text-align: center;
    border-radius: 8px 0px 0px 8px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.post-box .post-date .date {
    background: var(--gradient);
    color: var(--lightcolor);
    border-radius: 8px 0px 0px 0px;
}

.post-box .post-date .month {
    background-color: var(--lightcolor);
    color: var(--secondarycolor);
    border-radius: 0px 0px 0px 8px;
}

/*=====Post Panel Styling End Here=====*/

/*=====Why Choose Us Styling Start Here=====*/
.chooseus-img {
    width: 100%;
    height: 100%;
}

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

.chooseus-content {
    height: 100%;
    align-content: center;
}

.chooseus-content .common-title {
    font-size: 32px;
    margin-bottom: 18px;
}

.chooseus-content p {
    color: var(--textlight);
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 32px;
}

.chooseus-content ul li {
    color: var(--textlight);
    font-size: 16px;
    margin-bottom: 15px;
}

.chooseus-content ul i {
    color: var(--secondarycolor);
    font-size: 22px;
    margin-right: 1px;
    vertical-align: middle;
}

.chooseus-content .btn-box {
    border-top: 1px solid #e9e9e9;
    margin-top: 31px;
    padding-top: 28px;
}

/*=====Why Choose Us Styling End Here=====*/

/*----------------------------------------About Us Page Styling Start Here----------------------------------------*/
/*====Banner Styling Start Here=====*/
.banner {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.banner::before {
    content: "";
    position: absolute;
    top: 0%;
    left: 0%;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
}

.banner picture {
    width: 100%;
    height: 100%;
    display: block;
}

.banner img {
    width: 100%;
    height: 100%;
}

.breadcrumbs-panel {
    width: 100%;
    padding: 12px 0px;
    background-color: var(--lightcolor);
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.breadcrumbs li {
    display: inline-block;
    color: var(--darkcolor);
    font-size: 16px;
    font-weight: 500;
    text-transform: capitalize;
}

.breadcrumbs a {
    color: inherit;
}

.breadcrumbs .separator {
    display: inline-block;
    font-size: 12px;
    margin: 0px 3px 0px 1px
}

.breadcrumbs li.active {
    background: var(--gradient);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/*=====Banner Styling End Here=====*/

/*=====About Us Panel Styling Start Here=====*/
.custom-about p {
    margin-bottom: 15px;
}

.custom-about p:last-child {
    margin-bottom: 0px;
}

.custom-about ul {
    margin-top: 29px;
}

.custom-about ul li {
    color: var(--textlight);
    font-size: 16px;
    margin-bottom: 15px;
}

.custom-about ul li:last-child {
    margin-bottom: 0px;
}

.custom-about ul i {
    display: inline-block;
    width: unset;
    height: unset;
    background: transparent;
    color: var(--secondarycolor);
    font-size: 22px;
    margin: 0px;
    margin-right: 3px;
    vertical-align: middle;
}

/*=====About Us Panel Styling End Here=====*/

/*=====Core Principles Panel Styling Start Here=====*/
.principles-wrapper .principles-item {
    display: flex;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    margin-bottom: 20px;
}

.principles-wrapper .principles-item:last-child {
    margin-bottom: 0px;
}

.principles-wrapper .ico {
    width: 110px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.principles-wrapper i {
    color: var(--lightcolor);
    font-size: 40px;
}

.principles-wrapper .principles-item:nth-child(1) .ico {
    background: var(--primarycolor);
}

.principles-wrapper .principles-item:nth-child(2) .ico {
    background: #5b4a8c;
}

.principles-wrapper .principles-item:nth-child(3) .ico {
    background: #a4c639;
}

.principles-wrapper .principles-item:nth-child(4) .ico {
    background: #b94a83;
}

.principles-wrapper .principle-text {
    padding: 16px 24px;
    background-color: var(--lightcolor);
}

.principle-text h3 {
    color: var(--darkcolor);
    font-size: 22px;
    font-weight: 700;
    text-transform: capitalize;
    margin-bottom: 8px;
}

.principle-text p {
    color: var(--textlight);
    font-size: 14px;
    line-height: 1.5;
}

.core-principles-media {
    width: 100%;
    height: 100%;
    border-radius: 15px;
}

.core-principles-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: inherit;
}

/*=====Core Principles Panel Styling End Here=====*/

/*=====Value Panel Styling Start Here=====*/
.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.value-card {
    background: var(--lightcolor);
    border-radius: 18px;
    padding: 30px 25px;
    position: relative;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    border-bottom: 2px solid var(--secondarycolor);

}

.value-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
}

.premium-icon {
    width: 57px;
    height: 57px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    transition: 0.4s ease;
    font-size: 26px;
}


.value-card:nth-child(4n+1) .premium-icon {
    background: linear-gradient(145deg, #fff7e6, #ffd27a);
}

.value-card:nth-child(4n+1) .premium-icon i {
    color: #ffb400;
}

.value-card:nth-child(4n+2) .premium-icon {
    background: linear-gradient(145deg, #f3e8ff, #d6bbfb);
}

.value-card:nth-child(4n+2) .premium-icon i {
    color: #7c3aed;
}

.value-card:nth-child(4n+3) .premium-icon {
    background: linear-gradient(145deg, #e6fffa, #a7f3d0);
}

.value-card:nth-child(4n+3) .premium-icon i {
    color: #10b981;
}

.value-card:nth-child(4n+4) .premium-icon {
    background: linear-gradient(145deg, #e0f2fe, #bae6fd);
}

.value-card:nth-child(4n+4) .premium-icon i {
    color: #0284c7;
}

.value-card .number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 26px;
    color: #bbb;
    font-weight: 600;
    opacity: 0.3;
}

.value-card h3 {
    color: var(--darkcolor);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 11px;
}

.value-card p {
    font-size: 15px;
    color: var(--textlight);
    line-height: 22px;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    line-clamp: 4;
    height: 85px;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
}


.value-card:hover .premium-icon {
    transform: translateY(-8px) scale(1.08);
    box-shadow:
        inset 2px 2px 6px rgba(0, 0, 0, 0.05),
        inset -2px -2px 6px rgba(255, 255, 255, 1),
        12px 12px 30px rgba(0, 0, 0, 0.12),
        -12px -12px 30px rgba(255, 255, 255, 1);
}

/*=====Value Panel Styling End Here=====*/
/*----------------------------------------About Us Page Styling End Here----------------------------------------*/

/*----------------------------------------Contact Us Page Styling Start Here----------------------------------------*/
/*=====Contact Us Panel Styling Start Here=====*/
.contactus-details {
    width: 100%;
    height:100%;
    padding: 33px;
    border-radius: 15px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.contactus-details .contact-title {
    color: var(--darkcolor);
    font-size: 28px;
    font-weight: 700;
    text-transform: capitalize;
    margin-bottom: 32px;
}

.contactus-details li {
    display: flex;
    gap: 12px;
    margin-bottom: 29px;
}

.contactus-details li:last-child {
    margin-bottom: 0px;
}

.contactus-details i {
    width: 53px;
    height: 53px;
    border-radius: 50%;
    color: var(--lightcolor);
    background: var(--gradient);
    border: 3px solid var(--lightcolor);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 19px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.contactus-details .contact-info {
    width: 80%;
}

.contactus-details h3 {
    color: var(--darkcolor);
    font-size: 18px;
    font-weight: 600;
    text-transform: capitalize;
    margin-bottom: 8px;
}

.contactus-details a,
.contactus-details p {
    color: var(--textlight);
    font-size: 15px;
    line-height: 22px;
}

.contact-form {
    width: 100%;
    height: 100%;
    padding: 34px;
    border-radius: 15px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.contact-form h2 {
    color: var(--darkcolor);
    font-size: 29px;
    font-weight: 700;
    text-transform: capitalize;
    margin-bottom: 32px;
}

.contact-form .input-box {
    margin-bottom: 24px;
    position: relative;
    overflow: hidden;
}

.contact-form .form-control,
.contact-form .form-select {
    color: var(--darkcolor);
    font-size: 15px;
    font-weight: 400;
    border-radius: 8px;
    padding: 12px 15px;
    padding-left: 35px;
}

.form-control::placeholder,
.form-select::placeholder {
    opacity: 0.6;
}

.contact-form .submit-btn-box {
    margin-top: 10px;
    text-align: center;
}

.contact-form .input-box i {
    position: absolute;
    top: 24px;
    left: 10px;
    transform: translateY(-50%);
    font-size: 14px;
    display: inline-block;
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    pointer-events: none;
    z-index: 1;
    padding: 1px;
}

.map-box {
    width: 100%;
    height: 420px;
    border-radius: 15px;
}

.map-box iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: inherit;
}

/*=====Contact Us Panel Styling End Here=====*/
/*----------------------------------------Contact Us Page Styling End Here----------------------------------------*/

/*----------------------------------------Career Page Styling Start Here----------------------------------------*/
/*======Vacancy Panel Styling Start Here=====*/
.vacancy-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    width: 95%;
    margin: 0px auto;
}

.vacancy-item {
    width: 32%;
    background: var(--lightcolor);
    border-radius: 15px;
    padding: 20px;
    border: 1px solid #f1f1f1;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    transition: all 0.3s ease;
}

.vacancy-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.vacancy-item .vacancy-header {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 17px;
}

.vacancy-item .vacancy-header i {
    color: var(--secondarycolor);
    background: #eef2ff;
    font-size: 18px;
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vacancy-item .vacancy-title {
    color: var(--darkcolor);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
}

.vacancy-item .company-name {
    display: block;
    color: var(--textlight);
    font-size: 13px;
    margin-bottom: 16px;
}

.vacancy-item .vacancy-badge {
    background: #dcfce7;
    color: #16a34a;
    font-size: 12px;
    padding: 4px 10px;
    border-radius: 20px;
}

.vacancy-item .vacancy-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 12px 0px 19px;
}

.vacancy-item .vacancy-meta span {
    color: #555;
    background: #f3f4f6;
    padding: 6px 8px;
    border-radius: 4px;
    font-size: 12px;
}

.vacancy-item p {
    color: var(--textlight);
    font-size: 14px;
    line-height: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    height: 59px;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    margin-bottom: 22px;
}

.vacancy-item .common-btn {
    text-align: center;
    font-size: 14px;
    padding: 10px 28px;
    border-radius: 5px;
    background: var(--gradient);
    display: inline-flex;
    align-items: baseline;
}

.vacancy-item .common-btn i {
    animation: moveArrow 0.5s ease-in-out infinite alternate;
    margin-left: 6px;
    font-size: 12px;
}

/*======Vacancy Panel Styling End Here=====*/

/*=====Job Application Panel Styling Start Here=====*/
.application-container .img {
    width: 100%;
    height: 100%;
    border-radius: 15px;
}

.application-container img {
    width: 100%;
    height: 100%;
    /* object-fit: cover; */
    border-radius: inherit;
}

.application-container {
    width: 100%;
    border-radius: 15px;
    background: var(--lightcolor);
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.application-container h2 {
    color: var(--darkcolor);
    font-size: 34px;
    font-weight: 700;
    text-transform: capitalize;
    margin-bottom: 36px;
    line-height: normal;
}

.application-container label {
    display: block;
    color: var(--textlight);
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    margin-bottom: 9px;
    letter-spacing: 0.5px;
}

.application-container .form-control,
.application-container .form-select {
    color: var(--darkcolor);
    font-size: 14px;
    padding: 13px 12px;
    padding-left: 35px;
    border-radius: 10px;
    border: 1px solid #dee2e6;
    outline: 0px;
    background-color: var(--lightcolor);
    transition: all 0.3s ease-in-out;
}

.application-container .input-box {
    margin-bottom: 26px;
    position: relative;
    overflow: hidden;
}

.application-container .input-box i {
    position: absolute;
    top: 50px;
    left: 11px;
    transform: translateY(-50%);
    font-size: 13px;
    display: inline-block;
    padding: 1px;
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    pointer-events: none;
    z-index: 1;
}

.application-container .submit-btn-box {
    text-align: center;
    width: 100%;
    margin-top: 16px;
}

.application-container .common-btn {
    width: 100%;
    text-align: center;
}

.form-control:focus,
.form-select:focus {
    box-shadow: none;
    border-color: var(--secondarycolor);
}

.application-form-box {
    background-color: var(--bgcolor);
    padding: 25px;
    border-radius: 0px 15px 15px 0px;
}

/*=====Job Application Panel Styling End Here=====*/
/*----------------------------------------Career Page  Styling End Here----------------------------------------*/

/*----------------------------------------Event Listing Page Styling Start Here----------------------------------------*/
/*=====Events Listing Panel Styling Start Here=====*/
.event-card {
    width: 100%;
    height: 400px;
    border-radius: 10px;
    margin-bottom: 20px;
    transition: all 0.3s ease-in-out;
    position: relative;
    overflow: hidden;
}

.event-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.event-card:hover img {
    transform: scale(1.08);
}

.event-card a {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: inherit;
}

.event-card figure {
    width: 100%;
    height: 100%;
    margin: 0;
    border-radius: inherit;
}

.event-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: inherit;
    transition: all 0.3s ease-in-out;
}

.event-card .event-title {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 16px;
    z-index: 2;
}

.event-card .event-title::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.9) 0%,
            rgba(0, 0, 0, 0.7) 50%,
            rgba(0, 0, 0, 0) 100%);
    z-index: -1;
}

.event-card .event-date {
    position: absolute;
    top: 11px;
    left: 11px;
    padding: 8px 13px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 100px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    z-index: 2;
    color: var(--darkcolor);
    font-size: 12px;
    font-weight: 700;
}

.event-card h3 {
    color: var(--lightcolor);
    font-size: 16px;
    font-weight: 600;
    margin: 0;
    text-transform: capitalize;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    height: 21px;
    overflow: hidden;
    -webkit-box-orient: vertical;
    transition: all 0.3s ease-in-out;
}

.event-card p {
    color:#c7c7c7;
    font-size: 12px;
    text-transform: capitalize;
    margin-bottom: 9px;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    height: 17px;
}

.event-card p i {
    color: var(--lightcolor);
}


/*=====Events Listing Panel Styling End Here=====*/
/*----------------------------------------Event Listing Page Styling End Here----------------------------------------*/

/*----------------------------------------Event Details Page Styling Start Here----------------------------------------*/
/*=====Event Details Panel Styling Start Here=====*/
.event-meta {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    margin-bottom: 25px;
}

.event-meta p,
.event-meta span {
    margin: 0;
    color: #444;
    display: flex;
    align-items: center;
    gap: 6px;
}

.event-date {
    font-weight: 500;
    color: #111;
}

.loc {
    color: #777;
}

.loc::before {
    content: "•";
    margin: 0 8px;
    color: #bbb;
}

.gallery-container .row {
    justify-content: center;
}

.gallery-container .gallery-card {
    width: 100%;
    height: 300px;
    border-radius: 15px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    margin-bottom: 18px;
}

.gallery-container2 .gallery-card {
    height: 430px;
}

.gallery-container a {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: inherit;
}

.gallery-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: inherit;
}

.overlay-box {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    transform: scale(0);
    transition: .3s ease-in-out;
}

.overlay-box i {
    width: 40px;
    height: 40px;
    color: var(--lightcolor);
    background: var(--gradient);
    border-radius: 50%;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-container .gallery-card:hover .overlay-box {
    transform: scale(1);
    opacity: 1;
}

/*=====Event Details Panel Styling End Here=====*/
/*----------------------------------------Event Details Page Styling End Here----------------------------------------*/

/*----------------------------Post Details Page Styling Start Here----------------------------*/
/*=====Post Details Panel Styling Start Here=====*/
.content-body {
    padding: 25px;
    border-radius: 15px;
    border: 1px solid #e9e9e9;
    background: var(--lightcolor);
}

.content-body h1,
.content-body h2,
.content-body h3,
.content-body h4,
.content-body h5,
.content-body h6 {
    color: var(--darkcolor);
    font-weight: 600;
    text-transform: capitalize;
    line-height: 1.2;
    margin-bottom: 14px;

}

.content-body>h1,
.content-body>h2,
.content-body>h3,
.content-body>h4,
.content-body h5,
.content-body h6 {
    margin-top: 28px;
}

.content-body h1 {
    color: var(--darkcolor);
    font-size: 30px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0.5px;
    margin-top: 0px !important;
}

.content-body h2 {
    font-size: 26px;
}

.content-body h3 {
    font-size: 24px;
}

.content-body h4 {
    font-size: 22px;
}

.content-body h5 {
    font-size: 20px;
}

.content-body h6 {
    font-size: 18px;
}

.content-body .meta-post {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin: 20px 0 30px;
}

.content-body .meta-post {
    display: flex;
    align-items: center;
    font-size: 13px;
    color: var(--textlight);
    font-weight: 500;
    letter-spacing: 0.3px;
    transition: all 0.3s ease;
}

.content-body .meta-post i {
    width: 23px;
    height: 23px;
    border-radius: 50%;
    color: var(--lightcolor);
    background: var(--gradient);
    font-size: 10px;
    margin-right: 6px;
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.content-body .meta-post span {
    display: flex;
    align-items: center;
}

.content-body .content-img {
    width: 100%;
    margin: 24px 0px;
    border-radius: 15px;
}

.content-body img {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 15px;
    margin: 0 !important;
}

.content-body p {
    color: var(--textlight);
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 13px;
}

.content-body p strong {
    background: var(--gradient);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.content-body p a {
    color: var(--secondarycolor);
    text-decoration: underline;
    text-underline-offset: 5px;
}

.content-body>ul {
    list-style: none;
    margin: 20px 0px;
}

.content-body .content-list {
    margin: 20px 0px;
}

.content-list li {
    color: var(--textlight);
    font-size: 15px;
    margin-bottom: 12px;
    position: relative;
}

.content-list li::before {
    display: inline-block;
    content: "➜";
    color: var(--secondarycolor);
    font-size: 14px;
    margin-right: 6px;
}

.content-list li strong,
.content-body table strong {
    background: var(--gradient);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.content-list li a,
.content-body table a {
    color: var(--secondarycolor);
    text-decoration: underline;
    text-underline-offset: 5px;
}

.content-body .list-group {
    margin: 28px 0px;
    padding: 0px;
}

.content-body .list-group-item {
    position: relative;
    color: var(--textlight);
    font-size: 15px;
    padding: 13px 14px;
}

.content-body .list-group-item:nth-child(even) {
    background: var(--bgcolor);
}

.content-body table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0px 38px;
    font-size: 15px;
    color: var(--textlight);
    overflow: hidden;
}

.content-body table th,
.content-body table td {
    padding: 12px;
    text-align: left;
    background: var(--lightcolor);
    vertical-align: middle;
}

.content-body table th {
    color: var(--darkcolor);
    font-weight: 600;
}

.horizontal-wrapper {
    margin: 28px 0px;
}

.horizontal-wrapper .horizonatl-box {
    width: 100%;
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 20px;
    transform-style: preserve-3d;
    background: var(--lightcolor);
    transition: box-shadow .3s;
    cursor: pointer;
    border: 1px solid #2d2d2c;
}

.horizontal-wrapper .horizonatl-box:nth-child(even) {
    background-color: #f7fbff;
}

.horizontal-wrapper h4 {
    font-size: 20px;
    margin: 0px;
    margin-bottom: 13px;
}

.horizontal-wrapper p {
    color: var(--textlight);
    font-size: 16px;
    line-height: 25px;
    margin-bottom: 12px;
}

.horizontal-wrapper p:last-child {
    margin-bottom: 0px;
}

.content-body .faq-wrapper {
    margin-top: 30px;
}

.content-body .accordion-item {
    margin-bottom: 18px;
}

.content-body p:last-child,
.content-body ul:last-child,
.content-body ul li:last-child {
    margin-bottom: 0px;
}

.content-body .related-post {
    margin-top: 50px;
}

.content-body .post-slider2 .post-box {
    border: 1px solid var(--bordercolor);
    margin-bottom: 0px;
    box-shadow: none;
}

.content-body .post-slider2 .post-box h3 {
    font-size: 17px;
    margin: 0px;
    margin-bottom: 13px;
    line-height: 23px;
}

.content-body .post-slider2 .post-box p {
    font-size: 15px;
    line-height: 22px;
    margin: 0px;
}

.content-body .post-slider2 .owl-nav button {
    top: 45%;
}

/*=====Post Details Panel Styling End Here=====*/
/*----------------------------Post Details Page Styling End Here----------------------------*/

/*----------------------------Products Details Page Styling Start Here----------------------------*/
/*=====Products Details Panel Styling Start Here=====*/
.product-full-details {
    background: var(--lightcolor);
    padding: 25px;
    margin-top: 34px;
    border-radius: 15px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.product-full-details h2,
.product-full-details h3,
.product-full-details h4 {
    color: var(--darkcolor);
    font-weight: 600;
    text-transform: capitalize;
    line-height: 1.2;
    margin-bottom: 16px;
    border-left: 3px solid var(--secondarycolor);
    padding-left: 8px;
    border-radius: 5px;
}

.product-full-details>*:first-child {
    margin-top: 0px;
}

.product-full-details>h2,
.product-full-details>h3,
.product-full-details>h4 {
    margin-top: 32px;
}

.product-full-details h2 {
    font-size: 24px;
}

.product-full-details h3 {
    font-size: 22px;
}

.product-full-details h4 {
    font-size: 20px;
}

.product-full-details p {
    color: var(--textlight);
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 15px;
}

.product-full-details p:last-child {
    margin-bottom: 0px;
}

.products-details-wrapper ul {
    list-style: circle;
    padding-left: 16px;
}

.products-details-wrapper li {
    color: var(--textlight);
    font-size: 16px;
    margin-bottom: 10px;
}

.products-details-wrapper li::marker {
    color: var(--secondarycolor);
    font-size: 14px;
}

.products-details-wrapper p strong,
.products-details-wrapper li strong,
.products-details-wrapper table strong {
    background: var(--gradient);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.products-details-wrapper p a,
.products-details-wrapper li a,
.products-details-wrapper table a {
    color: var(--secondarycolor);
    text-decoration: underline;
    text-underline-offset: 5px;
}

.fancybox-content {
    padding: 10px;
}

.product-media {
    width: 100%;
    position: sticky;
    top: 127px;
    left: 0px;
}

.product-media figure {
    width: 100%;
    height: 100%;
    border-radius: 15px;
    position: relative;
    overflow: hidden;
}

.product-media figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
    display: block !important;
}

.product-media .product-media-swiper {
    margin-bottom: 15px;
}

.product-media .thumbnail-swiper figure {
    width: 100%;
    height: 100px;
    border-radius: 8px;
    padding: 4px;
    cursor: pointer;
}

.swiper-button-next,
.swiper-button-prev {
    color: var(--secondarycolor) !important;
    font-size: 15px !important;
    font-weight: 700 !important;
}

.swiper-button-next {
    right: 2px;
}

.swiper-button-prev {
    left: 2px;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    color: var(--secondarycolor) !important;
    font-size: 15px !important;
}

.thumbnail-swiper .swiper-slide figure {
    opacity: 0.5;
    background-color: var(--lightcolor);
    padding: 3px;
    border-radius: 8px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    transition: all 0.3s ease-in-out;
}

.thumbnail-swiper .swiper-slide-thumb-active figure {
    opacity: 1;
}

.product-right h1 {
    color: var(--darkcolor);
    font-size: 30px;
    font-weight: 700;
    text-transform: capitalize;
    margin-bottom: 16px;
}

.product-tags {
    margin-bottom: 20px;
}

.product-tags span {
    display: inline-block;
    background: rgba(30, 167, 182, 0.15);
    color: var(--secondarycolor);
    font-size: 12px;
    padding: 7px 14px;
    font-weight: 500;
    border-radius: 50px;
    margin: 4px 6px 4px 0;
}

.product-right p {
    color: var(--textlight);
    font-size: 16px;
    line-height: 26px;
}

.product-right h2 {
    color: var(--darkcolor);
    font-size: 18px;
    font-weight: 600;
    margin: 26px 0px 13px;
}

.product-right li {
    font-size: 15px;
    margin-bottom: 8px;
}

.product-right .bottom-box {
    border-top: 1px solid #e3e3e3;
    margin-top: 25px;
    padding-top: 26px;
}

.product-right .bottom-box a {
    padding: 8px 26px;
    border-radius: 100px;
    color: var(--primarycolor);
    border: 1px solid var(--primarycolor);
    font-size: 14px;
    font-weight: 500;
    text-transform: capitalize;
    margin-right: 7px;
    transition: all 0.3s ease-in-out;
}

.product-right .bottom-box .btn-whatsapp {
    color: var(--lightcolor);
    background-color: #0C9F16;
    border-color: #0C9F16;
}

.product-right .bottom-box a:hover {
    transform: translateY(-2px);
}

.product-slider .product-box {
    margin-bottom: 0px !important;
    box-shadow: 0px;
}

.product-slider .owl-nav .owl-next {
    right: -16px;
}

.product-slider .owl-nav .owl-prev {
    left: -16px;
}

/*=====Products Details Panel Styling End Here=====*/
/*----------------------------Products Details Page Styling End Here----------------------------*/

/*----------------------------404 Error Page Styling Start Here----------------------------*/
.e-404 {
    width: 100%;
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.e-404 img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.e-404::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(5px);
    z-index: 2;
}

.error-message {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    width: 32%;
    padding: 40px 30px;
    text-align: center;
    background: var(--lightcolor);
    border-radius: 18px;
    border: 2px solid #e1e1e1;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
}

.error-message .smile {
    font-size: 40px;
    color: #c3c3c3;
    margin-bottom: 15px;
}

.error-message h1 {
    font-size: 65px;
    background: var(--gradient);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
    margin-bottom: 10px;
}

.error-message span {
    display: block;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--textcolor);
}

.error-message p {
    font-size: 14px;
    color: var(--textlight);
    margin-bottom: 25px;
    line-height: 1.6;
}

.error-message .common-btn {
    padding: 12px 28px;
    font-size: 14px;
}

/*----------------------------404 Error Page Styling End Here----------------------------*/

/*----------------------------Additional Design Start Here----------------------------*/
/*=====Modal Styling Start Here=====*/
.modal {
    z-index: 9999999999999999999999999;
}

.video-popup .modal-header {
    border: none;
    padding: 0px;
}

.video-popup .modal-content {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

.video-popup .btn-close {
    position: absolute;
    right: 3px;
    top: -1px;
    z-index: 2;
    height: 26px;
    width: 26px;
    font-size: 10px;
    color: var(--lightcolor);
    border-radius: 0px 0px 0px 15px;
    background-image: none;
}

.video-popup .btn-close:focus {
    box-shadow: none;
}

.video-popup .video-container {
    width: 100%;
    height: 450px;
    position: relative;
    padding-bottom: 56.25%;
}

.video-popup iframe,
.video-popup video {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}

/*=====Modal Styling End Here=====*/

/*=====Side Panel Styling Start Here====*/
.side-panel-overlay {
    position: fixed;
    top: 0;
    right: -100%;
    width: 29%;
    max-width: 100%;
    height: 100vh;
    background: rgba(11, 21, 30, 1);
    z-index: 99999999999999999;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
    transition: right 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    overflow-y: auto;
}

.side-panel-overlay.is-open {
    right: 0%;
}

.side-panel-content {
    padding: 26px;
    height: 100%;
}

.panel-close-btn {
    background: transparent;
    border: 1px solid grey;
    color: var(--lightcolor);
    width: 29px;
    height: 29px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.panel-close-btn:hover {
    border-color: rgba(255, 255, 255, 0.3);
    background-color: rgba(255, 255, 255, 0.05);
}

.panel-description {
    color: #b1c2d4;
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    margin-bottom: 32px;
}

.panel-section-title {
    color: var(--lightcolor);
    font-size: 26px;
    font-weight: 600;
    text-transform: capitalize;
    margin-bottom: 35px;
}

.contact-item {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
}

.contact-item:last-child {
    margin-bottom: 0px;
}

.contact-item i {
    background-color: var(--primarycolor);
    color: var(--lightcolor);
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.contact-label {
    color: #a4b3c1;
    font-size: 16px;
    font-weight: 500;
    text-transform: capitalize;
    margin-bottom: 5px;
}

.contact-value {
    color: var(--lightcolor);
    font-size: 15px;
    font-weight: 500;
    line-height: 1.4;
    transition: color 0.2s ease;
}

.panel-socials {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 56px;
}

.panel-socials a {
    width: 46px;
    height: 46px;
    background: var(--lightcolor);
    color: #030814;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.panel-socials a:hover {
    background: var(--gradient);
    color: var(--lightcolor);
    transform: translateY(-3px);
}

.side-panel-overlay .panel-logo {
    margin-bottom: 22px;
}

.side-panel-overlay .logo img {
    height: 63px;
    object-fit: contain;
}

/*=====Side Panel Styling End Here=====*/

/*----------------------------Additional Design End Here----------------------------*/

/*----------------------------Animation Start Here----------------------------*/
@keyframes ripple {
    0% {
        transform: scale(1);
        opacity: 0.4;
    }

    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

@keyframes tickerScroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

@keyframes tickerScroll2 {
    from {
        transform: translateX(-50%);
    }

    to {
        transform: translateX(0%);
    }
}

@keyframes smoothSlideDown {
    from {
        transform: translateY(-30px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

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

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

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

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

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

@keyframes phoneRing {

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

    20% {
        transform: rotate(-15deg);
    }

    40% {
        transform: rotate(15deg);
    }

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

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

@keyframes pluse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 #25d366b3
    }

    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px #25d36600
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 #25d36600
    }
}

@keyframes glowRing {
    0% {
        box-shadow: 0 0 0 0 rgba(30, 167, 182, 0.8);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(13, 110, 253, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(13, 110, 253, 0);
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(25px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes moveArrow {
    0% {
        transform: translateX(0px);
    }

    100% {
        transform: translateX(3px);
    }
}

/*----------------------------Animation End Here----------------------------*/