.elementor-50784 .elementor-element.elementor-element-effccaa{--display:flex;--background-transition:0.3s;}.elementor-50784 .elementor-element.elementor-element-effccaa.e-con{--flex-grow:0;--flex-shrink:0;}.elementor-widget-polylang-language-switcher .cpel-switcher__lang a{font-family:var( --e-global-typography-primary-font-family ), Sans-serif;font-weight:var( --e-global-typography-primary-font-weight );color:var( --e-global-color-text );}.elementor-widget-polylang-language-switcher .cpel-switcher__icon{color:var( --e-global-color-text );}.elementor-widget-polylang-language-switcher .cpel-switcher__lang a:hover, .elementor-widget-polylang-language-switcher .cpel-switcher__lang a:focus{font-family:var( --e-global-typography-primary-font-family ), Sans-serif;font-weight:var( --e-global-typography-primary-font-weight );color:var( --e-global-color-accent );}.elementor-widget-polylang-language-switcher .cpel-switcher__lang.cpel-switcher__lang--active a{font-family:var( --e-global-typography-primary-font-family ), Sans-serif;font-weight:var( --e-global-typography-primary-font-weight );}.elementor-50784 .elementor-element.elementor-element-e1955a2 .cpel-switcher__lang a{font-family:"Tahoma", Sans-serif;font-weight:600;word-spacing:0px;}.elementor-50784 .elementor-element.elementor-element-e1955a2 .cpel-switcher__nav{--cpel-switcher-space:20px;}.elementor-50784 .elementor-element.elementor-element-e1955a2.cpel-switcher--aspect-ratio-11 .cpel-switcher__flag{width:20px;height:20px;}.elementor-50784 .elementor-element.elementor-element-e1955a2.cpel-switcher--aspect-ratio-43 .cpel-switcher__flag{width:20px;height:calc(20px * 0.75);}.elementor-50784 .elementor-element.elementor-element-e1955a2 .cpel-switcher__flag img{border-radius:4px;}.elementor-50784 .elementor-element.elementor-element-e1955a2 .cpel-switcher__name{padding-right:10px;}@media(min-width:768px){.elementor-50784 .elementor-element.elementor-element-effccaa{--width:99.046%;}}/* Start custom CSS for html, class: .elementor-element-209b1ab *//* Body styling for centering the container */
body {
    display: grid;
    place-items: center;
    min-height: 100vh;
    margin: 0;
    background-color: #f3f9fd; /* Optional: Set a background color */
}

/* Container styling */
.linktree-container-rtl {
    position: relative;
    background: rgba(255, 255, 255, 0.15); /* Further increased transparency for an even more glassy effect */
    display: block; /* Removed Flexbox */
    padding: 30px;
    border-radius: 20px;
    width: 88vw; /* Adjusted to 80% of the viewport width */
    max-width: none; /* Ensure it always fills the screen width */
    font-family: Tahoma, sans-serif;
    direction: rtl; /* Set direction to RTL */
    backdrop-filter: blur(30px); /* Maximum blur intensity */
    -webkit-backdrop-filter: blur(30px); /* For Safari support */
    box-shadow: inset 0 0 25px rgba(255, 255, 255, 0.25), 0 8px 25px rgba(0, 0, 0, 0.3); /* Stronger inner and outer shadows */
}

.linktree-container-rtl::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://tc-safa.com/wp-content/uploads/2024/08/Logo_transbg.avif');
    background-size: cover;
    background-position: center bottom; /* Adjusted to move the background down */
    z-index: -1;
    filter: blur(80px); /* Maintain the blur intensity */
    border-radius: 20px;
}

/* Profile section styling */
.profile-section {
    text-align: center;
    margin-bottom: 30px;
}

.profile-pic {
    width: 140px; /* Increased size */
    height: 120px; /* Increased size */
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
}

.profile-section h2 {
    font-size: 17px;
    margin: 0;
    color: #333;
}

.profile-section p {
    font-size: 12px; /* Decreased size */
    color: #666;
    margin-top: 5px;
}

/* Links section styling */
.links-section {
    width: 100%;
}

.link-button {
    background-color: #007f7f; /* Lighter teal */
    color: white;
    font-size: 18px;
    text-decoration: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    border-radius: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15); /* Added shadow */
    margin-bottom: 15px;
    transition: all 0.3s ease;
    position: relative; /* Needed for dropdown positioning */
}

.link-button:hover {
    background-color: #009c9c;
    color: #fff; /* Font color on hover */
}

.link-button img {
    width: 24px;
    height: 24px;
}

/* Dropdown styling */
.dropdown {
    position: relative;
    width: 100%; /* Ensure the dropdown spans the width of the container */
}

.dropdown-button {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    border-radius: 20px;
    background-color: #007f7f; /* Match link-button */
    color: white;
    font-size: 18px;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.dropdown-button:hover {
    background-color: #009c9c;
    color: #fff;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: rgba(255, 255, 255, 0.9); /* Slightly transparent background */
    min-width: 100%;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2); /* Enhanced shadow */
    border-radius: 10px;
    backdrop-filter: blur(10px); /* Blurred background effect */
    z-index: 1;
    margin-top: 5px;
    border: 1px solid #ddd; /* Light border for definition */
}

.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

/* Add border only between items */
.dropdown-content a:not(:last-child) {
    border-bottom: 1px solid #ddd;
}

.dropdown-content a:hover {
    background-color: #f1f1f1;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.coming-soon {
    font-size: 14px;
    color: #c1eecb;
    margin-left: 10px; /* Adjusted for RTL */
}/* End custom CSS */