
/*  small devices (ipad, 812px and down) */
@media only screen and (max-width: 812px) {
.margin_left50{
    margin-left:0px;
}
.top_bar_contact_item{
    padding-right: 0px;
}
.top-hd .ml-auto, .mx-auto {
    margin-left: 51px !important;
}
.top-shape {
    top: -70px;
   
}
.footer-area{
    padding: 120px 0px 50px 0px;
}
.navbar-collapse{
	background-color: #ffffff;
	padding: 20px;
	margin-top:-27px;
}
.sub-sec p{
	padding: 10px;
}
.sub-sec h3 {
    padding: 10px;
}
.header.fixed {
    width: 100%;
    position: fixed;
    top: 0;
    height: 140px;
    z-index: 999;
}
}

/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {
   
.top-shape {
    top: -30px;
}
.footer-area .pl-5, .px-5{
 padding-left: 0px !important;
}
.slide-sec{
    left: 17%;
    top: 75%;
}
}

/* Extra small devices (phones, 375px and down) */
@media only screen and (max-width: 375px) {
.slide-sec{
    left: 14%;
    top: 75%;
}
}

/*table css*/
table {
    border: 1px solid #000;
}

th, td {
    border: 1px solid #000 !important;
    vertical-align: middle;
}

thead {
    background-color: #f8f9fa;
    text-align: center;
    font-weight: bold;
}

tbody tr:nth-child(even) {
    background-color: #f9f9f9;
}

.table-container {
    margin: 40px auto;
    max-width: 900px;
}
/* ---------- Base Styling ---------- */
body {
    background-color: #f3f6fa;
    font-family: "Poppins", sans-serif;
}

.table-container {
    margin: 60px auto;
    max-width: 950px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    overflow: hidden;
    /*            animation: fadeInUp 1s ease;*/
}

/* ---------- Table Header ---------- */
thead th {
    background: linear-gradient(90deg, #003d69, #e12454);
    color: white;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: center;
    /*            animation: slideDown 1.2s ease;*/
}

/* ---------- Table Body ---------- */
tbody td {
    border: 1px solid #dee2e6 !important;
    vertical-align: middle;
    text-align: center;
    font-size: 15px;
    color: #333;
    transition: all 0.3s ease;
}

tbody tr:nth-child(even) {
    background-color: #f9f9f9;
}

tbody tr:hover {
    background-color: #e8f0fe;
    transform: scale(1.01);
    transition: all 0.3s ease;
}

table {
    border: none;
}

/* ---------- Animations ---------- */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}
