/* ========================= */
/* :: 1.0 WEB FONTS  */
/* ========================= */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');

/* ================================== */
/* :: 2.0 GLOBAL Variable Define CSS  */
/* ================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
:root{

    /* Google Font */
    --dm-sans: "DM Sans", serif;
    --bebas-neue: "Bebas Neue", serif;
    --raleway: "Raleway", serif;
    
    /* Color Palette */
    --white: #fff;
    --light: #F7F7F7;
    --black: #000;
    --primary: #D40000;
    --dark: #0D0D0D;
    --dark--light: #333;
    --gray: #A0A0A0;
    --light-gray: #DADADA;
    --yellow: #F3C10E;
}

/* ========================= */
/* :: 3.0 COMMON CSS */
/* ========================= */
html, body {
    height: 100%;
    scroll-behavior: smooth;
}
body {
    color: var(--dark--light);
    font-size: 16px;
    font-family: var(--dm-sans);
    font-weight: 400;
    line-height: normal;
    background:var(--white);
    text-rendering: optimizeLegibility;
    overflow-x:hidden;
}
p, h1, h2, h3, h4, h5, h6 {
    margin: 0;
    padding: 0;
}
h1, h2, h3, h4, h5, h6 {
    font-family: var(--bebas-neue);
}
section, .section {
    position: relative;
}
.container {
    width: 100%;
    margin: 0 auto;
    padding: 0 16px;
}
a, button {
    text-decoration: none;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}
a, button {
	outline: none;
	box-shadow: none;
	border: none;
}
button {
    padding: 0;
	background: unset;
}
ol, ul {
    margin: 0;
    padding: 0;
}
ol li, ul li {
    list-style: none;
}
img {
    height: auto;
    max-width: 100%;
    object-fit: cover;
}
input, input:focus, input:focus-visible, input:active, select, .form-select, .form-select:focus, textarea {
    outline: none;
    box-shadow: none;
}
* + address, * + dl, * + fieldset, * + figure, * + ol, * + p, * + pre, * + ul {
	margin: 0;
	padding: 0;
}

*::-moz-selection {
  background: var(--dark);
  color: var(--white);
  text-shadow: none;
}

::-moz-selection {
  background: var(--dark);
  color: var(--white);
  text-shadow: none;
}

::selection {
  background: var(--dark);
  color: var(--white);
  text-shadow: none;
}

*::-moz-placeholder {
  color: #868686;
  opacity: 1;
}

*::placeholder {
  color: #868686;
  opacity: 1;
}

/* Reusable CSS Start */
.btn {
    width: 100%;
    height: 56px;
    color: var(--white);
    font-weight: 500;
    padding: 12px 24px;
    border-radius: 12px;
    text-wrap: nowrap;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    background-color: var(--primary);
    transition: all 0.3s ease-in-out;
    overflow: hidden;
    position: relative;
}

.btn:hover {
    background-color: var(--dark);
    color: var(--white);
}

.btn:active {
    color: var(--white);
    background-color: var(--primary);
}


/* Button Animations */
.btn__icon {
    position: relative;
    width: 24px;
    height: 24px;
    overflow: hidden;
}
.arrowAnimation .arrowAnimation__icon {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease-in-out;
}
.btn:hover .arrowAnimation .arrowAnimation__icon {
    animation: arrowSlide 0.5s ease-in-out forwards;
}
@keyframes arrowSlide {
    0% {
        transform: translate(-50%, -50%);
    }
    50% {
        transform: translateX(100%) translateY(-50%);
        opacity: 0;
    }
    51% {
        transform: translateX(-100%) translateY(-50%);
        opacity: 0;
    }
    100% {
        transform: translate(-50%, -50%);
        opacity: 1;
    }
}


.btn:hover .planeAnimation {
    animation: planeAnimate 2s linear infinite;
}
@keyframes planeAnimate {
    0%, 50%, 100% {
        transform: translateY(0);
    }
    25% {
        transform: translateY(-4px);
    }
    75% {
        transform: translateY(4px);
    }
}
.text-gray {
    color: var(--gray);
}

