 
    :root {
      --accent: #4f46e5;
      --border: #e5e7eb;
    
      --muted: #6b7280;
      --bg: #f9fafb;
      --card: #ffffff;
  
    
    --muted: #f8fafc;
    --radius: 8px;
  }
   
  body {
    font-family: Arial, Helvetica, sans-serif;
    padding: 0px;
    margin: 0px;
  }
  

    * { box-sizing: border-box; }
    
.note {
  font-size: 16px; 
  line-height: 32px;
  text-align: center;
  color: #333;
}
.img {
  width: 100%;
}
.img img {
  width: 100%;
}
.img .img {
  width: 100%;
} 

.img-homepage {
  width: 100%;
  padding: 2%;
  background-color: #f2f2f2;
  overflow: hidden;
  margin: auto;
} 
.img-homepage img {
  width: 100%;
border-radius: 16px;
}


    h3 {
        font-size: 38px;
        line-height: 38px;
        font-weight: 700;
        color: #000F82;
        padding: 2px 10px 2px 10px;
          text-align: center;
    }

#pagelayout {
  width: 100%; 
}
#pagelayout .pagelayout-in {
  width: 90%;
  margin: 2% auto;
 
}
#pagelayout .container {
  width: 90%;
  margin: 0px auto;
}



    h1 { margin: 0 0 6px; font-size: 22px; }
    p  { margin: 0 0 18px; color: var(--muted); }


    /*Status Img Start */

 
    :root {
      --accent:#4f46e5; --border:#e5e7eb; --text:#111827; --muted:#6b7280; --bg:#f9fafb; --card:#ffffff;
    }
    *{box-sizing:border-box;}
    
    h1{margin:0 0 6px;font-size:22px;} p{margin:0 0 18px;color:var(--muted);}
    .card{
      background:var(--card);
      border:1px solid var(--border);
      border-radius:12px;
      padding:8px;}

    .gallery {
      display: flex; 
      overflow-x: auto; 
      max-height: 300px;}
    
    .gallery::-webkit-scrollbar {
      height: 20px;
      background: #FF4E00;
      border: solid 4px #FFCC00;
    }  
   
    .gallery button{
      min-width: 200px;
      margin: 2px 6px;
      appearance:none;
      padding:0;border:2px solid var(--border);
      background:#fff;
      border-radius:10px;
      cursor:pointer;
      transition:transform .15s ease,border-color .15s ease;}
 
    
    .gallery button:hover{transform:translateY(-2px);border-color:var(--accent);} 
    
    .gallery img{width:100%; border-radius: 6px;   object-fit:cover; display:block;}
    
    .inputs{display:grid;gap:12px;} .row{display:grid;gap:10px;grid-template-columns:1fr 1fr;}
    .field{display:flex;gap:8px;align-items:center;padding:10px;background:#fff;border:1px solid var(--border);border-radius:10px;}
    .field label{
      min-width:70px;
      font-size:16px;
      color:var(--muted);
    } 
    .field input[type="text"]{
      flex:1;
      border:none;
      background:transparent;
      font-size:18px;
      padding: 12px 2px;
      margin: 2px auto;
    }
    .thumb{width:44px;height:44px;border-radius:8px;border:1px solid var(--border);display:grid;place-items:center;overflow:hidden;}
    .thumb img{width:100%;height:100%;display:none;object-fit:cover;} 
    .thumb span{font-size:10px;color:var(--muted);}
    .preview{display:grid;gap:14px;justify-items:center;} 
    canvas{max-width:100%;border:1px dashed var(--border);border-radius:12px;background:#fff;}
    .actions{display:flex;gap:10px;flex-wrap:wrap;justify-content:center;margin-top:8px;}
    .btn{padding:10px 16px;border-radius:10px;background:#fff;border:1px solid var(--border);cursor:pointer;font-weight:600;}
    .btn.primary{background:var(--accent);color:#fff;border-color:var(--accent);} .btn:disabled{opacity:.5;cursor:not-allowed;}
    @media(min-width:900px){.grid-2{display:grid;gap:16px;grid-template-columns:1.2fr 1fr;align-items:start;}}
 
    /*STatus Ima Ed*/


    /*bUTTON Code START */
 
  :root {
    --radius: 8px;
    --shadow: 0 6px 14px rgba(0,0,0,.12), 0 3px 6px rgba(0,0,0,.08);
  }
 

  .wrap {
    width: min(1100px, 100%);
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 16px;
    margin: 1% auto;
  }

  .btn {
    --bg: #FF3000;       /* fallback if oklch unsupported (overridden per color) */
    --bg-hex: #334155;   /* explicit hex fallback for older browsers */
    --fg: #ffffff;
    --bg-hover: color-mix(in oklab, var(--bg) 88%, white);
    --ring: color-mix(in oklab, var(--bg) 70%, white);
    text-align: center;

    appearance: none;
    border: 0;
    border-radius: var(--radius);
    padding: 14px 18px;
    font-weight: 600;
    font-size: 1rem;
    line-height: 1.2;
    color: var(--fg);
    background: var(--bg-hex); /* legacy fallback */
    background: var(--bg);     /* modern (OKLCH) */
    box-shadow: var(--shadow);
    cursor: pointer;
    transition: transform .12s ease, box-shadow .12s ease, background-color .12s ease, filter .12s ease;
    width: 100%;
  }
  .btn:hover {
    background: var(--bg-hover);
    transform: translateY(-1px);
    box-shadow: 0 10px 22px rgba(0,0,0,.18), 0 6px 10px rgba(0,0,0,.10);
  }
  .btn:active {
    transform: translateY(0);
    filter: brightness(.97);
  }
  .btn:focus-visible {
    outline: 3px solid var(--ring);
    outline-offset: 2px;
  }

  /* 18 color variants */
  .red     { --bg-hex:#ef4444; --bg: oklch(55% .17 29);  --fg:white; }
  .orange  { --bg-hex:#f97316; --bg: oklch(70% .16 60);  --fg:#0b0f19; }
  .amber   { --bg-hex:#f59e0b; --bg: oklch(68% .17 80);  --fg:#0b0f19; }
  .yellow  { --bg-hex:#eab308; --bg: oklch(80% .14 100); --fg:#0b0f19; }
  .lime    { --bg-hex:#84cc16; --bg: oklch(78% .14 125); --fg:#0b0f19; }
  .green   { --bg-hex:#22c55e; --bg: oklch(64% .12 145); --fg:white; }
  .emerald { --bg-hex:#10b981; --bg: oklch(64% .10 165); --fg:white; }
  .teal    { --bg-hex:#14b8a6; --bg: oklch(62% .09 190); --fg:white; }
  .cyan    { --bg-hex:#06b6d4; --bg: oklch(72% .10 210); --fg:#0b0f19; }
  .sky     { --bg-hex:#38bdf8; --bg: oklch(75% .10 230); --fg:#0b0f19; }
  .blue    { --bg-hex:#3b82f6; --bg: oklch(56% .15 255); --fg:white; }
  .indigo  { --bg-hex:#6366f1; --bg: oklch(52% .15 275); --fg:white; }
  .violet  { --bg-hex:#8b5cf6; --bg: oklch(58% .16 300); --fg:white; }
  .purple  { --bg-hex:#a855f7; --bg: oklch(60% .16 320); --fg:white; }
  .pink    { --bg-hex:#ec4899; --bg: oklch(70% .20 340); --fg:#0b0f19; }
  .rose    { --bg-hex:#f43f5e; --bg: oklch(68% .21 20);  --fg:#0b0f19; }
  .brown   { --bg-hex:#8b5e3c; --bg: oklch(52% .08 65);  --fg:white; }
  .slate   { --bg-hex:#64748b; --bg: oklch(55% .06 257); --fg:white; }

  /* Larger tap targets on very small screens */
  @media (max-width: 420px) {
    .btn { padding: 16px 18px; font-size: 1.05rem; }
  }
  a {text-decoration: none;}

 


/*NAV START*/
    
nav{
  
  z-index: 9;
  width: 100%;
  top:0;
  
  background: #FF8000;
}
nav .wrapper{
  position: relative;
  max-width: 1300px;
  padding: 0px 30px;
  height: 70px; 
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 9999;
}
.wrapper .logo img {
    height: 70px; 
}
.wrapper .logo a{
  color: #f2f2f2;
  font-size: 30px;
  font-weight: 600;
  text-decoration: none;
}
.wrapper .nav-links{
  display: inline-flex;
}
.nav-links li{
  list-style: none;
}
.nav-links li a{
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
  padding: 9px 10px;
  border-radius: 3px;
  transition: all 0.3s ease; 
  cursor: pointer;

}
.nav-links li a:hover{
  background: #FFEA00;
  color: #ff0000;
}
.nav-links .mobile-item{
  display: none;
}

.nav-links .mobile-item1{
  display: none;
}
.nav-links .drop-menu{
  position: absolute;
  background: #f2f2f2; 
  width: 180px;
  line-height: 45px;
  top: 70px;
  opacity: 0;
  visibility: hidden;
  box-shadow: 0 6px 10px rgba(0,0,0,0.15);
}
.nav-links .drop-menu li a { color: #333;} 
.nav-links .drop-menu li:hover {
  background-color: none;
}

.nav-links li:hover .drop-menu,
.nav-links li:hover .mega-box{
  transition: all 0.3s ease;
  top: 54px;
  opacity: 1;
  visibility: visible;
  z-index:9999999999;
}

.nav-links li:hover .mega-box1{
  transition: all 0.3s ease;
  top: 40px;
  opacity: 1;
  visibility: visible;
  z-index:9999999999;
}
 
.drop-menu li a{
  width: 100%;
  display: block;
  font-weight: 400;
  border-radius: 0px;
  columns: #333;
}
.drop-menu li {
  width: 100%;
  display: block; 
  font-weight: 400;
  border-radius: 0px;
  columns: #333;
  line-height: 30px;
  font-size: 14px;
  text-transform: capitalize;
}
.mega-box{
  position: absolute;
  left: 0;
  width: 100%;
  padding: 0 30px;
  top: 75px;
  opacity: 0;
  visibility: hidden;
}
.mega-box1{
  position: absolute;
  left: 0;
  width: 100%;
  padding: 0 30px;
  top: 75px;
  opacity: 0;
  visibility: hidden;
}
.mega-box .content{
  background: #f2f2f2;
  padding: 25px 20px;
  display: flex;
  width: 100%;
  justify-content: space-between;
  box-shadow: 0 6px 10px rgba(0,0,0,0.15);
}
.mega-box .content .row{
  width: calc(25% - 30px);
  line-height: 45px;
}
.content .row img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.content .row header{
  color: #f2f2f2;
  font-size: 20px;
  font-weight: 500;
}
.content .row .mega-links{
  margin-left: -40px;
  border-left: 1px solid rgba(255,255,255,0.09);
}
.row .mega-links li{
  padding: 0 20px;
}
.row .mega-links li a{
  padding: 0px;
  padding: 0 20px;
  color: #333;
  font-size: 17px;
  display: block;
}
.row .mega-links li a:hover{
  color: #f2f2f2;
}
.wrapper .btn{
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  display: none;
}
.wrapper .btn.close-btn{
  position: absolute;
  right: 30px;
  top: 10px;
}

@media screen and (max-width: 970px) {
  .wrapper .btn{
    display: block;
  }
  .wrapper .nav-links{
    position: fixed;
    height: 100vh;
    width: 100%;
    max-width: 350px;
    top: 0;
    left: -100%;
    background: #FF4E00;
    display: block;
    padding: 50px 10px;
    line-height: 50px;
    overflow-y: auto;
    box-shadow: 0px 15px 15px rgba(0,0,0,0.18);
    transition: all 0.3s ease;
  }
  /* custom scroll bar */
  ::-webkit-scrollbar {
    width: 10px;
  }
  ::-webkit-scrollbar-track {
    background: #242526;
  }
  ::-webkit-scrollbar-thumb {
    background: #3A3B3C;
  }
  #menu-btn:checked ~ .nav-links{
    left: 0%;
  }
  #menu-btn:checked ~ .btn.menu-btn{
    display: none;
  }
  #close-btn:checked ~ .btn.menu-btn{
    display: block;
  }
  .nav-links li{
    margin: 15px 10px;
  }
  .nav-links li a{
    padding: 0 20px;
    display: block;
    font-size: 20px;
  }
  .nav-links .drop-menu{
    position: static;
    opacity: 1;
    top: 65px;
    visibility: visible;
    padding-left: 20px;
    width: 100%;
    max-height: 0px;
    overflow: hidden;
    box-shadow: none;
    transition: all 0.3s ease;
  }
  #showDrop:checked ~ .drop-menu,
  #showMega:checked ~ .mega-box{
    max-height: 100%;
  }
  
  #showMegaOne:checked ~ .mega-box{
    max-height: 100%;
  }
  #showMegaTwo:checked ~ .mega-box{
    max-height: 100%;
  }
  #showMegaThree:checked ~ .mega-box{
    max-height: 100%;
  }
  #showMegaFour:checked ~ .mega-box{
    max-height: 100%;
  }
  #showMegaFive:checked ~ .mega-box{
    max-height: 100%;
  }
  #showMegaSix:checked ~ .mega-box{
    max-height: 100%;
  }

   
  
  #showDropOne:checked ~ .drop-menu{
    max-height: 100%;
  }
  #showDropTwo:checked ~ .drop-menu{
    max-height: 100%;
  }
  #showDropThree:checked ~ .drop-menu{
    max-height: 100%;
  }
  #showDropFour:checked ~ .drop-menu{
    max-height: 100%;
  }
  #showDropFive:checked ~ .drop-menu{
    max-height: 100%;
  }
 #showDropSix:checked ~ .drop-menu{
    max-height: 100%;
  }

  .nav-links .desktop-item{
    display: none;
  }
  .nav-links .mobile-item{
    display: block;
    color: #f2f2f2;
    font-size: 20px;
    font-weight: 500;
    padding-left: 20px;
    cursor: pointer;
    border-radius: 5px;
    transition: all 0.3s ease;
     
  }
  .nav-links .mobile-item:hover{
    background: #FFCC00;
  }
  .drop-menu li{
    margin: 0;
  }
  .drop-menu li a{
    border-radius: 5px;
    font-size: 18px;
  }
  .mega-box{
    position: static;
    top: 65px;
    opacity: 1;
    visibility: visible;
    padding: 0 20px;
    max-height: 0px;
    overflow: hidden;
    transition: all 0.3s ease;
  }
  .mega-box1{
    position: static;
    top: 65px;
    opacity: 1;
    visibility: visible;
    padding: 0 20px;
    max-height: 0px;
    overflow: hidden;
    transition: all 0.3s ease;
  }
  .mega-box .content{
    box-shadow: none;
    flex-direction: column;
    padding: 20px 20px 0 20px;
  }
  .mega-box1 .content{
    box-shadow: none;
    flex-direction: column;
    padding: 20px 20px 0 20px;
  }
  .mega-box .content .row{
    width: 100%;
    margin-bottom: 15px;
    border-top: 1px solid rgba(255,255,255,0.08);
  }
  .mega-box1 .content .row{
    width: 100%;
    margin-bottom: 15px;
    border-top: 1px solid rgba(255,255,255,0.08);
  }
  .mega-box .content .row:nth-child(1),
  .mega-box .content .row:nth-child(2){
    border-top: 0px;
  }
  .mega-box1 .content .row:nth-child(1),
  .mega-box1 .content .row:nth-child(2){
    border-top: 0px;
  }
  .content .row .mega-links{
    border-left: 0px;
    padding-left: 15px;
  }
  .row .mega-links li{
    margin: 0;
  }
  .content .row header{
    font-size: 19px;
  }
}
nav input{
  display: none;
}
/*NAV END */



@media screen and (max-width: 970px) {
  h3 {
    font-size: 24px;
    line-height: 10px;
    font-weight: 700;
    color: #000F82;
    padding: 2px 10px 2px 10px;
    text-align: center;
  
}
}



/*GRID*/


.grid_02 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px; /* Adjust the spacing between columns */
}
.grid_02_item {
  width: 100%;
  padding: 2%;
  border: solid 1px #e7e7e7;
}

.grid_02  input {
  width: 90%;
}
 

/* Responsive adjustments */
@media (max-width: 768px) {
  .grid_02 {
    grid-template-columns: repeat(1, 1fr);
     gap: 10px; /* Adjust the spacing between columns */
  }

  .field {
    width: 90%;
    margin: auto;
  }

   .card{
 
      border-radius:8px;
      padding:2px;
    }
 
  

}




.grid_04 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px; /* Adjust the spacing between columns */
}
 
/* Responsive adjustments */
@media (max-width: 992px) {
  .grid_04 {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .grid_04 {
    grid-template-columns: repeat(2, 1fr);
  gap: 14px; /* Adjust the spacing between columns */

  }
}

@media (max-width: 480px) {
  .grid_04 {
    grid-template-columns: repeat(2, 1fr);
  }
}


.title {
  font-size: 20px;
  line-height: 30px;
  font-weight: 600;
  color: #9A11C1;
}

.status-footer {
  width: 100%;
  clear: both;
  text-align: center;
  background-color: #e7e7e7;
  font-size: 12px;
   padding: 10px;
}
.status-footer a {
  text-decoration: none;
  color: #333;
 
}