* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style-type: none
}

body {
    overflow-x: hidden !important;
    background-color: #f3f5f4
}

.list_styled li {
    list-style-type: disc
}

p,
h6 {
    padding: 0;
    margin: 0
}

.bg-brand {
    background-color: #283a48
}

.bg_brand {
    background-color: #ffcd00
}

.brand-text {
    color: #283a48
}

.brand_text {
    color: #ffcd00
}

.bgcolor-dark {
    background-color: #283a48
}

.brand_logo img {
    width: 120px;
    height: 120px;
    cursor: pointer;
    padding: 4px 0
}

.top_icon_contact {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid #fff;
    margin-right: 10px;
    font-size: 18px;
    color: #fff;
    transition: all 0.3s ease
}

.contact_icon_hover:hover .top_icon_contact {
    background-color: #fff;
    color: #283a48;
    border-color: #fff;
    transform: scale(1.1)
}

.top_content_contact span {
    font-size: 14px;
    color: #fff;
    font-weight: 700
}

.top_content_contact a {
    color: #fff !important
}

.icons_social a {
    display: inline-flex;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 24px;
    margin: 10px;
    box-shadow: 0 10px 10px rgb(0 0 0 / .1);
    border-radius: 40px;
    background-size: 100% 300%;
    background-position: 0% 5%;
    transition: background-position 0.5s, color 0.5s
}

.icons_social a {
    color: #283a48;
    background-image: linear-gradient(#fff 53%, #283a48 50%)
}

.icons_social a:hover {
    background-position: 0% 100%;
    color: #fff
}

.cstm_nav {
    align-items: center
}

.cstm_nav .nav-link {
    position: relative;
    display: inline-block;
    padding: 10px 14px;
    overflow: hidden;
    transition: color 0.3s ease
}

.cstm_nav .nav-link::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 0;
    height: 100%;
    background-color: rgb(40 58 72 / .2);
    transition: all 0.4s ease;
    z-index: -1;
    transform: translateX(-50%)
}

.cstm_nav .nav-link:hover::before {
    width: 120%
}

.cstm_nav .nav-link:hover {
    color: #283a48
}

.cstm_nav .nav-link.active::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 3px;
    background-color: #283a48;
    z-index: 1
}

.cstm_nav .nav-link.active {
    color: #283a48 !important;
    font-weight: 600
}

.dropdown-item.active,
.dropdown-item:active {
    color: #fff;
    text-decoration: none;
    background-color: #283a48
}

.cstm_nav .nav-link:active {
    color: #fff !important;
    transform: scale(.95);
    transition: transform 0.1s ease
}

.cstm_navbar {
    background: #fff !important;
    border-bottom: 2px solid #283a48
}

.cstm_nav li a {
    color: #000;
    padding: 14px 14px !important;
    position: relative;
    transition: color 0.3s ease;
    text-decoration: none
}

.cstm_nav li a:active {
    color: #fff !important;
    background-color: #283a48
}

.cstm_nav li a:hover {
    color: #283a48;
    transition: color 0.3s ease
}

.dropdown-item:hover {
    color: #fff !important;
    background-color: #283a48 !important;
    transition: color 0.3s ease
}

.nav-item.dropdown:hover .dropdown-menu {
    display: block;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.3s ease-in-out
}

.dropdown-menu {
    display: none;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease-in-out
}

.nav-item.dropdown:hover .nav-link.dropdown-toggle::after {
    transform: rotate(180deg);
    transition: 0.3s ease-in-out
}

.navbar-toggler {
    border: none !important;
    color: transparent !important;
    background-color: #fff0
}

.active-toggler {
    background-color: transparent !important
}

.navbar-toggler {
    border: none !important;
    background: transparent !important;
    outline: none !important;
    padding: 10px
}

.custom-toggler-icon {
    display: block;
    width: 30px;
    height: 3px;
    background-color: #283a48;
    position: relative;
    transition: all 0.3s ease-in-out
}

.custom-toggler-icon::before,
.custom-toggler-icon::after {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #283a48;
    transition: all 0.3s ease-in-out
}

.custom-toggler-icon::before {
    top: -8px
}

.custom-toggler-icon::after {
    top: 8px
}

.navbar-toggler[aria-expanded="true"] .custom-toggler-icon {
    background-color: #fff0
}

.navbar-toggler[aria-expanded="true"] .custom-toggler-icon::before {
    transform: rotate(45deg);
    top: 0
}

.navbar-toggler[aria-expanded="true"] .custom-toggler-icon::after {
    transform: rotate(-45deg);
    top: 0
}

