html[lang="ar"] {
    direction: rtl;
}

:root {
    --accent: #37b5ff;
    --accent-hover: #126daf;
}

* {
    box-sizing: border-box;
    outline: none;
    font-family: Arial;
}

html, body {
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
    position: relative;
}

.clear {
    clear: both;
}

.wdth {
    max-width: 1288px;
    margin:0 auto;
}

.smwdth {
    max-width: 900px;
    margin: 0 auto;
}

.textcenter {
    text-align: center;
}

img {
    max-width: 100%;
}

header {
    padding: 10px 0;
}

.flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.l-header{
    width: 50%;
    display: flex;
}

.r-header{
    width: 50%;
    display: flex;
    justify-content: flex-end;
    gap: 15px;
}
.logo {
    width: 100%;
}

.logo a,
.footer_logo a {
    display: inline-block;
}

.logo img {
    max-height: 70px;
}

.footer_logo img {
    max-height: 70px;
}


nav.nav-menu {
    display: flex;
    align-items: center;
    justify-content: space-between;
}


nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    /*justify-content: space-between;*/
    gap: 5px 25px;
    width: 100%;
}

nav a {
    display: inline-block;
    color: inherit;
    text-decoration: none;
    padding: 10px 0;
    text-align: center;
}


.r-header .nav-menu a:hover{
    color: var(--accent);
}

.after_head nav a{
    color: #fff;
    padding: 10px 0;
}


li.main-menu {
  position: relative;
  padding: 20px 0;
  font-size: 16px;
}

li.main-menu i{
  font-size: 12px;
}

ul.sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #fff;
  padding: 10px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  z-index: 1000;
}


li.main-menu:hover{
  color: var(--accent);
  cursor: pointer;
}
li.main-menu:hover .sub-menu {
  display: flex;
  flex-direction: column;
  width: 230px;
  align-items: flex-start;
}

li.main-menu a {
  text-decoration: none;
  color: #333;
  padding: 10px 15px;
  display: inline-block;
}

ul.sub-menu a {
  display: block;
  padding: 8px 15px;
  color: #333;
  text-decoration: none;
}

ul.sub-menu a:hover {
  color: var(--accent);
}

.lang-switcher {
    position: relative;
}

.lang-select {
    padding: 10px;
    font-size: 14px;
    font-weight: 700;
    background-color: var(--accent);
    color: white;
    border: 1px solid var(--accent);
    border-radius: 5px;
    cursor: pointer;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    width: 80px;
    align-items: center;
    justify-content: center;
}

.lang-select img {
    width: 20px;
    height: 14px;
    vertical-align: middle;
}

.dropdown-options {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--accent);
    color: white;
    border: 1px solid var(--accent);
    border-radius: 5px;
    list-style: none;
    padding: 0;
    margin: 0;
    z-index: 100;
}

.dropdown-options li {
    position: relative;
}

.dropdown-options li a {
    padding: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    color: #fff !important;
    text-decoration: none;
}

.dropdown-options li a:hover {
    background-color: var(--accent-hover);
}

.dropdown-options li a img {
    width: 20px;
    height: 14px;
}


.share-sec {
    width: 25%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.share-sec ul{
    list-style: none;
    display: flex;
    gap: 15px;
    padding: 0;
    margin: 0;
    justify-content: flex-end;
}

.nav-button-round {
    border-radius: 50%; 
    border: 1px solid #E3E3E4;
    width: 40px;
    height: 40px;
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    padding: 0;
}
.nav-button-round img {
    width: 20px;
    height: 20px;
}

.search-nav {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: flex-end;
}

.search-form {
    position: relative;
}

.search-form input[type="search"] {
    width: 100%;
    padding: 15px 15px 15px 50px;
    border: none;
    border-radius: 5px;
    background-color: #f0f0f0;
    font-size: 12px;
    color: #707375;
}

.search-form .search-icon {
    position: absolute;
    left: 10px;
    top: 55%;
    transform: translateY(-50%);
    border-radius: 50%;
    cursor: pointer;
    border: 0;
    background-color: transparent;
}

.search-form .search-icon svg {
    width: 20px;
    height: 20px;
/*    fill: #707375;*/
}

.nav-signin{
    padding: 15px 36px;
    border: 1.2px solid var(--accent);
    font-weight: 600;
    font-size: 14px;
    background-color: var(--accent);
    color: #fff;
    border-radius: 7px;
}
button{
    cursor: pointer;
}

.after_head {
    background: var(--accent);
    padding: 5px 0;
}

.after_head p {
    margin: 0;
    color: #fff;
    text-align: center;
}

footer {
    background: #eee;
    padding: 20px 0;
}

/* Faded background overlay */
.overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
}

/* Popup styles */
.popup-container {
  display: none;
  opacity: 0;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease;  
  background-color: white;
  padding: 40px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  width: 38%;
  min-height: 100px;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, .2);
}

.popup-container .share_buttons{
  padding: 20px 0;
  justify-content: flex-start;
}

.popup-container h2{
  font-size: 24px;
  font-weight: 600;
  margin: 0;
  padding: 0;
}

.popup-container p{
  font-size: 16px;
  color: #828586;
  margin-top: 15px !important;
  margin: 0;
  padding: 0;
}

.popup-container.show {
  display: block;
  opacity: 1;
}

.copy-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 8px;
  margin-top: 10px;
  border: 1px solid #ddd;
  border-radius: 8px;
}

