@import url('https://fonts.googleapis.com/css2?family=Faculty+Glyphic&family=Parkinsans:wght@300..800&display=swap');
body{
    font-family: "Parkinsans", sans-serif;
}
/* Form Container Styling */
/* Form Container Styling */
/* Wrapper for the entire form */
.login-form-wrapper {
    background: linear-gradient(135deg, #f0f4f8, #ffffff); /* Soft gradient background */
    padding: 30px 25px; /* Ample padding for the wrapper */
    border-radius: 12px; /* Round the corners for a soft look */
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15); /* Larger box-shadow for depth */
    margin-top: 30px; /* Top margin for spacing */
    max-width: 400px; /* Limit the max-width for better visual focus */
    width: 100%; /* Ensure it remains responsive */
    text-align: center; /* Center text in the wrapper */
}
/* Form Title Styling */
.form-title {
    font-size: 24px; /* Slightly larger font */
    font-weight: 700; /* Bolder font */
    color: #222a68; /* Primary color */
    margin-bottom: 20px; /* More space below the title */
    text-transform: uppercase; /* Capitalize the title */
    letter-spacing: 1px; /* Add spacing for a clean look */
}
/* Form Container */
.form-container {
    width: 100%;
    max-width: 360px; /* Compact form width */
    margin: 0 auto; /* Center the form */
    padding: 20px 25px; /* Added padding for better content spacing */
    background: linear-gradient(135deg, #ffffff, #f9f9f9); /* Gradient background for form */
    border-radius: 10px; /* Rounded corners */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); /* Softer shadow */
    animation: fadeInUp 0.4s ease; /* Smooth animation */
}
/* Input Group Styling */
.input-group {
    display: flex;
    align-items: center;
    margin-bottom: 20px; /* Add space between input fields */
    position: relative;
}
.input-group-icon {
    position: absolute;
    left: 10px;
    font-size: 18px;
    color: #222a68; /* Primary color for icons */
}
/* Input Fields */
.form-control {
    padding-left: 30px; /* Space for icons */
    border-radius: 8px; /* Rounded corners */
    border: 1px solid #ddd; /* Light border for inputs */
    font-size: 16px; /* Readable text size */
    transition: border-color 0.3s ease; /* Smooth transition for border */
}
.form-control:focus {
    border-color: #02a657; /* Focus color change */
}
/* Submit Button */
.btn-primary {
    background-color: #222a68; /* Primary color */
    border-color: #222a68; /* Match border with background */
    font-weight: 600;
    padding: 12px 20px; /* Adequate padding */
    transition: background-color 0.3s ease;
}
.btn-primary:hover {
    background-color: #02a657; /* Hover effect for button */
    border-color: #02a657; /* Border change on hover */
}
/* Links (Register / Forgot Password) */
.options a {
    display: inline-block;
    margin-top: 10px; /* Space between links */
    color: #222a68; /* Primary color for links */
    text-decoration: none; /* Remove underline */
    font-weight: 600;
    transition: color 0.3s ease; /* Smooth transition for color */
}
.options a:hover {
    color: #02a657; /* Highlight color on hover */
}
/* Add smooth fade-in animation */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
/* Fade-in Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(8px); /* Reduced slide-up effect */
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* Form Title */
/* Input Group Styling */
.input-group {
    position: relative;
    margin-bottom: 12px; /* Reduced margin */
}
/* Input Fields */
.form-control,
.form-select {
    width: 100%;
    padding: 8px 30px; /* Compact padding */
    border: 1px solid #d0d0d0;
    border-radius: 6px;
    font-size: 12px; /* Smaller font size */
    color: #333;
    background-color: #ffffff;
    transition: all 0.2s ease;
    box-shadow: inset 0 0 4px rgba(0, 0, 0, 0.05); /* Subtle shadow */
}
.form-control::placeholder,
.form-select::placeholder {
    color: #aaa;
}
.form-control:focus,
.form-select:focus {
    border-color: #4a90e2;
    background-color: #f0f8ff;
    box-shadow: 0 0 6px rgba(74, 144, 226, 0.3); /* Slight glow on focus */
    transform: translateY(-1px); /* Minor lift */
    outline: none;
}
/* Icon Styling */
.input-group-icon {
    position: absolute;
    left: 10px; /* Closer to the left */
    top: 50%;
    transform: translateY(-50%);
    color: #888;
    font-size: 14px; /* Reduced icon size */
    transition: color 0.2s ease, transform 0.2s ease;
}
.input-group-icon:hover {
    color: #222a68;
    transform: scale(1.1);
}
/* Submit Button */
.btn-primary {
    background-color: #222a68;
    color: #ffffff;
    border: none;
    padding: 8px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px; /* Smaller button text */
    cursor: pointer;
    transition: background-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
    position: relative;
    overflow: hidden;
}
.btn-primary:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 200%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transform: skewX(-20deg); /* Diagonal overlay effect */
    transition: left 0.3s ease;
    z-index: 1;
}
.btn-primary:hover:before {
    left: 0;
}
.btn-primary:hover {
    background-color: #222a68;
    transform: translateY(-2px); /* Lift button on hover */
    box-shadow: 0 4px 10px rgba(0, 91, 181, 0.3); /* Hover shadow effect */
}
/* Google Recaptcha Styling */
.g-recaptcha {
    margin: 8px 0; /* Reduced margin */
}
/* Error Message Styling */
.error-message {
    color: #d9534f;
    font-size: 11px; /* Smaller error message font */
    margin-top: 4px; /* Reduced top margin */
}
/* Responsive Design */
@media (max-width: 576px) {
    .form-container {
        max-width: 320px; /* Further reduce form width on small screens */
        padding: 12px; /* Reduce padding */
    }
    .form-title {
        font-size: 16px; /* Smaller title font */
    }
    .form-control,
    .form-select {
        font-size: 11px; /* Smaller font size for inputs */
    }
    .btn-primary {
        font-size: 13px; /* Smaller button text for small screens */
    }
    .input-group-icon {
        font-size: 12px; /* Smaller icon size */
    }
}
.forgot-password-section, .reset-password-form {
    margin-top: 50px;
    padding: 40px;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid #f0f0f0;
}
.dashboard{ background: #f3f6f9}
/* Targeted Column for Grievance Info */
.grievance-column {
    display: flex;
    justify-content: center; /* Centers the child element horizontally */
    align-items: center; /* Centers the child element vertically */
    padding: 20px;
    height: auto; /* Let the height adjust based on content */
}
/* Grievance Info Styling */
/* Grievance Info Styling */
.grievance-info {
    position: relative; /* Allow positioning for centering */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px; /* Comfortable padding for content */
    background: #ffffff; /* Clean white background */
    border-radius: 8px; /* Enhanced rounded corners */
    box-shadow:
        inset 0 2px 4px rgba(0, 0, 0, 0.1), /* Inset shadow for depth */
        0 2px 3px rgba(34, 42, 104, 0.2),
        0 2px 4px rgba(0, 0, 0, 0.1); /* Layered outer shadows */
    text-align: center; /* Center text inside the box */
    animation: fadeInUp 0.5s ease; /* Smooth fade-in effect */
    max-width: 450px; /* Set a max-width to limit the size */
    width: 100%; /* Make it responsive */
    transition: transform 0.2s ease, box-shadow 0.2s ease; /* Smooth hover effects */
}
/* Title Styling */
.grievance-info .title {
    font-size: 22px; /* Larger title font for emphasis */
    font-weight: 700; /* Bolder text */
    color: #222a68; /* Primary color */
    margin-bottom: 10px;
    text-transform: uppercase;
}
/* Description Styling */
.grievance-info .description {
    font-size: 16px; /* Comfortable font size */
    color: #444; /* Neutral text color for readability */
    line-height: 1.6;
    margin-top: 0;
}
/* Highlight Section */
.grievance-info .highlight {
    color: #ffc107; /* Highlight color */
    font-weight: 600;
    background-color: rgba(255, 193, 7, 0.1); /* Light yellow background for emphasis */
    padding: 5px 10px; /* Padding for emphasis */
    border-radius: 6px;
    display: inline-block;
    margin-top: 10px;
}
/* Responsive Design */
@media (max-width: 768px) {
    .grievance-info {
        max-width: 90%; /* Allow the content to take up more space on smaller screens */
        padding: 15px; /* Reduce padding */
    }
    .grievance-info .title {
        font-size: 20px; /* Adjust title size for smaller screens */
    }
    .grievance-info .description {
        font-size: 14px; /* Adjust description size for smaller screens */
    }
}
/* Logo Styling */
.grievance-logo {
    max-width: 120px; /* Limit the size of the logo */
    height: auto;
    margin-bottom: 20px;
}
/* Title Styling */
/* Fade-in Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px); /* Slide-up effect */
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* Responsive Design */
@media (max-width: 768px) {
    .grievance-info {
        max-width: 90%; /* Allow the content to take up more space on smaller screens */
        padding: 15px;
    }
    .grievance-title {
        font-size: 20px; /* Adjust title size for smaller screens */
    }
    .grievance-description {
        font-size: 14px; /* Adjust description size for smaller screens */
    }
    .grievance-logo {
        max-width: 100px; /* Adjust logo size for smaller screens */
    }
}
@media (max-width: 576px) {
    .grievance-info {
        max-width: 100%; /* Ensure the content takes up full width on extra small screens */
    }
}
/* Global Body Styling */
/* Enhanced Animated Gradient Background for Header Section */
@keyframes gradientAnimation {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}
.header-section {
    position: relative;
    padding: 25px; /* Increased padding for a spacious look */
    border-radius: 0.35rem; /* Rounder corners */
    background: linear-gradient(135deg, #004085, #0056b3, #0069d9);
    background-size: 300% 300%;
    animation: gradientAnimation 12s ease infinite;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4); /* Deepened shadow for more depth */
    color: #fff;
    margin-bottom: 40px;
    text-align: center;
    overflow: hidden; /* Prevents content from overflowing the border radius */
    transform: perspective(500px); /* Adds a subtle depth effect */
}
/* Header Title Styles */
.header-section h2 {
    font-size: 2.15rem; /* Increased font size for greater impact */
    font-weight: bold;
    margin-bottom: 12px; /* Slightly larger margin */
    text-shadow: 4px 4px 12px rgba(0, 0, 0, 0.5); /* Enhanced shadow for more contrast */
    color: #ffc107;
    letter-spacing: 1px; /* Adds some spacing between letters for elegance */
    transition: color 0.3s ease, transform 0.3s ease; /* Smooth transition effects */
}
.header-section h2:hover {
    color: #ff9900; /* Slight hover effect to create interactivity */
    transform: scale(1.05); /* Slight scaling for emphasis */
}
/* Header Paragraph Styles */
.header-section p {
    font-size: 1.1rem; /* Slightly larger font size for better readability */
    line-height: 1.6; /* Increased line height for improved legibility */
    color: #ffffff;
    font-weight: 300;
    margin-bottom: 20px; /* Add some space between the paragraph and other elements */
    transition: color 0.3s ease; /* Smooth transition effect */
}
.header-section p:hover {
    color: #ffc107; /* Color change on hover for added interactivity */
}
/* Adding a Decorative Element to the Header */
.header-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 0.1; /* Faint background image */
    z-index: -1; /* Keeps the image in the background */
}
/* Responsive adjustments */
@media (max-width: 768px) {
    .header-section {
        padding: 25px; /* Reduced padding for smaller screens */
    }
    .header-section h2 {
        font-size: 1.8rem; /* Adjusted font size for mobile */
    }
    .header-section p {
        font-size: 1rem; /* Adjusted font size for mobile */
    }
}
@media (max-width: 480px) {
    .header-section {
        padding: 20px; /* Further reduced padding for smaller screens */
    }
    .header-section h2 {
        font-size: 1.5rem; /* Further reduced font size for very small screens */
    }
    .header-section p {
        font-size: 0.9rem; /* Reduced font size for readability on mobile */
    }
}
/* Card Styles with Flip Effect */
.profile-card {
    perspective: 1200px; /* Increased perspective for a more dramatic flip effect */
}
.profile-card .card {
    width: 100%;
    border-radius:0.35rem; /* Rounded corners for a smoother look */
    background: rgba(255, 255, 255, 0.95);
    transition: transform 0.6s ease, box-shadow 0.3s ease; /* Added box-shadow transition */
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2); /* Deeper shadow for a floating effect */
    border: none; /* Subtle border for more definition */
	margin-bottom: 1.5rem;
    -webkit-box-shadow: 0 1px 2px rgba(56, 65, 74, .15);
    box-shadow: 0 1px 2px rgba(56, 65, 74, .15);
}
.profile-card .card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transition: transform 0.6s;
}
.profile-card:hover .card-inner {
    transform: rotateY(180deg);
}
.profile-card .card-front, .profile-card .card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
}
.profile-card .card-back {
    background-color: #0056b3;
    color: #fff;
    transform: rotateY(180deg);
    border-radius: 16px; /* Rounded corners for the back side */
}
/* Card Text */
.profile-card h5 {
    font-size: 1.26rem;
    margin-top: 15px;
    color: #333;
    transition: color 0.3s ease, transform 0.3s ease; /* Added transform for hover effect */
}
.profile-card h5:hover {
    color: #ffc107;
    transform: translateY(-5px); /* Slight elevation on hover */
}
/* Icon Styles - Enhanced */
.icon-section {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin: 20px 0;
}
.icon-style {
    font-size: 2.2rem; /* Slightly larger icons */
    padding: 12px; /* Increased padding for bigger icons */
    border-radius: 50%;
    background: rgba(40, 167, 69, 0.1);
    color: #28a745;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 70px;
    height: 70px;
    margin: 10px;
    border: 2px solid #28a745; /* Adding border for definition */
}
.icon-style:hover {
    transform: scale(1.2); /* Stronger zoom effect on hover */
    box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.2); /* Larger shadow on hover */
    background-color: rgba(40, 167, 69, 0.2); /* Slightly darkened background */
}
/* Button Styles */
.logout-btn {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}
.logout-btn .btn-danger {
    border-radius: 10px; /* Rounded corners */
    padding: 12px 25px; /* Larger padding */
    background: linear-gradient(135deg, #dc3545, #c82333);
    color: #fff;
    font-size: 1.1rem; /* Slightly larger text */
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2); /* Added shadow */
    transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    border: none; /* Remove default border */
}
.logout-btn .btn-danger:hover {
    background: linear-gradient(135deg, #c82333, #bd2130);
    transform: scale(1.05);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.3); /* Bigger shadow on hover */
}
/* Focus States for Accessibility */
.logout-btn .btn-danger:focus,
.header-section h2:focus,
.header-section p:focus,
.profile-card h5:focus {
    outline: 3px solid #ffc107;
    outline-offset: 2px;
}
/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}
.header-section,
.profile-card .card,
.icon-style,
.logout-btn .btn-danger {
    animation: fadeIn 0.8s ease forwards;
}
/* Responsive Design Considerations */
@media (max-width: 768px) {
    .profile-card h5 {
        font-size: 1.4rem; /* Reduced size for mobile */
    }
    .icon-style {
        font-size: 1.8rem; /* Smaller icons on mobile */
        width: 60px;
        height: 60px;
    }
    .logout-btn .btn-danger {
        font-size: 1rem; /* Smaller font on mobile */
        padding: 10px 20px; /* Adjusted padding */
    }
}
/* Footer Styles */
/* Footer Styles */
.footer {
    background-color: #222a68;
    color: white;
    padding: 30px 20px;
    margin-top: 0px;
}
/* Footer Container - First Line */
.footer-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    max-width: 1100px;
    margin: 0 auto;
}
.footer-left h3 {
    font-size: 1.6rem;
    margin-bottom: 10px;
    font-weight: 600;
    color: #fff;
}
.footer-text {
    font-size: 1rem;
    color: #ddd;
    line-height: 1.6;
    text-align: center;
}
/* Footer Contact - Second Line with enhancements */
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
}
.footer-contact li {
    margin: 0 15px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
}
.footer-contact a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}
.footer-contact a:hover {
    color: #66c0f4;
}
.footer-contact i {
    margin-right: 10px;
    font-size: 1.3rem;
}
/* Responsive Adjustments */
@media (max-width: 768px) {
    .footer-left h3 {
        font-size: 1.4rem;
    }
    .footer-contact-container {
        text-align: center;
    }
    .footer-contact li {
        font-size: 1rem;
        margin-bottom: 10px;
    }
    .footer-left p {
        font-size: 0.9rem;
    }
}
@media (max-width: 460px) {
    .footer-left h3 {
        font-size: 1.3rem;
    }
    .footer-text {
        font-size: 0.85rem;
    }
}
/* Floating Header Menu Styling */
header{background: #f00;}
.floating-menu {
    position: fixed;
    top: 0px;
    left: 0%;
    /*transform: translateX(-50%);  Center align the menu */
    z-index: 1000;
    background: #222a68;
    padding: 10px 30px; /* Increased horizontal padding for better spacing */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); width: 100%
}
/* Hamburger Menu for Mobile */
.hamburger-menu {
    display: none; /* Initially hidden */
    cursor: pointer;
    font-size: 1.5rem;
    color: white;
}
/* Menu Links Styling */
.floating-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center; /* Keep items centered */
    align-items: center;
}
.floating-menu li {
    margin: 0 15px; /* Space between menu items */
}
.floating-menu a {
    text-decoration: none;
    color: white;
    font-size: 1.2rem;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    border-radius: 8px;
    transition: background-color 0.3s, transform 0.3s;
}
.floating-menu a i {
    margin-right: 10px;
}
.floating-menu a:hover {
    background-color: #6610f2;
    transform: translateY(-5px); /* Slight lift effect on hover */
}
/* Media Query for Mobile and Tablets */
@media (max-width: 768px) {
    .floating-menu {
        top: 10px;
        padding: 10px 15px; /* Adjust padding for smaller screens */
    }
    .floating-menu ul {
        display: none; /* Hide menu by default */
        flex-direction: column; /* Stack the items vertically */
        justify-content: flex-start; /* Align items to the start */
        width: auto;
        position: absolute;
        top: 60px; /* Position below the hamburger menu */
        left: 50%;
        transform: translateX(-50%); /* Center align the menu */
        background-color: #007bff;
        border-radius: 10px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }
    .floating-menu li {
        margin: 10px 0; /* Adjust margin between items */
    }
    .hamburger-menu {
        display: block; /* Show hamburger icon */
    }
    .floating-menu a {
        font-size: 1rem; /* Smaller font size for mobile */
        padding: 10px 15px; /* Adjust padding for mobile */
    }
}
/* When the menu is open (toggled), show the menu items */
.floating-menu.open ul {
    display: flex; /* Show menu when toggled */
}
.profile-container {
    max-width: 900px;
    margin: 20px auto;
    padding: 25px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}
