.page-wrapper {
    font-family: 'Roboto', Verdana, sans-serif;
    
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 15px;
    color: #1f2a44;
}

.section-card {
    background: linear-gradient(135deg, #e8f1ff, #ffffff);
    border-radius: 14px;
    padding: 25px 30px;
    margin-bottom: 35px;
    border-left: 6px solid #003580;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    animation: fadeInUp 0.7s ease;
    position: relative;	
   max-width: 420px 
}

.section-card-alt {
    background: linear-gradient(135deg, #ffffff, #eef7ff);
    border-radius: 14px;
    padding: 25px 30px;
    margin-bottom: 35px;
    border-right: 6px solid #0055aa;
    box-shadow: 0 6px 18px rgba(0,0,0,0.05);
    animation: fadeInUp 0.7s ease;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    position: relative;
   max-width: 420px
 	
}
.section-title {
    font-size: 26px;
    font-weight: 700;
    color: #002b62;
    margin-bottom: 12px;
}
.section-subtitle {
    
    font-size: 20px;
    color: #0077cc; /* #285ea8;*/
    margin-bottom: 25px;
    font-weight: 500;
}

.section-text {
    font-size: 17px;
    font-weight: 400;
    margin-bottom: 10px;
    color: #000580;
     text-align: justify;
}

.two-column {
    display: flex;
    flex-wrap: wrap; 
    margin: 20px 0;
    gap: 10px; 
    justify-content: center;
}

.two-column img {
  
   max-width: 375px;
    max-height: 375px;
    border-radius: 10px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.1);
}

.paragraph-box {
    max-width: 300px;     
   
    text-align: justify;
    line-height: 1.7;  
}



.video-banner-container {
  position: relative;
  width: 100%;
  height: 400px; /* Adjust height as you like */
  overflow: hidden;
  border-radius: 8px; /* Optional rounded corners */
}

.video-banner-container video {
  position: absolute;
  top: 0;
 /* left: 50%;
  transform: translateX(-50%); */  /* Centers horizontally ONLY */
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center; /* ?? Important - aligns video to the top */
}

.video-banner-container img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;          /* fills container, zoomed properly */
  object-position: top center; /* align to top like your video */
}

.banner-overlay {
  position: absolute;
  top: 90%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 100%;
  padding: 0 20px;
  background: rgba(0, 0, 0, 0.3); /* ? Transparent banner overlay */
  color: #ffffff !important;
  border-radius: 5px;
}

.banner-overlay h1 {
  font-size: 2.2rem;
  margin: 0;
  font-weight: bold;
 color: #ffffff !important;
}

.banner-overlay p {
  font-size: 1.2rem;
  margin-top: 10px;
 color: #ffffff !important;
}

.page-title {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 10px;
    text-align: center;
    color: #003580;
}
.page-card {
    background: linear-gradient(135deg, #e8f1ff, #ffffff);
    border-radius: 14px;
    padding: 25px 30px;
    margin-bottom: 35px;
    border-left: 6px solid #003580;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    animation: fadeInUp 0.7s ease;
    position: relative;	
   max-width: 1420px 
}

.erp-table {
  width: 100%;                 /* Makes the table span the full width of its container */
  border-collapse: separate;  /* Keeps cell borders separate (needed for spacing & rounded corners) */
  border-spacing: 0;           /* Removes gaps between table cells */
  background: #fff333;         /* Sets the table’s background color (debug yellow here) */
  border: 1px solid #e6e8eb;   /* Adds a light outer border around the table */
  border-radius: 8px;          /* Rounds the outer corners of the table */
  overflow: hidden;            /* Clips child elements to preserve rounded corners */
  font-size: 14px;             /* Sets base text size for table content */
}

.erp-table thead th {
  background: #f8f9fb;         /* Header background color */
  color: #4c5a67;              /* Header text color */
  font-size: 13px;             /* Slightly smaller text for headers */
  font-weight: 600;            /* Semi-bold header text */
  padding: 14px 16px;          /* Space inside header cells */
  border-bottom: 1px solid #e6e8eb; /* Divider line below header row */
  text-align: left;            /* Left-aligns header text */
  vertical-align: top;         /* Aligns header text to the top of the cell */
}

.erp-table tbody td {
  padding: 14px 16px;          /* Space inside body cells */
  border-bottom: 1px solid #f2f3f5; /* Light divider between rows */
  color: #1f2937;              /* Body text color */
  vertical-align: top;         /* Aligns content to the top of each cell */
  background: #ffffff;         /* Ensures solid white cell background */
}

.erp-table tbody td:first-child {
  font-weight: 500;            /* Slight emphasis on the first column */
}

.erp-table tbody tr:last-child td {
  border-bottom: none;         /* Removes divider from the last row */
}

.erp-table tbody tr {
  background: #ffffff;         /* Sets background for each row */
  border-radius: 8px;          /* Rounds row corners (visual only) */
}

.erp-table tbody tr:hover {
  background: #f9fafb;         /* Subtle highlight when hovering over a row */
}

.erp-table-wrapper {
  background: #ffffff !important; /* Forces a solid background for the table container (debug yellow) */
  margin-top: 80px;               /* Adds space above the table section */
  margin-left: auto;              /* Centers the wrapper horizontally */
  margin-right: auto;             /* Centers the wrapper horizontally */
  max-width: 1100px;              /* Limits table width on large screens */
  padding: 16px;                  /* Inner spacing between wrapper edge and table */
  
  border-radius: 12px;            /* Rounds the wrapper corners */
  box-shadow: 0 6px 20px rgba(0,0,0,0.08); /* Soft shadow to lift wrapper from background */
  position: relative;             /* Establishes positioning context for child elements */
  isolation: isolate;             /* Prevents background blending from parent elements */
}




/* ---- Animation ---- */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: translateY(0); }
}