.page-link {
  width: 80%;
  padding: 5px;
  border: 0;
  font-size: 14px;
  color: #828586;
}

.copy-button {
  width: 20%;
  font-size: 12px;
  padding: 5px 10px;
  border: none;
  background-color: transparent;
  color: var(--accent);
  font-weight: 600;
  cursor: pointer;
  border-radius: 4px;
}

.copy-button:active {
  color: #ddd;
}
.hidden {
    display: none;
}
.content{
    max-width: 70%;
    margin: auto;
}i
.content ul{
    list-style: none !important;
}
.content h1{
    font-weight: 600;
    font-size: 56px;
    line-height: 140%;
    text-align: center;
    margin: 60px 0;
 }
 .wdth .content h1,
 .wdth .content h2,
 .wdth .content h3{
     color: #181D20;
     font-weight: 600;
 }
 .wdth .content h2{
     font-size: 32px;
 }
 .wdth .content h3{
     font-size: 18px;
 }
.content li,
.content p{
    line-height: 1.6em;
}
.content{
    padding: 80px 0;
    color: #707375;
}
.wdth .content a{
    text-decoration: none;
    color: var(--accent);
}


/*Contact Form*/

.contact-us {
    padding: 80px 0;
/*    position: relative;*/
    margin: auto;
}
.page_shadow {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}


.contact-heading{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
    position: relative;
    z-index: 1;
}

.contact-h-left{
    width: 60%;
}

.contact-h-left h3{
    font-weight: 600;
    font-size: 16px;
    line-height: 140%;
    margin: 0;
    text-transform: uppercase;
    color: var(--accent);
}

.contact-h-left h1,
.contact-h-left h2{
    font-weight: bold;
    font-size: 48px;
    margin: 0;
    line-height: 130%;
    color: #181D20;
    padding-top: 8px;
}

.contact-h-right{
    width: 40%;
}

.contact-h-right p {
    font-size: 16px;
    line-height: 140%;
    color: #707375;
    font-weight: 400;
    margin: 0;
    margin-top: 10px;
}
.contact-h-right h2{
    font-weight: bold;
    font-size: 26px;
    margin: 0;
    line-height: 130%;
    color: #181D20;
    padding-top: 8px;
}

.contact-main{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
    position: relative;
    z-index: 1;
}

.contact-main-left{
    width: 50%;
}

.contact-main-left img{
    width: 100%;
    height: 400px;
    object-fit: contain;
}

.contact-main-right {
    width: 50%;
    margin-top: 100px;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form-row label {
    flex: 1;
}

label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    font-size: 16px;
    line-height: 140%;
    color: #525658;
}

input[type="text"],
input[type="email"],
textarea {
    background: #FFFFFF;
    border: 1px solid #E3E3E4;
    border-radius: 10px;
    width: 100%;
    height: 48px;
    padding: 0 16px;
    font-size: 14px;
    margin-top: 15px;
    -webkit-box-shadow: 0 5px 10px rgba(26, 143, 227, 0.1);
    box-shadow: 0 5px 10px rgba(26, 143, 227, 0.1);
}

input::placeholder {
    color: transparent;
    opacity:0;
}
textarea {
    height: 137px;
    resize: none;
    padding-top: 14px;
    padding-bottom: 14px;
}

textarea::placeholder {
    color: transparent;
    opacity:0;
}

.recaptcha {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.form-btn {
    margin-top: 40px;
    display: flex;
    justify-content: center;
}

.btn {
    display: inline-block;
    border: none;
    color: #fff;
    font-size: 16px;
    background-color: var(--accent) !important;
    padding: 12px 30px;
    text-align: center;
    box-shadow: 0 5px 10px rgba(26, 143, 227, 0.1);
    border-radius: 5px;
    text-decoration: none;
    width:150px;
}

.btn.btn_sm {
    padding: 7px 12px;
    font-size: 14px;
}

.btn:hover {
    background: var(--accent-hover) !important;
}


.loading-progress-bar {
    max-width: 900px;
    height: 15px;
    background-color: #e0e0e0;
    border-radius: 5px;
    overflow: hidden;
    margin: 40px auto 20px;
}

.loading-progress-fill {
    height: 100%;
    width: 0;
    background-color: var(--accent);
    transition: width 0.4s ease;
    border-radius: 5px;
    position: relative;
}

.loading-progress-fill p {
    color: #fff;
    font-size: 14px;
    margin: 0;
    position: absolute;
    left: 415px;
}


/*Dark mode*/

body.dark-mode {
    background-color: #1A252E;
    color: #fff;
}

.dark-mode .mobile-menu{
    background-color: #1A252E !important;
}

.dark-mode div#file-name{
    color: #fff !important;
}

.dark-mode h1,
.dark-mode h2,
.dark-mode h3,
.dark-mode h4,
.dark-mode h5,
.dark-mode h6,
.dark-mode p,
.dark-mode a{
    color: #fff !important;
}

.dark-mode .nav-button-round img {
    -webkit-filter: brightness(0) saturate(100%) invert(100%) sepia(1%) saturate(775%) hue-rotate(165deg) brightness(119%) contrast(87%);
    filter: brightness(0) saturate(100%) invert(100%) sepia(1%) saturate(775%) hue-rotate(165deg) brightness(119%) contrast(87%);
}

.dark-mode .search-form input{
    background-color: #1F2A33 !important;
    color: #EFEFEF !important;
    border-color: #707375 !important;
}

