/* ===================================
    Crafto - Corpotare
====================================== */
/* font */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@200;300;400;500;600;700;800&display=swap');

/* variable */
:root {
    --base-color: #770f05;
    /* Dark Red */
    --medium-gray: #a38f8c;
    /* A gray with a subtle red undertone */
    --dark-gray: #3b2927;
    /* Darker shade of gray with a reddish hue */
    --light-red: #f7d8d6;
    /* Light red, pale and soft */

    --alt-font: 'poppins', sans-serif;
    --primary-font: 'poppins', sans-serif;
    --main: #770f05
}


.logo-container {
    text-align: center;
}

/* SAVANT - Shadows Into Light Font */
.logo-main {
    font-family: 'Shadows Into Light', cursive;
    font-size: 2.0vw;
    font-weight: bolder;
    /* Adjusts size based on viewport width */
    color: #770f05;
    /* Dark red color */
    letter-spacing: 3px;
}

/* Underline below SAVANT */
.logo-underline {
    width: 100%;
    height: 2px;
    background-color: #770f05;
    margin: 5px auto;
}

/* Network Academy - Montserrat Font */


/* Responsive adjustments */
@media (max-width: 768px) {


    .logo-main {
        font-size: 4.5vw;
        font-weight: bolder;
    }

}

/* Base styles for .d-flex layout */
.d-flex {
    display: flex;
    align-items: start;
}

/* Alternate layouts for larger screens */
@media (min-width: 768px) {

    /* For rows where the image should be on the left */
    .feature-row-left .feature-box-icon {
        order: 1;
        margin-right: 1rem;
    }

    .feature-row-left .feature-box-content {
        order: 2;
    }

    /* For rows where the image should be on the right */
    .feature-row-right .feature-box-content {
        order: 1;
    }

    .feature-row-right .feature-box-icon {
        order: 2;
        margin-left: 1rem;
    }
}

/* Responsive adjustments for small screens */
@media (max-width: 576px) {
    .d-flex {
        align-items: center;
        text-align: center;
    }

    /* Ensure icon appears at the top for smaller screens */
    .feature-box-icon {
        order: -1;
        /* Place icon above content */
        margin-bottom: 10px;
    }

    .feature-box-content {
        text-align: center;
        /* Center-align content on small screens */
    }
}

.custom-row-spacing {
    margin-bottom: 0.5rem;
    /* Adjust as needed to reduce spacing */
}

.feature-box {
    text-align: center;
    /* Center content for all screen sizes */
}

.feature-box-content {
    color: black;
    /* Ensure content is black */
}



/* footer */

ul1 {
    --col-gap: 2rem;
    --row-gap: 2rem;
    --line-w: 0.25rem;
    display: grid;
    grid-template-columns: var(--line-w) 1fr;
    grid-auto-columns: max-content;
    column-gap: var(--col-gap);
    list-style: none;
    width: min(60rem, 90%);
    margin-inline: auto;
}

/* line */
ul1::before {
    content: "";
    grid-column: 1;
    grid-row: 1 / span 20;
    background: rgb(225, 225, 225);
    border-radius: calc(var(--line-w) / 2);
}

/* columns*/
/* row gaps */
ul1 li:not(:last-child) {
    margin-bottom: var(--row-gap);
}

/* card */
ul1 li {
    grid-column: 2;
    --inlineP: 1.5rem;
    margin-inline: var(--inlineP);
    grid-row: span 2;
    display: grid;
    grid-template-rows: min-content min-content min-content;
    /* Add transition for transform and box-shadow */
    /* Apply animation */
}

/* Hover effect */
ul1 li:hover {
    transform: scale(1.05);
    /* Slightly scale up on hover */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    /* Add shadow on hover */
}

/* Delay animation for every second card */
ul1 li:nth-child(2n) {
    animation-delay: 0.1s;
    /* Adds a slight delay for even items */
}

/* date */
ul1 li .date {
    --dateH: 3rem;
    height: var(--dateH);
    margin-inline: calc(var(--inlineP) * -1);
    text-align: center;
    background-color: var(--accent-color);
    color: white;
    font-size: 1.25rem;
    font-weight: 700;
    display: grid;
    place-content: center;
    position: relative;
    border-radius: calc(var(--dateH) / 2) 0 0 calc(var(--dateH) / 2);
}

