/*******GLOBALS*******************************/
*{
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
    text-decoration: none;
}

html {
    scroll-behavior: smooth;
}

/*******ROOT VARIABLES*************/
:root{
  
--color_blue : #3f93f1;
--color_primary: #007bff;;
--color_dark1: #000000;
--color_dark2: #2c2c2c;
--color_white: #ffffff;
--color_light1: #dfdfdf;
--color_light2: #c4c4c4;
--color_darkgray: #686868;
--color_honeyyellow: #ffb300;
--color_warmorange: #FFC02E;

        --secondary: #1f2937;
  --bg: #ffffff;
      --muted: #667085;
      --accent: #c9963b; /* gold */
      --accent-600: #b07f2f;
      --card: #fff;
      --shadow: 0 8px 20px rgba(15,23,42,0.08);
      --radius: 14px;
      --glass: rgba(255,255,255,0.6);
      --max-width: 1100px;
}


/*-----------login style--------*/
.login-container{
  background: url('../../images/resource/hero.jpg') no-repeat center center/cover;
   display: flex;
   flex-direction: column;
   justify-content: center; 
   align-items: center;
   min-height: 100vh;
}

.login-container img{
    height: 150px;
    width: 150px;
    margin-bottom: 20px;
}


.login-container .login-wrapper{
    width: 420px;
    background-color: transparent;
    border: 2px solid rgba(255, 255, 255, .2);
    backdrop-filter: blur(10px);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.205);
    color: var(--color_white);
    border-radius: 10px;
    padding: 30px 40px;
}


.login-container .login-wrapper h1{
    font-size: 36px;
    text-align: center;
}


.login-container .login-wrapper .input-box{
    position: relative;
    width: 100%;
    height: 52px;
    display: flex;
    align-items: center;
    margin: 22px 0;
}

/* shared styles */
.login-container .login-wrapper .input-box input,
.login-container .login-wrapper .input-box select{
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 14px;
    font-size: 15px;
    color: var(--color_white);
    padding: 0 44px 0 16px;
    transition: 
        border-color .2s ease,
        background-color .2s ease,
        box-shadow .2s ease;
}

/* placeholder */
.login-container .login-wrapper .input-box input::placeholder{
    color: rgba(255,255,255,.55);
}

/* focus state */
.login-container .login-wrapper .input-box input:focus,
.login-container .login-wrapper .input-box select:focus{
    background: rgba(255,255,255,0.06);
    border-color: rgba(255,255,255,.6);
    box-shadow: 0 0 0 3px rgba(255,255,255,.08);
}

/* select arrow fix */
.login-container .login-wrapper .input-box select{
    appearance: none;
    cursor: pointer;
    color: black;
}



/* optional icon support */
.login-container .login-wrapper .input-box i{
    position: absolute;
    right: 16px;
    font-size: 18px;
    color: rgba(255,255,255,.65);
    pointer-events: none;
}

/* disabled state */
.login-container .login-wrapper .input-box input:disabled,
.login-container .login-wrapper .input-box select:disabled{
    opacity: .6;
    cursor: not-allowed;
}




.login-container .login-wrapper .input-box input::placeholder{
    color: var(--color_white);
}



.login-container .login-wrapper .input-box i{
    position: absolute;
    right: 20px;
    font-size: 20px;
}


.login-container .login-wrapper .remember-forgot{
    display: flex;
    justify-content: space-between;
    font-size: 14.5px;
    margin: -15px 0 15px;
}


.login-container .login-wrapper .remember-forgot label input{
    accent-color: var(--color_white);
    margin-right: 3px;

}


.login-container .login-wrapper .remember-forgot a{
    color: var(--color_white);
    
}


.login-container .login-wrapper .remember-forgot a:hover{
    text-decoration: underline;
    
}



.login-container .login-wrapper .btn{
    width: 100%;
    height: 45px;
    background-color: var(--color_white);
    border: none;
    outline: none;
    border-radius: 40px;
    box-shadow: 0 0 10px rgba(0, 0, 0, .1);
    cursor: pointer;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
}

/*******sidebar*************/
.sidebar{
position: fixed;
top: 0;
left: 0;
height: 100%;
width: 260px;
background-color: var(--color_warmorange);
transition: all 0.5s ease;
z-index: 100;
}


.sidebar.close{
    width: 78px;
}



/*******logo*************/
.logo-box{
height: 60px;
width: 100%;
display: flex;
align-items: center;
color: var(--color_dark1);
transition: all .3s ease;
}

.logo-box:hover{
    color: var(--color_dark2);
}


.logo-box i{
    font-size: 30px;
    text-align: center;
    height: 50px;
    min-width: 78px;
    line-height: 50px;
    transition: all .5s ease;
}


.sidebar.close .logo-box i{
    transform: rotate(360deg);
}


.logo-name{
    font-size: 25px;
    font-weight: 600;
}




/*******sidebar list*************/
.sidebar-list{
    height: 100%;
    padding: 30px 0 150px 0;
    overflow: auto;
}