.dark-mode ul.sub-menu{
    background-color: #46505E !important;
}

.dark-mode ul.sub-menu a{
    color: #fff !important;
}

.dark-mode footer{
    background-color: #1A252E !important;
}
.dark-mode .static-text{
    color: #fff;
}

.dark-mode .menu-col ul li a{
    color: #fff !important;
}

.dark-mode .search-form-home input{
    background-color: #1F2A33 !important;
    color: #EFEFEF !important;
    border-color: #707375 !important;
}

.dark-mode .home-sec2 ul a{
    background-color: #1F2A33 !important;
    color: #EFEFEF !important;
}

.dark-mode .tool-head-left{
    background-color: #46505E !important;
}

.dark-mode .share_buttons a{
    border: 1px solid #46505E !important;
}

.dark-mode .share_buttons a:hover{
    background-color: #46505E !important;
}

.dark-mode .box{
    background-color: #1F2A33 !important;
}

.dark-mode div.box svg{
    color: #fff !important;
    fill: #fff !important;
}

.dark-mode .popup-container{
    background-color: #1A252E !important;
}

.dark-mode .popup-container p{
    color: #fff !important;
}

.dark-mode .page-link{
    background-color: transparent !important;
    color: #fff !important;
}

.dark-mode .box form label{
    color: #fff !important;
}

.dark-mode .box form input[type="file"],
.dark-mode .collage_maker_box input[type="file"],
.dark-mode .collage_maker_box select,
.dark-mode .box form select{
    background-color: transparent !important;
    color: #fff !important;
}

.dark-mode .box form input[type="text"],
.dark-mode .box form select{
    background-color: transparent !important;
    color: #fff !important;
}
.dark-mode .bottom-footer a{
    color: #fff !important;
}

.dark-mode option{
    color: #000 !important;
}

.collage_maker_box input[type="file"], .collage_maker_box select

#progress { position:relative; width:150px; border: 1px solid #ddd; padding: 1px; border-radius: 3px ; display:none; }
.bbar { background-color: #B4F5B4; width:0%; height:20px; border-radius: 3px; }
.prcnt { position:absolute; display:inline-block; top:3px; left:42%; }
.box {
    max-width: 700px;
    min-height: 250px;
    padding: 50px;
    display: flex;
    background-color: #fff;
    text-align: center;
    border-radius: 8px;
    margin: 50px auto 0;
    position: relative;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    box-shadow: 0 0 50px 10px rgba(55, 181, 255, .13);
}

.inputfile {
    top:0;
    left:0;
    right:0;
    bottom:0;
    opacity: 0;
    overflow: hidden;
    position: absolute;
    width:100%;
    cursor:pointer;
}

.box label {
    cursor:pointer;
}


.btnup {
    border-radius: 3px;
    background:#000;
    color:#fff;
    padding:8px 16px;
    display:inline-block;
}

.box label svg {
    display:block;
    margin:0 auto 20px;
}

.box h3 {
    margin:0;
    padding:0;
}

.box h3 span {
    display:block;
    font-size:15px;
    font-weight:normal;
    margin:5px 0 0;
}
.box a{
    color: var(--accent);
}

.message {
    width:100%;
    text-align:center;
}

.scrolldiv {
    width: 100%;
    display: flex;
    align-items: center;
}

#message {
    width: 100%;
    border-collapse: collapse;
}

#message th {
    background-color: var(--accent);
    color: #fff;
    padding: 15px;
    text-align: left;
    border: 1px solid var(--accent);
}

#message td {
    padding: 15px;
    border: 1px solid var(--accent);
    color: #181D20;
}

#message tr:nth-child(even) {
    background-color: #eaf3fc;
}

#message tr:nth-child(odd) {
    background-color: #f4f8fc;
}

#message tr:hover {
    background-color: #d3e9fa;
}

#message a{
    color: var(--accent);
}
div.box svg {
    color: #181D20;
    fill: #181D20;
}

div.box h3 {
    color: #181D20;
}

.topbar {
    background:#333 !important;
    border:none !important;
    border-radius:0 !important;
}

.topbar a {
    color:#fff !important;
}

.mnhead {
    margin:0 0 10px !important;
}

.sbhead {
    margin:0 0 40px !important;
}

.lstline {
    position:relative;
    margin:30px auto;
    width:100%;
    font-size:20px;
}

ul.social {
    list-style:none;
    margin:10px 0 0;
    padding:0;
    display: flex;
    flex-wrap: wrap;
    justify-content:center;
    align-items: center;
    gap: 20px;
}

ul.social li {
    font-size: 20px;
}

.share_buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    padding: 40px 0;
    margin-top: 10px;
    justify-content: center;
}

