/* =========================
   GLOBAL STYLES
========================= */

body {

    margin: 0;

    font-family:
        "Vazir",
        "Segoe UI",
        sans-serif;

    background-color: #0B1F33;

    color: white;

    direction: rtl;
}


/* =========================
   FONTS
========================= */

@font-face {

    font-family: "Vazir";

    src: url("../fonts/Vazirmatn-Regular.ttf");

    font-weight: 400;
}

@font-face {

    font-family: "Vazir";

    src: url("../fonts/Vazirmatn-Bold.ttf");

    font-weight: 700;
}

/* =========================
   NAVBAR
========================= */

.navbar {

    background-color: #081520;

    padding: 20px 50px;

    display: flex;

    justify-content: space-between;

    align-items: center;

    direction: ltr;
}


/* =========================
   LOGO
========================= */

.logo {

    margin: 0;

    font-size: 35px;

    color: #FFC107;
}


/* =========================
   NAV ICONS CONTAINER
========================= */

.nav-icons {

    display: flex;

    gap: 60px;
}


/* =========================
   SINGLE ICON BOX
========================= */

.icon-box {

    position: relative;

    display: flex;

    align-items: center;

    justify-content: center;

    cursor: pointer;
}


/* =========================
   SVG / ICON STYLE
========================= */

.nav-icon {

    width: 24px;

    height: 24px;

    transition: 0.3s;
}


/* =========================
   ICON HOVER EFFECT
========================= */

.icon-box:hover .nav-icon {

    transform: scale(1.15);

    opacity: 0.8;
}


/* =========================
   TOOLTIP TEXT
========================= */

.icon-box p {

    position: absolute;

    top: 35px;

    right: 50%;

    transform: translateX(50%);

    background-color: #FFC107;

    color: #111;

    padding: 5px 10px;

    border-radius: 6px;

    font-size: 14px;

    white-space: nowrap;

    opacity: 0;

    transition: 0.3s;
}


/* =========================
   SHOW TOOLTIP ON HOVER
========================= */

.icon-box:hover p {

    opacity: 1;
}





/* =========================
   MAIN CONTAINER
========================= */

.main-container {

    position: relative;

    height: calc(100vh - 70px);

    display: flex;

    justify-content: flex-start;

    align-items: flex-start;

    overflow: hidden;
}




/* =========================
   BACKGROUND PATTERN
========================= */

.background-shape {

    position: absolute;

    bottom: -300px;
    left: -250px;

    width: 850px;
    height: 850px;

    border-radius: 50%;

    background-color: rgba(255, 255, 255, 0.03);

    overflow: hidden;
}



.background-shape::before {

    content: "";

    position: absolute;

    inset: 0;

    background-image:
        url("../assets/icons/shop.svg");

    background-size:
        70px,
        90px,
        60px;

    background-position:
        0 0,
        40px 60px,
        100px 20px;

    background-repeat: repeat;

    opacity: 0.04;

    filter: brightness(0) invert(1);

    transform: rotate(-14deg);
}

/* 
.bg-icon {

    width: 42px;
    height: 42px;

    opacity: 0.06;

    filter: brightness(0) invert(1);
} */

.icon1 {
    transform: rotate(12deg);
}

.icon2 {
    transform: scale(0.8);
}

.icon3 {
    transform: translateY(20px);
}


/* =========================
   HERO CONTENT
========================= */

.hero-content {

    padding: 5%;

    position: relative;

    z-index: 2;

    text-align: right;

    max-width: 40%;
}


/* HERO TITLE */

.hero-content h1 {

    font-size: 50px;

    margin-bottom: 20px;
}


/* HERO DESCRIPTION */

.hero-content p {

    color: #d0d0d0;

    font-size: 18px;

    margin-bottom: 30px;
}


/* HERO BUTTON */

/* .hero-content button {

    padding: 15px 30px;

    border: none;

    border-radius: 8px;

    background-color: #FFC107;

    color: #111;

    font-size: 16px;

    font-weight: bold;

    cursor: pointer;

    transition: 0.3s;
} */

/* BUTTON HOVER */

/* .hero-content button:hover {

    background-color: #ffcf33;
} */

/* =========================
   MODAL
========================= */

.modal {

    position: fixed;

    inset: 0;

    background-color: rgba(0,0,0,0.55);

    display: flex;

    justify-content: center;

    align-items: center;

    opacity: 0;

    visibility: hidden;

    transition: 0.3s;

    z-index: 999;
}


/* ACTIVE MODAL */

.modal.show {

    opacity: 1;

    visibility: visible;
}


/* MODAL BOX */

.modal-box {

    width: 500px;

    max-width: 90%;

    max-height: 80vh;

    background-color: #10263D;

    border-radius: 18px;

    padding: 30px;

    position: relative;

    overflow: hidden;

    box-shadow: 0 10px 40px rgba(0,0,0,0.4);
}


/* MODAL CONTENT */

.modal-content {

    margin-top: 20px;

    overflow-y: auto;

    max-height: 60vh;

    padding-left: 10px;
}


/* PARAGRAPHS */

.modal-content p {

    line-height: 2.2;

    color: #d6d6d6;
}


/* CLOSE BUTTON */

.close-btn {

    position: absolute;

    top: 15px;

    left: 20px;

    font-size: 28px;

    cursor: pointer;

    color: #FFC107;

    transition: 0.3s;
}

.close-btn:hover {

    transform: scale(1.2);
}


/* =========================
   FOOTER
========================= */

.footer {

    background-color: #081520;

    padding: 50px 8% 20px;

    border-top: 1px solid rgba(255,255,255,0.05);
}


/* FOOTER CONTENT */

.footer-content {

    display: flex;

    justify-content: space-between;

    gap: 40px;

    flex-wrap: wrap;
}


/* EACH SECTION */

.footer-section {

    flex: 1;

    min-width: 220px;
}


/* TITLES */

.footer-section h3,
.footer-section h4 {

    color: #FFC107;

    margin-bottom: 18px;
}


/* TEXT */

.footer-section p {

    color: #cfcfcf;

    line-height: 2;

    font-size: 15px;

    margin: 0 0 10px;
}


/* COPYRIGHT */

.footer-bottom {

    margin-top: 35px;

    padding-top: 20px;

    border-top: 1px solid rgba(255,255,255,0.05);

    text-align: center;

    color: #8f9baa;

    font-size: 14px;
}

.footer-note {
    margin-top: 10px;
    font-size: 13px;
    color: #7f8b99;
}


/* =========================
   HERO BUTTON
========================= */

.hero-btn {

    margin-top: 15px;

    padding: 16px 34px;

    border: none;

    border-radius: 12px;

    background-color: #FFC107;

    color: #111;

    font-family: inherit;

    font-size: 16px;

    font-weight: 700;

    cursor: pointer;

    transition: 0.3s;

    box-shadow: 0 10px 25px rgba(255, 193, 7, 0.18);
}


/* BUTTON HOVER */

.hero-btn:hover {

    background-color: #ffd43b;

    transform: translateY(-3px);

    box-shadow: 0 14px 30px rgba(255, 193, 7, 0.28);
}