@media (max-width:1080px) {
    .navbar_logo {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 80px;
        margin-right: auto
    }

    .top_header {
        display: none
    }
}

@media (max-width:992px) {
    .navbar-collapse {
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        height: 100vh;
        background: #f6fbff;
        box-shadow: 5px 0 10px rgb(0 0 0 / .2);
        transition: left 0.3s ease-in-out;
        padding: 20px;
        overflow-y: auto
    }

    .navbar-collapse.show {
        left: 0
    }

    .close-menu {
        position: absolute;
        top: 10px;
        right: 15px;
        font-size: 24px;
        cursor: pointer;
        color: #fff
    }

    .navbar-nav {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        padding-left: 20px
    }

    .navbar-nav .nav-link {
        font-size: 18px;
        padding: 10px 0
    }

    .navbar-toggler {
        border: none !important;
        background: #fff0
    }

    .navbar-toggler-icon {
        background-image: url('data:image/svg+xml;charset=utf8,%3Csvg xmlns%3D%27http://www.w3.org/2000/svg%27 viewBox%3D%270 0 30 30%27%3E%3Cpath stroke%3D%27rgba%28255, 255, 255, 1%27 stroke-width%3D%272%27 stroke-linecap%3D%27round%27 stroke-miterlimit%3D%2710%27 d%3D%27M4 7h22M4 15h22M4 23h22%27/%3E%3C/svg%3E')
    }

    .cstm_nav {
        align-items: start
    }
}

.heroSwiper {
    padding-bottom: 40px !important
}

.hero-row {
    padding: 20px 0
}

.hero-pagination {
    margin-top: 10px !important
}

.swiper-slide {
    display: flex;
    align-items: center
}

.hero-section {
    min-height: 500px;
    display: flex;
    overflow: hidden;
    align-items: center
}

.hero-row {
    padding: 40px 0
}

.hero-content {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity .6s ease, transform .6s ease;
    text-align: left
}

.swiper-slide-active .hero-content {
    opacity: 1;
    transform: translateX(0)
}

.hero-img {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity .6s ease, transform .6s ease;
    text-align: center
}

.swiper-slide-active .hero-img {
    opacity: 1;
    transform: translateX(0)
}

.hero-img img {
    width: 100%;
    border-radius: 0 80px 0 80px;
    object-fit: cover
}

.hero-content h1 {
    font-size: 58px;
    font-weight: 800;
    line-height: 1.15
}

.hero-content p {
    font-size: 18px;
    color: #555;
    margin-top: 12px
}

.hero-btn {
    padding: 12px 35px;
    background: #283a48;
    color: #fff;
    font-weight: 600;
    border: none;
    transition: 0.3s
}

.hero-btn:hover {
    background: #ffcd00;
    color: #000
}

.hero-pagination {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 12px
}

.hero-pagination .swiper-pagination-bullet {
    width: 45px;
    height: 45px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #eee;
    font-weight: 700
}

.hero-pagination .swiper-pagination-bullet-active {
    background: #ffcd00;
    color: #000
}
.swiper-pagination-bullet {
  background: #ffffff;      
  color: #000000;           
  opacity: 1;
  font-weight: 600;
}


.swiper-pagination-bullet {
  background: #333333;
  color: #ffffff;
}

@media (max-width:991px) {
    .hero-content {
        text-align: center;
        transform: none;
        opacity: 1
    }

    .hero-img {
        margin-top: 20px;
        transform: none;
        opacity: 1
    }

    .hero-content h1 {
        font-size: 40px
    }

    .hero-img img {
        border-radius: 0 50px 0 50px;
        width: 80%;
        margin: 0 auto;
        display: block
    }
}

@media (max-width:575px) {
    .hero-content h1 {
        font-size: 30px
    }

    .hero-img img {
        width: 100%
    }

    .hero-pagination .swiper-pagination-bullet {
        width: 35px;
        height: 35px;
        font-size: 14px
    }
}

.about-heading {
    font-size: 40px;
    font-weight: 800;
    line-height: 1.2;
    color: #1a1a1a
}

.about-heading span {
    color: #ffcd00
}

.about-text {
    font-size: 16px;
    color: #555;
    max-width: 85%;
    line-height: 1.6
}

.about-img-wrapper {
    width: 100%;
    overflow: hidden;
    border-radius: 0 80px 0 80px
}

.about-img {
    width: 100%;
    display: block;
    object-fit: cover;
    transition: .4s ease
}

.about-img:hover {
    transform: scale(1.03)
}

.constructor-img-wrapper {
    width: 70%;
    overflow: hidden;
    border-radius: 0 80px 0 80px;
    margin: 0 auto
}

