  :root {
            --orange: #28a745;
            --white-gray: #F0F0F0;
            --brown: #096b3e;
            --black: #000000;
            --light-orange: #FFE8CC;
            --light-brown: #14c170;
            --card-shadow: 0 10px 20px rgba(120, 60, 20, 0.08);
            --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
        }

        body {
            background: linear-gradient(135deg, #f5f7fa 0%, #f0f0f0 100%);
            color: var(--black);
            display: flex;
            min-height: 100vh;
            line-height: 1.6;
        }
        a{
          text-decoration: none;
        }
        /* Sidebar Styles */
        .sidebar {
            width: 280px;
            background: linear-gradient(to bottom, white 0%, #fafafa 100%);
            box-shadow: 5px 0 15px rgba(0, 0, 0, 0.05);
            transition: var(--transition);
            z-index: 100;
            display: flex;
            flex-direction: column;
            border-right: 1px solid rgba(120, 60, 20, 0.1);
        }

        .logo {
            padding: 25px 20px;
            text-align: center;
            border-bottom: 1px solid rgba(120, 60, 20, 0.1);
            background-color: white;
        }

        .logo h2 {
            color: var(--brown);
            font-size: 1.8rem;
            font-weight: 700;
            letter-spacing: 0.5px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }

        .logo i {
            color: var(--orange);
        }

        .menu {
            padding: 20px 0;
            flex: 1;
                overflow: auto;
                margin-top: 80px;
        }
        .menu a{
            color:#000;
        }

        .menu-item {
            padding: 10px 25px;
            display: flex;
            align-items: center;
            cursor: pointer;
            transition: var(--transition);
            border-left: 4px solid transparent;
            margin: 5px 15px;
            border-radius: 8px;
            font-weight: 500;
        }

        .menu-item:hover {
            background-color: var(--light-orange);
            border-left: 4px solid var(--orange);
            transform: translateX(5px);
        }

        .menu-item.active {
            background: linear-gradient(to right, rgba(240, 140, 20, 0.1), transparent);
            border-left: 4px solid var(--orange);
            color: var(--brown);
            font-weight: 600;
        }

        .menu-item i {
            margin-right: 15px;
            color: var(--brown);
            width: 20px;
            text-align: center;
            font-size: 1.1rem;
        }

        .sidebar-footer {
            padding: 20px;
            border-top: 1px solid rgba(120, 60, 20, 0.1);
            text-align: center;
            font-size: 0.85rem;
            color: var(--light-brown);
        }

        /* Main Content Styles */
        .main-content {
            flex: 1;
            display: flex;
            flex-direction: column;
            overflow-x: hidden;
        }

        /* Header Styles */
         header {
                    padding: 5px 35px;
                display: flex;
                justify-content: space-between;
                align-items: center;
                gap: 880px;
                /* position: fixed; */
                top: 0;
                    /* width: 100%; */
                z-index: 99;
                background:var(--orange);
            }

            

        .hbg {
            background: url('../img/bg.png') no-repeat center center;
            background-size: cover;
            min-height: 180px;
                max-height: 500px;
        }

        .header-left {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .welcome-message h1 {
            font-size: 1.7rem;
            color: white;
            margin-bottom: 5px;
            font-weight: 700;
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
        }

        .welcome-message p {
            color: rgba(255, 255, 255, 0.9);
            font-size: 0.95rem;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
        }

        .header-icons {
            display: flex;
            align-items: center;
            gap: 25px;
        }

        .search-box {
            display: flex;
            align-items: center;
            background: rgba(255, 255, 255, 0.9);
            border-radius: 30px;
            padding: 10px 20px;
            width: 280px;
        }

        .search-box input {
            border: none;
            background: transparent;
            outline: none;
            width: 100%;
            padding: 5px 10px;
            font-size: 0.95rem;
        }

        .search-box i {
            color: var(--brown);
        }

        .notification-icon {
            position: relative;
            cursor: pointer;
            width: 45px;
            height: 45px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: var(--transition);
        }

        .notification-icon:hover {
            transform: scale(1.05);
        }

        .notification-icon i {
            font-size: 1.2rem;
            color: var(--white-gray);
        }

        .notification-badge {
            position: absolute;
            top: 5px;
            left: 5px;
            background: var(--brown);
            color: white;
            border-radius: 50%;
            width: 16px;
            height: 16px;
            font-size: 0.55rem;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 600;
        }

        .profile {
            display: flex;
            align-items: center;
            gap: 12px;
            cursor: pointer;
            padding: 8px 15px;
            border-radius: 30px;
            transition: var(--transition);
            background: rgba(255, 255, 255, 0.9);
            position: relative;
        }

        .profile:hover {
            background: var(--light-orange);
        }

        .profile-img {
            width: 45px;
            height: 45px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--orange), var(--brown));
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 700;
            font-size: 1.2rem;
            box-shadow: 0 4px 8px rgba(240, 140, 20, 0.3);
        }

        .profile-info {
            display: flex;
            flex-direction: column;
        }

        .profile-name {
            font-weight: 600;
            color: var(--brown);
        }

        .profile-role {
            font-size: 0.8rem;
            color: var(--light-brown);
        }

        /* Dashboard Content */
        .dashboard-content {
            padding: 15px;
            flex: 1;
        }

        .dashboard-content1 {
            padding-left: 18px;
            flex: 1;
            margin-top:80px;
        }

        .section-title {
            font-size: 1.3rem;
            color: var(--white-gray);
            font-weight: 600;
            display: flex;
        }

        .section-title i {
            color: var(--orange);
        }

        .welcome-subtitle {
            font-size: 1rem;
            color: var(--white-gray);
            font-style: italic;
        }

        .cards-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
            gap: 30px;
        }

        .card {
            background: linear-gradient(to bottom right, white, #fcfcfc);
            border-radius: 15px;
            box-shadow: var(--card-shadow);
            padding: 40px 25px;
            transition: var(--transition);
            cursor: pointer;
            border: 1px solid rgba(120, 60, 20, 0.05);
            position: relative;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            align-items: self-start;
            justify-content: center;
            text-align: center;
            min-height: 200px;
        }

        .card:hover {
            transform: translateY(8px);
            box-shadow: 0 15px 30px rgba(120, 60, 20, 0.12);
        }

        .card:hover::before {
            width: 8px;
        }

        .card-icon img {
            width: 80px;
            height: 80px;

            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.2rem;
            margin-bottom: 20px;
        }

        .card h3 {
            color: var(--black);
            font-size: 1.4rem;
            font-weight: 600;
        }



        /* Profile Modal */
        .profile-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            z-index: 1000;
            justify-content: center;
            align-items: center;
        }

        .modal-content {
            background: white;
            border-radius: 15px;
            width: 350px;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
            overflow: hidden;
            animation: modalFadeIn 0.3s ease;
        }

        @keyframes modalFadeIn {
            from {
                opacity: 0;
                transform: scale(0.9);
            }

            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        .modal-header {
            background: linear-gradient(135deg, var(--orange), var(--brown));
            padding: 25px;
            text-align: center;
            color: white;
        }

        .modal-avatar {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            background: white;
            margin: 0 auto 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            color: var(--brown);
            font-weight: bold;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }

        .modal-header h3 {
            font-size: 1.5rem;
            margin-bottom: 5px;
        }

        .modal-header p {
            opacity: 0.9;
            font-size: 0.9rem;
        }

        .modal-body {
            padding: 25px;
        }

        .user-info {
            display: flex;
            flex-direction: column;
        }

        .info-item {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .info-item i {
            width: 20px;
            color: var(--brown);
        }

        .info-item span {
            color: #555;
        }

        .logout-btn {
            background: linear-gradient(135deg, var(--orange), var(--brown));
            color: white;
            border: none;
            padding: 12px 20px;
            border-radius: 8px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }

        .logout-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(240, 140, 20, 0.3);
        }

        /* Mobile Menu Toggle */
        .menu-toggle {
            display: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: var(--white-gray);
            width: 45px;
            height: 45px;
            border-radius: 50%;
            align-items: center;
            justify-content: center;
            transition: var(--transition);
        }

        .menu-toggle:hover {
            background: var(--light-orange);
        }

        .user-profile {
            position: fixed;
            display: flex;
            align-items: center;
            padding: 15px;
            border-bottom: 1px solid #eee;
            background: #f9f9f9;
        }

        /* Profile image */
        .user-img {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            object-fit: cover;
            margin-right: 12px;
            border: 2px solid #ddd;
        }

        /* Name & Mobile stacked */
        .user-info {
            display: flex;
            flex-direction: column;
        }

        .user-name {
            font-size: 16px;
            font-weight: bold;
            margin: 0;
            color: #333;
        }

        .user-mobile {
            font-size: 14px;
            margin: 2px 0 0;
            color: #666;
        }

        /* Close button hidden by default (desktop) */
        .close-btn {
            position: absolute;
            top: 10px;
                right: -80px;
            font-size: 20px;
            border: none;
            background: none;
            cursor: pointer;
            color: #333;
            display: none;
            /* hidden on desktop */
        }
            .card h3 {
                font-size: 1.2rem;
                text-align: start;
            }
        /* Show close button only on mobile (<992px) */
        @media (max-width: 991px) {
            .close-btn {
                display: block;
            }
        }

        /* Responsive Styles */
        @media (max-width: 1200px) {
            .cards-container {
                grid-template-columns: repeat(3, 1fr);
            }

            .search-box {
                width: 200px;
            }
        }
        @media (max-width: 1111px){
            header{
                    gap: 520px ;
            }
        }
        @media (max-width: 992px) {
            .sidebar {
                position: fixed;
                left: -280px;
                height: 100vh;
                box-shadow: 10px 0 30px rgba(0, 0, 0, 0.1);
            }

            .sidebar.active {
                left: 0;
            }

            .menu-toggle {
                display: flex;
            }

            .welcome-message h1 {
                font-size: 1.4rem;
            }

            .profile-info {
                display: none;
            }

            .header-left {
                flex: 1;
            }

            .cards-container {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .cards-container {
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
            }

            header {
                padding: 15px 20px;
                flex-wrap: nowrap;
                min-height: 100px;
                align-items: center;
                gap: 500px
            }

            .dashboard-content {
                padding: 5px 5px;
            }

            .search-box {
                display: none;
            }

            .header-icons {
                gap: 15px;
                margin-top: 0;
                width: auto;
                justify-content: flex-end;
            }

            .welcome-message h1 {
                font-size: 1.3rem;
                white-space: nowrap;
            }

            .welcome-message p {
                font-size: 0.85rem;
            }

            .card {
                padding: 25px 15px;
                min-height: 160px;
            }

            .card-icon img {
                width: 60px;
                height: 60px;
                font-size: 1.6rem;
                margin-bottom: 15px;
            }

            .card h3 {
                font-size: 1.2rem;
                text-align: start;
            }
        }

        @media (max-width: 480px) {
            .cards-container {
                grid-template-columns: repeat(2, 1fr);
                gap: 15px;
            }

            header {
                padding: 15px;
                min-height: 80px;
                        gap: 120px;
                        width: 100%;
            }

            .welcome-message h1 {
                font-size: 1.2rem;
            }

            .card {
                padding: 20px 10px;
                min-height: 150px;
            }

            .card-icon img {
                width: 50px;
                height: 50px;
                font-size: 1.4rem;
                margin-bottom: 10px;
            }

            .card h3 {
                font-size: 1rem;
            }

            .modal-content {
                width: 90%;
                max-width: 320px;
            }
        }

        @media (max-width: 360px) {
            .cards-container {
                grid-template-columns: repeat(2, 1fr);
            }

            header {
                padding: 10px 15px;
                        gap: 50px;
            }

            .welcome-message h1 {
                       font-size: 1.2rem;
                    margin-left: 15px;
    
            }

            .notification-icon {
                width: 40px;
                height: 40px;
            }

            .menu-toggle {
                width: 40px;
                height: 40px;
            }
        }
         /* Search Bar */
.section-title .search-container {
    margin-top: 10px;
    position: relative;
    width: 100%;
    max-width: 400px;
}

.section-title .search-input {
    width: 100%;
    padding: 10px 12px 10px 36px; /* left padding for icon */
    border: 1px solid #ccc;
    border-radius: 6px;
    outline: none;
    font-size: 14px;
}

.section-title .search-input:focus {
    border-color: #007bff;
}

.section-title .search-icon {
    position: absolute;
    top: 50%;
    left: 12px;
    transform: translateY(-50%);
    color: #888;
    font-size: 14px;
}

/* No Data Block */
 .nodata {
    flex-direction: column;
    justify-content: center;
    text-align: center;
    margin-top: 30px;
    width: 100%;
   box-shadow: 4px 4px 15px #cac3c34f;

}

 .nodata img {
    max-width: 500px;
    height: auto;
    margin-bottom: 10px;
}

 .nodata .no-data-text {
    font-size: 16px;
    font-weight: 700;
    color: #333;
}
.section-title .search-input::placeholder {
 font-size:16px;
 font-weight:700;
}

/* =========================
   Responsive Media Queries
   ========================= */

/* Tablets (max-width: 992px) */
@media (max-width: 1024px) {
   .dashboard-content1 {
  margin-top:120px;
    
    padding-right: 20px;
}
    .nodata img {
        max-width: 400px;
    }
}

/* Mobiles (max-width: 768px) */
@media (max-width: 768px) {
   .dashboard-content1 {
  margin-top:100px;
    padding-right: 20px;
}
    .nodata img {
        max-width: 300px;
    }

    .nodata .no-data-text {
        font-size: 14px;
    }
}

/* Small Mobiles (max-width: 480px) */
@media (max-width: 480px) {
   .dashboard-content1 {
   margin-top: 50px;
    padding-right: 20px;
}
 .dashboard-contentmain {
   margin-top: 80px;
    padding-right: 20px;
}
    .nodata img {
        max-width: 260px;
    }

    .nodata .no-data-text {
        font-size: 13px;
    }
}
  .backarrow{
        color: #fff7f7;
    z-index: 99999999999999;
    position: absolute;
    font-size: 20px;
    top: 22px;
    left: 22px;
    background: var(--orange);
    padding: 10px;
    }

    /* Container grid */
.file1 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 15px;
    margin-top: 15px;
}

/* Card */
.file2 {
    background: #f4ffe8; /* soft green */
    border-radius: 6px;
    box-shadow: 0px 2px 6px rgba(0,0,0,0.15);
    padding: 12px;
    display: flex;
    flex-direction: column;
}

/* Top row */
.file3 {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.file4 {
    font-size: 15px;
    font-weight: 700;
    color: #000;
}

/* Calendar container */
.file8 {
    font-size: 13px;
    color: #000;
    border-radius: 4px;
    padding: 4px 8px;
    display: flex;
    align-items: center;
    flex-direction: column;
}

.file8 i {
    margin-right: 5px;
    color: #e74c3c; /* red calendar */
}

/* Divider */
.file9 {
    border: none;
    border-top: 2px dashed #999;
    margin: 6px 0;
}

/* Body */
.file10 p {
    margin: 4px 0;
    font-size: 14px;
    color: #333;
}

.file11 {
    font-weight: 700;
}

/* Footer */
.file12 {
    margin-top: 10px;
}

.file13 {
    width: 100%;
    background: #fff;
    border: 1px solid #aaa;
    border-radius: 4px;
    padding: 3px 10px;
    font-size: 14px;
    cursor: pointer;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.file13 i {
    margin-right: 6px;
    color: #007bff;
}

.file13:hover {
    background: #007bff;
    color: #fff;
    border-color: #007bff;
}
/* Container */
.file1 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 5px;
    margin: 5px;
}

/* Each Card */
.rate1 {
  background: #fff;
  border-radius: 8px;
  padding: 15px;
  margin-bottom: 5px;
  box-shadow: 0px 1px 4px rgba(0,0,0,0.1);
}

/* Titles */
.rate1 h5{
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #333;
}

/* Button Groups */
.rate1-group {
  display: flex;
  gap: 10px;
}

/* Buttons */
.rate1-btn{
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  padding: 10px;
  border: none;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  background: #8B4513; /* Brown */
  cursor: pointer;
}

.rate1-btn  {
  font-size: 14px;
}

.rate1-btn:hover{
  opacity: 0.9;
}
/* Container */
.pay3 {
  padding: 15px;
}

/* Filter row */
.pay4 {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 15px;
}

/* Filter group with icon + select */
.pay11 {
  flex: 1;
  min-width: 140px;
  display: flex;
  align-items: center;
  border: 1px solid #ddd;
  border-radius: 6px;
  background: #fff;
  padding: 0 8px;
}

/* Calendar icon */
.pay11 i {
  color: #ff8800;
  font-size: 16px;
  margin-right: 6px;
}

/* Select dropdown */
.pay5, .pay6 {
  flex: 1;
  border: none;
  outline: none;
  font-size: 14px;
  padding: 10px;
  background: transparent;
}

/* Card */
.pay7 {
  background: #fff;
  border-radius: 8px;
  padding: 25px 15px;
  text-align: center;
  box-shadow: 0 1px 4px rgba(0,0,0,0.1);
}

.pay7 img {
  max-width: 450px;
  width: 100%;
  margin-bottom: 15px;
}

.pay8 {
  font-size: 15px;
  font-weight: 600;
  color: #333;
  margin: 0;
}

/* Notice at bottom */
.pay9 {
  margin-top: 20px;
  text-align: center;
}

.pay10 {
  display: inline-block;
  padding: 10px 18px;
  background: #444;
  color: #fff;
  border-radius: 20px;
  font-size: 13px;
  box-shadow: 0px 2px 4px rgba(0,0,0,0.2);
}
/* Container */
.doc1 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 15px;
  padding: 15px;
}

/* Mobile view: 3 cards per row */
@media (max-width: 768px) {
  .doc1 {
    grid-template-columns: repeat(3, 1fr); /* 3 cards per row */
  }
}

/* Each card */
.doc2 {
  background: #fff;
  border-radius: 8px;
  text-align: center;
  padding: 20px 10px;
  box-shadow: 0px 1px 4px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 140px;
  transition: transform 0.2s ease;
}

.doc2:hover {
  transform: translateY(-3px);
}

/* Card image */
.doc3 img {
  max-width: 60px;
  margin-bottom: 10px;
}

/* Card title */
.doc4 {
  font-size: 14px;
  font-weight: 600;
  color: #333;
  margin: 0;
  text-align: center;
}

.hrc {
        color: #0000006b;
    }

    .vd1 {
        display: flex;
        justify-content: center;
    }

    .vd2 {
        background: linear-gradient(135deg, #f5f7fa 0%, #f0f0f0 100%);
          border-radius: 8px;
        padding: 20px;
        max-width: 1200px;
        font-family: Arial, sans-serif;
        width: 100%;
        margin: 20px;
    }

    .vd3 p,
    .vd4 p {
        margin: 8px 0;
        font-size: 14px;
        color: #333;
    }

    .vd5 {
        text-align: left;
    }

    .vd-row {
        display: flex;
        justify-content: space-between;
        margin: 8px 0;
        font-size: 14px;
        color: #333;
    }

    .vd-row strong {
        font-weight: 600;
        flex: 1;
    }

    .vd-row span {
        flex: 1;
        text-align: right;
    }
    .dashboard-content11 {
        margin-top: 100px;
    }

    @media (max-width: 426px) {
        .dashboard-content11 {
            margin-top: 30px;
        }
        .vd2 {
            background: linear-gradient(135deg, #f5f7fa 0%, #f0f0f0 100%);
          border-radius: 0px !important;
             
            padding: 20px;
            width: 100%;
            max-width: 500px;
            font-family: Arial, sans-serif;
            margin: 0 !important;
        }
    }

    @media (max-width: 769px) {
        .dashboard-content11 {
            margin-top: 60px;
        }
        .vd2 {
            background: linear-gradient(135deg, #f5f7fa 0%, #f0f0f0 100%);
          border-radius: 0px  !important;
             
            padding: 20px;
            width: 100%;
            max-width: 500px;
            font-family: Arial, sans-serif;
            margin: 0 !important;
        }
    }
    /* Container */
.calc1 {
    padding: 20px;
    background: linear-gradient(135deg, #f5f7fa 0%, #f0f0f0 100%);
    border-radius: 8px;
    max-width: 1200px;
}

/* Form */
.calc2 {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Inputs */
.calc-input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    background: linear-gradient(135deg, #f5f7fa 0%, #f0f0f0 100%);
    border-radius: 6px;
    font-size: 14px;
    box-sizing: border-box;
}

/* Floating label wrapper */
.floating-group {
    position: relative;
}

/* Floating label */
.floating-label {
    position: absolute;
    top: 50%;
    left: 12px;
    transform: translateY(-50%);
    font-size: 14px;
    color: #000;
    pointer-events: none;
    transition: 0.3s ease all;
}

/* When input is focused or has value */
.calc-input:focus + .floating-label,
.calc-input:not(:placeholder-shown) + .floating-label {
    top: -8px;
    left: 10px;
    font-size: 12px;
    color: #000;
      background: linear-gradient(135deg, #f5f7fa 0%, #f0f0f0 100%);

    padding: 0 4px;
}

/* Button */
.calc-btn {
    width: 100%;
    background: #8b4513;
    color: #fff;
    font-weight: bold;
    padding: 14px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s;
}

.calc-btn:hover {
    background: #5a2d0c;
}

/* ========== Responsive Styles ========== */
@media (min-width: 600px) {
    .calc2 {
        gap: 20px;
    }
    .calc-input {
        font-size: 15px;
        padding: 14px;
    }
}
@media (min-width: 992px) {
    .dashboard-content11 {
        display: flex;
        align-items: center;
        padding: 40px;
    }
    .calc1 {
        width: 100%;
        max-width: 1200px;
        padding: 30px;
    }
    .calc-btn {
        font-size: 16px;
        padding: 16px;
    }
}
@media (max-width: 400px) {
    .calc-input {
        font-size: 14px;
        padding: 10px;
    }
    .calc-btn {
        font-size: 14px;
        padding: 12px;
    }
    .calc1 {
        border-radius: 0px !important;
        max-width: 600px;

    }
}
.foir1 {
    padding: 20px;
    background: linear-gradient(135deg, #f5f7fa 0%, #f0f0f0 100%);
    max-width: 800px;
}

/* Form */
.foir2 {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.floating-group {
    position: relative;
}

.foir-input {
    width: 100%;
    padding: 14px 12px;
    border: 1px solid #000;
    border-radius: 6px;
    font-size: 14px;
    outline: none;
    background: #fff;
}

/* Floating Label */
.floating-label {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 14px;
    font-weight: 600;
    color: black;
    pointer-events: none;
    transition: all 0.3s ease;
}

.foir-input:focus + .floating-label,
.foir-input:not(:placeholder-shown) + .floating-label {
    top: -8px;
    left: 8px;
    font-size: 12px;
    background: #f5f7fa;
    padding: 0 4px;
    color: #000;
}

/* Buttons */
.foir4 {
    display: flex;
    gap: 10px;
}
.foir-btn {
    flex: 1;
    background: #8b4513;
    color: #fff;
    padding: 10px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
}
.foir-btn:hover { background: #5a2d0c; }
.foir-btn.clear { background: #DC2828; }
.foir-btn.clear:hover { background: #b52b27; }

/* Result Section */
.foir-result {
    margin-top: 30px;
    padding: 20px;
    /* background: #fff; */
    border-radius: 8px;
    /* box-shadow: 0 2px 6px rgba(0,0,0,0.08); */
    max-width: 100%;
}

.foir-result h3 {
    text-align: center;
    margin-bottom: 15px;
    font-weight: bold;
}

.foir-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 0;
    font-size: 15px;
    border-bottom: 1px solid #eee;
}
.foir-row span:first-child {
    font-weight: 500;
    flex: 1;
    text-align: left;
}
.foir-row span:last-child {
    font-weight: bold;
    min-width: 100px;
    text-align: right;
}

/* Desktop */
@media (min-width: 992px) {
    .foir1 {
        padding: 30px;
            margin-top: 100px;
            flex-direction:column;
            max-width:1150px;
            border-radius:16px;
            margin-inline:20px;
            width:100%;

    }
    .foir-btn {
        font-size: 16px;
        padding: 16px;
    }
    .foir-result {
        max-width: 1100px;
    }
    .foir2{
            width: 100%;
    }
    
    .foir-result {
        width: 1000px;
    }

}
.pre1 {
    padding: 20px;
    max-width: 800px;
    background: linear-gradient(135deg, #f5f7fa 0%, #f0f0f0 100%);
    margin: auto;
}

/* Form */
.pre2 {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.floating-group {
    position: relative;
}

.pre-input {
    width: 100%;
    padding: 14px 12px;
    border: 1px solid #000;
    border-radius: 6px;
    font-size: 14px;
    outline: none;
    background: #fff;
}

/* Floating Label */
.floating-label {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 14px;
    font-weight: 600;
    color: black;
    pointer-events: none;
    transition: all 0.3s ease;
}

.pre-input:focus + .floating-label,
.pre-input:not(:placeholder-shown) + .floating-label {
    top: -8px;
    left: 8px;
    font-size: 12px;
    background: #f5f7fa;
    padding: 0 4px;
    color: #000;
}

/* Buttons */
.pre4 {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.pre-btn {
    background: #8b4513;
    color: #fff;
    padding: 12px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    text-transform: uppercase;
    font-size: 14px;
}
.pre-btn:hover { background: #5a2d0c; }
.pre-btn.add { background: #444; }
.pre-btn.add:hover { background: #222; }

/* Result Section */
.pre-result {
    margin-top: 30px;
    padding: 20px;
    border-radius: 8px;
}

.pre-result h3 {
    text-align: center;
    margin-bottom: 15px;
    font-weight: bold;
}

.pre-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 0;
    font-size: 15px;
    border-bottom: 1px solid #eee;
}
.pre-row span:first-child {
    font-weight: 500;
    flex: 1;
    text-align: left;
}
.pre-row span:last-child {
    font-weight: bold;
    min-width: 100px;
    text-align: right;
}
@media (max-width: 400px) {
   .pre1{
    margin-top:60px;
   }
}
/* Desktop */
@media (min-width: 992px) {
    .pre1 {
        padding: 30px;
        margin-top: 100px;
        flex-direction: column;
        max-width: 1150px;
        border-radius: 16px;
        margin-inline: 20px;
        width: 100%;
    }
    .pre-btn {
        font-size: 16px;
        padding: 16px;
    }
    .pre-result {
        max-width: 1100px;
        width: 100%;
    }
    .pre2 {
        width: 100%;
    }
}/* Container */
.noti1 {
    padding: 10px;
    background: #fff;
    max-width: 1150px;
    margin-inline: 20px;
}

/* Header */
.noti2 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}
.noti2 h2 {
    font-size: 20px;
    font-weight: bold;
}
.noti-mark {
    color: #F0A050; 
    font-weight: 500;
    text-decoration: none;
}
.noti-mark i{
    color:#8C8C8C;
}
.noti-mark:hover { text-decoration: underline; }

/* Notification Cards */
.noti3 {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.noti-card {
    background: #e9fbe9; 
    border: 3px solid #C8DCB4;
    padding: 12px 14px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.08);
}
.noti-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 6px;
    border-bottom: 2px dashed #bbb;
    padding-bottom: 4px;
}
.noti-title {
    font-weight: bold;
    font-size: 15px;
    color: #000;
}
.noti-date {
    font-size: 14px;
    font-weight: 500;
    color: #333;
}
.noti-text {
    font-size: 14px;
    color: #222;
    margin: 0;
}

/* Desktop */
@media (min-width: 992px) {
    .noti1 {
        padding: 30px;
        margin-top: 80px;
        border-radius: 12px;
    }
    .noti2 h2 { font-size: 22px; }
    .noti-card { padding: 16px 18px; }
}
@media (max-width: 400px) {
  .noti1 {
    margin-top: 80px;
    margin-inline:0px;
}

}
.login{
    background: #f7f1eb; /* cream background */
    display: flex
;
    align-items: center;
    justify-content: center;
        width: 100%;
}
/* Center on desktop */
.login1 {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}
.login2 {
    width: 100%;
    max-width: 380px;
}

/* Title + subtitle */
.login-title {
 font-size: 35px;
    font-weight: 500;
    color: #000;
    text-align: left;
    line-height: 1.3;
    margin-bottom: 5px;
    font-family: sans-serif;
}
.divider {
    border: none;
    border-top: 2px solid #000;
    margin: 10px 0 15px 0;
}
.subtitle {
    font-size: 14px;
    color: #333;
    margin-bottom: 25px;
    text-align: center;
}

/* Floating Group */
.floating-group {
    position: relative;
    display: flex;
    align-items: center;
    border: 1px solid #000;
    border-radius: 6px;
    background: #fff;
    margin-bottom: 18px;
}
.login-input {
    width: 100%;
    border: none;
    outline: none;
    padding: 14px 35px 14px 35px; /* space for icons */
    font-size: 15px;
    background: transparent;
}
.icon {
    position: absolute;
    left: 12px;
    color: #222;
    font-size: 16px;
}
.toggle {
    position: absolute;
    right: 12px;
    font-size: 16px;
    color: #222;
    cursor: pointer;
}

/* Floating Label */
.floating-label {
    position: absolute;
    left: 35px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 14px;
    font-weight: 500;
    color: #555;
    pointer-events: none;
    transition: all 0.3s ease;
}
.login-input:focus + .floating-label,
.login-input:not(:placeholder-shown) + .floating-label {
    top: -8px;
    left: 30px;
    font-size: 12px;
    background: #f7f1eb;
    padding: 0 4px;
    color: #000;
}

/* Button */
.login-btn {
    width: 100%;
    background: #693000;
    color: #fff;
    font-size: 15px;
    font-weight: bold;
    padding: 14px;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    margin-top: 10px;
    box-shadow: 0px 3px 5px rgba(0,0,0,0.25);
}
.login-btn:hover {
    background: #4d2200;
}

/* Mobile Full Page */
@media(max-width: 768px) {
    .login1 {
        align-items: flex-start;
        padding: 25px;
        height: auto;
    }
    .login2 {
        max-width: 100%;
        margin-top: 40px;
    }
}
@media (min-width:768px){
       .login2 {
    width: 100%;
    max-width: 380px;
    padding: 50px;
    background: white;
    border-radius: 16px;
}
.login1 {
    display: flex
;
    justify-content: center;
    align-items: center;
    /* height: 100vh; */
    margin: 0 auto;
}
}
@media (max-width:425px){
       .login2 {
    width: 100%;
    max-width: 380px;
}
.login1 {
    display: flex
;
    justify-content: center;
    align-items: center;
}
}
/* Page Wrapper */
.about1 {
    background: #fff;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Orange Header */
.about-header {
    background:var(--orange);
    padding: 12px 20px;
}
.about-header h2 {
    color: #fff;
    font-size: 20px;
    font-weight: bold;
    margin: 0;
}

/* Content */
.about2 {
    padding: 20px;
    font-size: 15px;
    color: #000;
    line-height: 1.6;
}
.about2 p {
    margin-bottom: 16px;
}

/* Orange Footer Strip */
.about-footer {
    background: #f58220;
    height: 8px;
    margin-top: auto;
}

/* Desktop Centering */
@media(min-width: 992px) {
    .about2 {
        max-width: 900px;
        margin: 0 auto;
        font-size: 16px;
    }
    .about1{
        margin-top:100px;
    }
}
@media (max-width:425px){
    .about1{
        margin-top:80px;

    }
}