* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    text-decoration: none;
    font-family: "Josefin Sans", sans-serif;
}

html {
    scroll-behavior: smooth;
}

.btn-explore {
    background-color: transparent;
    color: #45bbff;
    border: 2px solid #45bbff;
    padding: 12px 28px;
    font-weight: 600;
    border-radius: 30px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-explore:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px #1f1f1f;
}

:focus {
    outline: 0 !important;
}

a {
    text-decoration: none;
}

/* =====================  Navbar =========================*/

#Navbar {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    z-index: 999;
    background-color: #323232;
    box-shadow: rgba(80, 122, 150, 0.25) 0px 6px 12px -2px,
        rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.website-name {
    display: flex;
    align-items: center;
}

.logo-img i {
    font-size: 40px;
    color: #45bbff;
}

.logo-style {
    font-size: 30px;
    padding-top: 10px;
    color: #45bbff;
    font-family: "Bree Serif", serif;
    font-weight: 800;
    font-style: normal;
}

.navbar-menu {
    display: flex;
    justify-content: center;
    align-items: center;
}

.navbar-menu ul {
    display: flex;
    padding-top: 23px;
    column-gap: 30px;
}

.navbar-menu button {
    border: none;
    outline: none;
    text-decoration: none;
    font-size: 18px;
    text-shadow: 1px 1px 2px #000;
    background-color: tomato;
    color: gold;
    padding: 10px 20px;
    border-radius: 50px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 4px;
}

.navbar-menu button:hover {
    background-color: transparent;
    border: 2px solid tomato;
    color: tomato;
    text-shadow: none;
}

.navbar-item {
    display: flex;
    align-items: center;
}

.navbar-menu ul a {
    text-decoration: none;
    color: #45bbff;
    font-size: 18px;
    position: relative;
    padding: 0 10px;
    font-weight: 600;
    font-family: 'Georgia', serif;
}

/*
.navbar-menu ul a:after {
    content: "";
    position: absolute;
    background: linear-gradient(90deg, #afd6fa, #529ce0);
    height: 4px;
    width: 0;
    left: 0;
    bottom: -5px;
    transition: width 0.4s ease-in-out;
    border-radius: 50px;
    box-shadow: 0 0 5px #ffa41b88;
}

.navbar-menu ul a:hover:after {
    width: 100%;
}*/

.navbar-menu ul a li {
    list-style: none;
}

.navbar-menu-toggle {
    display: none;
    font-size: 30px;
    font-weight: bold;
    color: #45bbff;
    text-shadow: 0.5px 0.5px 1px rgb(165, 207, 245);
    margin-top: 10px;
}

@media screen and (max-width: 1260px) {
    .navbar-menu-toggle {
        display: block;
    }

    .navbar-menu {
        display: none;
    }
}

@media screen and (max-width: 400px) {
    .logo-style {
        font-size: 23px;
    }

    .add-cart {
        width: 33px;
        height: 33px;
    }

    .add-cart i {
        font-size: 15px;
    }

    .cart-count {
        width: 16px;
        height: 16px;
    }
}

/* =====================  Side Navbar  =========================*/

.side-navbar {
    position: fixed;
    width: 280px;
    height: 100%;
    top: 0;
    right: -100%;
    padding: 20px;
    transition: 2s;
    z-index: 9999;
    /*
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url(../img/bg-img/side-navbar.jpg); */
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-color: #323232;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px,
        rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
    border-left: 3px solid #45bbff;
}

.side-navbar-link {
    margin-bottom: 30px;
    margin-top: 30px;
}

.side-navbar-links p {
    display: flex;
    align-items: center;
    height: 40px;
    background-color: transparent;
    padding: 0 20px;
    border-radius: 10px;
    cursor: pointer;

}

.side-navbar-links a {
    text-decoration: none;
    cursor: pointer;
    font-size: 20px;
    color: #45bbff;
    font-family: "Bree Serif", serif;
    font-weight: 800;
    font-style: normal;
}

.side-navbar-links p i {
    font-size: 17px;
    padding-right: 15px;
    color: #ffff;
}

.side-navbar-links a:hover {
    color: goldenrod;
}

.cross-symbol {
    color: red;
    text-align: right;
    font-size: 20px;
    cursor: pointer;
}

.side-navbar-links a button {
    border: none;
    outline: none;
    text-decoration: none;
    font-size: 18px;
    text-shadow: 1px 1px 2px #000;
    background-color: tomato;
    color: gold;
    padding: 10px 20px;
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 4px;
}