.constructor-img {
    width: 100%;
    display: block;
    object-fit: cover;
    transition: .4s ease
}

@media (max-width:575px) {
    .constructor-img-wrapper {
        width: 100%
    }

    .constructor-img {
        width: 100%
    }
}

.schedule-section {
    background: url(../img/dark-texture.webp);
    background-size: contain;
    background-position: center;
    padding: 50px 0;
    position: relative;
    color: #fff
}

.schedule-title {
    font-size: 40px;
    font-weight: 800
}

.schedule-title span {
    color: #ffcd00
}

.schedule-subtext {
    font-size: 18px;
    margin-top: 10px;
    opacity: .9
}

.schedule-phone {
    font-size: 42px;
    font-weight: 700;
    margin-top: 10px;
    cursor: pointer
}

.schedule-icon img {
    width: 110px
}

@media (max-width:992px) {
    .schedule-icon img {
        width: 80px
    }
}

@media(max-width:768px) {
    .schedule-title {
        font-size: 30px
    }

    .schedule-phone {
        font-size: 32px
    }

    .schedule-icon img {
        width: 0;
        height: 0;
        display: none
    }
}

.features-section {
    margin: 80px 0
}

.feature-card {
    background: #fff;
    cursor: pointer;
    border-radius: 20px;
    padding: 40px 25px;
    box-shadow: 0 10px 30px rgb(0 0 0 / .1);
    transition: .3s ease;
    height: 100%
}

.cstm_nav li a:focus {
    color: #fff !important;
    background-color: #283a48
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgb(0 0 0 / .15)
}

.feature-icon {
    width: 60px;
    margin-bottom: 20px
}

.feature-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #0e2a47
}

.feature-text {
    font-size: 16px;
    color: #444;
    line-height: 1.6
}

@media(max-width:500px) {
    .features-section {
        min-height: 400px;
    }
}

.pricing-title {
    font-size: 42px;
    font-weight: 800
}

.price-card {
    border-radius: 12px;
    height: 400px;
    transition: .3s ease
}

.price-card:hover {
    transform: translateY(-10px)
}

.pkg-title {
    font-size: 24px;
    font-weight: 800;
    padding: 20px 25px 0
}

.pkg-sub {
    padding: 0 25px;
    color: #888;
    margin-bottom: 15px
}

.pkg-list {
    list-style: none;
    padding: 0 25px
}

.pkg-list li {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    font-size: 16px;
    color: #333
}

.price-card {
    background: #fff;
    border-radius: 12px;
    transition: .3s ease;
    display: flex;
    flex-direction: column;
    padding-bottom: 20px
}

.price-card .hero-btn {
    margin: 0 25px;
    margin-top: auto;
    margin-bottom: 20px
}

footer {
    background: linear-gradient(90deg, #283a48 0%, #283a48 100%);
    margin-top: 80px
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgb(255 255 255 / .05);
    border: 1px solid rgb(255 255 255 / .1);
    padding: 12px 15px;
    margin-bottom: 12px;
    border-radius: 12px;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease
}

.contact-card i {
    font-size: 1.3rem;
    color: #fff;
    transition: transform 0.3s ease, color 0.3s ease
}

.contact-card a,
.contact-card span {
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    flex: 1
}

.contact-card:hover {
    background: rgb(255 255 255 / .15);
    transform: translateX(5px);
    box-shadow: 0 4px 10px rgb(97 97 97 / .2)
}

.contact-card:hover i {
    transform: rotate(10deg) scale(1.1);
    color: #fff
}

.footer_links a {
    color: #444;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease
}

.footer_links a:hover {
    color: #283a48;
    letter-spacing: 1.5px;
    transform: translateX(5px)
}

.about-hero {
    position: relative;
    height: 350px;
    background: url(../img/banner.webp) center center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center
}

.about-overlay {
    position: absolute;
    inset: 0;
    background: rgb(0 0 0 / .45)
}

.banner-heading {
    position: relative;
    color: #fff;
    font-size: 62px;
    font-weight: 800;
    text-shadow: 0 4px 20px rgb(0 0 0 / .5)
}

.breadcrumb-wrapper {
    position: absolute;
    bottom: 30px;
    left: 50px;
    display: flex;
    gap: 10px;
    align-items: center;
    z-index: 2
}

.breadcrumb-wrapper a {
    color: #fff;
    font-weight: 600;
    text-decoration: none
}

.breadcrumb-wrapper span {
    color: #fff;
    font-size: 16px
}

@media (max-width:768px) {
    .about-heading {
        font-size: 42px
    }

    .breadcrumb-wrapper {
        left: 20px;
        bottom: 20px
    }
}

.why-title {
    font-size: 42px;
    font-weight: 800;
    color: #1a1a1a
}

.why-title span {
    color: #ffcd00
}

.why-desc {
    color: #555;
    font-size: 17px;
    line-height: 1.7;
    max-width: 90%
}

.why-box {
    background: #fff;
    padding: 30px 22px;
    border-radius: 14px;
    box-shadow: 0 10px 25px rgb(0 0 0 / .08);
    text-align: center;
    transition: .3s ease
}

.why-box i {
    font-size: 40px;
    color: #283a48;
    margin-bottom: 15px
}

.why-box h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px
}