.sidebar-list::-webkit-scrollbar{
    display: none;
}


.sidebar-list li{
    transition: all .5s ease;
}

.sidebar-list li:hover{
    background-color: var(--color_honeyyellow);
}



.sidebar-list li .title{
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all .5s ease;
}

.sidebar-list li.active .title{
    background-color: var(--color_warmorange);
}


.sidebar-list li.active .bx-chevron-down{
    transition: all .5s ease;
    transform: rotate(180deg);
}



.sidebar-list li .title i{
    height: 50px;
    min-width: 78px;
    text-align: center;
    line-height: 50px;
    color: var(--color_dark1);
    font-size: 20px;
}


.sidebar-list li .title .name{
    font-size: 18px;
    font-weight: 500;
    color: var(--color_dark1);

}


.sidebar-list li .sub-menu{
    display: none;
    transition: all .5s ease;
}

.sidebar-list li.dropdown.active .sub-menu{
    width: 100%;
    height: unset;
    display: flex;
    flex-direction: column;
    padding: 6px 6px 14px 80px;
    background-color: var(--color_honeyyellow);
}


.sub-menu .link{
    color: var(--color_dark1);
    font-size: 15px;
    padding: 5px 0;
    transition: all .5s ease;
}


.sub-menu .link:hover{
    color: var(--color_dark2);
}


.submenu-title{
    display: none;
}


/*******submenu close*************/
.sidebar.close .logo-name,
.sidebar.close .title .name,
.sidebar.close .title .bx-chevron-down
{
    display: none;
}



.sidebar.close .sidebar-list{
    overflow: visible;
}

.sidebar.close .sidebar-list li{
    position: relative;
}


.sidebar.close .sidebar-list li .sub-menu{
    position: absolute;
    left: 100%;
    top: -10px;
    margin-top: 0;
    padding: 10px 20px;
    border-radius: 0 6px 6px 0;
    height: max-content;
    width: max-content;
    display: none;
    transition: all .5s ease;
    pointer-events: none;
}


.sidebar.close .sidebar-list li:hover .sub-menu{
    display: flex;
    flex-direction: column;
    top: 0;
    pointer-events: initial;
    background-color: var(--color_honeyyellow);
}


.sidebar.close .submenu-title{
    display: block;
    font-size: 18px;
    color: var(--color_dark1);
}










/*-------------home section----------------------*/
.home{
    position: relative;
    background-color: #f5f5f5;
    left: 260px;
    width: calc(100% - 260px);
    min-height: 100vh;
    transition: all .5s ease;
}


/*------- navbar section ----------------*/
.home .header{
    display: flex;
    height: 60px;
    padding: 0 15px 0 10px;
    background-color: var(--color_white);
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 1rem 1rem rgba(0, 0, 0, 0.2);
}



.home .header .toggle-sidebar{
    height: 60px;
    padding: 8px 0;
    display: flex;
    align-content: center;
    width: fit-content;
    cursor: pointer;
}

.home .header .toggle-sidebar i{
    font-size: 35px;
    color: var(--color_dark1);
    
}


.sidebar.close ~ .home{
    left: 78px;
    width: calc(100% - 78px);
}



.home .header .header-icons{
    display: flex;
    gap: 10px;
    font-size: 25px;
    cursor: pointer;

}


.nav-profile{
    position: relative;
    display: inline-block;
    cursor: pointer;
}


.nav-profile:hover > ul{
    display: inline-block;
}


.nav-profile ul{
    position: absolute;
    top: 100%;
    right: 0;
    box-shadow: 0 3rem 3rem rgba(0, 0, 0, 0.4);
    display: none;
    transition: var(--transition);
}

.nav-profile ul li a{
    padding: 1rem;
    color: #333;
    background: var(--color_white);
    display: block;
    width: 100%;
    font-size: 1rem;
}


.nav-profile ul li:last-child a{ 
    background: red;
    color: #333;
}


/*-------------------Main container------------------------*/
.main-container{
    display: flex;
    flex-direction: column;
    padding: 15px;
}

.main-container .main-title{
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #333;
    margin: 10px 0;
}

.main-container .main-title a{
    color: teal;
    border: 1px solid teal;
    border-radius: 10px;
    padding: 10px;
    font-weight: 600;
    transition: all 1s ease;
}

.main-container .main-title a:hover{
    background-color: teal;
    color: white;
}

.main-container .card-widgets{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 15px 0px;
}


.main-container .card-widgets .card{
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    padding: 25px;
    background-color: var(--color_white);
    box-sizing: border-box;
    border-radius: 10px;
    box-shadow: 0 6px 7px -4px rgba(0, 0, 0, 0.3);
}


.card-widgets .card:first-child{
    border-left: 7px solid #246dec;
}

.card-widgets .card:nth-child(2){
    border-left: 7px solid #f5b74f;
}

.card-widgets .card:nth-child(3){
    border-left: 7px solid #367952;
}