.share_buttons a {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #E3E3E4;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    text-decoration: none !important;
}
.share_buttons a:hover{
    background-color: #fff;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}
.share_buttons i {
    color: var(--accent);
    font-size: 20px;
}

.share_buttons span {
    display: flex;
    align-items: center;
    gap: 10px;
}

.box .custum-file-upload {
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    background-color: var(--accent);
    color: white;
    padding: 8px 30px;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.box .custum-file-upload .icon svg {
    fill: white;
    width: 30px;
    height: 30px;
    margin-right: 8px;
    margin-bottom: 0;
}

.box .custum-file-upload .text span {
    font-size: 16px;
}

.box .custum-file-upload:hover {
    background-color: #156bb5;
}

.box .custum-file-upload input[type="file"] {
    display: none;
}

.image_format label {
    display: block;
    font-size: 14px;
    font-weight: bold;
    color:  #181D20;
    margin-bottom: 10px;
}

.box .custom-file-upload {
    display: inline-block;
    padding: 10px 20px;
    color: #fff !important;
    background-color: var(--accent);
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    font-weight: bold;
    transition: background-color 0.3s;
}

.box .custom-file-upload:hover {
    background-color: #156bb5;
}

.box .custom-file-upload input[type="file"] {
    display: none;
}

/*.image_format select {
    display: block;
    width: 100%;
    padding: 8px;
    font-size: 14px;
    color: #181D20;
    background-color: #fff;
    border-radius: 5px;
    margin-bottom: 15px;
    cursor: pointer;
}*/

.image_format input[type="submit"] {
    width: 100%;
    padding: 10px;
    background-color: var(--accent);
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
}

.image_format input[type="submit"]:hover {
    background-color: #156bb5;
}


.image_resize label {
    display: block;
    font-size: 14px;
    font-weight: bold;
    color: #181D20;
    margin-bottom: 10px;
}

.image-limit-note {
    font-size: 12px;
    color: #888;
    margin-top: 5px;
    margin-bottom: 15px;
}

.box form input[type="text"],
.box form select {
    width: 100%;
    padding: 8px;
    margin-bottom: 15px;
    font-size: 14px;
    color: #181D20;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.collage_maker_box input[type="text"],
.collage_maker_box select {
    width: 100%;
    padding: 8px;
    margin-bottom: 15px;
    font-size: 14px;
    color: #181D20;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 5px;
}


.crop_img_box {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

#cropButton {
    width: 23.5%;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: bold;
    color: #fff;
    background-color: var(--accent);
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

#cropButton:hover {
    background-color: #156bb5;
}


.form-group {
    margin-bottom: 15px;
}

.add_watermark label {
    display: block;
    font-size: 14px;
    font-weight: bold;
    color: #181D20;
    margin-bottom: 10px;
}

.box form input[type="file"],
.box form select {
    display: block;
    width: 100%;
    padding: 10px;
    font-size: 14px;
    color: #181D20;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 5px;
    cursor: pointer;
}

.collage_maker_box input[type="file"],
.collage_maker_box select {
    display: block;
    width: 35%;
    padding: 10px;
    font-size: 14px;
    color: #181D20;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 5px;
    cursor: pointer;
}

.add_watermark select {
    font-size: 14px;
}

.add_watermark button[type="submit"] {
    width: 100%;
    padding: 12px;
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    background-color: var(--accent);
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.add_watermark button[type="submit"]:hover {
    background-color: #156bb5;
}

.box form label{
    display: block;
    font-size: 14px;
    font-weight: bold;
    color: #181D20;
    margin-bottom: 10px;
}

.box form input[type="submit"] {
    width: 100%;
    padding: 12px;
    background-color: var(--accent);
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
}

.box form input[type="submit"]:hover {
    background-color: #156bb5;
}

.collage_maker_box input[type="submit"] {
    width: 20%;
    padding: 12px;
    background-color: var(--accent);
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
}

.collage_maker_box input[type="submit"]:hover {
    background-color: #156bb5;
}

.collage_maker_box button {
    width: 35%;
    padding: 12px;
    background-color: var(--accent);
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
}

.collage_maker_box {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.collage_maker_box {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.removebg_sec .result{
    width: 100%;
}


.donatebtn {
    border:none !important;
    background:transparent !important;
    color:#fff  !important;
    padding-top: 10px;
}


/*Home Page*/

.top-sec h1{
    font-weight: 600;
    font-size: 56px;
    line-height: 140%;
    color: #181D20;
    text-align: center;
    margin: 0;
}
.top-sec h2{
    margin-top: 24px;
    font-weight: 500;
    font-size: 16px;
    color: #707375;
    text-align: center;
}

.search-form-home {
    position: relative;
    max-width: 500px;
    margin: 35px auto;
}

.search-form-home input[type="search"] {
    width: 100%;
    padding: 15px 15px 15px 60px;
    border: none;
    border-radius: 99px;
    background-color: #fff;
    font-size: 16px;
    color: #707375;
    height: 64px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.search-form-home .search-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
}

.search-form-home .search-icon svg {
    width: 22px;
    height: 22px;
}

.search-form-home .search-submit {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--accent);
    color: #fff;
    border: none;
    padding: 12px 26px;
    height: 50px;
    border-radius: 99px;
    cursor: pointer;
    font-size: 14px;
}


.home-sec2 ul{
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}
/*.home-sec2 ul a{
    color: #000;
    text-decoration: none;
    background-color: #fff;
    padding: 16px;
    border-radius: 8px;
    display: block;
    min-height: 120px;
    transition: all 0.3s ease-in-out;
}*/

.home-sec2 ul a {
    color: #000;
    text-decoration: none;
    background-color: #fff;
    padding: 40px 20px;
    border-radius: 30px;
    display: block;
    min-height: 120px;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 0 5px 0 rgba(55, 181, 255, .2);
    height: 100%;
}

.home-sec2 ul a:hover{
    /*box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);*/
    box-shadow: 0 0 20px 1px rgba(55, 181, 255, .2);
    transition: all 0.3s ease-in-out;
}

.home-sec2 ul li {
    width: calc(100% / 3 - 25px); /*calc(25% - 16px);*/
}

.tool-head {
    display: flex;
    flex-direction: column;
    gap: 25px; /*15px;*/
    align-items: center;
}

.tool-img {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.tool-img i{
    font-size:  35px; /*22px;*/
}


/*.tool-head-left{
    width: 40px;
    height: 40px;
    border-radius: 8px;
}*/

.tool-head-left {
    width: 70px;
    height: 70px;
    border-radius: 10px 25px;
}

/*.tool-head-right h2{
    margin: 0;
    font-size: 16px;
    text-align: center;
}*/

.tool-head-right h2 {
    margin: 0;
    font-size: 18px;
    text-align: center;
}

/*.tool-body p {
    color: #707375;
    font-size: 14px;
    margin: 0;
    margin-top: 10px;
    text-align: center;
}*/

.tool-body p {
    color: #777;
    font-size: 16px;
    margin: 10px 0 0;
    text-align: center;
}

.blue{
    color: var(--accent) !important;
}
.red{
    color: #E24841;
}
.bg-red{
    background-color: #FBE6E5;
}
.orange{
    color: #FF7919;
}
.bg-orange{
    background-color: #FFEDE0;
}
.yellow{
    color: #E2C740;
}
.bg-yellow{
    background-color: #FEF9E2;
}
.green{
    color: #247881;
}
.bg-green{
    background-color: #ECFAE5;
}
.purple{
    color: #624BD8;
}
.bg-purple{
    background-color: #E9E6F9;
}


/*Footer*/

.footer {
    display: flex;
    padding: 20px 0 40px 0;
}

.f-left{
    width: 33.33%;
}

.f-right {
    width: 77.77%;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding-left: 70px;
}

html[lang="ar"] .f-right {
    padding-right: 70px;
    padding-left: unset;
}



.f-col4.menu-col, .f-col5.menu-col {
    margin-top: 30px;
}


.menu-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.menu-col ul li{
    padding: 8px 0;
}

.menu-col ul li a{
    color: #000;
    text-decoration: none;
    font-size: 15px;
    line-height: 20px;
}
.menu-col ul li a:hover{
    color: var(--accent);
}

.f-col1 p{
    font-size: 16px;
    line-height: 22px;
}

.menu-col h2{
    margin: 0;
    font-size: 18px;
}


.menu-col {
    width: calc(25% - 15px);
}

.f-col2.menu-col ul,
.f-col3.menu-col ul{
    margin-top: 10px;
}

.bottom-footer{
    padding: 20px 0 0;
/*  background-color: #eff7fd;*/
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.bottom-footer p{
    font-size: 14px;
}

.bottom-footer a{
    color: #000;
}

.mobile-toggle-icon{
    display: none;
}
.mobile-menu{
    display: none;
}

canvas#collageCanvas{
    width: 100%;
    margin-top: -30px;
}
.removing{
    display: flex;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
}

.removing img{
    width: 80px !important;
    height: 80px !important;
    object-fit: cover !important;
}


/* Fullscreen loader style */
#load {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

#load img {
    width: 150px;
    height: auto;
}

input#download-format {
    width: 87%;
}


/*Word Animation*/
.container1 {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    margin: 0 0 50px;
    justify-content: center;
}
.animate-text {
    min-height: 70px;
    overflow: hidden;
    display: flex;
/*    width: 620px;*/
    justify-content: flex-start;
    align-items: center;
    margin: 0 10px;
}

.static-text{
    font-weight: 600;
    font-size: 56px;
    line-height: 140%;
    color: #181D20;
    text-align: center;
    margin: 0;
/*    width: 350px;*/
}

.animate-text span{
    font-size: 56px;
    color:#fff;
    font-weight: 600;
    line-height: 46px;
    display: none;
}

.animate-text span.text-in{
    display: block;
    animation: textIn .5s ease;
    padding: 10px;
}
.animate-text span.text-out{
    animation: textOut 1s ease;
}
@keyframes textIn{
    0%{
        transform: translateY(100%);
    }
    100%{
        transform: translateY(0%);
    }
}
@keyframes textOut{
    0%{
        transform: translateY(0%);
    }
    100%{
        transform: translateY(-100%);

    }
}



/*Bookmark Popup*/

.popup-container1 {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
    z-index: 9999;
    height: 100%;
    width: 100%;
}

.popup-content {
    background: white;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    width: 350px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    position: relative;
}

.popup-content p{
    font-size: 18px;
    line-height: 1.6rem;
}

.popup-container1 button {
    padding: 12px;
    background-color: var(--accent);
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
}

.popup-container1 button:hover {
    background-color: #156bb5;
}

.close-icon {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 25px;
    font-weight: bold;
    color: #333;
    cursor: pointer;
    transition: color 0.3s;
}

.close-icon:hover {
    color: #156bb5;
}

/*.downloadall-btn {*/
/*    background-color: transparent !important;*/
/*    transform: translateY(20px);*/
/*}*/

/*.downloadall-btn:hover{*/
/*    background-color: transparent !important;*/
/*}*/
/*.downloadall-btn td{*/
/*    text-align: center; !important;*/
/*    border: 0 !important;*/
/*}*/

/*.downloadall-btn td a {*/
/*    text-decoration: none;*/
/*    background-color: var(--accent);*/
/*    color: #fff !important;*/
/*    padding: 12px;*/
/*    border-radius: 4px;*/
/*    font-size: 14px;*/
/*    font-weight: 600;*/
/*}*/

a#downloadAllButton {
    background-color: transparent !important;
}

a#downloadAllButton:hover{
    background-color: #var(--accent) !important;
}
a#downloadAllButton {
    text-align: center !important;
    border: 0 !important;
}

a#downloadAllButton {
    text-decoration: none;
    background-color: var(--accent) !important;
    color: #fff !important;
    padding: 12px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
}