.why-box p {
    font-size: 15px;
    color: #666
}

.why-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgb(0 0 0 / .15)
}

@media(max-width:768px) {
    .why-title {
        font-size: 32px
    }

    .why-desc {
        font-size: 16px;
        max-width: 100%
    }
}

.premium-testi-section {
    position: relative;
    background: url(../img/testimonial_banner2.webp) center/cover no-repeat;
    padding: 80px 0;
    color: #fff
}

.testi-overlay {
    position: absolute;
    inset: 0;
    background: rgb(0 0 0 / .55)
}

.testi-main-title {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 50px;
    position: relative;
    z-index: 2
}

.testi-box {
    position: relative;
    border: 2px solid #ffcd00;
    padding: 40px 35px;
    max-width: 650px;
    margin: 0 auto;
    border-radius: 10px;
    background: rgb(0 0 0 / .25);
    z-index: 2
}

.testi-text {
    font-size: 18px;
    line-height: 1.7
}

.testi-author {
    margin-top: 20px;
    font-weight: 700
}

.testi-arrow {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgb(255 255 255 / .25);
    backdrop-filter: blur(5px);
    border: 2px solid rgb(255 255 255 / .4);
    display: flex;
    align-items: center;
    justify-content: center;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10 !important
}

.testi-arrow i {
    font-size: 26px;
    color: #fff
}

.carousel-control-prev {
    left: -60px !important
}

.carousel-control-next {
    right: -60px !important
}

@media(max-width:768px) {
    .carousel-control-prev {
        left: 10px !important
    }

    .carousel-control-next {
        right: 10px !important
    }

    .testi-arrow {
        width: 45px;
        height: 45px
    }

    .testi-arrow i {
        font-size: 20px
    }
}

.helpful-links {
    background: #f7f9fc;
    text-align: center
}

.hl-title {
    font-size: 42px;
    font-weight: 800
}

.hl-sub {
    font-size: 18px;
    max-width: 620px;
    margin: 10px auto 40px;
    color: #555
}

.hl-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px
}

.hl-card {
    background: #fff;
    padding: 35px 25px;
    border-radius: 16px;
    box-shadow: 0 8px 22px rgb(0 0 0 / .07);
    transition: 0.3s
}

.hl-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgb(0 0 0 / .12)
}

.hl-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 18px
}

.engine-box {
    background: url(../img/dark-texture.webp) center/contain repeat;
    padding: 30px;
    border-radius: 40px;
    position: relative;
    text-align: center
}

.engine-box:before {
    content: "";
    position: absolute;
    top: 12px;
    left: 12px;
    right: 12px;
    bottom: 12px;
    border-radius: 30px;
    border: 3px solid #fff;
    pointer-events: none
}

.engine-title {
    font-size: 52px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 10px
}

.engine-sub {
    font-size: 20px;
    color: #eaeaea
}

.engine-btn {
    background: #ffcd00;
    border: none;
    color: #000;
    font-weight: 700;
    padding: 14px 40px;
    border-radius: 8px;
    margin: 15px;
    font-size: 18px;
    transition: .3s ease
}

.engine-btn:hover {
    background: #4d4d4d;
    color: #fff
}

.ads-title {
    color: #002B45;
    font-size: 24px !important
}

.ads-tagline {
    color: #444;
    font-size: 16px !important
}

.ads-languages {
    color: #444;
    font-size: 14px !important;
    display: block;
    margin-top: 5px
}

@media(max-width:768px) {
    .engine-title {
        font-size: 36px
    }

    .engine-sub {
        font-size: 16px
    }

    .engine-btn {
        padding: 12px 30px;
        font-size: 16px
    }
}

@media (max-width:1026px) {
    .ads-title {
        font-size: 16px !important
    }

    .ads-tagline {
        font-size: 16px !important
    }

    .ads-languages {
        font-size: 13px !important
    }

    .hero-btn {
        margin-left: 10px !important
    }
}

