:root {
    --aspect-visual: 16/9;
    --color-border-dimmed: hsla(210, 50%, 20%, 0.1);
    --color-border: hsla(210, 50%, 40%, 0.8);
    --color-blue: #1a73e8;
    --color-green: #34a853;
    --color-ocean: #0077cc;
    --color-red: #ff5252;
    --color-surface-10: #2c2c2c;
    --color-text-40: #bcbcbc;
    --color-text-60: #230404;
    --color-text-80: #060000;
    --page-width: 1200px;
    --page-padding: 20px;
    --font-size-sm: 14px;
    --font-size-md: 16px;
    --font-size-lg: 20px;
    --font-size-xl: 24px;
    --font-size-2xl: 28px;
    --font-size-3xl: 40px;
    --font-size-4xl: 56px;
    --font-size-5xl: 65px;
    --font-variation-regular: "opsz" 14;
    --font-variation-bold: "opsz" 20;
    --font-weight-regular: 400;
    --font-weight-medium: 500;
    --font-weight-semi700: 600;
    --font-weight-700: 700;
    --navbar-bar-height: 72px;
    --navbar-height: calc(var(--navbar-bar-height) * 2);
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-full: 9999px;
    --transition-link: background-color 0.3s ease-in-out, opacity 0.3s ease-in-out;
    /* Color Definitions */
    --color-blue: #09f; /* Bright blue for glowing effect */
    --color-background: #f0f0f0; /* Light grey background for contrast */

    /* Typography Sizes */
    --font-size-md: 15px; /* Medium font size for input text */

    /* Border Radii */
    --border-radius-full: 9999px; /* Fully rounded borders for inputs */
    /* Transition Speeds */
    --transition-input: 0.3s ease; /* Transition effect speed for inputs */
}



.bogga_kore {
    max-width: var(--page-width);
    padding: 0 var(--page-padding);
    margin: 0 auto;
}

.bogga_dhow {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px 0;
    gap: 30px;
}

.bogga_dhow>h1 {
    line-height: 0.8em;
    font-size: var(--font-size-4xl);
}

.bogga_dhow>p {
    max-width: 520px;
    opacity: 0.6;
    text-align: center;
}

.bogga_qeyb:not(:last-child) {
    margin-bottom: 80px;
}

.bogga_qeyb_kore {
    padding-bottom: 24px;
    font-size: var(--font-size-md);
    font-variation-settings: "opsz" 14, "wght" 500;
    letter-spacing: 0em;
    line-height: 1.6;
}

.bogga_qeybCTA {
    color: var(--color-text-60);
    transition: var(--transition-link);
}

.bogga_qeybCTA:hover {
    opacity: 0.9;
}

.bogga_gaabGrid {
    display: grid;
    padding-top: 20px;
    gap: 24px;
    grid-template-columns: repeat(1, 1fr);
    row-gap: 40px;
}

@media (min-width: 390px) {
    .bogga_dhow {
        padding: 60px 0;
    }
}

@media (min-width: 550px) {
    .bogga_gaabGrid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 810px) {
    .bogga_gaabGrid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1200px) {
    .bogga_dhow {
        padding: 80px 0;
    }
    .bogga_qeyb:not(:last-child) {
        margin-bottom: 120px;
    }
    .bogga_gaabGrid {
        grid-template-columns: repeat(3, 1fr);
    }
}
.kar_sawir {
    --radius: 5px;
    position: relative;
    display: grid;
    overflow: hidden;
    width: 100%;
    border-radius: var(--radius);
    aspect-ratio: 4/3;
    background: var(--color-surface-10);
    outline: 1px solid hsla(0,0%,100%,.1);
    place-content: center;
}

.kar_sawir img {
    object-fit: cover;
    width: 100%;
    height: auto;
}

.kar_sawir .KarKorSawir {
    position: absolute;
    z-index: 2;
    inset: 0;
    opacity: 0;
    transition: opacity .3s;
    background-color: rgba(0, 0, 0, 0.5); /* Dimming overlay on hover */
}

.kar_kar{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
      color: var(--color-text-80);
    border-radius: var(--radius-md);
    transition: transform 0.3s ease-in-out;
}