.circle-progress {
    transform: rotate(0deg);
    transform-origin: 50% 50%;
    display: inline-block;
    margin: 10px 0;
}


div#file-list ul{
    display: flex;
    list-style: none;
    flex-direction: column;
    padding: 0;
    gap: 10px;
}

div#loading {
    position: absolute;
    background-color: #ffffffa1;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
}

@media (max-width: 1080px) {
    .adbox.col-lg-4 {
        margin: 20px auto 0;
    }
    .main {
        height:auto;
        padding: 10px;
    }
    img {
        max-width:100%;
    }
    .container1{
        flex-wrap: wrap;
    }
    .static-text{
        width: 100%;
    }
    .animate-text{
        width: 100%;
    }
    
    .container1{
        flex-wrap: wrap;
    }
    .static-text{
        width: 100%;
        font-size: 40px !important;
        text-align: center !important;
    }
    .animate-text{
        width: 100%;
        font-size: 36px !important;
        margin: 0;
        justify-content: center !important;
    }

    .collage_maker_box button{
        width: 65%;
    }
}

@media (max-width: 767px) {
    .nav {
        text-align:center !important;
    }
    .nav > li {
        display:inline-block !important;
    }
    .nav > li a {
        padding:10px 15px !important;
    }
    .donate {
        top:auto !important;
    }
    .lstline {
        font-size: 16px;
    }
    .scrolldiv {
        overflow:hidden;
        overflow-x:scroll;
    }
    .scrolldiv table {
        width:640px;
    }
    .adbaner {
        display:none;
    }
    .wdth {
        padding: 0px 10px;
    }

     nav.nav-menu,
    .search-nav {
        display: none;
    }
    .mobile-menu .share-sec,
    .mobile-menu nav.nav-menu,
    .mobile-menu .search-nav {
        display: block;
    }
    .mobile-menu .search-nav{
        display: flex !important;
        justify-content: flex-start;
        margin: 10px;
        width: 100%;
    }
    .mobile-menu .share-sec{
        border-right: 0;
    }
    .mobile-toggle-icon i{
        font-size: 20px;
    }

    .mobile-menu li.main-menu{
        width: 100%;
        padding: 15px 0;
    }
    .mobile-toggle-icon{
        display: block;
        z-index: 100;
        position: relative;
        margin-right: 10px;
        cursor: pointer;
    }
    html[lang="ar"] .mobile-toggle-icon {
        margin-right: 0;
        margin-left: 10px;
    }
    .mobile-menu .share-sec{
        margin-top: 10px;
    }
    .popup-container {
        width: 90%;
        padding: 15px;
    }
    .page-link {
        font-size: 14px;
        width: 65%;
    }
    .copy-button {
        font-size: 14px;
        padding: 5px 8px;
        width: 35%;
    }

    .mobile-menu {
        display: block !important;
        position: fixed;
        padding: 40px 10px 10px;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background-color: #fff;
        transition: right 0.3s ease;
        z-index: 10;
        box-shadow: 0 0 20px 0 rgba(0,0,0,0.4);
    }

    .mobile-toggle-icon i.fa-xmark {
        display: none;
    }

    .mobile-menu.active {
        right: 0;
    }

    .mobile-toggle-icon.active i.fa-bars {
        display: none;
    }
    .mobile-toggle-icon.active i.fa-xmark {
        display: inline-block;
    }
    .mobile-nav-menu ul {
        display: flex;
        flex-direction: column;
        gap: 0;
        align-items: flex-start;
        width: 100%;
        padding: 10px;
    }
    .mobile-nav-menu ul li{
        padding: 0;
        width: 100%;
        border-bottom: 1px solid rgba(0,0,0,.07);
    }
    .mobile-nav-menu ul li:last-child {
        border-bottom: none;
    }
    .mobile-nav-menu ul li a {
        padding: 15px 0;
    }
    ul.mobile-sub-menu{
        display: none;
        padding: 10px 10px 0;
    }
    ul.mobile-sub-menu li{
        padding: 10px 0
    }

    .footer{
        flex-direction: column;
        padding: 20px 0;
        gap: 10px;
    }

    .f-left {
        width: 100%;
    }
    .f-right {
        width: 100%;
        padding: 0;
        display: flex;
        gap: 20px;
        flex-wrap: wrap;
    }
    .menu-col {
        width: calc(50% - 15px) !important;
        margin: 0 !important;
    }
    .bottom-footer{
        flex-direction: column;
        border-top: 1px solid #ddd;
        gap: 10px;
    }
    .bf-left h2{
        font-size: 14px !important;
    }
    .home-sec2 ul {
        gap: 20px;
    }
    .home-sec2 ul li {
        width: calc(100% / 2 - 10px);
    }
    /*.home-sec2 ul a{
        padding: 15px 10px;
        min-height: 170px;
    }*/
    .tool-head{
        flex-direction: column;
    }
    .top-sec h1{
        font-size: 40px;
    }
    .share_buttons{
        padding: 0 0 40px;
    }
    .custom-file-upload{
        width: 100%;
    }
    #cropButton{
        width: 100%;
    }
    .search-form{
        width: 65%;
    }
    .nav-signin{
        width: 35%;
        padding: 15px 20px;
    }
    .contact-h-left{
        width: 100%;
    }
    .contact-h-right{
        width: 100%;
    }
        .contact-main-left{
        width: 100%;
    }
    
    .contact-main-right{
        width: 100%;
    }
    
    .animate-text span{
        line-height: 40px;
        font-size: 36px !important;
    }

    .r-header{
        align-items: center;
        flex-direction: row-reverse;
        justify-content: flex-start;
    }

    .share-sec{
        width: 35%;
    }
    .tool-img i{
        font-size: 30px;
    }
    .tool-head-left {
        width: 60px !important;
        height: 60px !important;
        border-radius: 10px 20px !important;
    }
    .home-sec2 ul a{
        padding: 25px 15px !important;
    }
    .faqicon{
        width: 80px !important;
        height: 80px !important;
        font-size: 30px !important;
    }
} 

