     body {
     margin: 0;
     padding: 0;


      /* font-family: 'Segoe UI', sans-serif; */
      /* background: linear-gradient(to right, #5b0e2d, #2f0a1f); */
      /* color: #333; */
      /* animation: fadeIn 0.8s ease-in; */
    } 

    :root {
        --primary: #c9411f;
        --primary-light: #f0b9a3;
        --gradient: #f0b9a3;
        --bg-light: #fef9f8;
        --white: #fff;
        --shadow: 0 8px 16px rgba(0,0,0,0.1);
      }
  
      /* Fade-in animation */
      @keyframes fadeIn {
        from {opacity: 0; transform: translateY(10px);}
        to {opacity: 1; transform: translateY(0);}
      }
  
      /* Header */
      /* .header {
        background: var(--gradient);
        color: var(--white);
        padding: 15px 20px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        position: relative;
        box-shadow: var(--shadow);
      }
  
      .logo {
        font-size: 20px;
        font-weight: bold;
        letter-spacing: 1px;
      }
  
      .menu {
        display: flex;
        gap: 20px;
      }
  
      .menu a {
        color: var(--white);
        text-decoration: none;
        font-weight: 500;
        position: relative;
      }
  
      .menu a::after {
        content: '';
        position: absolute;
        bottom: -5px;
        left: 0;
        width: 0;
        height: 2px;
        background-color: white;
        transition: width 0.3s;
      }
  
      .menu a:hover::after {
        width: 100%;
      } */
  
      /* Hamburger */
      /* .hamburger {
        display: none;
        flex-direction: column;
        cursor: pointer;
        gap: 6px;
      } */