.card-widgets .card:nth-child(4){
    border-left: 7px solid #cc3c43;
}

.card-widgets .card .card-inner{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.card-widgets .card .card-inner .card-text{
    font-size: 18px;
}

.card-widgets .card .card-inner > i{
    font-size: 35px;
}

.card-widgets .card .card-counter{
    font-size: 20px;
    font-weight: 600;
    margin-top: 10px;
    color: #333;
}


.text-red{
    color:#cc3c43;
}
.text-blue{
    color:#246dec;
}
.text-orange{
    color:#f5b74f;
}
.text-green{
    color:#367952;
}





/*------------------------table section--------------------*/
.table-container {
    border-radius: 5px;
    padding: 15px;
    box-shadow: 0 1rem 1rem rgba(0, 0, 0, 0.2);
    margin: 20px 0;
    overflow-x: auto;
    background-color: var(--color_white);
  }


  .table-description {
    font-size: 1.1em;
    margin-bottom: 15px;
    color: #333;
    font-weight: bold;
  }
  
  .table-wrapper {
    width: 100%;
    overflow-x: auto; /* Important: this handles responsiveness */
  }

  .responsive-table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed; /* 🛠️ This is critical: fix the table layout */
    min-width: 600px; /* Enforces a minimum table width */
  }
  
  .responsive-table th, .responsive-table td {
    padding: 12px;
    text-align: left;
    border: 1px solid #ddd;
    overflow: hidden;
    text-overflow: ellipsis; /* For clean text overflow */
    white-space: nowrap;      /* Keep content in one line */
  }
  
  .responsive-table th {
    background-color: #f4f4f4;
  }
  

  .table-container .table-control{
    display: flex;
    margin: 10px 0;
    gap: 10px;
    align-items: center;
    justify-content: space-between;
  }

  .table-container .search-box {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    min-width: 300px;

  }

  .table-container .search-box i{
    color: #ccc;
    font-size: 1.2rem;
  }


  .table-control .table-action-btn{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
  }

  .table-control .table-action-btn .btn-icon{
    color: #3d3d3d;
    font-size: 2rem;
    cursor: pointer;

  }

  .table-control .table-action-btn .btn-icon:hover{
    color: #5e5e5e;
  }



  .table-container .search-box input {
    padding: 8px;
    width: 100%;
    border: none;
    outline: none;
  }


  /*-----------------------Reports Style ----------------------------------*/
  .table-control{
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .table-control .filter-box{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    width: 100%;
    gap: 10px;
  }
  

  .table-control .filter-box .search-box{
    display: flex;
    align-items: center;
    min-width: 200px;
    margin: 0;
  }



  .table-container table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
  }

  .table-container thead {
    background-color: #f5f5f5;
    cursor: pointer;
    font-size: 14px;
  }

  .table-container th, td {
    text-align: left;
    padding: 10px;
    font-size: 14px;
    border: 1px solid #ddd;
  }

  .table-container tbody tr:hover {
    background-color: #f1f1f1;
  }

  .table-container.dataTable{
    padding: 10px;
    background-color: var(--color_white);
  }

  .table-container.dataTable th, td{
    white-space: nowrap;
  }


  .table-container.dataTable td a {
    margin-right: 5px;
    border: none;
    border-radius: 3px;
    cursor: pointer;
  }

  .table-container.dataTable td a i {
    font-size: 18px;
  }

  .table-container.dataTable tr {
    height: 50px;
  }

  .dataTable td .table-action-control{
    display: flex;
   
    align-items: center;
  }

  .dataTable td .table-action-control a{
    padding: 10px;
  }
  
  .table-container.dataTable td a:hover {
    opacity: 0.85;
  }
  
  .table-container.dataTable td a:last-child {
    background-color: #f44336;
    color: white;
  }

  .table-container.dataTable td a:first-child {
    background-color: #4CAF50;
    color: white;
  }
  
  .table-container.dataTable td .table-action-control a:nth-child(2):nth-last-child(2) {
    background-color: orange;
    color: white;
  }


 


  .pagination {
    margin-top: 15px;
    text-align: center;
  }


  .pagination button {
    padding: 10px 15px;
    font-size: 14px;
    margin: 0 3px;
    border: none;
    background-color: #eee;
    cursor: pointer;
    border-radius: 4px;
  }

  .pagination button.active {
    background-color: #2196F3;
    color: white;
  }

  .pagination button:hover {
    background-color: #ddd;
    color: #333;
  }

  /*----------------------------basic form style --------------------*/
  .form-container {
    min-width: 100%;
    margin: 0 auto;
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  }


  .form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
  }

  .form-group {
    display: flex;
    flex-direction: column;
  }

  .form-group label {
    font-size: 15px;
    font-weight: bold;
    margin-bottom: 5px;
    color: var(--color_darkgray)
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
  }


.item-variation{
border: 1px dashed rgb(189, 189, 189);
padding: 10px;
}