/* date flap */
ul1 li .date::before {
    content: "";
    width: var(--inlineP);
    aspect-ratio: 1;
    background: var(--accent-color);
    background-image: linear-gradient(rgba(0, 0, 0, 0.2) 100%, transparent);
    position: absolute;
    top: 100%;
    clip-path: polygon(0 0, 100% 0, 0 100%);
    right: 0;
}


/* circle */
ul1 li .date::after {
    content: "";
    position: absolute;
    width: 2rem;
    aspect-ratio: 1;
    background: var(--accent-color);
    /* Fill color */
    border: 0.3rem solid var(--accent-color);
    border-radius: 50%;
    top: 50%;
    transform: translate(50%, -50%);
    right: calc(100% + var(--col-gap) + var(--line-w) / 2);

}

/* title descr */
ul1 li .title,
ul1 li .descr {
    background: var(--bgColor);
    position: relative;
    padding-inline: 1.5rem;
}

ul1 li .title {
    overflow: hidden;
    padding-block-start: 1.5rem;
    padding-block-end: 1rem;
    font-weight: 500;
}

ul1 li .descr {
    padding-block-end: 1.5rem;
    font-weight: 300;
}

/* shadows */
ul1 li .title::before,
ul1 li .descr::before {
    content: "";
    position: absolute;
    width: 90%;
    height: 0.5rem;
    background: rgba(0, 0, 0, 0.3);
    left: 50%;
    border-radius: 50%;
    filter: blur(4px);
    transform: translate(-50%, 50%);
}

ul1 li .title::before {
    bottom: calc(100% + 0.125rem);
}

ul1 li .descr::before {
    z-index: -1;
    bottom: 0.25rem;
    background: rgba(0, 0, 0, 0.2);
}



@media (min-width: 40rem) {
    ul1 {
        grid-template-columns: 1fr var(--line-w) 1fr;
    }

    ul1::before {
        grid-column: 2;
    }

    ul1 li:nth-child(odd) {
        grid-column: 1;
    }

    ul1 li:nth-child(even) {
        grid-column: 3;
    }

    /* start second card */
    ul1 li:nth-child(2) {
        grid-row: 2/4;
    }

    ul1 li:nth-child(odd) .date::before {
        clip-path: polygon(0 0, 100% 0, 100% 100%);
        left: 0;
    }

    ul1 li:nth-child(odd) .date::after {
        transform: translate(-50%, -50%);
        left: calc(100% + var(--col-gap) + var(--line-w) / 2);
    }

    ul1 li:nth-child(odd) .date {
        border-radius: 0 calc(var(--dateH) / 2) calc(var(--dateH) / 2) 0;
    }
}

.credits {
    margin-top: 1rem;
    text-align: right;
}

.credits a {
    color: var(--color);
}

body {
    font-size: 17px;
    line-height: 32px;
}

sup {
    top: -0.7em;
}

.lh-42px {
    line-height: 42px;
}

/* box layout */
.box-layout {
    padding: 0 40px;
}

a {
    color: #b8bbdd;
}

b,
strong {
    font-weight: 700;
}

/* Add slide-in animation */


/* Apply slide-in animation to li elements */


/* Delay animation for every second card */


/* Hover effect */

.responsive-image {
    max-width: 90px;
    height: auto;
    width: auto;
}

@media (max-width: 768px) {
    .responsive-image {
        height: 50px;
        width: 70px;
    }
}

@media (max-width: 480px) {
    .responsive-image {
        height: 40px;
        width: 55px;
    }
}

ul1 li:hover {
    transform: scale(1.05);
    /* Slightly scale up on hover */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    /* Add shadow on hover */
}