/*   
      .hamburger span {
        width: 26px;
        height: 3px;
        background: white;
        transition: all 0.3s;
      }
  
      .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translateY(8px);
      }
  
      .hamburger.active span:nth-child(2) {
        opacity: 0;
      }
  
      .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translateY(-8px);
      } */
  
      /* .mobile-menu {
        display: none;
        flex-direction: column;
        background: var(--gradient);
        padding: 10px 20px;
        animation: fadeIn 0.3s ease-in;
      }
  
      .mobile-menu a {
        color: white;
        text-decoration: none;
        padding: 10px 0;
        border-bottom: 1px solid rgba(255,255,255,0.2);
      } */
  
      .contain-custom {
        padding-top:2px;
        margin-right:30px;
        padding-right:30px;
        margin-left:30px;
        padding-left:30px;
        padding-bottom:50px;
      }
  
      .card_new {
        background: var(--white);
        margin-bottom:2%;
        padding: 10px;
        border-radius: 15px;
        box-shadow: var(--shadow);
        /* transition: transform 0.3s ease, box-shadow 0.3s ease; */
        /* animation: fadeIn 0.6s ease-in; */
      }
  
      .card-sch{
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        animation: fadeIn 0.6s ease-in;
      }
      .card_cus{
         transition: transform 0.3s ease, box-shadow 0.3s ease;
        animation: fadeIn 0.6s ease-in;
        margin-top:13px;
        margin-left:45px;
      }
  
      .card_cus:hover {
        transform: translateY(-10px);
        box-shadow: 0 3px 9px #666;
      }
  
      .card_new h4 {
        color: var(--primary);
        margin-top: 10px;
      }
  
      .info-grid {
        display: flex;
        flex-wrap: wrap;
        gap: 15px;
        margin-top:10px;
      }
  
      .info-box {
        flex: 1;
        min-width: 180px;
        background: #fee6b6;
        /* border-left: 5px solid var(--primary); */
        border:3px solid #ffcc66;
        color:#666;
        padding: 8px;
        border-radius: 10px;
      }
  
      .info-box div {
        font-weight: bold;
        color: #444;
        font-size: 14px;
      }
  
      table {
        width: 100%;
        border-collapse: collapse;
        margin-top: 20px;
      }
  
      th, td {
        /* padding: 14px; */
        color:rgb(34, 34, 34);
        text-align: center;
        font-size: 14px;
        border-bottom: 1px solid #ddd;
      }
  
      th {
        /* background-color: #f0b9a3; */
        color:rgb(34, 34, 34);
        font-size: 15px;
      }
      .prof:hover{
        transform: translateY(-2px);
        box-shadow: 0 12px 24px rgba(126, 171, 212, 0.9);
      }
      .card_dash{
        border: 2px solid #999;
        width:650px;
        /* margin-left: 23px; */
      }
      .card_dash:hover{
        border: 2px solid #666;
        box-shadow: 0 0px 20px #dac66e;
        cursor:pointer;
      }
      .dash_con{
        margin-top:15px;
      }
      /* .btn {
        padding: 5px 15px;
        border: none;
        border-radius: 25px;
        font-weight: 500;
        cursor: pointer;
        font-size: 14px;
        margin: 4px;
        transition: all 0.3s ease;
      } */
  
      /* .btn-primary-custom {
       
        background: #e9a825;
        /* background: var(--gradient); */
        /* color: white; */
        /* box-shadow: 0 4px 8px rgba(185, 86, 86, 0.3); */
      /* } */
      /* 
      .btn-primary-custom:hover {
        background: #ffcc66;
        color: white;
      } */
  
     /* .btn-secondary {
        background: #29a96d;
        color: white;
      }  */
  
      /* .btn-secondary:hover {
        background: #0b9d59;
      } */
  
      /* .breadcrumb{
        background-color: #cacaca;
        padding:10px;
      }
      .breadcrumb li{
        font-size:18px;
      }
      .breadcrumb li a{
        color:#488ef7;
      } */
      /* .table-container {
        overflow-x: auto;
      } */
      .newbtn{
        margin-top: 1%;
        margin-left:4%;
        margin-bottom:1%; 
      }
      .full-th{
        display:none;
      }
      .bread-exp{
        margin-top:2%; 
        margin-left:6.5%; 
        margin-bottom:2%; 
        margin-right:6%;
      }
      .pro_pic{
        margin-top:13%;
        border:5px solid #4d97f8;
        height:350px; 
        width: 350px;
      }
      .cus-inp-grp{
        display:flex;
      }
      .cus-inp-grp select{
        width:50%;
        font-size:16px;
      }


      /* Responsive */
      @media (max-width: 768px) {
        .menu {
          display: none;
        }
  
        .hamburger {
          display: flex;
        }
  
        .mobile-menu.active {
          display: flex;
        }
        /* table{
          display:flex;
          margin-bottom: 60px;
        } */
        .table-cus tr{
          display:flex;
          flex-direction: row;
        }
        .table-cus td, .table-cus th{
          width: 100px;
          
        }
        .con-bot th, .con-bot td{
          width:200px;
        }
        /* table tr{
          display:flex;
          flex-direction: column;
        } */
        .table-container table tr th, .table-container table tr td{
          min-height:100px;
          text-align: center;
        }
        .contain-custom {
          padding-top:2px;
          margin-right:5px;
          padding-right:5px;
          margin-left:5px;
          padding-left:5px;
          padding-bottom:50px;
        }
        .newbtn{
          margin-top:1%;
          margin-left:0%;
          margin-bottom:2%; 
        }
        .bread-exp{
          margin-top:2%;
          margin-left:0%;
          margin-right:1%;
        }
        .table-container table{
          /* overflow-x: auto; */
          display: flex;
        }
        .table-container table tr{
          /* overflow-x: auto; */
          display: flex;
          flex-direction: column;
        }
        .pro_pic{
          height: 180px; 
          width: 180px;
          margin-bottom:20%;
        }
        .pro_con{
          width:95%;
        }
        .card_cus{
         margin-top:5px;
         margin-left:10px;
         margin-right:10px;
        }
        .card_dash{
          width:99%;
        }
        .card_dash{
          margin-top: 15px;
          margin-left: 0px;
        }
        .cus-inp-grp{
          display:flex;
          flex-direction:column;
        }
       
    
      }
  
      @media (max-width: 480px) {
        .info-box {
          min-width: 100%;
        }
  
        .newbtn {
          width: 100%;
        }
  
        /* th, td {
          font-size: 13px;
        } */
      }
   