@media (max-width:992px) {
    .ads-title {
        font-size: 20px !important
    }

    .ads-tagline {
        font-size: 13px !important
    }

    .ads-languages {
        font-size: 11px !important
    }
}

@media (max-width:768px) {
    .ads-title {
        font-size: 22px !important
    }

    .ads-tagline {
        font-size: 16px !important
    }

    .ads-languages {
        font-size: 16px !important
    }
}

@media screen and (max-width:480px) {
    .brand_logo img {
        width: 90px !important
    }

    .ads-title {
        font-size: 16px !important
    }

    .ads-tagline {
        font-size: 14px !important
    }

    .ads-languages {
        font-size: 12px !important
    }
}

@media screen and (max-width:376px) {
    .brand_logo img {
        width: 70px !important
    }

    .ads-title {
        font-size: 13px !important
    }

    .ads-tagline {
        font-size: 10px !important
    }

    .ads-languages {
        font-size: 10px !important
    }
}

@media screen and (max-width:320px) {
    .brand_logo img {
        width: 60px !important
    }

    .ads-title {
        font-size: 11px !important
    }

    .ads-tagline {
        font-size: 8px !important
    }

    .ads-languages {
        font-size: 8px !important
    }
}

@media screen and (max-width:300px) {
    .ads-text {
        display: none
    }
}

.section_title {
    font-weight: 700;
    font-size: 40px;
    color: #283a48
}

.sec_text {
    font-weight: 500;
    font-size: 25px;
    color: #283a48
}

.section_title span {
    color: #ffcd00
}

.section_text {
    font-size: 18px
}

.section_text b {
    color: #283a48
}

.section_heading {
    color: #283a48;
    font-size: 30px;
    font-weight: 700
}

.section_heading span {
    color: #ffcd00
}

.text_box {
    border-radius: 14px;
    padding: 28px;
    height: auto;
    min-height: 380px;
    border-left: 5px solid #ffcd00;
    box-shadow: 0 10px 30px rgb(0 0 0 / .08);
    transition: all 0.3s ease
}

.text_box:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgb(0 0 0 / .12)
}

.img-box {
    max-width: 550px;
    margin: auto;
    border-radius: 70px 0;
    overflow: hidden;
    box-shadow: 0 15px 35px rgb(0 0 0 / .12)
}

.img-box img {
    width: 100%;
    height: auto;
    object-fit: cover
}

.seo_bg {
    background-color: #fffbe8
}

.cstm_border {
    border: 2px solid #ffcd00
}

@media(max-width:1025px) {
    .banner-heading {
        font-size: 50px
    }

    .section_title {
        font-size: 40px
    }
}

@media(max-width:500px) {
    .banner-heading {
        font-size: 30px
    }

    .section_title {
        font-size: 22px
    }

    .section_text {
        font-size: 14px
    }
}

.benefit_box {
    background: #fff;
    border-radius: 14px;
    padding: 18px 8px;
    font-weight: 600;
    color: #465c85;
    box-shadow: 0 8px 22px rgb(0 0 0 / .08);
    transition: all 0.3s ease
}

.benefit_box:hover {
    transform: translateY(-5px);
    background: #465c85;
    color: #fff
}

.cstm_box {
    border-radius: 14px;
    padding: 28px;
    height: auto;
    min-height: 200px;
    border-left: 5px solid #ffcd00;
    box-shadow: 0 10px 30px rgb(0 0 0 / .08);
    transition: all 0.3s ease
}

.cstm_box:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgb(0 0 0 / .12)
}

.feature_list li i,
.section_text li i {
    color: #ffcd00
}

.cstm_road_box {
    border-radius: 14px;
    padding: 28px;
    height: auto;
    min-height: 310px;
    border-left: 5px solid #ffcd00;
    box-shadow: 0 10px 30px rgb(0 0 0 / .08);
    transition: all 0.3s ease
}

.cstm_road_box:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgb(0 0 0 / .12)
}
/*error 404 page css start */
/* ==============================
   Driving 404 Page Styling
============================== */

.error_section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    text-align: center;
}

.error_container {
    max-width: 700px;
}

.error_number {
    font-size: 120px;
    font-weight: 800;
    color: #ffb703;
    margin-bottom: 10px;
}

.error_title {
    font-size: 32px;
    margin-bottom: 15px;
}

.error_text {
    font-size: 18px;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

.error_buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.error_btn_primary {
    background: #ffb703;
    color: #000;
    padding: 12px 28px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease;
}

.error_btn_primary:hover {
    background: #ffd60a;
}

/*error 404 page css end */