.item-variation .variation-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px dashed rgb(189, 189, 189);
  padding: 10px;
  margin-bottom: 10px;
  margin-top: 10px;
}

.item-variation .variation-group input{
  max-width: 110px;
}


.item-variation .variation-group .remove-variation{
  display: flex;
  align-items: center;
  background-color: rgb(189, 189, 189);
  padding: 10px;
  font-size: 18px;
  height: 30px;        
  line-height: 0;      
  cursor: pointer;
  display: none;
}


.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border: 1px solid var(--color_warmorange);
  outline: none;
}


  .form-group input[type="checkbox"] {
    margin-right: 6px;
    margin-bottom: 5px;
  }
  .form-group label input[type="checkbox"] {
    margin-right: 4px;
  }

  .form-actions {
    text-align: center;
    margin-top: 30px;
  }

  .form-actions button {
    padding: 0.75rem 2rem;
    font-size: 16px;
    background: #007bff;
    border: none;
    color: #fff;
    border-radius: 5px;
    cursor: pointer;
  }

  .add-variation-btn{
    padding: .5rem;
    font-size: 14px;
    background: transparent;
    border: 1px solid teal;
    color: teal;
    border-radius: 5px;
    cursor: pointer;  
  }

  .add-variation-btn:hover{
    background: teal;
    color: white;
  }

  .form-actions button:hover {
    background: #0056b3;
  }



  
  
  /*-----------------------Settings Style ----------------------------------*/
  .tabs {
    display: flex;
    border-bottom: 1px solid #ccc;
    margin-bottom: 20px;
  }

  .tab {
    padding: 10px 20px;
    cursor: pointer;
    background: #eee;
    border-radius: 5px 5px 0 0;
    margin-right: 5px;
  }

  .tab.active {
    background: white;
    border-bottom: 2px solid white;
    font-weight: bold;
  }

  .tab-content {
    display: none;
  }

  .tab-content.active {
    display: block;
  }

  .form-group {
    margin-bottom: 15px;
  }

  label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
  }

  input[type="text"], select {
    width: 100%;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
  }

  .toggle {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
  }

  .switch input {
    opacity: 0;
    width: 0;
    height: 0;
  }

  .slider {
    position: absolute;
    cursor: pointer;
    top: 0; left: 0;
    right: 0; bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 24px;
  }

  .slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
  }

  input:checked + .slider {
    background-color: #4CAF50;
  }

  input:checked + .slider:before {
    transform: translateX(26px);
  }

  .settings-buttons {
    margin-top: 20px;
  }

  .settings-buttons button {
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    background: #007bff;
    color: white;
    cursor: pointer;
    margin-right: 10px;
  }

  .settings-buttons button.reset {
    background: #dc3545;
  }

  .subscription-content, .about-content {
    display: flex;
    flex-direction: column;
    line-height: 40px;
    padding: 10px;
  }

  .subscription-content .subscription-actions{
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
  }


  .subscription-content .subscription-actions .renew-btn{
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    background: #007bff;
    color: white;
    cursor: pointer;
  }

   .subscription-content .subscription-actions .renew-btn{
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    background: #007bff;
    color: white;
    cursor: pointer;
  }

  .subscription-content .status{
    background-color: rgba(0, 128, 0, 0.589);
    color: white;
    padding: 10px;
    margin-bottom: 10px;
  }