@media only screen and (min-width:768px) and (max-width:1288px){
    .wdth {
        padding: 0px 15px;
    }
    .share-sec{
        border-right: 0;
    }
    ul.sub-menu.right{
        right: 0;
        left: auto;
    }
    .footer{
        padding: 20px 0;
    }
    .f-right {
        gap: 15px;
        padding-left: 20px;
    }
    html[lang="ar"] .f-right {
        padding-right: 20px;
        padding-left: unset;
    }
}

@media (max-width: 414px) {
    .nav > li a {
        padding: 10px 6px !important;
        font-size:12px !important;
    }
}

.copyright {
    margin: 0;
    font-size: 14px;
}

.icon svg {
    height: 70px;
}



.success_mesg{
    color: #155724;
    background-color: #d4edda;
    border-color: #c3e6cb;
    position: relative;
    padding: .75rem 1.25rem;
    margin-bottom: 1rem;
    border: 1px solid transparent;
    border-radius: .25rem;
}
.svg_mar_top {
    margin: 30px 0;
}
a#downloadAllButton {
    background-color: transparent !important;
}

a#downloadAllButton:hover{
    background-color: var(--accent) !important;
}
a#downloadAllButton {
    text-align: center !important;
    border: 0 !important;
}

a#downloadAllButton {
    text-decoration: none;
    background-color: var(--accent) !important;
    color: #fff !important;
    padding: 12px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    display: inline-block;
}

