
.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;
  align-items: stretch;   /*  one-line fix */
}

.card-spacer {
  flex-grow: 1;
color: #e8f1ff;
}




.two-column img {
  
   max-width: 375px;
    max-height: 375px;
    border-radius: 10px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.1);
}

.two-column img {
  
   max-width: 375px;
    max-height: 375px;
    border-radius: 10px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.1);
}



input {
    border-radius: 20px;
    border: 1px solid #e0e0e0;
    padding: 12px 16px;
    outline: none;
    transition: 0.2s ease;
}

input:focus {
    border-color: #ff6b81;
    box-shadow: 0 0 0 3px rgba(255,107,129,0.2);
}

select {
    border-radius: 10px;
    border: 1px solid #e0e0e0;
    padding: 12px 16px;
    outline: none;
    transition: 0.2s ease;
}

select:focus {
    border-color: #ff6b81;
    box-shadow: 0 0 0 3px rgba(255,107,129,0.2);
}





.paragraph-box {
    max-width: 300px;     
   
    text-align: justify;
    line-height: 1.7;  
}
.service-pill {
  display: inline-block;
  padding: 6px 12px;
  margin: 4px 6px 4px 0;

  background: #ffffff;
  border-radius: 10px;
  border: 1px solid #d0d0d0;

  font-size: 15px;
}


/*  Table Display */

.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: 25px 27px;          /* 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: 25px 27px;          /* 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); }
}