.section__pretitle {
    font-size: 14px;
}
.section--border {
    border: 4px solid var(--white);
}
.section--wide {
    max-width: 1480px;
    margin: 0 auto;
}
/* Reusable CSS End */

/* Bootstrap Customized CSS Start */
.fs-1 {
	font-size: 64px !important;
	line-height: 1;
}
.fs-2 {
	font-size: 42px !important;
	line-height: 1;
}
.text-primary {
    color: var(--primary) !important;
}
.text-dark {
    color: var(--dark) !important;
}
/* Bootstrap Customized CSS End */


/* =============================== */
/* :: 4.0 Header Area CSS Start */
/* =============================== */
.header {
    padding: 16px 0;
}
.logo {
	max-width: 90px;
}
.header__menu__button {
    width: 36px;
    height: 36px;
    gap: 7px;
}
.header__menu__button span {
    width: 100%;
    height: 2px;
    display: inline-block;
    background-color: var(--dark);
    transition: all .3s ease-in;
}
.header__menu__button span:nth-child(2n+1) {
	width: 63%;
}
.header__menu__button:hover span {
    width: 100%;
}

/* mobile offcanvas menu */
.menu__bg {
    filter: blur(2px);
}
.menu__bg::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, #0000 0%, #000000b3) 100%;
}
.menu__close {
    font-size: 22px;
	color: var(--dark);
    transition: all .3s ease-in-out;
}
.menu__close:hover {
    transform: rotate(-90deg);
}
.menu .offcanvas-body {
    padding: 48px 16px;
}
.menu__nav__item::after {
    content: "";
    position: absolute;
    bottom: -24px;
    left: 50%;
    transform: translateX(-50%);
    width: 16px;
    height: 1px;
    background-color: var(--white);
    opacity: .45;
}
.menu__nav__item:last-child::after {
    display: none;
}
.menu__nav__link {
    font-size: 24px;
    line-height: 1.33;
    color: var(--white);
}
.menu__nav__link:hover {
    color: var(--primary);
}
.btn--mobile__menu {
    border: 1px solid rgba(255, 255, 255, 0.56);
    background-color: rgba(255, 255, 255, 0.24);
}
.btn--mobile__menu:hover {
    background-color: rgba(255, 255, 255, 0.4);
}

/* header navigations */
.header__navigation {
    gap: 40px;
}
.header__ul {
    gap: 24px;
}
.header__nav__item {
    position: relative;
}
.header__nav__item::after {
    content: "";
    position: absolute;
    right: -11px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 70%;
    background-color: var(--white);
    opacity: .25;
}
.header__nav__item:last-child::after {
    display: none;
}
.header__nav__link {
    font-size: 15px;
    color: var(--white);
    position: relative;
}
.header__nav__link::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 50%;
    height: 2px;
    width: 0;
    background-color: var(--white);
    transition: all .3s ease-in-out;
}
.header__nav__link:hover::after {
    left: 0;
    width: 100%;
}
/* =============================== */
/* :: 4.0 Header Area CSS End */
/* =============================== */