.kar_sawir:hover .KarKorSawir {
    opacity: 1; /* Show overlay on hover */
}

.KarKorSawir,
.card_image__PwN0P {
    transition: opacity 0.2s ease-in-out;
}

.kar_sawir:hover .card_image__PwN0P,
.card_siteCard__Uqonf:hover .card_image__PwN0P {
    opacity: 0.8; /* Dim image on hover */
}

.kar_qoral {
    width: 100%;
    margin-top: 10px;
    font-size: var(--font-size-md);
    font-variation-settings: "opsz" 16, "wght" 500;
    letter-spacing: -0.01em;
    line-height: 1.5;
    color: var(--color-text-60);
}

.kar_qoral a:hover {
    color: var(--color-red);
    opacity: 0.8;
}

.kar_qoralMac,
.kar_qoralKore {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    transition: all 0.2s ease-in-out;
    cursor: pointer;
}

.kar_qoralMac {
    color: var(--color-text-80);
}

.kar_qoralMacKore {
    display: none; /* Initially hidden element */
}

@media (min-width: 810px) {
    .kar_qoralMacKore {
        display: block; /* Show this element on larger screens */
        color: var(--color-green);
    }
}



.ModuleSafRoot {
    position: relative;
    display: block;
    margin-bottom: 20px;
}

.ModuleSafRoot:hover .ModuleSafQoral p {
    color: var(--color-red); /* Enhancing hover effect */
    transition: color 0.3s ease;
}

@media (min-width: 810px) {
    .ModuleSafRoot:hover .ModuleSafFur {
        opacity: 1; /* Ensuring visibility on hover for large screens */
    }
}

.ModuleSaflLink {
    display: grid;
    align-items: center;
    gap: 12px;
    grid-template-columns: auto 1fr;
    margin-top: 10px;
}

.ModuleSaflLink img {
    width: 50px; /* Adjusted for consistency */
    height: 50px;
    border-radius: var(--radius-md);
    object-fit: cover;
    outline: 2px solid var(--color-border);
}

.ModuleSafQoral {
    display: flex;
    flex-direction: column;
    padding: 10px 0;
    font-size: var(--font-size-md);
    font-variation-settings: "opsz" 16, "wght" 550;
    letter-spacing: 0em;
    line-height: 1.4;
}

.ModuleSafQoral p {
    transition: color 0.25s ease-in-out;
}