.profile-container:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}
.profile-container h2 {
    text-align: center;
    margin-bottom: 15px;
    color: #004085;
    font-size: 1.6rem;
    font-weight: 600;
    text-transform: uppercase;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
    background: linear-gradient(to right, #004085, #02a657);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: fadeIn 0.9s ease-in-out;
}
/* Smooth Fade-in Animation */
@keyframes fadeIn {
    0% { opacity: 0; transform: translateY(-8px); }
    100% { opacity: 1; transform: translateY(0); }
}
/* Form Control Styling */
.form-group {
    position: relative;
    margin-bottom: 18px;
}
.form-control {
    padding: 10px 18px;
    border: 1px solid #d0d0d0;
    border-radius: 6px;
    background-color: #f5f5f5;
    font-size: 0.95rem;
    transition: border-color 0.3s ease, background-color 0.3s ease;
}
.form-control:hover {
    border-color: #007bff;
    background-color: #e9f2ff;
}
.form-control:focus {
    border-color: #007bff;
    background-color: #fff;
    outline: none;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.4);
}
.form-control::placeholder {
    color: #7a7a7a;
    font-style: italic;
}
/* Label Styling */
label {
    padding:3px 0;
    margin-left: 3px;
    font-weight: 500;
    margin-bottom: 6px;
    color: #222a68;
    display: block;
    font-size: 0.85rem;
}
/* Button Styling */
.btn-save {
    width: 100%;
    padding: 12px;
    background: linear-gradient(135deg, #222a68, #6610f2);
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}
.btn-save:hover {
    background-color: #222a68;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
/* Additional Fields (Student/Faculty) */
#student_fields, #faculty_fields {
    display: none;
}
/* Responsive Design */
@media (max-width: 768px) {
    .profile-container {
        margin: 30px 15px;
        padding: 20px;
    }
    .profile-container h2 {
        font-size: 1.4rem;
    }
    .form-control {
        padding: 8px 14px;
    }
    .btn-save {
        padding: 10px;
        font-size: 0.9rem;
    }
    .col-md-6 {
        max-width: 100% !important;
    }
    .col-12 {
        margin-top: 15px;
    }
}
/* Utility Classes */
.mt-7 {
    margin-top: 7rem !important;
}
.contact-details {
    list-style: none; /* Remove bullet points */
    padding: 0;
    margin: 20px 0 0; /* Add spacing at the top */
    display: flex;
    flex-direction: column; /* Stack items vertically */
    gap: 10px; /* Add spacing between items */
}
.contact-details li {
    display: flex;
    align-items: center;
    font-size: 16px;
    color: #222a68; /* Primary color */
}
.contact-details i {
    font-size: 18px; /* Icon size */
    color: #02a657; /* Icon color */
    margin-right: 10px; /* Space between icon and text */
}
.contact-details a {
    color: #222a68; /* Link color */
    text-decoration: none; /* Remove underline */
    transition: color 0.2s ease; /* Smooth hover effect */
}
.contact-details a:hover {
    color: #02a657; /* Highlight color on hover */
}
.custom-btn {
    margin-top: 8px;
    background-color: #ffc107;
    color: #ffffff;
    border: none;
    padding: 8px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    width: 100%;
    cursor: pointer;
    transition: background-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
    position: relative;
    overflow: hidden;
}
.custom-btn:hover {
    background: linear-gradient(90deg, #d92626, #ff4d4d); /* Reverse gradient on hover */
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2); /* Enhanced shadow on hover */
    transform: translateY(-3px); /* Slight upward movement on hover */
}
.custom-btn:active {
    transform: translateY(0); /* Reset position on click */
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2); /* Reduced shadow on click */
    background: linear-gradient(90deg, #c02020, #b31818); /* Darker gradient on click */
}
.section {
    padding: 90px 0;
    position: relative;
}
.page-content {
    padding: calc(30px + 1.5rem) calc(1.5rem* .5) 10px calc(1.5rem* .5);
}
[data-layout=horizontal] .page-content {
    padding: calc(45px + 1.5rem) calc(1.5rem* .5) 60px calc(1.5rem* .5);
}
@media (min-width: 1024.1px) {
    [data-layout=horizontal] .page-content {
        margin-top: 70px;
    }
}
.notify-blink {
    animation: blink-animation 1s steps(5, start) infinite;
    color: #ff0000; /* Notification color */
    font-weight: bold;
    background-color: #ffe6e6; /* Light red background for emphasis */
    padding: 10px 20px;
    border-radius: 5px;
    /* box-shadow: 0 0 10px rgba(255, 0, 0, 0.7); */
    display: inline-flex;
    align-items: center;
    gap: 10px; /* Space between icon and text */
  }
  .notify-blink i {
    font-size: 20px; /* Icon size */
    animation: shake-animation 0.5s ease-in-out infinite; /* Add subtle shake effect to the icon */
  }
  @keyframes blink-animation {
    50% {
      opacity: 0;
    }
  }
  @keyframes glow-animation {
    0%, 100% {
      box-shadow: 0 0 10px rgba(255, 0, 0, 0.7), 0 0 20px rgba(255, 0, 0, 0.5);
    }
    50% {
      box-shadow: 0 0 20px rgba(255, 0, 0, 1), 0 0 30px rgba(255, 0, 0, 0.8);
    }
  }
  @keyframes shake-animation {
    0%, 100% {
      transform: rotate(0deg);
    }
    25% {
      transform: rotate(-10deg);
    }
    75% {
      transform: rotate(10deg);
    }
  }
  .no-grievances-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #f4f6f8;
    padding: 20px;
}
.no-grievances-content {
    text-align: center;
    background: #ffffff;
    padding: 30px;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    width: 100%;
}
.no-grievances-content i {
    font-size: 50px;
    color: #007bff;
    margin-bottom: 15px;
}
.no-grievances-content h2 {
    font-size: 24px;
    color: #333;
    margin-bottom: 10px;
}
.no-grievances-content p {
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
}
.no-grievances-content .btn {
    padding: 10px 20px;
    font-size: 16px;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
}
.no-grievances-content .btn-primary {
    background-color: #007bff;
    border: none;
}
.no-grievances-content .btn-primary:hover {
    background-color: #0056b3;
}