/* =============================== */
/* :: 5.0 Hero Section CSS Start */
/* =============================== */
.hero__inner {
	padding: 124px 16px 28px;
    z-index: 1;
}
.hero__inner::before, .hero__inner::after {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 100%;
    border-radius: 16px;
    z-index: -1;
    background: 
        linear-gradient(to bottom, #0000 0%, rgba(0, 0, 0, 0.5) 100%), 
        url("../imgs/bg-thumbs/hero-bg-mobile.jpg") no-repeat center / cover;
}
.hero__inner::after {
    transform: unset;
    background: transparent;
    left: 0;
    border: 4px solid var(--white);
    border-radius: 12px;
}

.hero__text {
    margin-bottom: 200px;
}
.main__title__layer {
    padding-left: 20px;
}
.hero__para {
    font-size: 18px;
}
.hero__clients__wrap {
	max-width: 170px;
}
.hero__client__ellipse {
    width: 43px;
    height: 43px;
    border-radius: 50%;
    border: 1px solid var(--white);
    background-color: var(--white);
    font-size: 12px;
    margin-left: -12px;
}
.hero__client__ellipse:first-child {
    margin-left: 0;
}
.hero__client__ellipse:nth-child(3) {
    position: relative;
    z-index: 1;
}
.hero__trustpilot {
	max-width: 130px;
}
.hero__client__title {
    font-size: 14px;
}
.hero__ratings__title {
    font-size: 12px;
}
.hero__ratings__info {
    font-size: 10px;
}
.hero__form__content {
    padding: 4px;
}
.form__box {
    background-color: var(--light);
    backdrop-filter: blur(6px);
    border: 1px solid var(--light-gray);
    padding: 32px 12px;
    border-radius: 16px;
}
.form__title {
    font-size: 32px;
}
.input__item {
    width: 100%;
    height: 56px;
    border: 1px solid #ACACAC;
    border-radius: 16px;
    padding: 16px 24px;
    color: var(--dark);
    background-color: var(--white);
    resize: none;
    transition: all .2s ease-in-out;
}
.input__item:focus, .input__item:not(:placeholder-shown) {
    border-color: var(--dark);
}
.hero .nice-select {
	background-color: var(--white);
	border-radius: 16px;
    border: 1px solid #ACACAC;
    color: #868686;
	font-size: 16px;
	height: 56px;
	line-height: 1;
	width: 100%;
    padding: 16px 24px;
    display: flex;
    align-items: center;
}
.hero .nice-select .list {
    width: 100%;
    color: var(--dark);
}
.hero .nice-select.open, .hero .nice-select.active {
    border-color: var(--dark);
}
.hero .nice-select.active {
    color: var(--dark);
}
.hero .nice-select::after {
	border: none;
	background: url("../imgs/icons-objs/circle-arrow-down.svg") no-repeat center / cover;
	width: 24px;
	height: 24px;
	top: 50%;
	transform: translateY(-50%) rotate(0);
    transform-origin: 50% 50%;
	margin-top: 0;
	right: 24px;
    transition: all .3s ease-in-out;
}
.hero .nice-select.open::after {
    transform: translateY(-50%) rotate(-180deg);
}
/* =============================== */
/* :: 5.0 Hero Section CSS End */
/* =============================== */

/* =============================== */
/* :: 6.0 Video Section CSS Start */
/* =============================== */
.video {
	padding: 40px 0 48px;
}
.video__thumb {
    background: url("../imgs/bg-thumbs/video-thumb.jpg") no-repeat center / cover;
    height: 272px;
    border-radius: 12px;
}
.video__popup {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 1px solid var(--white);
    background-color: rgba(255, 255, 255, 0.36);
    color: var(--primary);
    font-size: 12px;
    transition: all .3s ease-in-out;
}
.video__popup:hover {
    background-color: var(--white);
}
.video__para {
    font-size: 18px;
    line-height: 1.33;
}
/* =============================== */
/* :: 6.0 Video Section CSS End */
/* =============================== */

/* =============================== */
/* :: 7.0 Benefit Section CSS Start */
/* =============================== */
.benefit {
    background-color: var(--primary);
	border-radius: 24px;
	padding: 32px 0;
}
.benefit__card {
	height: 100%;
	padding: 24px 32px;
	border-radius: 16px;
    transition: all .2s ease-in-out;
}
.benefit__icon img {
    max-width: 40px;
}
.benefit__title {
    font-size: 24px;
}
.benefit__para {
    color: var(--dark--light);
    font-size: 18px;
    line-height: 1.33;
}
/* =============================== */
/* :: 7.0 Benefit Section CSS End */
/* =============================== */

/* =============================== */
/* :: 8.0 Popular Section CSS Start */
/* =============================== */
.popular {
    padding: 48px 0;
}
.popular .section__head {
	max-width: 790px;
}
.popular .nav-link {
    height: 56px;
    color: var(--dark);
    padding: 16px 24px;
    border-radius: 100px;
    border: 1px solid var(--light-gray);
    background-color: transparent;
    transition: all .3s ease-in-out;
}
.popular .nav-link:hover, .popular .nav-link.active {
    color: var(--white);
    border-color: var(--dark);
    background-color: var(--dark);
}
.popular__card {
    width: 100%;
    height: 344px;
    padding: 20px 16px;
    border-radius: 16px;
    transition: all .3s ease-in-out;
    z-index: 1;
}
.popular__card::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, #0000 0%, #000000bf 100%);
    z-index: -1;
    transition: all .3s ease-in-out;
}
.popular__car__thumb img {
    transition: all .75s ease-in-out;
}
.popular__card:hover .popular__car__thumb img {
    transform: scale(1.05);
}
.popular__car__title, .popular__car__year {
    font-size: 24px;
}
.popular__car__link {
    color: var(--white);
    font-size: 18px;
}
.popular__car__link:hover {
    color: var(--yellow);
}
/* =============================== */
/* :: 8.0 Popular Section CSS End */
/* =============================== */