.ModuleSafFur {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
     background: linear-gradient(90deg,transparent,#ffffff 25%);
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease-in-out;
    pointer-events: none; /* Disable pointer events when not active */
}

@media (min-width: 810px) {
    .ModuleSafFur {
        pointer-events: auto; /* Enable pointer events on larger screens */
    }
}

.ModuleSafFur .ModuleSafBadhan {
    padding: 8px 12px;
    border-radius: var(--radius-full);
    background: var(--color-ocean);
    font-size: var(--font-size-sm);
    font-variation-settings: "opsz" 18, "wght" 600;
    color: var(--color-text-40);
    letter-spacing: 0.02em;
    line-height: 1.2;
    transition: background-color 0.2s, opacity 0.2s;
}

.ModuleSafFur .ModuleSafBadhan:hover {
    opacity: 0.7; /* Slightly dim the button on hover */
}

.ModuleSafFur:has([data-state="open"]) {
    opacity: 1; /* Ensure the overlay is fully visible when active */
}

.StaylPiksera {
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    position: relative;
    display: flex;
    gap: 6px;
    align-items: center;
    justify-content: center;
    height: 34px;
    padding: 10px 12px;
    font-size: 14px;
    font-weight: 580;
    line-height: 1;
     background: hsla(226, 79%, 47%, 0.1);
    border: none;
    border-radius: 8px;
    transition: background-color;
    transition-duration: .3s;
}
.StaylFrom {
    display: flex;
    overflow: visible;
    width: 100%;
    justify-content: center;
    color: var(--color-text-80);
}
.StaylGod {
    position: relative;
    width: 100%;
    max-width: 320px;
    font-size: var(--font-size-md);  /* Assuming you've defined this in your root */
    font-variation-settings: 'opsz' 16, 'wght' 480;
}

.StaylGod input {
    width: 100%;
    height: 44px;
    padding: 12px 12px 12px 40px;
    border-radius: var(--border-radius-full);
    background: var(--color-background);
    border: none;
     transition: box-shadow 0.3s ease, background-color 0.3s ease;
}

.StaylGod input:focus, .StaylGod input:hover {
     outline: none;
}

.StaylGod input:hover {
 }

.StaylKakor {
    position: absolute;
    display: flex;
    width: 100%;
    flex-grow: 0;
    align-items: center;
    justify-content: start;
    padding: 12px;
    color: var(--color-text-40);
    font-size: var(--font-size-sm);
    gap: 10px;
    inset: 0 auto;
    pointer-events: none;
}

.StaylKogkadhexe {
    white-space: nowrap;
    transition: color 0.1s ease;
}

.StaylKakor, .StaylKogkadhexe {
    transition: color 0.1s ease;
}

.StaylFrom:focus-within .StaylKakor {
    justify-content: start;
    color: var(--color-text-80);
}

.StaylFrom:focus-within .StaylKogkadhexe {
    color: var(--color-red);
    opacity: 0;
}

.StaylMacluumaad .StaylKogkadhexe {
    color: var(--color-red);
}

@media (min-width: 810px) {
    .MobileSidebar_content__nsMjD, .MobileSidebar_mobileSidebar__6bztJ, .MobileSidebar_overlay__j9Ix0 {
        display: none;
    }
}

.bogga_dhow__ljg7i {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 60px 0;
    gap: 20px;
}

@media (min-width: 810px) {
    .bogga_dhow__ljg7i {
        padding: 100px 0 60px;
    }
}

.bogga_dhow__ljg7i>h1 {
    line-height: 0.7em;
}

.bogga_dhow__ljg7i>p {
    max-width: 420px;
    opacity: 0.5;
    text-align: center;
}

.bogga_dhowButtons__j53A0 {
    display: flex;
    gap: 10px;
}

@media (width >= 810px) {
    .BoggaKore1 {
        height: 200px;
    }
}
@media (width >= 390px) {
    .BoggaKore1 {
        height: 150px;
    }
}
.BoggaKore1 {
    position: relative;
    overflow: hidden;
    height: 100px;
    background: linear-gradient(180deg, #d0eaff, hsl(0deg 0% 100% / 0%));
    -webkit-mask: linear-gradient(180deg, rgba(0, 0, 0, .2), rgba(0, 0, 0, .45) 40%, #000) add;
    mask: linear-gradient(180deg, rgba(0, 0, 0, .2), rgba(0, 0, 0, .45) 40%, #000) add;
}



@media (width >= 810px) {
    .page_content__yzIBe {
        gap: 60px;
        grid-template-columns: 240px 1fr;
    }
}
.page_content__yzIBe {
    display: grid
;
    gap: 40px;
    grid-template-columns: 1fr;
}

@media (width >= 810px) {
    .gees {
        position: sticky;
        top: 20px;
        height: 100vh;
    }
}
.gees {
    z-index: 10;
    display: flex
;
    flex-direction: column;
    gap: 30px;
}

.gees_section {
    display: flex
;
    flex-direction: column;
    gap: 18px;
}

.gees_sawirkeygakonto {
    position: relative;
    height: 50px;
}

.gees_sawirkeygaxad {
    position: absolute;
    bottom: 0;
    padding: 2px;
    border-radius: 100px;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.gees_sawirkeygakonto {
    position: relative;
    height: 50px;
}

.gees_qoral, .sidebar_detailLabel__pFLLV {
    color: #999;
    font-size: 15px;
    font-variation-settings: "opsz" 16, "wght" 440;
    letter-spacing: -.01em;
    line-height: 1.6em;
    text-wrap: balance;
}

.gees hr {
    height: 1px;
    border: none;
    background: hsla(0, 0%, 100%, .1);
}

.gees_section2 {
    display: flex
;
    flex-direction: column;
    gap: 15px;
}

.gees_soshial {
    display: flex
;
    align-items: center;
    justify-content: left;
    gap: 15px;
}
