* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Cairo;
}

body {
    margin: 0;
    padding: 0;
    font-family: Cairo;
    height: 100vh;
    position: relative;
}

/* Main navigation styles */
/* Global Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    overflow-x: hidden;
}

/* Navbar Styles */
.nav {
    width: 100%;
    background-color: #EFE8D8;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 100px;
    height: 80px;
    z-index: 1000;
    box-shadow: 0px 0.5px 5px rgba(201, 201, 201, 0.8);
    animation: navbar 0.5s forwards;
}

/* Navbar Animation */
@keyframes navbar {
    0% {
        transform: translateY(-80px);
    }

    100% {
        transform: translateY(0);
    }
}

/* Brand Logo */
.brand img {
    width: 140px;
    height: 45px;
    transition: 0.5s;
}

/* Navigation Links */
.nav-links {
    display: flex;
    align-items: center;
    gap: 50px;
    margin: 0;
    list-style: none;
    transition: 0.5s;
    z-index: 10000;
}

.nav-links li a {
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    color: black;
    position: relative;
    transition: color 0.3s ease;
}

.nav-links li a:hover {
    color: #AC6A31;
}

.nav-links li a::after {
    content: "";
    position: absolute;
    bottom: -25px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: black;
    transition: width 0.3s ease;
}

.nav-links li a:hover::after {
    width: 100%;
}

/* Mobile Menu Icons */
.icon {
    display: none;
    cursor: pointer;
    z-index: 2000;
}

.icon i {
    font-size: 24px;
    color: black;
}

/* Login/Register Links */
.log-rig {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 0;
    font-size: 14px;
    font-weight: 600;
}

.log-rig a {
    text-decoration: none;
    color: black;
    transition: color 0.3s ease;
}

.log-rig a:hover {
    color: #AC6A31;
}

/* Dropdown Button */
.dropdown .drop-btn {
    background: none;
    border: none;
    font-size: 18px;
    cursor: pointer;
    padding: 0;
    margin: 0;
    color: #AC6A31;
    transition: color 0.3s ease;
}

/* Dropdown Menu */
.dropdown-menu {
    background-color: #EFE8D8;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    padding: 5px 0;
    margin-top: 10px;
}

.dropdown-item {
    font-size: 14px;
    color: black;
    padding: 10px 20px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.dropdown-item:hover {
    color: white;
}

/* User Icons */
.log-rig i {
    font-size: 18px;
    transition: color 0.3s ease;
    color: #AC6A31;
}

/* Responsive Updates */

@media (max-width: 1100px) {
    .nav {
        padding: 10px 20px;
    }

    .brand img {
        width: 120px;
        height: auto;
    }

    .nav-links {
        position: fixed;
        top: 80px;
        right: -100%;
        width: auto;
        height: auto;
        background-color: #EFE8D8;
        display: flex;
        flex-direction: column;
        justify-content: start;
        align-items: flex-start;
        gap: 50px;
        padding: 20px;
        transition: transform 0.5s ease-in-out, right 0.5s ease-in-out;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        list-style: none;
    }

    .nav-links li a {
        font-size: 18px;
        padding: 10px;
        width: 100%;
        transition: color 0.3s ease;
    }

    .nav-links li a:hover {
        color: #AC6A31;
    }

    .icon {
        display: block;
    }

    #closeIcon {
        display: none;
    }

    .nav-links.active~.icon #openIcon {
        display: none;
    }

    .nav-links.active~.icon #closeIcon {
        display: inline;
    }

    .log-rig {
        gap: 10px;
        font-size: 14px;
    }

    .dropdown .drop-btn {
        font-size: 16px;
    }

    .log-rig i {
        font-size: 14px;
    }
}

@media (max-width: 400px) {
    .brand img {
        width: 100px;
        height: auto;
    }
}



/* footer */
.footer {
    background-color: #EFE8D8;
    color: #333;
    padding: 20px 10px;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: auto;
}

.ff {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
}

.footer-column {
    flex: 1;
    min-width: 200px;
    margin: 10px;
}

.head {
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-direction: column;
    margin-left: 200px;
    /* Adjusted for responsiveness */
}

.bb {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 10px;
}

.bb img {
    width: 90px;
    height: 90px;
}

.footer-column h3 {
    margin-bottom: 10px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin: 5px 0;
}

.footer-column ul li a {
    text-decoration: none;
    color: #333;
}

.footer-column .email-form {
    display: flex;
    flex-direction: row;
}

.footer-column .email-form input {
    flex: 1;
    padding: 5px 10px;
    border: 1px solid #ccc;
}

.footer-column .email-form button {
    padding: 5px 10px;
    background-color: #8a5a2b;
    color: white;
    border: none;
    cursor: pointer;
}