/* =============================== */
/* :: 9.0 Service Section CSS Start */
/* =============================== */
.service {
    padding: 32px 0;
    background-color: #f6f6f6;
    border-radius: 24px;
}
.service__thumb {
    height: 248px;
    border-radius: 16px;
    margin-bottom: 24px;
}
.service .accordion-item, .faq .accordion-item {
    border-color: var(--light-gray);
    background-color: transparent;
}
.service .accordion-button, .faq .accordion-button {
    font-family: var(--dm-sans);
    font-size: 17px;
    padding: 16px 0;
    background-color: transparent;
    gap: 8px;
}
.service .accordion-button:focus, .faq .accordion-button:focus {
    box-shadow: none;
}
.service .accordion-button:not(.collapsed), .faq .accordion-button:not(.collapsed) {
    border: none;
    box-shadow: none;
}
.service .accordion-button::after, .faq .accordion-button::after {
	content: "\f061";
	font-family: "Font Awesome 5 Pro";
	font-weight: 300;
	width: 40px;
	height: 40px;
    border-radius: 50%;
    border: 1px solid var(--primary);
    color: var(--dark);
    font-size: 16px;
	background: unset;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	transition: all .3s ease-in-out;
}
.service .accordion-button:hover::after, .service .accordion-button:not(.collapsed)::after, .faq .accordion-button:hover::after, .faq .accordion-button:not(.collapsed)::after {
    color: var(--white);
    background-color: var(--primary);
}
.service .accordion-button:not(.collapsed)::after, .faq .accordion-button:not(.collapsed)::after  {
    transform: rotate(-90deg);
}
.accordion__icon {
    width: 48px;
    height: 48px;
    color: #F3F3F3;
    border: 1px solid #ECEAEA;
    border-radius: 8px;
    padding: 8px;
}
.service__title, .faq__title {
	margin-right: 8px;
}
.service .accordion-body, .faq .accordion-body {
	padding: 0 8px 16px;
	padding-left: 54px;
	font-size: 18px;
	line-height: 1.33;
}
/* =============================== */
/* :: 9.0 Service Section CSS End */
/* =============================== */