.logo-preview {
  margin-top: 12px;
  width: 140px;
  height: 140px;
  border-radius: 12px;
  border: 2px dashed #ddd;
  background: #fafafa;
  display: flex; /* 👈 hidden initially */
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.logo-preview img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.message{
  padding: 20px;
  width: 100%;
  text-align: center;
  font-weight: bold;
  border-radius: 6px;
}

.fade-out{
  opacity: 0;
  transition: opacity 1s ease-out;
}

.message.success {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.message.error {
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

#alert{
  padding: 20px;
  width: 100%;
  text-align: center;
  font-weight: bold;
  border-radius: 6px;
  display: none;
}

#alert.success{
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

#alert.error{
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}


.spinner{
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 9999;
}

.loader {
  border: 4px solid #f3f3f3;
  border-top: 4px solid #3498db;
  border-radius: 50%;
  width: 200px;
  height: 200px;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

  /*---------------- Modal styles ----------------------*/
  .modal {
    display: none;
    position: fixed;
    left: 0; top: 0;
    width: 100%; height: 100%;
    background-color: rgba(0,0,0,0.6);
    justify-content: center;
    align-items: center;
    z-index: 1000;
  }
  
  .modal-content {
    background: white;
    padding: 30px 40px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    position: relative;
    max-width: 400px;
    width: 90%;
  }
  
  .modal-content .icon {
    font-size: 48px;
    color: #f39c12;
    margin-bottom: 15px;
  }
  
  .modal-content p {
    font-size: 18px;
    margin-bottom: 20px;
  }
  
  .modal-content .button-group {
    display: flex;
    justify-content: center;
    gap: 15px;
  }
  
  .modal-content .btn {
    padding: 10px 20px;
    border: none;
    font-weight: bold;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  .modal-content .btn-danger {
    background-color: #e74c3c;
    color: white;
  }
  .modal-content .btn-danger:hover {
    background-color: #c0392b;
  }
  
  .modal-content .btn-secondary {
    background-color: #bdc3c7;
    color: #2c3e50;
  }

  .modal-content .btn-secondary:hover {
    background-color: #95a5a6;
  }

 
    *{box-sizing:border-box}
    html,body{height:100%;margin:0;font-family:Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;}
    body{
      background:linear-gradient(180deg,#fbfbfb 0%, #fff 100%);
      color:#0f172a;
      -webkit-font-smoothing:antialiased;
      -moz-osx-font-smoothing:grayscale;
      line-height:1.45;
      padding-bottom:60px;
    }

    .container{max-width:var(--max-width);margin:0 auto;padding:20px;}

/* ---------- HEADER ---------- */
    header.site-header{
      background:var(--color_warmorange);
      position:sticky;
      top:0;
      z-index:60;
      border-bottom:1px solid rgba(15,23,42,0.04);
      backdrop-filter: blur(6px);
    }

    .site-top{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
      width: 100%;
      margin:0 auto;
      padding:14px 20px;
    }

    .brand{
      display:flex;
      gap:12px;
      align-items:center
    }

    .brand .logo {
      width:44px;
      height:44px;
      border-radius:10px;
      background:linear-gradient(135deg,var(--accent),var(--accent-600));
      display:flex;
      align-items:center;
      justify-content:center;
      color:white;
      font-weight:700;
      font-size:18px;
      box-shadow:var(--shadow);
    }
    .brand h1{
      font-size:18px;
      margin:0
    }
    .socials{
      display:flex;
      gap:10px;
      align-items:center
    }

    .socials a{
      color:var(--color_dark1);
      text-decoration:none;font-size:18px;padding:8px;border-radius:8px;transition:all .18s}
    .socials a:hover{color:var(--accent);transform:translateY(-2px)}

/* ---------- HERO ---------- */
   
    .hero .hero-img{
      width:100%;
      height:340px;
      object-fit:cover;
      display:block;
      filter:contrast(1.02) brightness(.78);
    }
    .hero .overlay{
      position:absolute;
      inset:0;
      display:flex;
      align-items:center;
      justify-content:center;
      padding:30px;
    }
    
    .hero-text{
      background: linear-gradient(180deg, rgba(255, 255, 255, 0.233), rgba(255,255,255,0.02));
      padding:26px 28px;
      border-radius:12px;
      text-align:center;
      color:#fff;
      max-width:900px;
      box-shadow: 0 8px 30px rgba(2,6,23,0.35);
      transform: translateY(6px);
      transition: transform .6s cubic-bezier(.2,.9,.2,1), opacity .5s;
      opacity:0; /* animate in */
    }
    .hero-text.show{transform:none;opacity:1}
    .hero-text h2{font-size:28px;margin:0 0 8px}
    .hero-text p{margin:0;color:rgb(255, 255, 255)}

/* ---------- INFO BAR ---------- */
    .info-row{
      display:flex;
      align-items:center;
      justify-content:space-between;
      padding:18px 0;
      gap:12px
    }

    .hours{
      display:flex;
      gap:12px;
      align-items:center;
      color:var(--muted);
      font-size:14px
    }

    .hours i{
      font-size:20px;
      color:var(--color_warmorange)
    }

    .search-wrap{display:flex;align-items:center;gap:12px}
    .search-input{display:flex;align-items:center;background:#fff;border-radius:10px;padding:8px 12px;box-shadow:var(--shadow);border:1px solid rgba(15,23,42,0.03)}
    .search-input input{border:0;outline:0;font-size:14px;padding:6px 8px;width:220px}
    .search-icon{font-size:20px;color:var(--muted);cursor:pointer}

/* ---------- CATEGORIES ---------- */
    .categories{
      padding:14px 0;
      display:flex;
      flex-direction:column;
      gap:12px}

    .category-scroll{
      display:flex;
      gap:10px;
      overflow:auto;
      padding-bottom:6px;
      scroll-snap-type:x mandatory;
      -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none; 
    }

    .category-btn{
      flex:0 0 auto;
      scroll-snap-align:center;
      padding:10px 16px;
      border-radius:999px;
      border:1px solid rgba(15,23,42,0.06);
      background:#fff;
      color:var(--muted);
      cursor:pointer;
      font-weight:600;
      transition:all .18s;box-shadow: 0 6px 18px rgba(11,15,30,0.04);
    }
    .category-btn:hover{
      transform:translateY(-4px)
    }

    .category-btn.active{
      background:linear-gradient(90deg,var(--accent),var(--color_warmorange));
      color:#fff;
      border-color:transparent;
      box-shadow: 0 10px 30px rgba(192,147,59,0.16);
    }

/* ---------- MENU GROUPS ---------- */
    .menu-section{margin-top:6px}
    .group-title{
      display:flex;
      align-items:center;
      justify-content:space-between;
      padding:12px 0;
      font-size:20px;
      font-weight:700;
      color:#0b1220
    }

    .cards{
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(4, 1fr); /* 4 per row on large screens */
    }

    .cards .card img {
    width: 100%;
    height: 180px;       /* fixed height */
    object-fit: cover;   /* keeps image clean without distortion */
    border-radius: 10px 10px 0 0;
}

.variation-list {
  margin-top: 10px;
  border-top: 1px dashed rgba(0,0,0,0.08);
  padding-top: 8px;
}

.variation-row {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  padding: 4px 0;
}

.variation-name {
  color: #333;
}

.variation-price {
  font-weight: 600;
}


/* ---------- CARD ---------- */
    .card{
      width: 100%;
      background:var(--card);
      border-radius:12px;
      overflow:hidden;
      border:1px solid rgba(12,18,30,0.04);
      transition:transform .22s ease, box-shadow .22s ease;
      cursor:pointer;
    }

    .card:hover{
      transform:translateY(-6px);
      box-shadow:var(--shadow);
    }

    .card .thumb{width:100%;height:150px;object-fit:cover;display:block}
    .card .meta{padding:12px 14px}
    .card .meta h4{margin:0 0 6px;font-size:16px}
    .card .meta p{margin:0;color:var(--muted);font-size:13px}
    .card .meta .price{margin-top:10px;font-weight:700;color:#0f172a}



/* ---------- ABOUT ---------- */
    .about{
      margin-top:18px;
      padding:18px;
      border-radius:12px;
      background:linear-gradient(180deg,#fff,#fff);
      box-shadow:var(--shadow);
      border:1px solid rgba(15,23,42,0.04);
    }
    .about h3{margin:0 0 8px}
    .about p{color:var(--muted);line-height:1.6}

/* ---------- FOOTER ---------- */
    footer.site-footer{
      margin-top:28px;
      padding:22px;
      text-align:center;
      background:var(--color_warmorange);
      color:var(--muted)}
    footer.site-footer p{margin:0;font-size:14px}

/* ---------- MODAL ---------- */
    .modal{
      position:fixed;
      inset:0;
      background:rgba(3,7,18,0.6);
      display:none;
      align-items:center;
      justify-content:center;
      padding:20px;
      z-index:90
    }

    .modal.show{display:flex}
    .modal-card{
      max-width:760px;
      width:100%;
      background:#fff;
      border-radius:12px;
      padding:18px;
      display:grid;
      grid-template-columns:1fr 1fr;
      gap:18px;
    
    }
    .modal-card img{width:100%;height:320px;object-fit:cover;border-radius:8px}
    .modal-info h3{margin:0 0 8px}
    .modal-info .desc{color:var(--muted);margin-bottom:12px}
    .modal-close{position:absolute;right:20px;top:20px;color:#fff;font-size:28px;cursor:pointer}

/* small screens */
    @media (max-width:900px){
      .modal-card{grid-template-columns:1fr;padding:12px}
      .hero .hero-img{height:260px}
    }
    @media (max-width:720px){
      .site-top{padding:12px}
      .brand h1{font-size:16px}
      .hero-text h2{font-size:20px}
      .hero-text p{font-size:14px}
      .promo-row{grid-template-columns:1fr}
      .search-input input{width:120px}
    }
    @media (max-width:420px){
      .search-input input{display:none}
      .brand h1{display:none}
      .category-btn{padding:8px 12px}
    }

    /* Medium screens (tablets) — 2 per row */
/* Smaller screens ≥360px — 2 cards per row */
@media (max-width: 900px) {
  .cards {
    grid-template-columns: repeat(2, minmax(150px, 1fr));
  }
}

/* Very small screens <360px — 1 card per row */
@media (max-width: 359px) {
  .cards {
    grid-template-columns: 1fr;
  }
}

/* Mobile — 1 per row */
@media (max-width: 300px) {
    .cards {
        grid-template-columns: 1fr;
    }
}
    /* small helper animations */
    .fade-up{opacity:0;transform:translateY(8px);transition:all .5s ease}
    .fade-up.show{opacity:1;transform:none}


  



    /* --- Header --- */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background: var(--card);
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    position: sticky;
    top:0;
    z-index:100;
}

header .nav-links a {
    padding: 0 10px; /* adds horizontal spacing */
}

/* Group logo + hamburger */
.header-left {
    display: flex;
    align-items: center;
    gap: 15px;
}


.logo-img{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
}


.logo-img img{
  height: 100%;
}

header .logo { 
    font-size: 24px; 
    font-weight:bold; 
    color: var(--color_warmorange); 
}


header .nav-links a { 
  color: var(--secondary); 
  text-decoration:none; 
  font-weight:500; 
  transition:0.3s; 
}

.hamburger {
    display: none;
    font-size: 28px;
    cursor: pointer;
}

/* Mobile Styles */
@media(max-width: 768px) {
    
    header .logo { 
    font-size: 18px; 

}
    
    .header-left {
    gap: 5px;
}

    .hamburger {
        display: block;
    }

    .nav-links {
        display: none; /* hidden by default */
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        flex-direction: column;
        background: var(--card);
        padding: 20px 0;
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        z-index: 99;
    }

    .nav-links a {
        display: flex;
        margin: 10px 0;
        text-align: center;
    }

    .nav-links.active {
        display: flex !important; /* make sure toggle works */
    }
    
    header .social-links a { 
        margin-left:0px; 
        font-size:14px;
    
        
    }
}


    
    header .nav-links a:hover { color: var(--color_warmorange); }
    header .social-links a { margin-left:10px; font-size:20px; color: var(--secondary); transition:0.3s; }
    header .social-links a:hover { color: var(--color_warmorange); }

    /* --- Hero Banner --- */
    .hero {
        position: relative;
        height: 70vh;
        display:flex;
        align-items:center;
        justify-content:center;
        text-align:center;
        color:white;
    }

    .hero.homepage-hero{
      background: url('../../images/resource/hero.jpg') no-repeat center center/cover;
    }

    .hero::after {
        content:"";
        position:absolute;
        top:0; left:0;
        width:100%; height:100%;
        background: rgba(0, 0, 0, 0.144);
    }
    .hero-content {
        position:relative;
        z-index:1;
        max-width:700px;
        animation: fadeInUp 1s ease forwards;
    }
    .hero-content h1 { font-size:48px; margin-bottom:20px; }
    .hero-content p { font-size:18px; margin-bottom:20px; }

    /* --- About Section --- */
    .section { padding:80px 20px; max-width:1200px; margin: auto; }
    .section h2 { text-align:center; font-size:32px; margin-bottom:40px; color: var(--color_warmorange); }
    .about-content { display:flex; gap:40px; align-items:center; flex-wrap:wrap; }
    .about-content .content-img{
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 30px;
      align-items: center;
    }
    .about-content img { width:300px; border-radius:12px; }
    .about-text { flex:1; }

    /* --- Features / Pricing --- */
    .features { display:grid; grid-template-columns: repeat(auto-fit, minmax(250px,1fr)); gap:30px; }
    .feature-card { background: var(--card); padding:30px; border-radius:12px; box-shadow:0 4px 12px rgba(0,0,0,0.05); transition:0.3s; text-align:center; }
    .feature-card:hover { transform: translateY(-5px); box-shadow:0 6px 20px rgba(0,0,0,0.08); }
    .feature-card i { font-size:36px; color: var(--primary); margin-bottom:15px; }
    .feature-card h3 { font-size:20px; margin-bottom:10px; }
    .feature-card p { font-size:14px; color: var(--muted); }
    
    /* Section Styling */
#pricing {
    padding: 80px 20px;
    max-width: 1200px;
    margin: auto;
    text-align: center;
}

#pricing h2 {
    font-size: 36px;
    color: var(--color_warmorange);
    margin-bottom: 50px;
}

/* Cards Grid */
.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    justify-items: center;
}

/* Individual Card */
.pricing-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 30px 20px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
    max-width: 320px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 36px rgba(0,0,0,0.12);
}

/* Card Header */
.card-header i {
    font-size: 40px;
    color: #ff6b6b;
    margin-bottom: 15px;
}

.card-header h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.card-header .price {
    font-size: 28px;
    font-weight: bold;
    color: #1f2937;
}

.card-header .price span {
    font-size: 16px;
    color: #6b7280;
}

/* Features List */
.features-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    text-align: left;
    width: 100%;
}

.features-list li {
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
    color: #6b7280;
    font-size: 15px;
}

.features-list li:last-child {
    border-bottom: none;
}

/* Buttons */
.btn {
    padding: 12px 25px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    transition: 0.3s;
    width: 80%;
    margin-top: 15px;
}

.btn:hover {
    opacity: 0.9;
}

.btn-primary {
    background: #ff6b6b;
    color: #fff;
}

.btn-free {
    background: #6b7280;
    color: #fff;
}

.btn-premium {
    background: #ff9900;
    color: #fff;
}

/* Plan colors */
.pricing-card.free .card-header i { color: #9ca3af; } /* gray star for free */
.pricing-card.standard .card-header i { color: #ff6b6b; } /* pink crown */
.pricing-card.premium .card-header i { color: #f59e0b; } /* gold diamond */

/* Responsive */
@media(max-width:768px) {
    .pricing-cards {
        grid-template-columns: 1fr;
    }

    .pricing-card {
        max-width: 100%;
    }
}


    /* --- Clients --- */
    .clients { display:flex; flex-wrap:wrap; justify-content:center; gap:40px; align-items:center; }
    .clients img { height:60px; opacity:0.8; transition:0.3s; }
    .clients img:hover { opacity:1; }

    /* --- Testimonials --- */
    .testimonials { display:grid; grid-template-columns: repeat(auto-fit, minmax(250px,1fr)); gap:30px; }
    .testimonial-card { background: var(--card); padding:20px; border-radius:12px; box-shadow:0 4px 12px rgba(0,0,0,0.05); text-align:center; }
    .testimonial-card p { font-style:italic; color: var(--muted); margin-bottom:10px; }
    .testimonial-card h4 { font-weight:600; }

    /* --- Contact Section --- */
    .contact form { display:flex; flex-direction:column; gap:20px; max-width:500px; margin:auto; }
    .contact input, .contact textarea { padding:12px; border-radius:8px; border:1px solid #ccc; width:100%; }
    .contact button { padding:12px; border:none; border-radius:8px; background:var(--color_primary); color:white; cursor:pointer; transition:0.3s; }
    .contact button:hover { background:#ff4c4c; }

    /* --- Footer --- */
    footer { background: var(--card); text-align:center; padding:40px 20px; margin-top:60px; font-size:14px; color: var(--muted); }

    /* --- Animations --- */
    @keyframes fadeInUp {
        0% {opacity:0; transform: translateY(30px);}
        100% {opacity:1; transform: translateY(0);}
    }

    /* --- Responsive --- */
    @media(max-width:768px){
        .about-content { flex-direction:column; text-align:center; }
        .about-content img { width:100%; max-width:300px; }
        .hero-content h1 { font-size:32px; }
    }





/*---------------footer section----------------------------*/
.footer {
    font-size: 12px;
    width: 100%;
    padding: 1rem 0;
    text-align: center;
    background-color: var(--color_white); /* light background, you can change */
    position: relative; /* you can set fixed or absolute if needed */
    bottom: 0;
}

.footer-link {
    color: #333; /* dark text color */
    font-weight: 600;
    
}




/******************* RESPONSIVE / BREAKPOINTS *******/
@media (max-width: 1080px){
   
 

    /*-------cards----------*/
    .main-container .card-widgets{
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    /*-------charts responsive----------*/
    .charts{
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 10px;
    }


    /*---------------basic form reponsive---------*/
    .form-grid {
        grid-template-columns: 1fr 1fr;
      }

      /*-------------table control responsive --------------------*/
.table-control .filter-box .search-box{
    min-width: 100%
    }
    
    .table-control .filter-box .report-dropdown{
        min-width: 100%
        }
        
    
    .table-control .filter-box .date-picker{
        width: 100%;
      }
    
      .table-control .filter-box .date-picker button{
        width: 100%;
        margin-bottom: 5px;
      }
    
      .table-control .filter-box .filter-group input, .report-dropdown select{
        min-width: 100%
      }
    
    .table-control .filter-box .date-picker .filter-group{
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
      }

      .table-control{
        flex-direction: column;
      }
}



/******************* for small devices *******/
@media screen and (max-width: 600px){
    .sidebar {
        width: 78px;
    }

    .home {
        left: 78px;
        width: calc(100% - 78px);
    }

    .home .header .toggle-sidebar{
        display: none;
    }

    .home .header{
        justify-content: flex-end;
    }

    .sidebar .logo-name,
    .sidebar .title .name,
    .sidebar .title .bx-chevron-down
    {
        display: none;
    }



.sidebar .sidebar-list{
    overflow: visible;
}

.sidebar .sidebar-list li{
    position: relative;
}


.sidebar .sidebar-list li .sub-menu{
    position: absolute;
    left: 100%;
    top: -10px;
    margin-top: 0;
    padding: 10px 20px;
    border-radius: 0 6px 6px 0;
    height: max-content;
    width: max-content;
    display: none;
    transition: all .5s ease;
    pointer-events: none;
}


.sidebar.close .sidebar-list li:hover .sub-menu{
    display: flex;
    flex-direction: column;
    top: 0;
    pointer-events: initial;
    
}



.sidebar .submenu-title{
    display: block;
    font-size: 18px;
    color: var(--color_light1);
}


 /*-------cards----------*/
 .main-container .card-widgets{
    grid-template-columns: 1fr;
    gap: 10px;
}

/*-------charts responsive----------*/
.charts{
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 10px;
}


/*---------------basic form reponsive---------*/
.form-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }


/*-------table control responsive-------------------*/
.table-control .table-action-btn{
    display: none;
}

.table-control .search-box{
    min-width: 100%;
}

/*-------------table control responsive --------------------*/
.table-control .filter-box .search-box{
min-width: 100%
}

.table-control .filter-box .report-dropdown{
    min-width: 100%
    }
    

.table-control .filter-box .date-picker{
    width: 100%;
  }

  .table-control .filter-box .date-picker button{
    width: 100%;
  }

  .table-control .filter-box .filter-group input, .report-dropdown select{
    min-width: 100%
  }

.table-control .filter-box .date-picker .filter-group{
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }

}