.side-navbar-links a button:hover {
    background-color: transparent;
    border: 2px solid tomato;
    color: tomato;
    text-shadow: none;
}

/* =====================  Home Header  =========================*/

.slider-container {
    position: relative;
    width: 100%;
    height: 80vh;
    overflow: hidden;
    background-color: #323232;
}

.slider {
    display: flex;
    width: 300%;
    height: 100%;
    transition: transform 0.5s ease-in-out;
}

.slide {
    position: relative;
    width: 33.33%;
    height: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
}

/*
.slide::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1;
}*/

.slide-content {
    position: relative;
    z-index: 2;
    width: 90%;
    max-width: 1200px;
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 20px 0;
}

.text-content {
    flex: 1;
    max-width: 600px;
}

.text-content h4 {
    letter-spacing: 2px;
    color: #4a8bc7;
    margin-bottom: 20px;
    font-family: "Overpass", sans-serif;
    font-family: "Are You Serious", cursive;
    font-weight: 400;
    font-style: normal;
}

.text-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #45bbff;
    margin-bottom: 15px;
}

.text-content p {
    font-size: 1.1rem;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.6;
}

.image-content {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-content img {
    max-width: 100%;
    height: auto;
    max-height: 450px;
    border-radius: 12px;
}

/*
.btn-explore {
    background-color: #ffc107;
    color: #1a1a1a;
    border: none;
    padding: 12px 28px;
    font-weight: 600;
    border-radius: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    text-decoration: none;
}

.btn-explore:hover {
    background-color: #e0a800;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}*/

.arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2.5rem;
    color: #45bbff;
    cursor: pointer;
    user-select: none;
    z-index: 3;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.arrow-left {
    left: 30px;
}

.arrow-right {
    right: 30px;
}

/* Dots */
.dots-container {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 3;
}

.dot {
    width: 12px;
    height: 12px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background-color: #45bbff;
    transform: scale(1.3);
}

/*
.slide-1 {
    background-image: url(../img/home-header-bg1.jpg);
}

.slide-2 {
    background-image: url(../img/home-header-bg2.jpeg);
}

.slide-3 {
    background-image: url(../img/home-header-bg3.jpg);
}*/

@media screen and (max-width: 992px) {
    .slider-container {
        height: 85vh;
    }

    .slide-content {
        flex-direction: column;
        text-align: center;
        padding: 0 15px;
    }

    .text-content,
    .image-content {
        max-width: 100%;
    }

    .slide-content .image-content {
        order: -1;
        margin-bottom: 20px;
        display: flex;
        justify-content: center;
    }

    .slide-content .text-content {
        order: 1;
    }

    .text-content h4,
    .text-content h1,
    .text-content p,
    .text-content a,
    .text-content button {
        text-align: center !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .btn-explore {
        display: block;
        margin: 0 auto;
        text-decoration: none !important;
        outline: none !important;
    }

    .image-content img {
        max-height: 300px;
        width: auto;
        max-width: 100%;
        object-fit: contain;
    }

    .text-content h1 {
        font-size: 2.8rem;
    }
}

@media screen and (max-width: 768px) {

    .text-content h1 {
        font-size: 2.5rem;
    }

    .text-content p {
        font-size: 1rem;
    }

    .image-content img {
        max-height: 200px;
    }

    .arrow {
        font-size: 2rem;
        width: 40px;
        height: 40px;
    }

    .arrow-left {
        left: 10px;
    }

    .arrow-right {
        right: 10px;
    }

    .slide-content .image-content {
        margin-bottom: 15px;
    }
}

@media screen and (max-width: 480px) {

    .text-content h1 {
        font-size: 1.8rem;
    }

    .text-content p {
        font-size: 0.9rem;
    }

    .btn-explore {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .arrow {
        display: none;
    }

    .image-content img {
        max-height: 200px;
    }

    .dots-container {
        bottom: 15px;
    }

    .dot {
        width: 10px;
        height: 10px;
    }

    .slide-content .image-content {
        margin-bottom: 12px;
    }
}

/* =====================  Footer =========================*/

.loan-footer {
    background-color: #046eac;
    color: #181818;
    padding: 50px 0 20px;
    font-size: 16px;
}

.loan-footer h5 {
    color: #FFF;
    margin-bottom: 15px;
    font-size: 18px;
    text-align: start;
}

.loan-footer p {
    line-height: 1.6;
    text-align: justify;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: start;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: #181818;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #38bdf8;
}

.footer-links span {
    color: #ffffff;
    font-weight: 500;
}

.footer-bottom {
    border-top: 2px solid #fff;
    margin-top: 20px;
    padding-top: 15px;
    font-size: 13px;
}

.footer-bottom p {
    color: #fff;
}

@media (max-width: 991px) {
    .loan-footer {
        padding: 40px 0 15px;
    }
}

@media (max-width: 576px) {
    .loan-footer {
        text-align: center;
    }

    .loan-footer h5 {
        margin-top: 20px;
    }

    .footer-links li {
        justify-content: center;
    }
}

/*================================================
    Page Header Area CSS
=================================================*/

.page-header {
    position: relative;
    height: 40vh;
    width: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../img/4.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.page-header-content {
    position: relative;
    z-index: 2;
}

.page-header-content h4 {
    font-size: 1.2rem;
    color: #45bbff;
    font-weight: bold;
    letter-spacing: 2px;
    margin-bottom: 10px;
    position: relative;
    text-shadow: 1px 1px 2px #323232;
}

.page-header-content h1 {
    color: #ffffff;
    font-size: 2rem;
    font-weight: bold;
    margin: 0;
    text-shadow: 1px 1px 2px #323232;
}

@media (max-width: 768px) {
    .page-header {
        height: 30vh;
    }
}

@media (max-width: 576px) {
    .page-header {
        height: 25vh;
    }

    .page-header-content h4 {
        font-size: 0.9rem;
    }

    .page-header-content h1 {
        font-size: 1.2rem;
    }

    .page-header-content h4::before,
    .page-header-content h4::after {
        left: -20px;
        right: -20px;
    }
}

/*================================================
   React Interview Question Area CSS
=================================================*/

.react-interview-question {
    background-color: #1a1a1a;
    color: #e0e0e0;
    font-family: 'Segoe UI', system-ui, sans-serif;
    padding: 40px 20px;
    min-height: 100vh;
}

.header-title {
    color: #45bbff;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-align: start;
}

.react-interview-question .container {
    max-width: 1300px;
}

.react-interview-question .question-card {
    background-color: #323232;
    border: none;
    border-radius: 10px;
    margin-bottom: 16px;
    overflow: hidden;
    transition: all 0.25s ease;
}

.react-interview-question .question-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.5);
}

.react-interview-question .question-header {
    background: linear-gradient(90deg, #323232, #3a3a3a);
    padding: 18px 24px;
    cursor: pointer;
    user-select: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: background-color 0.2s ease;
}

.react-interview-question .question-header:hover {
    background: linear-gradient(90deg, #3a3a3a, #454545);
}

.react-interview-question .question-number {
    color: #45bbff;
    font-weight: bold;
    margin-right: 14px;
    font-size: 1.3rem;
    min-width: 32px;
}

.react-interview-question .question-text {
    flex: 1;
    margin: 0;
    font-size: 1.1rem;
    color: #f0f0f0;
}

.react-interview-question .toggle-icon {
    font-size: 1.4rem;
    color: #45bbff;
    transition: transform 0.35s ease;
}

.react-interview-question .question-header.active .toggle-icon {
    transform: rotate(180deg);
}

.react-interview-question .answer-body {
    padding: 0 24px 24px;
    background-color: #2a2a2a;
    color: #d0d0d0;
    line-height: 1.65;
    display: none;
}

.react-interview-question .answer-body.show {
    display: block;
    animation: fadeIn 0.4s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(12px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.react-interview-question .answer-body code {
    background-color: #222;
    padding: 2px 6px;
    border-radius: 4px;
    color: #45bbff;
}

@media (max-width: 576px) {
    .react-interview-question {
        padding: 20px 12px;
    }

    .react-interview-question .question-header {
        padding: 16px 18px;
    }

    .react-interview-question .question-text {
        font-size: 1rem;
    }

    .react-interview-question .question-number {
        font-size: 1.15rem;
        min-width: 28px;
    }

    .react-interview-question .answer-body {
        padding: 0 18px 20px;
    }
}



::-webkit-scrollbar {
    display: none;
}

::placeholder {
    color: #000 !important;
    opacity: 1;
}

/*

::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-track {
    background-color: transparent;
}

::-webkit-scrollbar-thumb {
    background-color: #002b40;
    border-radius: 10px;
}*/

:root {
    scroll-padding-top: 80px;
}