/* =============================== */
/* :: 10.0 Testimonial Section CSS Start */
/* =============================== */
.testimonial {
    padding: 48px 0;
}
.testimonial .section__head {
	max-width: 690px;
}
.testimonial__card {
	min-height: 324px;
	padding: 16px 16px 24px;
	border-radius: 16px;
	border: 1px solid var(--light-gray);
	margin-bottom: 32px;
	background-color: var(--white);
	transition: all .3s ease-in-out;
}
.testimonial__quote {
	font-family: var(--raleway);
	font-size: 72px;
	color: var(--primary);
	height: 36px;
	line-height: 1;
}
.testimonial__title {
    font-size: 24px;
    color: var(--dark);
    transition: all .3s ease-in-out;
}
.testimonial__para {
    color: var(--dark--light);
    line-height: 1.33;
    transition: all .3s ease-in-out;
}
.client__name {
    color: #030405;
}
.testimonial__icon {
	font-size: 36px;
    color: var(--primary);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) rotate(-180deg);
    margin-bottom: -24px;
    z-index: -1;
    opacity: 0;
    visibility: hidden;
    transition: all .3s ease-in-out;
}
.testimonial .swiper-slide-active .testimonial__card {
    border-color: var(--primary);
    background-color: var(--primary);
}
.testimonial .swiper-slide-active .testimonial__quote, .testimonial .swiper-slide-active .testimonial__title, .testimonial .swiper-slide-active .testimonial__para {
    color: var(--white);
}
.testimonial .swiper-slide-active .testimonial__icon {
    opacity: 1;
    visibility: visible;
}
.testimonial .swiper-button-next::after, .testimonial .swiper-button-prev::after {
	display: none;
}
.testimonial .swiper-button-prev, .testimonial .swiper-button-next {
    position: static;
}
.testimonial__slide__button {
	width: 56px;
	height: 56px;
	color: var(--dark--light);
	font-size: 16px;
	border-radius: 50%;
	border: 1px solid var(--primary);
	background-color: var(--white);
	line-height: 1;
	margin-top: 0;
	transition: all .3s ease-in-out;
    position: relative;
    overflow: hidden;
}
.testimonial__slide__button:hover {
    background-color: var(--primary);
    color: var(--white);
}
.testimonial__slide__animation {
    position: relative;
    width: 24px;
    height: 24px;
    overflow: hidden;
}

.testimonial__slide__animation .slide__icon {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease-in-out;
}

.testimonial__slide__button:hover .testimonial__slide__animation .slide__icon__next {
    animation: arrowSlideNext 0.5s ease-in-out forwards;
}
@keyframes arrowSlideNext {
    0% {
        transform: translate(-50%, -50%);
    }
    50% {
        transform: translateX(100%) translateY(-50%);
        opacity: 0;
    }
    51% {
        transform: translateX(-100%) translateY(-50%);
        opacity: 0;
    }
    100% {
        transform: translate(-50%, -50%);
        opacity: 1;
    }
}

.testimonial__slide__button:hover .testimonial__slide__animation .slide__icon__prev {
    animation: arrowSlidePrev 0.5s ease-in-out forwards;
}
@keyframes arrowSlidePrev {
    0% {
        transform: translate(-50%, -50%);
    }
    50% {
        transform: translateX(-100%) translateY(-50%);
        opacity: 0;
    }
    51% {
        transform: translateX(100%) translateY(-50%);
        opacity: 0;
    }
    100% {
        transform: translate(-50%, -50%);
        opacity: 1;
    }
}

.testimonial__slider__buttons {
	margin-top: 32px;
}
/* =============================== */
/* :: 10.0 Testimonial Section CSS End */
/* =============================== */

/* ============================================ */
/* :: 11.0 Choose Section + FAQ Section CSS Start */
/* ============================================ */
.choose {
	background-color: var(--primary);
	border-radius: 24px;
	padding: 32px 0;
}
.choose .section__head {
	max-width: 700px;
}
.choose__card {
	height: 100%;
	padding: 24px 16px;
	border-radius: 16px;
    transition: all .3s ease-in-out;
}
.choose__icon {
    max-width: 32px;
}
.choose__title {
    font-size: 20px;
    font-family: var(--dm-sans);
}
.choose__para {
    font-size: 18px;
    color: var(--dark--light);
}



.faq {
    padding: 48px 0;
}
.faq .section__head {
	max-width: 790px;
}
.faq__thumb {
    height: 248px;
    border-radius: 12px;
    margin-bottom: 8px;
    background: url("../imgs/bg-thumbs/faq-thumb.jpg") no-repeat center / cover;
}
.faq__title {
    line-height: 1.6;
}
.faq .accordion-body {
	padding: 0;
	padding-bottom: 16px;
}
/* ============================================ */
/* :: 11.0 Choose Section + FAQ Section CSS End */
/* ============================================ */