.footer-column .social-icons {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.social-icons a {
    text-decoration: none;
}

.social-icons a:hover .footer-icon {
    color: black;
    scale: 1.08;
}

.footer-icon {
    font-size: 28px;
    margin-left: 10px;
    color: #8a5a2b;
    transition: .5s;
}


.last-fot {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}


/* Responsive Design */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .ff {
        flex-direction: column;
        align-items: center;
    }

    .head {
        margin-left: 0;
        margin-bottom: 20px;
    }

    .bb {
        flex-direction: column;
    }

    .bb img {
        width: 70px;
        height: 70px;
    }

    .footer-column {
        flex: 0 1 auto;
        margin: 15px 0;
    }

    .footer-column h5 {
        margin-bottom: 20px;
    }

    .footer-column .email-form {
        flex-direction: column;
    }

    .footer-column .email-form input,
    .footer-column .email-form button {
        width: 100%;
    }

    .social-icons {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .last-fot {
        text-align: center;
    }
}

/* Intro Section */
.intro-section {
    position: relative;
    width: 100%;
    height: 70vh;
    background: radial-gradient(circle at center, #f5f0e4 20%, #EFE8D8 50%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    text-align: center;
    padding: 20px;
    margin-bottom: 100px;
    margin-top: 100px;
    overflow: hidden;
}

/* Adding a Soft Overlay Texture */
.intro-section::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: url('https://www.transparenttextures.com/patterns/asfalt-light.png');
    opacity: 0.2;
}

/* Floating Shapes Animation */
@keyframes floating {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

.floating-shapes {
    position: absolute;
    width: 150px;
    height: 150px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    animation: floating 6s infinite ease-in-out;
}

.shape-1 {
    background-color: white;
    top: 20%;
    left: 15%;
    width: 80px;
    height: 80px;
    animation-delay: 0s;
}

.shape-2 {
    background-color: white;
    top: 60%;
    right: 20%;
    width: 120px;
    height: 120px;
    animation-delay: 1.5s;
}


.intro-content {
    position: relative;
    max-width: 600px;
    background: rgba(0, 0, 0, 0.6);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.intro-title {
    color: white;
    font-size: 2rem;
    margin-bottom: 15px;
}

.intro-text {
    color: white;
    font-size: 1.1rem;
    line-height: 1.8;
}

.intro-btn {
    display: inline-block;
    margin-top: 15px;
    padding: 12px 30px;
    font-size: 1rem;
    color: #fff;
    background-color: #8a5a2b;
    text-decoration: none;
    border-radius: 500000px;
    transition: 0.3s;
}

.intro-btn:hover {
    background-color: #AC6A31;
}

/* Responsive */
@media (max-width: 768px) {
    .intro-section {
        height: 70vh;
    }

    .intro-content {
        width: 90%;
    }

    .intro-title {
        font-size: 1.8rem;
    }

    .intro-text {
        font-size: 1rem;
    }
}

/* About Section */
/* About Section */
.about-section {
    width: 95%;
    max-width: 1200px;
    margin: 50px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    background: #fff;
    border-radius: 10px;
}

/* Form Section */
.contact-form {
    width: 50%;
    padding: 30px;
    background: #fff;
    box-sizing: border-box;
}

.contact-form h2 {
    margin-bottom: 20px;
    font-size: 1.8rem;
    color: #333;
    text-align: center;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border-radius: 5px;
    background-color: #F8F5F5;
    font-size: 1rem;
}

.contact-form textarea {
    height: 100px;
    resize: none;
    border: none;
    outline: none;
}

.send-btn {
    display: block;
    width: 100%;
    text-align: center;
    padding: 12px;
    font-size: 1rem;
    background-color: #8a5a2b;
    color: white;
    border-radius: 5px;
    text-decoration: none;
    transition: 0.3s;
}

.send-btn:hover {
    background-color: #AC6A31;
}

/* Map Section */
.map-container {
    width: 50%;
    position: relative;
}

.map-container a {
    display: block;
    width: 100%;
    height: auto;
}

.map-container img {
    width: 100%;
    /* Full width */
    height: auto;
    /* Auto height to maintain aspect ratio */
    object-fit: cover;
    /* Ensures the image covers the container */
    object-position: center;
    /* Keeps the image centered */
    filter: brightness(0.8) contrast(1.2);
    /* Adjusts image brightness and contrast */
    transition: filter 0.3s ease-in-out;
    /* Smooth transition for hover effect */
}

/* Hover effect on the map image */
.map-container img:hover {
    filter: brightness(1) contrast(1.2);
    /* Slightly brighten and maintain contrast on hover */
}

/* Responsive Design */
@media (max-width: 992px) {
    .about-section {
        flex-direction: column;
    }

    .contact-form,
    .map-container {
        width: 90%;
        margin: 0 auto;
        margin-bottom: 50px;
    }

    .map-container img {
        height: auto;
        /* Maintain auto height on larger screens */
    }
}

@media (max-width: 768px) {
    .contact-form {
        padding: 20px;
    }

    .contact-form input,
    .contact-form textarea {
        font-size: 0.9rem;
    }

    .send-btn {
        font-size: 0.9rem;
    }

    .map-container img {
        height: auto;
        /* Auto height for tablets */
    }
}

@media (max-width: 480px) {
    .contact-form h2 {
        font-size: 1.5rem;
    }

    .send-btn {
        font-size: 0.8rem;
        padding: 10px;
    }

    .map-container img {
        height: auto;
        /* Auto height for mobile screens */
    }
}

/* about part */
.content {
    width: 100%;
}

.logoo {
    width: 100%;
    height: 400px;
    background-color: #3E3107;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logoo img {
    height: 100px;
    width: 200px;
}

.login {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    padding-top: 100px;
}

.content-head {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.content-head h1 {
    margin-bottom: 20px;
}

.fform {
    width: 300px;
    height: 300px;
    display: flex;
    align-content: center;
    justify-content: center;
    flex-direction: column;
}

.ffform {
    width: 300px;
    height: 500px;
    display: flex;
    align-content: center;
    justify-content: center;
    flex-direction: column;
}


.ffform input {
    outline: none;
    border: none;
    margin-top: 20px;
    padding: 10px 0px;
    border-bottom: 1px solid black;
}

.ffform .button {
    margin: 20px 0px;
    background-color: #AC6A31;
    border: none;
    text-align: center;
    color: white;
    text-decoration: none;
    padding: 10px 30px;
}

.ffform p {
    text-align: center;
}

.ffform p a {
    margin-right: 10px;
}


.fform input {
    outline: none;
    border: none;
    margin-top: 20px;
    padding: 10px 0px;
    border-bottom: 1px solid black;
}

.fform .button {
    margin: 20px 0px;
    background-color: #AC6A31;
    text-align: center;
    text-decoration: none;
    border: none;
    color: white;
    padding: 10px 30px;
}

.fform p {
    text-align: center;
}

.fform p a {
    margin-right: 10px;
}

@media(min-width:1200px) {
    .content {
        display: flex;
        align-items: center;
        justify-content: center;
        height: 100vh;
    }

    .logoo {
        width: 100%;
        height: 100%;
        background-color: #3E3107;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .login {
        display: flex;
        align-items: center;
        flex-direction: column;
        justify-content: center;
        width: 100%;
        height: 100%;
        padding-top: 20px;
    }

    .fform {
        width: 500px;
        height: 400px;
        display: flex;
        justify-content: center;
        flex-direction: column;
    }

    .ffform {
        width: 500px;
        height: 500px;
        display: flex;
        justify-content: center;
        flex-direction: column;
    }
}


/* register */

.button-google {
    background-color: #00000000;
    border: none;
    color: white;
    border: .5px solid rgb(201, 201, 201);
    padding: 10px 30px;
    margin-bottom: 20px;
    color: black;
    text-decoration: none;
    text-align: center;
}

.button-google img {
    margin-right: 10px;
}

#error-message {
    margin-top: 10px;
    font-size: 0.9rem;
    color: red;
    display: none;
    /* Hidden by default */
}

.contact-content {
    width: 100%;
    display: flex;
    height: auto;
}

.contact-content .right {
    position: relative;
    display: flex;
    align-items: center;
    text-align: center;
    width: 50%;
}

.right-content img {
    height: 75px;
    width: 170px;
}

.contact-content .right::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    z-index: -1;
    background-color: #0000008F;
}

.contact-content .right .img-fluid {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.contact-p {
    color: white;
    font-size: 25px;
    margin-top: 20px;
}

.left-pp {
    padding: 50px;
    width: 50%;
    background-color: white;
}

.form-head {
    margin-bottom: 20px;
}

.form-head h2 {
    font-size: 25px;
}

.inputs {
    display: flex;
    flex-direction: column;
}

.inputs textarea {
    width: 50%;
    border: none;
    outline: none;
    background-color: #F8F5F5;
    padding: 10px 20px;
    height: 80px;
}

.inputs a {
    text-decoration: none;
    background-color: #8a5a2b;
    width: 50%;
    margin: 20px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    padding: 13px;
    transition: .5s;
}

.inputs a:hover {
    background-color: #AC6A31;

}

.inputs input {
    margin-bottom: 20px;
    width: 50%;
    border: none;
    outline: none;
    padding: 10px 20px;
    background-color: #F8F5F5;
}

.map-section {
    margin-top: 40px;
    text-align: right;
}

.map-section h3 {
    font-size: 25px;
    margin-bottom: 10px;
}

#map iframe {
    width: 100%;
    height: 300px;
    border-radius: 8px;
    border: 1px solid #ddd;
}

/* Ensure responsiveness */
@media (max-width: 768px) {
    .contact-content {
        flex-direction: column;
    }

    .contact-p {
        font-size: 18px;
    }

    .form-head h2 {
        font-size: 20px;
    }

    .contact-content .right {
        height: 400px;
    }

    .right-content img {
        height: 50px;
        width: 130px;
    }

    .contact-content .right,
    .contact-content .left-pp {
        width: 100%;
    }

    .inputs input,
    .inputs textarea,
    .inputs a {
        width: 100%;
    }

    #map iframe {
        height: 200px;
    }
}


/* user-info */
.user-information {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
}

.side-menu {
    margin: 0 auto;
    box-shadow: 0 0 10px rgb(223, 223, 223);
    width: 95%;
    height: 100%;
    border-radius: 20px;
    padding: 0 20px;
    padding: 50px;
    margin-top: 50px;
}

.side-menu hr {
    width: 90%;
    color: black;
}

.side-links hr {
    color: rgb(189, 189, 189);
}

.side-links a {
    text-decoration: none;
    color: rgb(143, 143, 143);
    font-weight: 600;
    font-size: 18px;
    transition: .5s;
}

.side-links a:hover {
    color: black;
}

.profile-form {
    width: 40%;
    margin: 50px auto;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.profile-form h2 {
    font-size: 24px;
    color: #444;
    margin-bottom: 10px;
}

.profile-head {
    display: flex;
    justify-content: space-between;
}


.profile-form p {
    font-size: 16px;
    margin-bottom: 20px;
}

.profile-head p span {
    color: #AC6A31;
}

.form-container {
    text-align: right;
}

.form-container h3 {
    font-size: 20px;
    color: #AC6A31;
    margin-bottom: 20px;
}

form {
    display: flex;
    flex-direction: column;
}

.form-row {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 15px;
}

.form-group {
    flex: 1;
    padding: 5px;
    display: flex;
    flex-direction: column;
}

.full-width {
    flex: 1;
    padding: 5px;
    display: flex;
    flex-direction: row;
}

.form-item {
    width: 34%;
    margin: 0 5px;
}

.form-item input {
    width: 100%;
}

.form-group.full-width {
    flex: 0 0 100%;
}

label {
    font-size: 14px;
    margin-bottom: 5px;
}

input {
    padding: 10px;
    border: none;
    border-radius: 5px;
    background-color: #fff7f4;
    font-size: 14px;
    outline: none;
}

button {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
}

.save-btn {
    background-color: #AC6A31;
    color: #fff;
    padding: 15px 50px;
    margin-right: 10px;
}

.cancel-btn {
    margin-right: 20px;
    background-color: transparent;
}

.pass {
    margin-bottom: 20px;
}



/* Responsive Design */
@media (max-width: 1376px) {
    .full-width {
        flex-direction: column;
    }

    .form-item {
        width: 100%;
    }
}

@media (min-width: 868px) {
    .side-menu {
        width: 40%;
    }

    .user-information {
        flex-direction: row;
        align-items: start;
    }

    .profile-form {
        width: 40%;
    }

}

@media (max-width: 768px) {
    .form-row {
        flex-direction: column;
    }

    .profile-form {
        width: 90%;
    }


    .form-group {
        width: 100%;
    }
}


/* notifications */
.notifications-page {
    max-width: 500px;
    margin: 100px auto;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.notifications-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px;
    background-color: #fff;
    border-bottom: 1px solid #eee;
}

.notifications-header img {
    width: 30px;
    height: 30px;
    margin-left: 10px;
}

.notifications-header h2 {
    font-size: 18px;
    color: #444;
    margin: 0;
}

.notifications-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.notification-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px;
    border-bottom: 1px solid #eee;
    background: #fff;
    transition: background 0.2s;
}

.notification-item:hover {
    background: #f8f8f8;
}

.notification-item p {
    margin: 0;
    font-size: 14px;
    color: #333;
    flex: 1;
}

.notification-status {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: transparent;
}

.notification-status.new {
    background: #e74c3c;
    /* Red color for new notifications */
}

/* Responsive Design */
@media (max-width: 480px) {
    .notifications-page {

        max-width: 100%;
        margin: 0;
        border-radius: 0;
        margin-top: 70px;
    }

    .notification-item {
        padding: 10px;
    }

    .notifications-header {
        padding: 10px;
    }

    .notifications-header h2 {
        font-size: 16px;
    }

    .notification-item p {
        font-size: 13px;
    }
}


/* hero */

.hero-aucation {
    margin-top: 70px;
}

.hero-head-aucation {
    margin-bottom: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}


.hero-head-aucation span {
    color: #B19021;
    margin-right: 60px;
}

@media(max-width:800px) {
    .hero-head-aucation h1 {
        font-size: 20px;
    }

    .hero-head-aucation span {
        margin-right: 15px;
    }

}

/* General Layout */
.layout-container {
    display: flex;
    gap: 20px;
    padding: 20px;
}


/* Left Side: Large Image */
.left-side {
    flex: 3;
}

.large-image {
    width: 100%;
    height: auto;
    border: 2px solid #ddd;
}

/* Right Side: Grid Layout */
.right-side {
    flex: 2;
    /* Takes less space on the right */
}

.grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    height: 100%;
    gap: 10px;
}