.gradient-text {
    background-image: linear-gradient(to right,
            /* #770f05,
      #a11608, */

            #a11608,
            #d1392d,
            #d1392d,
            #a11608,
            #770f05);
    background-size: 100% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    /* Optional: for non-webkit browsers */
    background-clip: text;
    text-fill-color: transparent;

    font-size: 16px;
    /* Adjust as needed */
    font-weight: 700;
    /* Adjust as needed */
    display: inline-block;
}

.card-background {
    background-image: url('https://craftohtml.themezaa.com/images/demo-corporate-bg-03.png');
    /* Change this to your image path */
    background-size: contain;
    /* This ensures the image covers the entire card */
    background-position: center;
    /* Centers the background image */
}

/* Set a consistent height for all banner items */
.fixed-height {
    height: 500px;
    /* Adjust as needed */
}

/* Hide the icon and long content by default */
.content-container .hover-icon,
.content-container .long-content {
    display: none;
}

/* Show only short content initially */
.content-container .short-content {
    display: block;
}

/* On hover, show the long content and hide the short content, while keeping the icon hidden */
.interactive-banner-style-02:hover .content-container .long-content {
    display: block;
}

.interactive-banner-style-02:hover .content-container .short-content {
    display: none;
}


/* header */
.navbar .navbar-nav .nav-link {
    font-weight: 600;
    font-size: 17px;
}

header .navbar-brand img {
    max-height: 45px;
    max-width: 100px;
}

.header-icon .icon>a {
    font-size: 20px;
}

.navbar .btn.btn-switch-text.btn-medium>span {
    padding: 10px 25px;
    font-size: 14px;
}

.navbar .navbar-nav .dropdown.dropdown-with-icon-style02 .dropdown-menu {
    border-radius: 0;
    box-shadow: 0 0 35px 0 rgb(0 0 0 / 10%);
}

.navbar .navbar-nav .dropdown.dropdown-with-icon-style02 .dropdown-menu li a i {
    font-size: 29px;
    width: 28px;
    margin-right: 12px;
}

.navbar .navbar-nav .dropdown .dropdown-menu a,
.navbar .navbar-nav .dropdown .dropdown-menu a:hover,
.navbar .navbar-nav .dropdown .dropdown-menu li.active>a {
    color: var(--white);
    font-weight: 500;
}

.navbar .navbar-nav .dropdown.dropdown-with-icon-style02 .dropdown-menu li a {
    font-size: 16px;
    line-height: 28px;
    padding: 18px 25px 20px 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar .navbar-nav .dropdown.dropdown-with-icon-style02 .dropdown-menu li a:hover,
.navbar .navbar-nav .dropdown.dropdown-with-icon-style02 .dropdown-menu li.active a {
    opacity: 0.6;
}

.navbar .navbar-nav .dropdown .dropdown-menu {
    background-color: var(--dark-gray);
}

/* heading */
.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
    margin-bottom: 25px;
}

/* page title */
.down-section {
    bottom: 30px;
}

.page-title-extra-large h1 {
    font-size: 4.5rem;
    line-height: 4.5rem;
}

h1,
.h1 {
    font-size: 4.688rem;
    line-height: 4.688rem;
}

h2 {
    font-size: 3.125rem;
    line-height: 3.125rem;
}

.small-screen {
    height: 350px !important;
}

/* text gradient color */
.text-gradient-orange-sky-blue {
    background-image: linear-gradient(to right, #f7693c, #c74e45, #7d3785, #582d9f, #3928af);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* bg gradient color */
.bg-gradient-very-light-gray-transparent {
    background: -webkit-linear-gradient(right, rgba(136, 100, 97, 0.8), rgba(234, 212, 210, 0.8));
    background: linear-gradient(to right, rgba(234, 212, 210, 0.8), rgba(255, 255, 255, 0.8));
    color: linear-gradient(to right, rgba(234, 212, 210, 0.8), rgba(255, 255, 255, 0.8));
    ;

}

.bg-gradient-blue-whale-transparent {
    background: -webkit-linear-gradient(right, rgb(119, 15, 5), rgba(255, 255, 255, 0.0));
    background: linear-gradient(to right, rgb(119, 15, 5), rgba(255, 255, 255, 0.0));
}

.bg-gradient-quartz-light-transparent {
    background: -webkit-linear-gradient(right, rgba(227, 225, 245, 1.0), rgba(255, 255, 255, 0.0));
    background: linear-gradient(to right, rgba(227, 225, 245, 1.0), rgba(255, 255, 255, 0.0));
}

.bg-gradient-quartz-white {
    background-image: linear-gradient(to bottom, #f7f7ff, #f4f4fb, #f8f7fc, #fbfbfe, #ffffff);
}

.bg-gradient-base-color-transparent {
    background-image: -webkit-gradient(linear, left bottom, left top, from(rgb(119, 15, 5)), to(transparent));
    background-image: linear-gradient(to top, rgba(119, 15, 5, .8) 0%, transparent 100%);
}

.bg-gradient-regal-blue-transparent {
    background-image: -webkit-gradient(linear, left bottom, left top, from(rgb(64, 22, 22)), to(transparent));
    background-image: linear-gradient(to top, rgb(64, 22, 22) 0%, transparent 100%);
}

.bg-gradient-flamingo-amethyst-green {
    background-image: linear-gradient(to right, #770f05, #a11608, #d1392d, #9f2d58, #613c91);
}

.bg-gradient-base-transparent {
    background-image: -webkit-gradient(linear, left bottom, left top, from(rgb(119, 15, 5)), to(transparent));
    background-image: linear-gradient(to top, rgb(119, 15, 5) 8%, transparent 80%);
}

.bg-gradient-dark-transparent {
    background: -webkit-gradient(linear, left bottom, left top, color-stop(7%, #770f05), to(transparent));
    background: linear-gradient(to top, #770f05 7%, transparent 70%);
}

.bg-regal-blue {
    background-color: var(--base-color);
}

.bg-blue-whale {
    background-color: #770f05;
}

/* top left right */
.top-40 {
    top: 40% !important;
}

.left-30 {
    left: 30% !important;
}

.right-30 {
    right: 30% !important;
}

.top-30 {
    top: 30%;
}

.top-20 {
    top: 20%;
}

.left-170px {
    left: 170px;
}

.mt-minus-2 {
    margin-top: -2px;
}

.left-minus-300px {
    left: -300px;
}

/* btn */
.btn {
    letter-spacing: 0px;
    text-transform: inherit;
}

.btn.btn-extra-large {
    font-size: 18px;
}

.btn.btn-large {
    font-size: 16px;
}

.btn.btn-medium {
    font-size: 15px;
}

.btn.btn-small {
    font-size: 14px;
}

.btn.btn-link {
    padding: 0 0 2px;
    position: relative;
    text-decoration: none;
    border: 0;
    border-bottom: 2px solid;
    letter-spacing: 0;
    background-color: transparent;
}

.btn-gradient-flamingo-amethyst-green {
    background-image: linear-gradient(to right, #770f05, #a11608, #d1392d, #d1392d, #a11608, #770f05);

    background-size: 200% auto;
    color: var(--white);
}

/* box overlay */
.interactive-banner-style-02.dark-hover:hover .btn {
    opacity: 0.7;
}

/* blog comment */
.blog-comment li .btn-reply {
    padding: 6px 20px 7px;
}

/* process-step style 05 */
.process-step-style-05 .progress-step-separator {
    bottom: inherit;
    height: 100%;
}

/* interactive banner */
.interactive-banner-style-02:hover figure figcaption .features-icon {
    margin-bottom: 17px;
}

/* blog grid */
.pagination-style-01 .page-item .page-link:hover,
.pagination-style-01 .page-item.active .page-link {
    background: var(--dark-gray);
    color: var(--white);
}

.pagination-style-01 .page-item:first-child .page-link,
.pagination-style-01 .page-item:last-child .page-link {
    background: transparent;
    color: var(--medium-gray);
}

.pagination-style-01 .page-item:first-child .page-link:hover,
.pagination-style-01 .page-item:last-child .page-link:hover {
    color: var(--dark-gray);
}

.accordion-style-06 .accordion-item.active-accordion {
    background-image: linear-gradient(to bottom, #f7f8f9, #f9fafb, #fbfbfc, #fdfdfd, #ffffff);
}

/* google map */
#map {
    border-radius: 6px 0 0 6px;
}

.border-radius-top-lr {
    border-radius: 6px 6px 0 0;
}

footer ul li {
    margin-bottom: 0;
}


.footer-logo img {
    width: 100px;
    /* Adjust this value as needed */
    height: 40px;
    /* Maintains aspect ratio */
}

.scroll-progress {
    right: 10px;
}

/* google map */
.newsletter-style-02 input {
    font-size: 15px;
}

/* Revolution Slider */
#demo-corporate-slider {
    border-radius: 6px;
}

.hesperiden.tparrows {
    width: 54px;
    height: 54px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    -webkit-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out
}

.hesperiden.tparrows:hover {
    border: 1px solid rgba(255, 255, 255, 1);
    background: rgba(255, 255, 255, 1);
    ;
}

.hesperiden.tparrows:hover:before {
    color: #232323
}

.hesperiden.tparrows:before {
    line-height: 52px;
}

.hesperiden.tparrows.tp-leftarrow:before {
    content: "\f104";
    font-family: "Font Awesome 6 Free";
    font-size: 16px;
    font-weight: 900
}

.hesperiden.tparrows.tp-rightarrow:before {
    content: "\f105";
    font-family: "Font Awesome 6 Free";
    font-size: 16px;
    font-weight: 900
}

.hesperiden.tparrows.tp-leftarrow:before {
    margin-left: 0;
}

.hesperiden.tparrows.tp-rightarrow:before {
    margin-right: 0;
}

.get-started-btn {
    transition: 0.3s ease-in-out !important;
}

.hesperiden.tparrows {
    z-index: 97;
}

/* media query responsive */
@media (max-width: 1700px) {
    .navbar .navbar-nav .nav-link {
        padding-left: 19px;
        padding-right: 19px;
    }
}

@media (max-width: 1600px) {
    .navbar .navbar-nav .nav-link {
        padding-left: 12px;
        padding-right: 12px;
    }
}

@media (max-width: 1350px) {
    .navbar .navbar-nav .nav-link {
        padding-left: 10px;
        padding-right: 10px;
    }
}

@media (max-width: 1300px) {
    .navbar .navbar-nav .nav-link {
        padding-left: 9px;
        padding-right: 9px;
    }
}

@media (max-width: 1199px) {
    .accordion-style-06 .accordion-item {
        padding: 15px 50px 15px 35px;
    }

    .box-layout {
        padding: 0;
    }

    #demo-corporate-slider {
        border-radius: 0;
    }

    .lg-border-radius-0px {
        border-radius: 0 !important;
    }

    .navbar .navbar-nav .nav-link {
        padding-left: 10px;
        padding-right: 10px;
    }
}

@media (max-width: 991px) {
    .navbar .navbar-nav .dropdown.dropdown-with-icon-style02 .dropdown-menu {
        width: calc(100% + 30px) !important;
        margin-left: -15px;
        padding: 10px 45px;
        margin-bottom: 0;
        margin-right: -15px;
    }

    .navbar .navbar-nav .dropdown.dropdown-with-icon-style02 .dropdown-menu li a,
    .navbar-modern-inner .navbar-nav .dropdown.dropdown-with-icon-style02 .dropdown-menu li a,
    .navbar-full-screen-menu-inner .navbar-nav .dropdown.dropdown-with-icon-style02 .dropdown-menu li a {
        padding-left: 0;
        padding-right: 0;
    }

    [data-mobile-nav-style=modern] .navbar-modern-inner .navbar-nav .dropdown.dropdown-with-icon-style02 .dropdown-menu li a {
        font-size: 17px;
        line-height: normal;
        display: flex;
        align-items: center;
    }

    [data-mobile-nav-style=modern] .navbar-modern-inner .navbar-nav .dropdown.dropdown-with-icon-style02 .dropdown-menu li a i {
        font-size: 26px;
    }
}

@media (max-width: 767px) {
    #map {
        border-radius: 0;
    }

    .small-screen {
        height: 300px !important;
    }

    .h1,
    .h2,
    .h3,
    .h4,
    .h5,
    .h6,
    h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
        margin-bottom: 20px;
    }
}

@media (max-width: 575px) {
    .accordion-style-06 .accordion-item {
        padding: 15px;
    }

    footer .elements-social.social-icon-style-02 li {
        margin: 0 15px 0 0;
    }

    footer .elements-social.social-icon-style-02 li:first-child {
        margin-left: 0;
    }
}

/******   Card Section   ******/

.company-card {
    border: 1px solid rgba(119, 15, 5, 0.1);
    border-radius: 12px;
    background: linear-gradient(135deg, #ffffff 0%, #fdfcfc 100%);
    box-shadow: 0 2px 8px rgba(119, 15, 5, 0.08);
    overflow: hidden;
    border: 2px solid rgba(119, 15, 5, 0.1);
    transition: all 0.7s ease-in-out;
}

.company-card:hover,
.pricing-card:hover {
    box-shadow: 0 8px 25px rgba(119, 15, 5, 0.15);
    border-color: var(--base-color);
    transform: scale(1.02) !important;
    transition: all 0.3s ease-in-out;
}

.company-card .card-body {
    padding: 1.5rem;
    height: 100%;
}

.company-card p {
    color: #555;
    line-height: 1.6;
    font-size: 14px;
    text-align: justify;
    margin-bottom: 0;
}

.company-cards-container {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 2rem;
}

.company-cards-container .company-card {
    flex: 0 1 300px;
    min-height: 350px;
}

.pricing-card {
    flex: 0 1 400px;
    min-height: 350px;
    background-color: var(--light-red);
}

.redirection-pill {
    background-color: var(--medium-gray);
    color: white;
    transition: all 0.3s ease;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
}

.redirection-pill:hover {
    background-color: var(--base-color);
    transform: scale(1.1);
    color: white;
    box-shadow: 0 4px 12px rgba(119, 15, 5, 0.3);
}

.redirection-pill svg {
    transition: transform 0.3s ease;
}

.redirection-pill:hover svg {
    transform: rotate(45deg);
}

.card-header-section {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .company-cards-container {
        gap: 1rem;
    }

    .company-cards-container .company-card {
        flex: 0 1 280px;
        max-width: 100%;
    }

    .pricing-card {
        flex: 0 1 380px;
        max-width: 100%;
    }

    .company-card .card-body {
        padding: 1rem;
    }

    .redirection-pill {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 576px) {
    .company-card p {
        font-size: 13px;
    }

    .card-icon-section {
        padding: 0.75rem;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.company-card {
    animation: fadeInUp 0.8s ease forwards;
}

.company-card:nth-child(1) {
    animation-delay: 0.1s;
}

.company-card:nth-child(2) {
    animation-delay: 0.2s;
}

.company-card:nth-child(3) {
    animation-delay: 0.3s;
}

.company-card:nth-child(4) {
    animation-delay: 0.4s;
}

.fade-in-up {
    opacity: 0;
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in-up.visible {
    opacity: 1;
}

.img-zoom {
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.img-zoom.visible {
    transform: scale(1.07) rotate(-2deg);
}


/******* Blog, Events and Lecture cards styles *****/

.feature-cards>.card {
    border-radius: 20px;
    background: linear-gradient(135deg, var(--medium-gray), var(--light-red));

    padding: 5px;
    overflow: hidden;
    box-shadow: rgba(100, 100, 111, 0.15) 0px 7px 20px 0px;
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275),
        background 0.6s ease-in-out;
    animation: fadeInUp 0.8s ease-out;
}

.feature-cards>.card:hover {
    background: linear-gradient(135deg, #fda085, #fbc2eb);
    transform: translateY(-5px) scale(1.02);
}

.feature-cards>.card:hover .top-section {
    transform: scale(1.02);
}

.feature-cards>.card .top-section {
    height: 200px;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform 0.4s ease;
}

.feature-cards>.card .top-section .bor {
    border-bottom-right-radius: 10px;
    height: 30px;
    width: 130px;
    background: var(--dark-gray);
    position: relative;
    transform: skew(-40deg);
    box-shadow: -20px -25px 10px 20px var(--dark-gray);
}

.feature-cards>.card .top-section .bor::before {
    content: "";
    position: absolute;
    width: 15px;
    height: 15px;
    top: 0;
    right: -15px;
    background: transparent;
    border-top-left-radius: 10px;
}

.feature-cards>.card .top-section::before {
    content: "";
    position: absolute;
    top: 30px;
    left: 0;
    height: 15px;
    width: 15px;
    border-top-left-radius: 15px;
}

.feature-cards>.card .top-section .icons {
    position: absolute;
    top: 0;
    width: 100%;
    height: 30px;
    display: flex;
    justify-content: space-between;
}

.feature-cards>.card .top-section .icons .logo {
    height: 100%;
    aspect-ratio: 1;
    padding: 7px 0 7px 15px;
}

.feature-cards>.card .top-section .icons .logo .top-section {
    height: 100%;
}

.feature-cards>.card .top-section .icons .social-media {
    height: 100%;
    padding: 8px 15px;
    display: flex;
    gap: 7px;
}

.feature-cards>.card .top-section .icons .social-media .svg {
    height: 100%;
    fill: #ffffff;
}

.feature-cards>.card .top-section .icons .social-media .svg:hover {
    fill: rgb(40, 40, 40);
}

.feature-cards>.card .bottom-section {
    margin-top: 15px;
    padding: 10px 5px;
}

.feature-cards>.card .bottom-section .title {
    display: block;
    font-size: 17px;
    font-weight: bolder;
    color: #5a2e35;
    text-align: center;
    letter-spacing: 2px;
}

.feature-cards>.card .bottom-section .row {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.feature-cards>.card .bottom-section .row .item {
    flex: 30%;
    text-align: center;
    padding: 5px;
    color: rgba(90, 46, 53, 0.8);
}

.feature-cards>.card .bottom-section .row .item .big-text {
    font-size: 12px;
    display: block;
}

.feature-cards>.card .bottom-section .row .item .regular-text {
    font-size: 9px;
}

.feature-cards>.card .bottom-section .row .item:nth-child(2) {
    border-left: 1px solid rgba(90, 46, 53, 0.1);
    border-right: 1px solid rgba(90, 46, 53, 0.1);
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Blog section */

.whitepaper-hero {
    position: relative;
    color: white;
    z-index: 1;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.4)), url(../../images/blog.jpg) center/cover no-repeat;
}

.whitepaper-hero * {
    color: white !important;
    z-index: 3;
}

.whitepaper-content {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
}

.whitepaper-content h2 {
    color: #1a1a2e;
    margin-top: 40px;
    margin-bottom: 20px;
    font-weight: 700;
}

.whitepaper-content p {
    margin-bottom: 20px;
}

.nav-sidebar {
    position: sticky;
    top: 100px;
    background: transparent;
    border-radius: 0;
    padding: 0 0 20px 0;
    box-shadow: none;
}

.nav-sidebar h5 {
    color: #999;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 30px;
    padding-left: 0;
}

.nav-sidebar ul {
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
    border-left: 2px solid #e5e5e5;
    padding-left: 20px;
}

.nav-sidebar li {
    margin-bottom: 20px;
    position: relative;
}

.nav-sidebar a {
    color: #666;
    text-decoration: none;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.4;
    transition: all 0.3s ease;
    display: block;
    padding: 0;
    position: relative;
}

.nav-sidebar a:hover {
    color: var(--base-color);
}

.nav-sidebar a.active {
    color: var(--base-color);
    font-weight: 500;
}

.nav-sidebar a.active::before {
    content: '';
    position: absolute;
    left: -22px;
    top: 50%;
    transform: translateY(-50%);
    width: 2px;
    height: 30px;
    background-color: var(--base-color);
    z-index: 2;
}

.section-divider {
    height: 2px;
    background: linear-gradient(to right, var(--dark-gray), transparent);
    margin: 40px 0;
    border: none;
}

@keyframes waveEffect {
    0% {
        transform: scale(1)
    }

    20% {
        transform: scale(1.04, 0.96)
    }

    40% {
        transform: scale(0.98, 1.03)
    }

    60% {
        transform: scale(1.02, 0.98)
    }

    80% {
        transform: scale(0.99, 1.01)
    }

    100% {
        transform: scale(1)
    }
}

@media (max-width: 991px) {
    .nav-sidebar {
        margin-top: 40px;
        position: relative;
        top: auto;
        display: none;
    }
}