/* =============================================== */
/* :: 12.0 Contact Section + CTA Section CSS Start */
/* =============================================== */
.contact {
    padding-bottom: 56px;
}
.contact .section__head {
    max-width: 790px;
}
.contact__thumb {
    height: 248px;
    border-radius: 12px;
    margin-bottom: 16px;
}
.contact__heading {
    font-family: var(--dm-sans);
    font-size: 24px;
    line-height: 1.33;
}
.contact__para {
    font-size: 18px;
    color: var(--dark--light);
    line-height: 1.33;
}
.contact__item .input__item {
    padding-left: 56px;
}
.contact__icon {
    max-width: 24px;
    margin-left: 20px;
}
.contact__item .input__item--textarea {
    height: 176px;
    padding: 16px 24px;
}



.cta {
    padding: 56px 0;
}
.cta::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--black);
    opacity: .64;
    border-radius: 16px;
    z-index: -1;
}
.cta__bg {
    background: url("../imgs/bg-thumbs/cta-thumb.jpg") no-repeat center / cover;
    border-radius: 16px;
}
.cta__wrapper {
    max-width: 790px;
}
.cta__title {
    font-size: 48px;
}
.cta__para {
    font-size: 20px;
}
/* =============================================== */
/* :: 12.0 Contact Section + CTA Section CSS End */
/* =============================================== */

/* =============================== */
/* :: 13.0 Footer Area CSS Start */
/* =============================== */
.footer__top {
    padding: 40px 0 32px;
}
.footer__top__widget {
    width: 100%;
}
.footer__logo {
    max-width: 112px;
}
.footer__wrapper {
    gap: 28px;
}
.widget__title {
    font-size: 24px;
}
.footer__nav__link {
    color: var(--dark);
    font-size: 18px;
    line-height: 1.8;
    position: relative;
}
.footer__nav__link::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    height: 2px;
    width: 0;
    background-color: var(--primary);
    transition: all .3s ease-in-out;
}
.footer__nav__link:hover {
    color: var(--primary);
}
.footer__nav__link:hover::after {
    left: 0;
    width: 100%;
}
.footer__social__link {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: var(--primary);
    color: var(--white);
}
.footer__social__link:hover {
    background-color: var(--dark);
}
.footer__social__facebook {
    font-size: 25px;
}
.footer__social__instagram {
    font-size: 19px;
}
.footer__form__input {
	width: 100%;
	height: 64px;
	border-radius: 16px;
	border: 1px solid var(--light-gray);
	padding: 12px 20px;
	padding-right: 172px;
	transition: all .3s ease-in-out;
}
.footer__form__input:focus, .footer__form__input:not(:placeholder-shown) {
    border-color: var(--dark);
}
.footer__form__item .btn {
    width: auto;
    padding: 12px 12px;
    margin-right: 4px;
}
.footer__newsletter {
    max-width: 445px;
}
.footer__bottom {
    background-color: var(--dark);
}
.footer__bottom p, .footer__bottom a {
    font-size: 14px;
    color: var(--white);
}
.footer__bottom a:hover {
    color: var(--primary);
}
/* =============================== */
/* :: 13.0 Footer Area CSS End */
/* =============================== */
/* ================== Notification System ================== */
.notification {
    display: none; /* Hidden by default */
    padding: 18px 24px;
    border-radius: 8px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    font-size: 1rem;
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    width: 90%;
    max-width: 450px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.6);
    border-top: 4px solid transparent;
    animation: fadeIn 0.4s ease-in-out forwards;
}

/* SUCCESS Notification */
.success {
    background-color: #1e1e1e;   /* Deep black with accent */
    color: #4CAF50;              /* Calm, professional green */
    border-top-color: #4CAF50;
}

/* ERROR Notification */
.error {
    background-color: #1e1e1e;
    color: #F44336;              /* Professional red for errors */
    border-top-color: #F44336;
}

/* WARNING Notification */
.warning {
    background-color: #1e1e1e;
    color: #FFC107;              /* Bold gold for warnings */
    border-top-color: #FFA000;
}

/* INFO Notification */
.info {
    background-color: #1e1e1e;
    color: #2196F3;              /* Soft blue for neutral info */
    border-top-color: #2196F3;
}

/* Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translate(-50%, -30px);
    }
    to {
        opacity: 1;
        transform: translate(-50%, 0);
    }
}