.message_container {
    text-align: center;
    font-family: Arial, sans-serif;
    margin: 20px;
    overflow: hidden;
}

.success_message {
    color: #155724;
    background-color: #d4edda;
    border-color: #c3e6cb;
    position: relative;
    padding: .75rem 1.25rem;
    margin:0 auto 1rem;
    border: 1px solid transparent;
    border-radius: .25rem;
    display: inline-block;
}

.total_value_class {
    font-size: 24px;
    font-weight: bold;
    color: #007BFF;
    animation: zoomInOut 1.5s infinite;
}

@keyframes zoomInOut {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
}

.download_message {
    font-size: 16px;
    margin: 10px 0;
}

.download_instruction {
    font-size: 14px;
    margin: 20px 0;
}

.download_button {
    padding: 10px 20px;
    font-size: 16px;
    background-color: #007BFF;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.download_button:hover {
    background-color: #0056b3;
}

.main_section {
    padding: 70px 0;
}

.title_row {
    max-width: 700px;
    margin: 0 auto 60px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.title_row h1 {
    font-size: 30px;
    line-height: 1.3em;
    margin: 0; padding:0;
    color: #000;
}
.title_row h1 span {
    display: block;
}
.title_row p {
    margin: 0; padding:0;
    font-size: 18px;
    line-height: 1.5em;
    color: #555;
}
.title_row h2 {
    font-size: 30px;
    line-height: 1.3em;
    margin: 0; padding:0;
    color: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 10px;
}
.title_row h2 span {
    font-size: 15px;
    line-height: normal;
    background-color: rgba(55, 181, 255, .13); /*rgba(0, 0, 0, .07);*/
    display: inline-block;
    padding: 10px 20px;
    border-radius: 4px;
}

.buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.download_btn {
    text-decoration: none;
    background-color: var(--accent) !important;
    color: #fff !important;
    padding: 12px 20px;
    border-radius: 5px;
    font-size: 15px;
    display: inline-block;
    border: none;
    letter-spacing: .3px;
}

.download_btn:hover {
    background-color: var(--accent-hover) !important;
}

.previewimage {
    max-height: 300px;
    display: block;
    margin: 30px auto;
}


.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #f9f9f9;
  border-top: 1px solid #ccc;
  padding: 15px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  z-index: 1000;
  box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
}

.cookie-banner p {
  margin: 0 10px;
  font-size: 14px;
}

.cookie-banner button {
  margin-left: 10px;
}

.margintop {
    margin-top: 70px;
}

.margintop_min {
    margin-top: 20px;
}

/*.grayscale {
    background-color: #eee;
}*/

.grayscale {
    background-color: rgba(55, 181, 255, .05);
}

.dark-mode .grayscale {
    background-color: rgba(255, 255, 255, .1);
}

.section {
    padding: 70px 0;
}