.grid img {
    height: 100%;
}

.grid-item {
    width: 100%;
    border: 2px solid #ddd;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.video-container video {
    width: 100%;
    height: 100%;
}

/* Hover Effects for Images */
.grid-item:hover {
    transform: scale(1.05);
    transition: transform 0.3s ease;
}

/* Responsive Design */
@media (max-width: 768px) {
    .layout-container {
        flex-direction: column;
    }

    .left-side,
    .right-side {
        flex: 1 1 100%;
    }

    .grid {
        grid-template-columns: 1fr;
    }
}

/*auction  */
.auction-container {
    width: 90%;
    margin: 50px auto;
    padding: 30px;
    background: #fff;
    text-align: center;
}

.flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.auction-header {
    font-weight: 700;
    font-size: 32px;
    color: #333;
}

.status {
    font-size: 18px;
    color: #555;
}

.status span {
    color: green;
    font-weight: bold;
}

.auction-details {
    text-align: start;
    font-size: 16px;
    line-height: 1.8;
    margin: 20px 0;
}

.price-aucation {
    display: flex;
    justify-content: space-between;
    margin: 30px 0;
    flex-wrap: wrap;
}

.price-section {
    text-align: right;
    font-size: 18px;
    color: #333;
    flex: 1 1 45%;
    margin-bottom: 20px;
}

