 /*********** start Global rules************/
 * {
     -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
     box-sizing: border-box;
     font-family: 'Sukar', sans-serif !important;

 }

 @font-face {
     font-family: "Camila Vintage";
     src: url("/fonts/CamilaVintage.woff2") format("woff2"),
         url("/fonts/CamilaVintage.woff") format("woff");
     font-weight: normal;
     font-style: normal;
 }

 :root {
     --main-color: #654B98;
     --main-color-alt: #ce3e97;
     --main-transition: 0.3s;
     --section-background: #ececec;
 }

 html {
     scroll-behavior: smooth;
 }

 body {
     font-family: 'Sukar', sans-serif !important;

 }

 a {
     text-decoration: none;
 }

 ul {
     list-style: none;
     margin: 0px;
     padding: 0px;
 }

 /*********** End Global rules************/


 /*************start hader***************/
 .navbar {
     background-color: rgba(0, 0, 0, 0.95);
     --bs-navbar-brand-margin-end: 5rem !important;
 }

 .nav-link {
     position: relative;
     font-weight: 500;
     margin-left: 15px;

 }

 .nav-link::before {
     content: "";
     position: absolute;
     left: 0;
     bottom: 0;
     width: 0;
     height: 2px;
     background-color: var(--main-color-alt);
     transition: width 0.3s;

 }



 .nav-link:hover::before,
 .nav-link.active::before {
     width: 100%;
 }

 .navbar-nav .nav-link.active,
 .navbar-nav .nav-link.show {
     color: var(--main-color) !important;

 }

 .collapse {
     a {
         font-size: 18px;
         font-weight: bold;
         color: var(--main-color);

     }
 }

 .nav-link:focus,
 .nav-link:hover {
     color: var(--main-color-alt) !important;
 }

 .dropdown-item:focus,
 .dropdown-item:hover {
     color: var(--main-color-alt) !important;
     background-color: var(--main-color) !important;
     font-size: 23px;
     font-weight: bold;
 }

 /* button */
 .switch {
     position: relative;
     display: inline-block;
     width: 52px;
     height: 28px;
 }

 .switch input {
     opacity: 0;
     width: 0;
     height: 0;
 }

 .slider {
     position: absolute;
     cursor: pointer;
     top: 0;
     left: 0;
     right: 0;
     bottom: 0;
     background-color: #d89954;
     transition: .4s;
     border-radius: 34px;
 }

 .slider:before {
     position: absolute;
     content: "";
     height: 22px;
     width: 22px;
     left: 3px;
     bottom: 3px;
     background-color: white;
     transition: .4s;
     border-radius: 50%;

 }

 input:checked+.slider:before {
     transform: translateX(24px);
 }

 .dropdown-menu[data-bs-popper] {
     top: 100%;
     left: 0px !important;
     margin-top: var(--bs-dropdown-spacer);
 }

 /* button */
 .butn {
   display: flex;
    justify-content: end;
    /* margin-top: -35px; */


 }

 /************ End header************/

 /************ start Home ***********/
 .cover {

     background-color: #00000099;
     z-index: 50;
     padding: 100px 0px;

 }

 .Home {
     background-image: url(../image/pexels-the-design-lady-746806315-30964386-compressed.jpg);
     background-size: cover;
     background-repeat: no-repeat;
     /* background-attachment: fixed; */
     /* margin-bottom: 45px; */

     .text {
         h1 {
             color: white;
             font-size: 40px;
             font-weight: bold;
             font-family: "Camila Vintage", serif;
         }

         p {
             color: rgb(216, 216, 216);
             font-weight: normal;
             font-size: 17px;
             font-family: "Camila Vintage", serif;
         }
     }

     .image img {
         position: relative;
         width: 480px;
         animation: up-and-down 5s linear infinite;

     }

     .go-down svg {
         color: var(--main-color-alt);
         font-weight: bold;
         animation: bouncing 1.5s infinite;
         display: flex;
         margin: auto auto auto auto;
     }
 }

 /************ End Home ***********/


 /************  satrt Items ***********/
 .Items {
     background-color: #3b484e;
     background-size: cover;
     background-repeat: no-repeat;
     background-attachment: fixed;

     .Items1 {
         h1 {
             color: white;
             font-size: 40px;
             font-weight: bold;
         }

         p {
             font-size: 17px;
             font-weight: normal;
             color: #dbdbdb;
         }
     }

     .card {
         background-color: rgba(255, 255, 255, 0.05);
         border: 2px solid rgba(255, 255, 255, 0.01);
         animation: cardIn 1s forwards;

         img {
             border-radius: var(--bs-card-border-radius);
             width: 100% !important;
             height: 150px !important;
             object-fit: cover !important;
         }

         .card-title {
             font-family: system-ui;
             margin-top: 16px;
             font-weight: bold;
             font-size: 25px;
             color: var(--main-color);
         }

         .lead {
             font-family: unset;
             font-size: 14px;
             color: #777;
             font-weight: normal;
         }

         .text {
             font-size: 18px;
             color: white;
             font-weight: bold;
             border: 2px solid var(--main-color);
             background-color: var(--main-color);
             border-radius: 20px;
             padding: 8px;
             transition: var(--main-transition);
             justify-content: center;
             display: flex;
             align-items: center;

             span {
                 font-size: 15px;
             }
         }

         .text:hover {
             background-color: var(--main-color-alt);
             border-color: var(--main-color-alt);
             transition: var(--main-transition);
         }

         .text span:hover {
             font-family: cursive;
         }
     }
 }

 /************ End Items ***********/


 /************ start Ramadan  ***********/

 .ramadan-cover {

     background-color: #ffffffa8;
     z-index: 50;
     padding: 100px 0px;

 }

 .ramadan1 {
     background-image: url(../image/DSC_1422\ copy-compressed.jpg);
     background-size: cover;
     background-attachment: fixed;


     h1 {
         color: white;
         font-family: "Camila Vintage", serif;
     }

     p {
         color: #777;
     }

     .cover {
         background-color: #000000e8;

     }

     .ramadan12 {
         h1 {
             color: white;
             font-size: 40px;
             font-weight: bold;

         }

         p {
             font-size: 17px;
             font-weight: normal;
             color: #6d6d6d;
         }
     }

     .card {
         padding: 0px !important;
         --bs-card-bg: none;
         --bs-card-border-width: none;
         background-color: #ffffff3b;

         .card-body {
             padding: 0px !important;


             .custom-caption {
                 position: absolute;
                 background: #e0e0e0;
                 color: #333;
                 font-weight: bold;
                 padding: 6px 14px;
                 border-radius: 20px;
                 display: inline-block;
                 margin: -20px auto;
                 left: 50%;
                 transform: translateX(-50px);
             }
         }

         img {
             width: 100%;

         }
     }
 }


 /************ ُend Ramadan  ***********/


 /*********** start Contact ***********/
 .Contact {
     background-image: url(../image/pexels-the-design-lady-746806315-30964386-compressed.jpg);
     background-size: cover;

     .Contact1 {
         h1 {
             color: var(--main-color);
             font-size: 40px;
             font-weight: bold;
         }

         p {
             font-size: 17px;
             font-weight: normal;
             color: white;
         }
     }
 }

 /*  start map */

 .map {
     .row {
         .map1 {
             margin-top: 50px;

             .link {
                 i {
                     color: var(--main-color);
                 }
             }

             .text {
                 h4 {
                     font-size: 25px;
                     font-weight: bold;
                     color: white;
                 }

                 p {
                     font-size: 16px;
                     color: #777;
                     font-weight: normal;
                     color: #f0ebeb;
                 }
             }
         }
     }
 }

 .form-control {
     background-color: rgba(228, 222, 222, 0.79) !important;
     border: rgba(228, 222, 222, 0.79) !important;
 }

 /* End map */


 /*********** start Contact ***********/


 /* start foutar */
 .foutar {
     background-image: url(../image/ChatGPT\ Image\ Sep\ 11\,\ 2025\,\ 01_20_08\ PM-compressed.png);
     background-color: #f6f6f6;
     background-attachment: fixed;

     .info {
         padding-top: 60px;
         padding-bottom: 60px;
         text-align: center;

         .lapal {
             font-size: 45px;
             font-weight: 500;
             color: rgb(40, 0, 92);
             letter-spacing: -2px;
             margin-bottom: 15px;
         }

         .link {
             display: block;
             font-size: 35px;
             font-weight: 400;
             color: white;
             text-decoration: none;
         }

         .social {
             display: flex;
             justify-content: center;
             margin-top: 20px;
             font-size: 16px;
             color: #968da7;

             i {
                 margin-left: 12px;
                 color: #691cff;
                 transform: var(--main-transition);
                 cursor: pointer;
             }
         }
     }
 }

 .special-heading {
     color: #757575;
     font-size: 100px;
     text-align: center;
     font-weight: 800;
     letter-spacing: -3px;
     margin: 0;
 }

 .special-heading+p {
     margin: -30px 0 0;
     font-size: 20px;
     text-align: center;
     color: #dbdbdb;
 }

 .linkk {
     background-color: #171c1f;
     color: var(--main-color);
     padding: 30px 10px;
     text-align: center;
     font-size: 18px;
     font-weight: bold;
 }

 .linkk span {
     font-weight: bold;
     color: var(--main-color-alt);
 }

 /* End  foutar */


 /************* start adman *************/


 /* Sidebar */
 .sidebar {
     height: 107vh;
     background-color: #111;
     color: white;
     padding: 20px 10px;
     position: fixed;
     left: 0;
     top: 0;
     width: 220px;
     transition: all 0.3s;
     margin-top: -17px;
 }

 .sidebar h2 {
     font-size: 20px;
     font-weight: bold;
     margin-bottom: 30px;
     text-align: center;
 }

 .sidebar a {
     display: flex;
     align-items: center;
     text-decoration: none;
     color: #bbb;
     padding: 10px 15px;
     margin-bottom: 10px;
     border-radius: 8px;
     transition: 0.3s;
     font-size: 14px;
 }

 .sidebar a.active,
 .sidebar a:hover {
     background-color: var(--main-color);
     color: #fff;
 }

 .sidebar .logout-btn {
     position: absolute;
     bottom: 20px;
     left: 10px;
     right: 10px;
 }

 /* Main content */
 .main-content {
     margin-left: 220px;
     padding: 0;
     transition: all 0.3s;
 }

 /* Top bar */
 .topbar {
     background-color: var(--main-color);
     padding: 10px 20px;
     display: flex;
     align-items: center;
     justify-content: space-between;
     color: white;
     position: relative;
     z-index: 5;
 }

 .search-box {
     flex: 1;
     margin: 0 20px;
 }

 .search-box input {
     max-width: 100%;
     padding: 6px 15px;
     border: none;
     border-radius: 20px;
     outline: none;
 }

 .profile-area {
     display: flex;
     align-items: center;
     gap: 10px;
 }

 .profile-area img {
     width: 35px;
     height: 35px;
     border-radius: 50%;
     object-fit: cover;
 }

 .logout-btn button {
     background-color: var(--main-color) !important;
     border-color: var(--main-color) !important;
 }

 .sidebar {
     padding: 18px;
 }

 .device {
     background: #0b0b0c;
     border-radius: 12px;
     padding: 12px;
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
     margin-bottom: 12px;

 }

 .device .screen {
     background: #020203;
     border-radius: 6px;
     height: 180px;
     display: flex;
     align-items: center;
     justify-content: center;
     color: #fff;
     position: relative;


     img {
         width: 100% !important;
         height: 100% !important;
         border-radius: 5%;
     }
 }

 .price {
     color: #691cff;
     font-weight: 700
 }

 @media(max-width:900px) {
     .main {
         grid-template-columns: 1fr;
         margin: -60px 18px 30px
     }

     .grid {
         grid-template-columns: repeat(2, 1fr)
     }
 }

 /***************** End adman ****************/



 /********** start dalat  ***********/
 .main {
     max-width: 1200px;
     margin: -86px auto 60px;
     padding: 24px;
     background-color: #020203;
     border-radius: 10px;
     display: grid;
     grid-template-columns: 1fr 0px;
     gap: 24px;
     z-index: 3;
     position: relative
 }

 .grid {
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: 18px
 }

 .card {
     background: rgba(255, 255, 255, 0.02) !important;
     padding: 16px;
     border-radius: 10px;
     min-height: 180px;
     display: flex;
     flex-direction: column;
     justify-content: space-between;
     transform: translateY(18px);
     opacity: 0;
     animation: cardIn 1s forwards;


 }

 .card:nth-child(1) {
     animation-delay: 0.2s
 }

 .card:nth-child(2) {
     animation-delay: 0.4s
 }

 .card:nth-child(3) {
     animation-delay: 0.6s
 }

 .card:nth-child(4) {
     animation-delay: 0.8s
 }

 .card:nth-child(5) {
     animation-delay: 1.0s
 }

 .card:nth-child(6) {
     animation-delay: 1.2s
 }

 .sidebarr {
     padding-top: 100px !important;

 }

 @keyframes cardIn {
     0% {
         opacity: 0;
         transform: translateY(18px) scale(.98)
     }

     100% {
         opacity: 1;
         transform: translateY(0) scale(1)
     }
 }


 /*********** End dalat ***********/

 /* start dash */
 .dash {
     display: flex;
     align-items: center;
     justify-content: center;

 }


 /* End dash */

 /*start media */
 @media (max-width:991px) {
     .Home .image {
         display: none;
     }

     .Home .text {
         text-align: center;
     }
 }

 @media(max-width:767px) {
     .special-heading {
         font-size: 60px;
     }

     .special-heading+p {
         margin-top: -20px;
     }

     .foutar .info {
         padding-top: 30px;
     }

     .foutar .info .lapal {
         font-size: 27px;
         font-weight: 800;
         color: rgb(40, 0, 92);
         letter-spacing: -1px;
         margin-bottom: 7px;
     }


     .foutar .info .link {
         font-size: 23px;
     }

     .ramadan1 .custom-caption {
         font-size: 10px;
     }

     .Ramadan-items {
         h1 {
             font-size: 39px !important;

         }

         p {
             font-size: 16px !important;
         }
     }

     .Ramadan-items .row {
         --bs-gutter-y: 2rem !important;
         --bs-gutter-x: -1rem !important;
     }

     .Items .row {
         --bs-gutter-y: 2rem !important;
         --bs-gutter-x: 1rem !important;
     }

     .ramadan1 .row {
         --bs-gutter-y: 2rem !important;
         --bs-gutter-x: 1rem !important;
     }

     .ramadan1 {
         & .card {
             & .card-body {
                 & .custom-caption {
                     margin: -7px auto !important;

                 }
             }
         }
     }




     .sidebar {
         width: 70px;
         padding: 20px 5px;
     }

     .sidebar h2,
     .sidebar a span {
         display: none;
     }

     .main-content {
         margin-left: 70px;
     }

     .search-box {
         margin: 0 10px;
     }

     .logout-btn button {
         font-size: 9px;
     }


     .Items {
         & .card {
             & img {
                 width: 100%;
                 height: 120px;
                 object-fit: cover;
             }
         }
     }
      .butn {
         display: flex;
         justify-content: end;
         margin-top: -35px;  
     }
 }

 @media (max-width: 576px) {
     .topbar {
         flex-direction: column;
         align-items: flex-start;
     }

     .search-box {
         margin: 10px 0;
         width: 100%;
     }

     .Items {
         & .card {
             & .card-title {

                 font-size: 10px;

             }

             & .lead {
                 font-size: 7px;
             }

             & .text {
                 padding: 0px;

                 & span {
                     font-size: 10px;
                 }
             }
         }

     }

     .ramadan1 {
         h1 {
             font-size: 23px;
         }

         p {
             font-size: 12px;
         }

         & .card {
             & .card-body {
                 & .custom-caption {
                     position: absolute;
                     background: #e0e0e0;
                     color: #333;
                     font-weight: bold;
                     padding: 3px 3px;
                     border-radius: 20px;
                     display: inline-block;
                     margin: -20px auto;
                     left: 50%;
                     transform: translateX(-38px);
                     margin: 21px auto !important;
                 }
             }
         }
     }

     .Items {
         & .card {
             & img {
                 width: 100%;
                 height: 120px !important;
                 object-fit: cover;
             }
         }
     }

     .Home {
         & .text {
             & h1 {
                 font-size: 31px;

             }
         }
     }


 }

 /* End media */



 /* start Anmashn */
 @keyframes up-and-down {

     0%,
     100% {
         top: 0;
     }

     50% {
         top: -40px;
     }
 }

 @keyframes bouncing {

     0%,
     10%,
     20%,
     50%,
     80%,
     100% {
         transform: translateY(0);
     }

     40%,
     60% {
         transform: translateY(-15px);
     }
 }

 @keyframes cardIn {
     0% {
         opacity: 0;
         transform: translateY(18px) scale(0)
     }

     100% {
         opacity: 1;
         transform: translateY(0) scale(1)
     }
 }



 /* End Anmashan */
 /* Satrt Ramadan-items */
 .Ramadan-items {
     position: relative;
     background-size: cover;
     background-repeat: no-repeat;
     background-attachment: fixed;
     background-image: url(../image/pexels-pixabay-236804-compressed.jpg);

     .text {
         padding-bottom: 80px;

         h1 {
             color: white;
             font-size: 50px;
             font-weight: bold;

         }

         p {
             color: #777;
             font-weight: normal;
             font-size: 17px;
         }
     }

     .box {
         padding: 15px;
         background-color: #ffffffbf;
         box-shadow: 0px 12px 20px 0px rgb(0 0 0 /22%), 0px 2px 4px 0px rgb(0 0 0 /20%);
         ;
         width: fit-content;

         .images {
             position: relative;
             overflow: hidden;

         }

         .images:hover img {
             transform: rotate(15deg) scale(1.5, 1.5);
         }

         img {
             max-width: 100%;
             transition: var(--main-transition);
         }
     }
 }

 /* End Gallery */