.faqs {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/*.faq_title {
    background-color: #F7F7F7;
    box-shadow: 0 0 5px 0 rgba(0, 0, 0, .1);
    padding: 20px;
    font-size: 17px;
    line-height: 1.3em;
    position: relative;
    border-radius: 5px;
    margin: 0;
    z-index: 1;
    cursor: pointer;
}*/

.faq_title {
    background-color: #fff;
    padding: 20px 40px 20px 20px;
    font-size: 17px;
    line-height: 1.3em;
    position: relative;
    border-radius: 7px;
    margin: 0;
    z-index: 1;
    cursor: pointer;
}

html[lang="ar"] .faq_title {
    padding: 20px 20px 20px 40px;
}

.dark-mode .faq_title {
    background-color: #222;
}

.faq_title::after {
    position: absolute;
    content: '+';
    top: 20px;
    right: 20px;
    font-size: 20px;
    font-weight: normal;
}

html[lang="ar"] .faq_title::before {
    position: absolute;
    content: '+';
    top: 20px;
    left: 20px;
    font-size: 20px;
    font-weight: normal;
}

.faq_item.active .faq_title::after,
html[lang="ar"] .faq_item.active .faq_title::before {
    content: '-';
}

html[lang="ar"] .faq_title::after {
    display: none;
}

/*.faq_desc {
    max-width: 95%;
    margin: 0 auto;
    margin-top: -5px;
    background-color: #ddd;
    box-shadow: 0 0 5px 0 rgba(0, 0, 0, .1);
    padding: 20px;
    position: relative;
    border-radius: 5px;
    display: none;
}*/

.faq_desc {
    max-width: 95%;
    margin: 0 auto;
    margin-top: -5px;
    background-color: rgba(0,0,0,.05);
    box-shadow: 0 0 5px 0 rgba(0, 0, 0, .1);
    padding: 20px;
    position: relative;
    border-radius: 5px;
    display: none;
}

.dark-mode .faq_desc {
    background-color: rgba(255,255,255,.1);
}

.faq_desc p {
    margin: 0 0 20px;
    font-size: 15px;
    line-height: 1.5em;
}
.faq_desc p:last-child {
    margin: 0;
}

/*.faqicon {
    font-size: 50px;
    margin: 20px 0;
}*/

.faqicon {
    font-size: 50px;
    background: var(--accent);
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    color: #fff;
    margin: 30px auto;
}

.faqstill {
    margin-top:80px;
}

.faqstill h3 {
    font-size: 20px;
    margin: 0 0 20px;
    padding: 0;
}

.borderbottom {
    border-bottom: 1px solid rgba(0,0,0,.08);
}

.pb0 {
    padding-bottom: 0;
}

.pt0 {
    padding-top: 0;
}

.col30 {
    width: calc(100%);
}

.col50 {
    width: calc(100%);
}

@media ( max-width: 800px ){
    .col30,
    .col50 {
        width: calc(100%);
    }
}

.gap {
    gap: 30px;
}

.flex.gap.steps_col {
    align-items: unset;
    justify-content: center;
    flex-wrap: unset;
}

/*.steps_col .col30 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 20px;
    background-color: #fff;
    padding: 40px;
    box-shadow: 2px 2px 10px 0 rgba(0, 0, 0, .1);
    border-radius: 15px;
    position: relative;
}*/

.steps_col .col30 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 20px;
    background-color: #fff;
    padding: 40px;
    box-shadow: -10px 8px 50px 0 rgba(55, 181, 255, .2);
    border-radius: 40px 100px;
    position: relative;
}

.steps_col .col30 h3 {
    margin: 0;
    padding: 0;
    text-align: center;
    font-size: 21px;
    line-height: 1.5em;
    position: relative;
    z-index: 1;
}

.steps_col .col30 p {
    margin: 0;
    padding: 0;
    text-align: center;
    font-size: 17px;
    line-height: 1.5em;
    position: relative;
    z-index: 1;
}

/*.steps_col .col30 i {
    font-size: 50px;
    margin: 0;
    padding: 0;
    position: relative;
    z-index: 1;
}*/

.steps_col .col30 i {
    font-size: 60px;
    margin: 0;
    padding: 0;
    position: relative;
    z-index: 1;
    color: var(--accent);
}

/*.steps_col .col30 .num {
    font-size: 100px;
    color: rgba(0, 0, 0, .05);
    position: absolute;
    z-index: 0;
    top: 5px;
    left: 20px;
    font-weight: bold;
}*/

.steps_col .col30 .num {
    font-size: 100px;
    color: rgba(55, 181, 255, .13);
    position: absolute;
    z-index: 0;
    top: 5px;
    left: 20px;
    font-weight: bold;
}

.steps_col .arrw {
    margin: auto;
}

.steps_col .arrw i {
    font-size: 30px;
    font-weight: bold;
}

.dark-mode .steps_col .col30 {
    background-color: rgba(255, 255, 255, .1);
}

/*.dark-mode .steps_col .col30 .num {
    color: rgba(255,255,255, .05);
}*/

@media (max-width: 800px){
    .flex.gap.steps_col {
        flex-wrap: wrap;
    }

    .steps_col .arrw i:before {
        content: "\f063";
    }
    .cookie-banner p{
        margin: 10px 14px;
    }
    .steps_col .col30 i{
        font-size: 50px !important;
    }
    .steps_col .col30 .num{
        font-size: 80px !important;
    }
    .steps_col .col30{
    border-radius: 25px 65px !important;
    }
}