.price34 {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: end;
    justify-content: center;
    line-height: 2;
    flex: 1 1 45%;
}

.price34 span {
    color: black;
}

.current-price {
    background-color: #AC6A31C9;
    color: #fff;
    font-size: 24px;
    font-weight: bold;
    padding: 30px 20px;
    border-radius: 10px;
    margin-bottom: 10px;
    width: 70%;
}

.bid-info {
    width: 70%;
    font-size: 14px;
    color: black;
    background-color: #EAE6E2C9;
    border-radius: 1111111111px;
    text-align: start;
    padding: 5px 20px;
}

.btn-container {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.btn {
    width: 40%;
    height: 50px;
    font-size: 16px;
    border: none;
    border-radius: 25px;
    color: #fff;
    cursor: pointer;
}

.btn-bid {
    background-color: #AC6A31;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-bid:hover {
    background-color: #AC6A31;
}

.btn-buy {
    width: 40%;
    background-color: #AC6A31;
    font-weight: 600;
}

.bid {
    width: 100%;
    display: flex;
    align-items: start;
    justify-content: center;
    flex-direction: column;
    flex: 1 1 45%;
}

.btn-inp {
    background-color: #C1C1C1;
    width: 20%;
    margin-bottom: 10px;
    margin-left: 20px;
}

.btn-buy:hover {
    background-color: #AC6A31;
}

.group-btn {
    width: 100%;
    flex: 1 1 45%;
}

.buttonss {
    flex-direction: row;
    display: flex;
}

@media (max-width: 768px) {
    .bid-info {
        width: 100%;
        font-size: 10px;
        color: black;
        background-color: #EAE6E2C9;
        border-radius: 1111111111px;
        text-align: center;
        padding: 5px 20px;
    }

    .price-aucation {
        flex-direction: column;
        align-items: flex-start;
    }

    .current-price {
        width: 100%;
    }

    .btn-container {
        flex-direction: column;
    }

    .group-btn {
        margin-top: 50px;
    }

    .btn {
        width: 100%;
    }
}

/* payment */
.payment {
    width: 85%;
    margin: 50px auto;
}

.right-pay {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.right-pay-head {
    text-align: center;
}

.right-pay-head p {
    margin-top: 15px;
    text-align: center;
}

/* form */
.payment-form {
    background: white;
    border-radius: 8px;
    width: 85%;
}

.form-group {
    margin-bottom: 20px;
}

label {
    display: block;
    font-size: 14px;
    margin-bottom: 8px;
}

.info {
    font-size: 12px;
    color: gray;
    margin-left: 5px;
}

.input-full-name {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box;
}

/* Card Number Field */
.input-card-number {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box;
    letter-spacing: 2px;
}

/* Expiry Date and CVV Fields */
.row {
    display: flex;
    gap: 10px;
}

.field {
    flex: 1;
}


.input-expiry-date {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box;
}

.expiry-cvv-group {
    display: flex;
}


.input-cvv {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box;
}

.cvv-group .row {
    --bs-gutter-x: 0rem;
}

.btn-submit {
    width: 100%;
    padding: 10px;
    background: #b87333;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
}

.btn-submit:hover {
    background: #a5632b;
}

.top-part {
    margin-bottom: 50px;
    padding: 20px;
    text-align: center;
}

.top-part h3 {
    margin-bottom: 20px;
}


.pay-info {
    background-color: #AC6A318A;
    border-radius: 15px;
    padding: 10px;
}

.pay-item {
    margin-top: 10px;
    display: flex;
    flex-direction: column;
}

.pay-item .header {
    color: white;
}

.pay-item p {
    text-align: center;
    width: 100%;
}

.left-payy {
    background-color: #D6DADD4D;
    border-radius: 16px;
    width: 90%;
    margin: 0px auto;
}

.line {
    position: relative;
    margin: 0 auto;
    border: dashed 1px gray;
}

.line::after {
    position: absolute;
    content: "";
    right: -40px;
    top: -25px;
    width: 55px;
    height: 55px;
    border-radius: 55555555px;
    background-color: white;
}

.line::before {
    position: absolute;
    content: "";
    left: -40px;
    top: -25px;
    width: 55px;
    height: 55px;
    border-radius: 55555555px;
    background-color: white;
}

.bottom-part {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 50px;
    margin-left: 20px;
    margin-right: 20px;
}

.content-pay p {
    margin-bottom: 20px;
}

.content-pay h5 {
    font-size: 20px;
}

@media(min-width:1000px) {
    .payyy {
        display: flex;
    }

    .left-payy {
        width: 80%;
    }

    .left-pay {
        width: 75%;
        margin: 0 auto;
    }

    .right-pay {
        display: flex;
        align-items: start;
        justify-content: center;
        width: 50%;
    }

    .right-pay-head {
        text-align: start;
    }

    .right-pay-head p {
        margin-top: 15px;
        text-align: start;
    }

    .pay-item {
        display: flex;
        flex-direction: row;
    }

    .pay-item p {
        text-align: start;
    }

    .top-part h3 {
        text-align: start;
    }
}

@media(min-width:1400px) {
    .left-pay {
        width: 40%;
        margin: 0 auto;
    }

}

.foot-but {
    border-radius: 0px;
}

/* user aucation */
/* hero */
.user-hero {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: start;
    height: 800px;
    z-index: 0;
}

.user-hero-content {
    text-align: start;
    display: flex;
    align-items: start;
    justify-content: start;
    flex-direction: column;
}

.user-logo img {
    width: 350px;
}

.user-hero .back {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: -10;
}

.user-hero::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    z-index: -9;
    background-color: #0000008F;
}

.user-hero .user-description {
    color: white;
    font-size: 18px;
    margin: 50px 0px 50px 0px;
    animation-delay: .5s;
}


@media (max-width:700px) {
    .user-hero {
        z-index: 0;
        height: 400px;
    }

    .user-description {
        font-size: 16px;
        max-width: 400px;
    }

    .user-logo img {
        width: 200px;
    }
}

/* table */
/* General Styles */
.top {
    width: 100%;
    margin: 0 auto;
    position: relative;
    display: flex;
    justify-content: center;
}

.mazadat {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.mazadat::after {
    position: absolute;
    content: "";
    width: 50%;
    height: 5px;
    z-index: -10;
    background-color: #AC6A31;
    margin-top: 50px;
}

.mazadat-head {
    margin-top: 50px;
    background-color: white;
    padding: 0 20px;
}

.main-content {
    z-index: 1;
    width: 80%;
    margin: 0 auto;
    background-color: white;
    padding: 20px;
}

/* Tabs Styles */
.tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
    margin-top: 20px;
}

.tab {
    padding: 10px 20px;
    margin: 0 5px;
    background-color: #AC6A31;
    color: white;
    border: none;
    cursor: pointer;
    outline: none;
    transition: .5s;
    border-radius: 0px;
}

.tab.active {
    background-color: #f4f4f4;
    color: #AC6A31;
    border: 1px solid #AC6A31;
}

/* Table Styles */
.table-container {
    overflow-x: auto;
    /* Enable horizontal scrolling */
    margin-bottom: 20px;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    background-color: #fff;
}

thead th {
    background-color: #f8f9fa;
    font-size: 18px;
    font-weight: bold;
    padding: 10px;
}

tbody td {
    vertical-align: middle;
    text-align: center;
    padding: 10px;
}

.offer-img {
    width: 100px;
    height: 80px;
}

.inn {
    display: flex;
    align-items: center;
    justify-content: start;
}

.image-info {
    text-align: right;
    margin-right: 10px;
}

.table-link {
    display: flex;
    align-items: center;
    justify-content: start;
    text-decoration: none;
    color: black;
    font-size: 16px;
    transition: color 0.3s ease;
}

/* Responsive Design */
@media (max-width: 768px) {
    .mazadat-head h1 {
        font-size: 20px;
    }

    .main-content {
        padding: 10px;
    }

    .image-info h3 {
        text-align: center;
        font-size: 20px;
    }


    .image-info p {
        text-align: center;
        font-size: 20px;
    }


    table {
        font-size: 14px;
    }

    thead th {
        font-size: 16px;
    }

    tbody td {
        font-size: 14px;
    }

    .offer-img {
        width: 100px;
        height: 80px;
    }

    .tabs {
        gap: 10px;
        display: flex;
        justify-content: center;
        flex-direction: column;
    }

    .table-container {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
}

@media (max-width: 480px) {
    .mazadat-head h1 {
        font-size: 18px;
    }

    .offer-img {
        width: 100px;
        height: 80px;
    }

    .table-link {
        font-size: 14px;
    }

    thead th {
        font-size: 14px;
        padding: 8px;
    }

    tbody td {
        font-size: 12px;
        padding: 8px;
    }

    .offer-img {
        width: 70px;
        height: 50px;
    }
}

/* end mazad */
.end-text {
    font-weight: 600;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 30px 0px;
}


/* item */
/* hero */
.hero-item {
    margin-top: 70px;
}

.hero-head {
    margin-bottom: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.hei {
    height: 80px;
}

.hero-head span {
    color: #B19021;
    margin-right: 60px;
}

@media(max-width:800px) {
    .hero-head h1 {
        font-size: 20px;
    }

    .hero-head span {
        margin-right: 15px;
    }

}

/* General Layout */
.layout-container {
    display: flex;
    gap: 20px;
    padding: 20px;
}


/* Left Side: Large Image */
.left-side {
    flex: 3;
}

.large-image {
    width: 100%;
    height: auto;
    border: 2px solid #ddd;
}

/* Right Side: Grid Layout */
.right-side {
    flex: 2;
    /* Takes less space on the right */
}

.grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    height: 100%;
    gap: 10px;
}

.grid img {
    height: 100%;
}

.grid-item {
    width: 100%;
    border: 2px solid #ddd;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.video-container video {
    width: 100%;
    height: 100%;
}

/* Hover Effects for Images */
.grid-item:hover {
    transform: scale(1.05);
    transition: transform 0.3s ease;
}

/* Responsive Design */
@media (max-width: 768px) {
    .layout-container {
        flex-direction: column;
    }

    .left-side,
    .right-side {
        flex: 1 1 100%;
    }

    .grid {
        grid-template-columns: 1fr;
    }
}

/* details */

.auction-container {
    max-width: 100%;
    margin: 0 50px;
    padding: 30px;
    background: #fff;
    border-radius: 10px;
    text-align: start;
}

.status {
    font-size: 20px;
}

.status span {
    color: green;
    margin: 0;
    display: inline-block;
    margin-right: 20px;
}

.auction-header {
    font-weight: 600;
    font-size: 40px;
    color: #333;
    margin: 0;
    display: inline-block;
}

.auction-details {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: rgb(49, 49, 49);
}

.price-section-aucation {
    font-weight: 600;
    font-size: 20px;
    color: rgb(49, 49, 49);
    margin-bottom: 20px;
    width: 40%;
}

.price-section-aucation p {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.price2 {
    margin-top: 50px;
}

.btn {
    border-radius: 50px;
    width: 20%;
    height: 50px;
    font-size: 16px;
}

.btn-bid {
    background-color: #AC6A31;
    color: #fff;
    border: none;
}

.btn-bid:hover {
    background-color: #AC6A31;
    color: #fff;
    border: none;
}

.btn-buy {
    background-color: #AC6A31;
    color: #fff;
    border: none;
}

.btn-buy:hover {
    background-color: #AC6A31;
    color: #fff;
    border: none;
}

.flex {
    justify-content: space-between;
}

.price111 {
    margin: 50px 0px;
}

.font {
    font-size: 24px;
    margin-right: 20px;
}

@media (max-width: 768px) {
    .auction-container {
        margin: 0 20px;
        padding: 20px;
    }

    .auction-header {
        font-size: 30px;
    }

    .btn {
        width: 40%;
        font-size: 14px;
    }

    .price-section-aucation {
        font-size: 18px;
        width: 100%;
    }

    .price-section-aucation p {
        display: flex;
        flex-direction: column;
    }

    .price-section-aucation span {
        margin-top: 20px;
    }

    .auction-details {
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .btn {
        width: 100%;
        margin-bottom: 10px;
    }

    .flex {
        flex-direction: column;
        align-items: flex-start;
    }
}


/* home */

.hero {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 800px;
    z-index: 0;
}

.hero-content {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.hero .back {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: -10;
}

.hero::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    z-index: -9;
    background-color: #0000008F;
}

.hero .description {
    color: white;
    line-height: 1.8;
    animation-delay: .3s;
    margin: 50px 0px 50px 0px;
}

.start-button {
    color: white;
    background-color: #8a5a2b;
    margin-top: 25px;
    padding: 15px 100px;
    font-size: 1rem;
    text-decoration: none;
    cursor: pointer;
    border-radius: 444444444px;
    animation-delay: .8s;
    transition: all .5s ease;
}

.start-button:hover {
    background-color: #AC6A31;
}

@media (max-width:700px) {

    .hero {
        height: 400px;
        z-index: 0;
    }

    .logo img {
        width: 200px;
        height: 70px;
    }

    .description {
        font-size: .9rem;
        max-width: 400px;
    }

    .start-button {
        padding: 10px 70px;
        font-size: 1rem;
        cursor: pointer;
        border-radius: 444444444px;
        transition: all 0.3s ease;
    }
}



/* General Styles */
.top {
    width: 100%;
    margin: 0 auto;
    position: relative;
    display: flex;
    justify-content: center;
}

.mazadat {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.mazadat::after {
    position: absolute;
    content: "";
    width: 50%;
    height: 5px;
    z-index: -10;
    background-color: #AC6A31;
    margin-top: 50px;
}

.mazadat-head {
    margin-top: 50px;
    background-color: white;
    padding: 0 20px;
}

/* Center the table */
.main-content {
    z-index: 1;
    width: 95%;
    margin: 0 auto;
    background-color: white;
    padding: 20px;
}

.con {
    border: white;
    border-bottom: .5px solid rgb(216, 216, 216);
}

.image-info {
    text-align: right;
    margin-right: 20px;
}

.table-link {
    display: flex;
    align-items: center;
    justify-content: start;
    text-decoration: none;
    color: black;
}

.table-container {
    max-height: 600px;
    overflow-y: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

thead th {
    background-color: #f8f9fa;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
}

tbody td {
    vertical-align: middle;
    text-align: center;
}

tbody tr:nth-child(even) {
    background-color: #f9f9f9;
}

tbody tr:hover {
    background-color: #f1f1f1;
}

.offer-img {
    width: 250px;
    height: 120px;
    margin-right: 0;
}

.inn {
    display: flex;
    align-items: center;
}

.image-info {
    text-align: right;
    margin-right: 10px;
}

/* Ads Section */
.ads {
    margin: 40px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    width: 95%;
    gap: 5px;
}

.ad-item {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 339px;
    height: 121px;
    transition: transform 0.5s;
}

.ad-item:hover {
    transform: scale(1.02);
    z-index: 10;
}

.ad-item a {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    width: 100%;
    height: 100%;
}

.ad-item img {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .ads {
        flex-direction: column;
        gap: 5px;
    }

    .ad-item {
    max-width: 339px;
    height: 121px;
    }
}

@media (max-width: 768px) {
    .ads {
        margin: 20px auto;
        gap: 10px;
    }

    .ad-item {
    max-width: 339px;
    height: 121px;
    }

    table {
        font-size: 14px;
    }

    .offer-img {
        width: 70px;
    }

    .image-info h1 {
        font-size: 16px;
    }

    .image-info p {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .ad-item {
    max-width: 339px;
    height: 121px;
    }

    .image-info h1 {
        font-size: 14px;
    }

    .image-info p {
        font-size: 10px;
    }
}


/* about */
/* content */
.how-it-works-container {
    margin: 50px 150px;
    padding: 20px;
}

.how-it-works-title {
    font-size: 32px;
    font-weight: 800;
    color: #333;
    margin: 0;
    margin-bottom: 30px;
}

.video-thumbnail {
    position: relative;
    margin-top: 20px;
}

.video-thumbnail img {
    width: 100%;
}

.video-thumbnail video {
    width: 100%;
    height: 500px;
}

.description-about {
    margin: 50px 150px;
    padding: 20px;
}

.description-head {
    font-size: 20px;
    line-height: 1.9;
}

.item-about {
    margin: 100px 0px;
}

.item-head {
    font-size: 25px;
    font-weight: 900;
    margin-bottom: 20px;
}

.item-p {
    line-height: 1.9;
    font-size: 20px;
}


@media (max-width:1280px) {
    .how-it-works-container {
        margin: 50px 50px;
        padding: 20px;
    }

    .description-about {
        margin: 50px 50px;
        padding: 20px;
    }
}

@media (max-width: 768px) {
    .how-it-works-container {
        margin: 30px 20px;
        padding: 15px;
    }

    .how-it-works-title {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .video-thumbnail video {
        height: auto;
    }

    .description.about {
        margin: 30px 20px;
        padding: 15px;
    }

    .description-head {
        font-size: 12px;
        line-height: 1.7;
    }

    .item-about {
        margin: 50px 0px;
    }

    .item-head {
        font-size: 20px;
        margin-bottom: 15px;
    }

    .item-p {
        font-size: 14px;
        line-height: 1.7;
    }

    .description-about {
        margin: 50px 0px;
        padding: 20px;
    }
}

@media (max-width: 576px) {
    .how-it-works-container {
        margin: 20px 10px;
        padding: 10px;
    }

    .how-it-works-title {
        font-size: 20px;
        margin-bottom: 15px;
    }

    .description.about {
        margin: 20px 10px;
        padding: 10px;
    }

    .description-head {
        font-size: 14px;
    }

    .item-head {
        font-size: 18px;
    }

    .item-p {
        font-size: 12px;
    }
}

/* final */

.big {
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #f8f8f8;
}

.confirmation-container-suc {
    text-align: center;
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    max-width: 500px;
    width: 100%;
}

.confirmation-container-suc .icon1 {
    font-size: 50px;
    color: #b8860b;
    margin-bottom: 20px;
}

.confirmation-container-suc h1 {
    font-size: 24px;
    color: #D6A741;
    margin: 0 0 10px;
}

.confirmation-container-suc p {
    font-size: 16px;
    color: #555555;
    margin: 20px 0px;
}

.confirmation-container-suc .button {
    display: inline-block;
    background-color: #AC6A31;
    color: #ffffff;
    padding: 10px 40px;
    text-decoration: none;
    border-radius: 555555px;
    font-size: 16px;
    transition: background-color 0.3s;

}

.icon1 i {
    color: #AC6A31;
}

/* notification */
.noti {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}


/* popup */

.big-div {
    font-family: 'Arial', sans-serif;
    background-color: #f8f8f8;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    direction: rtl;
}

.verification-container {
    text-align: center;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-width: 400px;
    width: 90%;
}

.verification-title {
    font-size: 1.5rem;
    color: #b38220;
    margin-bottom: 10px;
}

.verification-text {
    color: #555;
    margin-bottom: 15px;
}

.verification-button {
    background-color: #b38220;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
}

.verification-button:hover {
    background-color: #a0701c;
}

.hidden-section {
    display: none;
}

.error-alert {
    color: red;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.success-icon {
    margin: 20px 0;
}

.code-input-container {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}

.code-input-box {
    width: 50px;
    height: 50px;
    text-align: center;
    font-size: 1.5rem;
    border: 2px solid #b38220;
    border-radius: 8px;
    outline: none;
    transition: border-color 0.3s ease;
}

.code-input-box:focus {
    border-color: #a0701c;
    background-color: #f9f6ef;
}

@media (max-width: 480px) {
    .verification-title {
        font-size: 1.2rem;
    }

    .code-input-box {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
}

/* success */
.top-div {
    font-family: Cairo;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #f8f8f8;
}

.confirmation-container {
    display: flex;
    max-width: 800px;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.text-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px;
    flex: 1;
    text-align: right;
}

.text-section .icon {
    font-size: 50px;
    color: #AC6A31;
    margin-bottom: 20px;
}

.text-section h1 {
    font-size: 24px;
    color: #b8860b;
    margin: 0 0 10px;
}

.text-section p {
    font-size: 16px;
    color: #555555;
    margin: 0 0 20px;
    line-height: 1.6;
    text-align: center;
}

.text-section .price {
    font-size: 20px;
    font-weight: bold;
    color: #333333;
    margin: 10px 0;
}

.text-section .button {
    display: inline-block;
    background-color: #AC6A31;
    color: #ffffff;
    padding: 10px 30px;
    text-decoration: none;
    border-radius: 555555px;
    font-size: 14px;
    transition: background-color 0.3s;
}

.text-section .button:hover {
    background-color: #a0740a;
}

.image-section {
    flex: 1;
    background-size: cover;
    background-position: center;
}

.image-section img {
    width: 100%;
    height: 100%;
}

@media(max-width:830px) {
    .confirmation-container {
        width: 90%;
        flex-direction: column;
    }
}

/* tameen */
.very-big {
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #f9f9f9;
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.modal {
    background: #fff;
    width: 400px;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    text-align: center;
    position: relative;
}

.close-button {
    position: absolute;
    top: 10px;
    left: 10px;
    background: red;
    color: #fff;
    border: none;
    border-radius: 10000000px;
    font-size: 14px;
    width: 40px;
    height: 40px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
}

.modal-title {
    color: #AC6A31;
    font-size: 24px;
    margin: 10px 0;
}

.modal-text {
    color: #333;
    font-size: 16px;
    margin: 10px 0;
}

.modal-amount {
    color: #000;
    font-size: 20px;
    font-weight: bold;
    margin: 20px 0;
}

.btn-submit {
    background: #AC6A31;
    font-family: Cairo;
    color: white;
    padding: 10px 40px;
    border: none;
    border-radius: 45555555px;
    font-size: 16px;
    cursor: pointer;
    text-decoration: none;
}

.btn-submit:hover {
    background: #a5632b;
}

/* accounts */
.content-wrapper {
    max-width: 1200px;
    margin: 20px auto;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
}

.logo-table {
    margin-bottom: 50px;
}

.section-header {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
    text-align: start;
}

.description {
    text-align: start;
    color: #555;
    margin-bottom: 20px;
}

.search-wrapper {
    margin-bottom: 20px;
}

.search-input {
    width: 100%;
    padding: 10px;
    border: 1px solid #D2B48C;
    border-radius: 4px;
}

/* Responsive table */
.table-responsive {
    overflow-x: auto;
}

.data-table {
    width: 100%;
    border-collapse: collapse;
    background-color: #FFF7F4;
}

.data-table th,
.data-table td {
    padding: 12px;
    text-align: center;
    border: 1px solid #D2B48C;
    background-color: #FFF7F4;
}

.data-table th {
    background-color: #FFF7F4;
}

.data-table img {
    max-width: 50px;
    border-radius: 4px;
}

.btn-edit {
    padding: 8px 12px;
    border: none;
    border-radius: 4px;
    background-color: #4caf50;
    color: white;
    cursor: pointer;
}

.btn-delete {
    padding: 8px 12px;
    border: none;
    border-radius: 4px;
    background-color: #f44336;
    color: white;
    cursor: pointer;
}

/* Media Queries */
/* Responsive styles */
@media (max-width: 1024px) {
    .content-wrapper {
        margin-top: 50px;
        padding: 15px;
    }

    .section-header {
        font-size: 22px;
    }

    .data-table th,
    .data-table td {
        padding: 10px;
        font-size: 14px;
    }

    .btn-edit,
    .btn-delete {
        font-size: 12px;
        padding: 6px 10px;
    }
}

@media (max-width: 768px) {
    .section-header {
        font-size: 20px;
        text-align: center;
    }

    .description {
        text-align: center;
    }

    .search-input {
        font-size: 14px;
    }

    .btn-edit,
    .btn-delete {
        font-size: 12px;
        padding: 6px 10px;
    }

    /* Make table scrollable on smaller screens */
    .table-responsive {
        overflow-x: auto;
        display: block;
    }

    .data-table {
        min-width: 900px;
        /* Ensures the table remains structured */
    }
}

/* Full-page loading screen */
#loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #f5f5f5;
    /* Light gray background */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    /* Keep it above other content */
    transition: opacity 0.5s ease, visibility 0.5s ease;
    opacity: 1;
    /* Visible initially */
    visibility: visible;
    /* Visible initially */
}

/* Hidden state for the loading screen */
#loading-screen.hidden {
    opacity: 0;
    /* Fades out */
    visibility: hidden;
    /* Hides from view */
}

.loader {
    transform: rotateZ(45deg);
    perspective: 1000px;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    color: #fff;
}

.loader:before,
.loader:after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: inherit;
    height: inherit;
    border-radius: 50%;
    transform: rotateX(70deg);
    animation: 1s spin linear infinite;
}

.loader:before {
    color: black;
}

.loader:after {
    color: #AC6A31;
    transform: rotateY(70deg);
    animation-delay: .4s;
}

@keyframes rotate {
    0% {
        transform: translate(-50%, -50%) rotateZ(0deg);
    }

    100% {
        transform: translate(-50%, -50%) rotateZ(360deg);
    }
}

@keyframes rotateccw {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    100% {
        transform: translate(-50%, -50%) rotate(-360deg);
    }
}

@keyframes spin {

    0%,
    100% {
        box-shadow: .2em 0px 0 0px currentcolor;
    }

    12% {
        box-shadow: .2em .2em 0 0 currentcolor;
    }

    25% {
        box-shadow: 0 .2em 0 0px currentcolor;
    }

    37% {
        box-shadow: -.2em .2em 0 0 currentcolor;
    }

    50% {
        box-shadow: -.2em 0 0 0 currentcolor;
    }

    62% {
        box-shadow: -.2em -.2em 0 0 currentcolor;
    }

    75% {
        box-shadow: 0px -.2em 0 0 currentcolor;
    }

    87% {
        box-shadow: .2em -.2em 0 0 currentcolor;
    }
}