
 @import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

 * {
   margin: 0;
   padding: 0;
   box-sizing: border-box;
 }

 :root {
   --active-bg: #2AABD4;
   --active-border: #1B7FA0;
   --active-text: #FFFFFF;
   --inactive-bg: #E2E2E2;
   --inactive-bg-2: #DADADA;
   --inactive-text: #9A9A9A;
   --crumb-text: #6B6B6B;
   --crumb-sep: #C7C7C7;


   --udf-blue: #2f5fa8;
   --udf-blue-light: #eaf1fb;
   --udf-blue-dark: #1c2b4a;
   --udf-gold: #b8860b;
   --udf-pink: #d6537a;
   --udf-green: #2f9e6e;
   --udf-purple: #7c5cbf;
   --udf-text: #2b2b2b;
   --udf-muted: #5a6472;




   --blue-900: #0a2647;
   --blue-800: #144272;
   --blue-700: #1a4b8c;
   --blue-600: #1976d2;
   --blue-500: #2196f3;
   --blue-400: #64b5f6;
   --blue-100: #bbdefb;
   --blue-50: #e3f2fd;
   --blue-10: #f5f9ff;
   --white: #ffffff;
   --gray-100: #f0f4f8;
   --gray-200: #d9e2ef;
   --gray-600: #5a6c7d;
   --gray-800: #2c3e50;
   --text-dark: #0a2647;
   --shadow: 0 8px 32px rgba(10, 38, 71, 0.08);
   --shadow-hover: 0 12px 48px rgba(10, 38, 71, 0.12);
   --radius: 12px;
   --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
   --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
   --font-serif: 'Merriweather', Georgia, 'Times New Roman', serif;

 }

 /* ============================================================
     SECTION: BUTTON (CTA — "Enter The Project")
     Note: original file defined .btn-data twice with conflicting
     styles; merged into a single definition here.
  ============================================================ */
 .btn-log {
   display: flex;
   justify-content: center;
   width: 100%;
   margin-top: -30px;
 }

 .btn-section {
   display: flex;
   justify-content: center;
   width: 100%;
   margin-top: 16px;
 }

 .btn-data {
   display: inline-block;
   padding: 10px 48px;
   background-color: #4c50cb;
   color: #ffffff;
   text-decoration: none;
   font-weight: 600;
   font-size: 16px;
   border-radius: 6px;
   border: 2px solid #4c50cb;
   transition: all 0.3s ease;
   margin-top: 25px;
   text-align: center;
   font-family: 'inter'
 }

 .btn-data:hover {
   background-color: #4c50cb !important;
   color: #fff !important;
   border-color: #4c50cb;
   transform: translateY(-2px);
   box-shadow: 0 6px 14px rgba(0, 0, 0, 0.2);
 }

 @media (max-width: 480px) {
   .btn-data {
     padding: 10px 28px;
     font-size: 15px;
     width: 88%;
     max-width: 280px;
   }
 }

 .df-welcome {

   /*padding-top: 3rem;*/
   /*padding-bottom: 3rem;*/
 }

 .df-heading {
   font-family: inter, 'Times New Roman', serif;
   font-weight: 800;
   font-size: 3rem;
   color: #1a1a1a;
   /*margin-bottom: 1.75rem;*/
 }

 .df-heading-sm {
   font-size: 2rem;
   margin-top: 1rem;
   font-family: inter, 'Times New Roman', serif !important;
   font-weight: 800;
 }

 .testdata p {
   font-family: inter, 'Times New Roman', serif !important;
   font-weight: 500;
   text-align: justify;
 }

 .df-text {
   font-family: inter, 'Times New Roman', serif !important;
   font-size: 1.05rem;
   line-height: 1.75;
   color: #2b2b2b;
   margin-bottom: 1.4rem;
 }



 .df-point {
   align-items: flex-start;
   margin-bottom: 0.9rem;
 }

 .df-point-icon {
   color: #444444;
   font-size: 1.15rem;
   margin-top: 0.15rem;
 }

 .df-point-text {
   font-family: inter, 'Times New Roman', serif !important;
   font-size: 1.05rem;
   color: #2b2b2b;
   margin-bottom: 0;
 }

 .btn-log {
   padding: 1rem 0 3rem;
 }

 @media (max-width: 576px) {
   .df-heading {
     font-size: 1.5rem;
     padding: 10px;
     font-family: inter, 'Times New Roman', serif !important;
   }

   .df-heading-sm {
     font-size: 1.3rem;
   }

   .df-text,
   .df-point-text {
     font-size: 1rem;
   }
 }

 /* ============================================================
     SECTION: LOGO
     Bootstrap's d-none/d-md-block already swaps desktop <-> mobile
     image; sizes were never defined, so the logo rendered at full
     native resolution before. Added responsive, screen-based sizing.
  ============================================================ */
 .img-container {
   text-align: center;
   padding-top: 8px;
 }

 .desktop-logo,
 .mobile-logo {
   height: auto;
   display: block;
   margin: 0 auto;
 }

 .desktop-logo {
   max-width: 67%;

 }

 .mobile-logo {
   width: clamp(120px, 0, 200px);
 }

 /* ============================================================
     SECTION: ORNAMENTAL DIVIDER
     Markup (.orn-div / .orn-line / .orn-mid / .orn-dot / .orn-diamond)
     existed with no CSS behind it — added here.
  ============================================================ */
 .orn-div {
   display: flex;
   align-items: center;
   justify-content: center;
   gap: 10px;
   max-width: 360px;
   margin: 14px auto;
   padding: 0 16px;
 }

 .orn-line {
   flex: 1 1 auto;
   height: 1px;
   background: linear-gradient(90deg, transparent, #7b1111, transparent);
 }

 .orn-mid {
   display: flex;
   align-items: center;
   gap: 7px;
   flex-shrink: 0;
 }

 .orn-dot {
   width: 5px;
   height: 5px;
   border-radius: 50%;
   background: #c9a227;
 }

 .orn-diamond {
   width: 8px;
   height: 8px;
   background: #8b1a1a;
   transform: rotate(45deg);
 }

 @media (max-width: 480px) {
   .orn-div {
     max-width: 260px;
     margin: 10px auto;
   }
 }

 /* ============================================================
     SECTION: BIRTH / HERO IMAGE
     The <picture> element already swaps a dedicated mobile image
     below 768px — this just gives it a clean responsive base.
  ============================================================ */
 .imagedata {
   width: 100%;
 }

 .imagedata img {
   width: 100%;
   height: auto;
   display: block;
 }

 @media (max-width: 480px) {
   .imagedata img {
     width: 75% !important;
     height: auto;
     margin-left: -9px !important;
   }
 }

 /* ============================================================
     SECTION: WELCOME RIBBON
     Kept as originally built (already has its own tablet + mobile
     breakpoints below); only the missing font import above was
     fixing it.
  ============================================================ */
 .scene {
   display: flex;
   flex-direction: column;
   align-items: center;
   gap: 32px;
   padding: 21px 2px;
   width: 100%;
 }

 .ribbon-wrap {
   position: relative;
   display: inline-flex;
   justify-content: center;
   animation: fadeSlideDown 0.9s cubic-bezier(.22, 1, .36, 1) both;
 }

 .ribbon {
   position: relative;
   background: linear-gradient(135deg, #8b1a1a 0%, #c0392b 40%, #a93226 60%, #7b1111 100%);
   padding: 6px 57px;
   min-width: 340px;
   text-align: center;
   box-shadow:
     0 8px 32px rgba(139, 26, 26, .35),
     inset 0 1px 0 rgba(255, 255, 255, .18),
     inset 0 -2px 0 rgba(0, 0, 0, .25);
 }

 .ribbon::before {
   content: '';
   position: absolute;
   inset: 0;
   background: linear-gradient(180deg, rgba(255, 255, 255, .18) 0%, transparent 60%);
   pointer-events: none;
 }

 .ribbon::after {
   content: '';
   position: absolute;
   top: 3px;
   left: -22px;
   width: 0;
   height: 0;
   border-top: 29px solid transparent;
   border-bottom: 29px solid transparent;
   border-right: 22px solid #8b1a1a;
 }

 .ribbon-tail-right {
   position: absolute;
   top: 3px;
   right: -22px;
   width: 0;
   height: 0;
   border-top: 29px solid transparent;
   border-bottom: 29px solid transparent;
   border-left: 22px solid #7b1111;
 }

 .ribbon-shadow-left,
 .ribbon-shadow-right {
   position: absolute;
   bottom: -10px;
   width: 22px;
   height: 10px;
   background: rgba(0, 0, 0, .28);
 }

 .ribbon-shadow-left {
   left: -22px;
   clip-path: polygon(0 0, 100% 0, 100% 100%);
 }

 .ribbon-shadow-right {
   right: -22px;
   clip-path: polygon(0 0, 100% 0, 0 100%);
 }

 .dot {
   position: absolute;
   width: 8px;
   height: 8px;
   border-radius: 50%;
   background: rgba(255, 220, 150, .75);
   box-shadow: 0 0 6px rgba(255, 220, 150, .8);
 }

 .dot-top-right {
   top: 8px;
   right: 14px;
 }

 .dot-bottom-left {
   bottom: 8px;
   left: 14px;
 }

 .welcome-text {
   font-family: 'Playfair Display', serif;
   font-size: 2rem;
   font-weight: 900;
   color: #fff;
   letter-spacing: 0.18em;
   text-transform: uppercase;
   text-shadow: 0 2px 8px rgba(0, 0, 0, .35);
   position: relative;
   z-index: 1;
   white-space: nowrap;
 }

 .sub-line {
   display: flex;
   align-items: center;
   gap: 14px;
   color: #050851;
   font-size: 0.9rem;
   letter-spacing: 0.28em;
   text-transform: uppercase;
   opacity: 0;
   animation: fadeIn 0.7s 0.7s forwards;
   white-space: nowrap;
 }

 .sub-line::before,
 .sub-line::after {
   content: '';
   display: block;
   width: 50px;
   height: 1px;
   background: currentColor;
   flex-shrink: 0;
 }

 .strings {
   position: absolute;
   top: 100%;
   left: 50%;
   transform: translateX(-50%);
   display: flex;
   gap: 80px;
   pointer-events: none;
 }

 .string {
   width: 1px;
   height: 28px;
   background: linear-gradient(180deg, rgba(139, 26, 26, .6), transparent);
 }

 @media (min-width: 481px) and (max-width: 768px) {
   .scene p {
     text-align: justify;
   }

   .ribbon {
     min-width: 260px;
     padding: 16px 55px;
   }

   .welcome-text {
     font-size: 1.7rem;
   }

   .ribbon::after {
     border-top-width: 26px;
     border-bottom-width: 26px;
     border-right-width: 18px;
     left: -18px;
   }

   .ribbon-tail-right {
     border-top-width: 26px;
     border-bottom-width: 26px;
     border-left-width: 18px;
     right: -18px;
   }

   .ribbon-shadow-left {
     left: -18px;
     width: 18px;
   }

   .ribbon-shadow-right {
     right: -18px;
     width: 18px;
   }
 }

 @media (max-width: 480px) {
   .desc p {
     text-align: justify;
     word-break: break-all;
   }

   .scene {
     gap: 16px;
     padding: 21px 2px;
     margin-top: 0px;
   }

   .ribbon {
     min-width: unset;
     width: calc(100vw - 72px);
     padding: 6px 57px;
   }

   .ribbon::after {
     left: -16px;
     border-right-width: 16px;
     border-top-width: 23px;
     border-bottom-width: 23px;
   }

   .ribbon-tail-right {
     right: -16px;
     border-left-width: 16px;
     border-top-width: 23px;
     border-bottom-width: 23px;
   }

   .ribbon-shadow-left {
     left: -16px;
     width: 16px;
   }

   .ribbon-shadow-right {
     right: -16px;
     width: 16px;
   }

   /* ================================
   WELCOME BANNER
================================ */

   .welcome-banner {
     position: relative;
     width: 100%;
     max-width: 1100px;
     margin: 0 auto;
     overflow: visible;
   }

   /* Main red ribbon */
   .welcome-banner::before {
     content: "";
     position: absolute;
     top: 0;
     left: 30px;
     right: 30px;
     height: 90px;
     background: linear-gradient(to bottom,
         #b43b36,
         #a81717);
     box-shadow: 0 15px 25px rgba(120, 0, 0, 0.25);
     z-index: 1;
   }

   /* Left arrow */
   .welcome-banner::after {
     content: "";
     position: absolute;
     top: 0;
     left: 0;
     width: 0;
     height: 0;
     border-top: 45px solid transparent;
     border-bottom: 45px solid transparent;
     border-right: 32px solid #971515;
     z-index: 2;
   }

   /* Text */
   .welcome-text {
     position: relative;
     z-index: 3;

     height: 90px;
     display: flex;
     align-items: center;
     justify-content: center;

     margin: 0;
     padding: 0 50px;

     font-size: clamp(1.1rem, 5vw, 2.8rem);
     font-weight: 700;
     font-family: Georgia, "Times New Roman", serif;

     color: #fff;
     text-align: center;

     letter-spacing: 0.12em;
     white-space: nowrap;

     text-shadow: 2px 3px 3px rgba(0, 0, 0, 0.35);
   }


   /* =================================
   MOBILE VIEW
================================= */

   @media (max-width: 767px) {

     .welcome-banner {
       width: 100%;
       max-width: 100%;
       margin: 0 auto;
       padding: 0;
       overflow: hidden;
     }

     /* Ribbon */
     .welcome-banner::before {
       left: 20px;
       right: 20px;
       height: 60px;
       top: 0;
     }

     /* Left arrow */
     .welcome-banner::after {
       top: 0;
       border-top-width: 30px;
       border-bottom-width: 30px;
       border-right-width: 20px;
     }

     /* Text */
     .welcome-text {
       height: 60px;

       padding: 0 25px;

       font-size: 0.85rem;
       letter-spacing: 0.04em;

       white-space: nowrap;
       text-align: center;

       line-height: 1;
     }
   }


   /* =================================
   VERY SMALL MOBILE
================================= */

   @media (max-width: 400px) {

     .welcome-banner::before {
       left: 15px;
       right: 15px;
       height: 52px;
     }

     .welcome-banner::after {
       border-top-width: 26px;
       border-bottom-width: 26px;
       border-right-width: 16px;
     }

     .welcome-text {
       height: 52px;
       padding: 0 18px;

       font-size: 0.80rem;
       letter-spacing: 0.02em;
     }
   }

   .sub-line {
     font-size: 0.9rem;
     letter-spacing: 0.18em;
     gap: 10px;
   }

   .sub-line::before,
   .sub-line::after {
     width: 28px;
   }

   .strings {
     gap: 50px;
   }
 }

 @keyframes fadeSlideDown {
   from {
     opacity: 0;
     transform: translateY(-40px) scaleX(.85);
   }

   to {
     opacity: 1;
     transform: translateY(0) scaleX(1);
   }
 }

 @keyframes fadeIn {
   to {
     opacity: 1;
   }
 }

 /* ============================================================
     SECTION: THREE POINTS LIST
     Moved off inline styles into real classes so it's easy to
     tune per breakpoint.
  ============================================================ */
 .points-list {
   max-width: 640px;
   margin: 0.5rem auto 0;
   padding: 0 1rem;
   font-family: sans-serif;
   text-align: left;
 }

 .point-row {
   display: flex;
   align-items: flex-start;
   gap: 14px;
   margin-bottom: 1.25rem;
 }

 .point-row:last-child {
   margin-bottom: 0;
 }

 .point-icon {
   font-size: 20px;
   flex-shrink: 0;
   margin-top: 2px;
 }

 .point-row:nth-child(1) .point-icon {
   color: #185FA5;
 }

 .point-row:nth-child(2) .point-icon {
   color: #854F0B;
 }

 .point-row:nth-child(3) .point-icon {
   color: #3B6D11;
 }

 .point-text {
   margin: 0;
   font-size: 15px;
   line-height: 1.6;
   color: #222;
   text-align: justify;
 }

 @media (max-width: 480px) {
   .points-list {
     padding: 0 0.75rem;
   }

   .point-text {
     font-size: 14px;
   }

   .point-row {
     gap: 10px;
     margin-bottom: 1rem;
   }
 }

 /* ============================================================
     SECTION: PEOPLE / STATUS GRID
     Not used in this page's markup yet — left in place, ready to
     drop a .card-wrapper block wherever it's needed.
  ============================================================ */
 .card-wrapper {
   position: relative;
   max-width: 600px;
   margin: 0 auto;
 }

 .top-avatar {
   position: absolute;
   top: -28px;
   left: 0;
   width: 56px;
   height: 56px;
   border-radius: 50%;
   background: #fff;
   border: 2px solid #222;
   display: flex;
   align-items: center;
   justify-content: center;
   z-index: 10;
   box-shadow: 0 2px 8px rgba(0, 0, 0, .12);
 }

 .top-avatar svg {
   width: 30px;
   height: 30px;
   color: #444;
 }

 .main-box {
   border: 2px solid #222;
   border-radius: 4px;
   margin-top: 28px;
   background: #fff;
   overflow: hidden;
 }

 .grid-row {
   display: flex;
   flex-wrap: wrap;
 }

 .grid-row+.grid-row {
   border-top: 2px solid #222;
 }

 .grid-cell {
   flex: 1 1 50%;
   min-height: 130px;
   display: flex;
   flex-direction: column;
   align-items: center;
   justify-content: center;
   padding: 20px 10px;
   position: relative;
   transition: background .2s;
   cursor: pointer;
 }

 .grid-cell:hover {
   background: #f7f9fc;
 }

 .grid-cell+.grid-cell {
   border-left: 2px solid #222;
 }

 .person-icon {
   display: flex;
   flex-direction: column;
   align-items: center;
   gap: 4px;
 }

 .person-icon .head {
   width: 22px;
   height: 22px;
   border-radius: 50%;
   border: 2px solid #222;
   background: #fff;
 }

 .person-icon .body {
   width: 2px;
   height: 28px;
   background: #222;
   position: relative;
 }

 .person-icon .arms {
   position: absolute;
   top: 6px;
   left: 50%;
   transform: translateX(-50%);
   width: 36px;
   height: 2px;
   background: #222;
 }

 .person-icon .body-wrap {
   position: relative;
   height: 34px;
   display: flex;
   justify-content: center;
 }

 .cell-label {
   font-size: 11px;
   font-weight: 700;
   color: #555;
   margin-top: 8px;
   text-transform: uppercase;
   letter-spacing: .5px;
 }

 .badge-dot {
   position: absolute;
   top: 10px;
   right: 14px;
   width: 8px;
   height: 8px;
   border-radius: 50%;
 }

 .badge-dot.active {
   background: #2ecc71;
 }

 .badge-dot.inactive {
   background: #e74c3c;
 }

 .badge-dot.pending {
   background: #f39c12;
 }

 @media (max-width: 480px) {
   .grid-cell {
     flex: 1 1 100%;
   }

   .grid-cell+.grid-cell {
     border-left: none;
     border-top: 2px solid #222;
   }

   .grid-row+.grid-row {
     border-top: none;
   }
 }


 /*heading*/
 .img-container {
   display: flex;
   justify-content: center;
   align-items: center;
 }


 /*.img-container img {
    max-width: 68%;
    height: auto;
}*/

 .rotate-logo {
   animation: globeSpin 5s linear infinite;
   transform-style: preserve-3d;
 }

 @keyframes globeSpin {
   from {
     transform: rotateY(0deg);
   }

   to {
     transform: rotateY(-360deg);
   }
 }

 /* Mobile devices (max 576px) */
 @media (max-width: 576px) {

   .heading h2 {
     font-size: 1.4rem;
   }

   .heading p {
     font-size: 0.9rem;
   }

 }


 /* Tablet devices (577px to 768px) */

 @media (min-width: 577px) and (max-width: 768px) {

   .heading h2 {
     font-size: 1.7rem;
   }

   .heading p {
     font-size: 1rem;
   }

 }


 /* Laptop devices (769px to 992px) */

 @media (min-width: 769px) and (max-width: 992px) {

   .heading h2 {
     font-size: 1.9rem;
   }

   .heading p {
     font-size: 1.05rem;
   }

 }


 /* Large Desktop (993px and above) */

 @media (min-width: 993px) {

   .heading h2 {
     font-size: 2.2rem;
   }

   .heading p {
     font-size: 1.1rem;
   }

 }

 .heading h2 {
   font-family: "inter", sans-serif;
   font-optical-sizing: auto;
   font-weight: 900;
   font-style: normal;
   font-size: 2rem;


 }

 .heading p {
   font-family: "inter", sans-serif;
   font-optical-sizing: auto;
   font-weight: 500;
   font-style: normal;
   font-size: 18px;
 }

 .img-section img {
   max-width: 300px;
   height: auto;
   /*margin-top: -40px;*/
   /*margin-left: 265px;*/
 }

 .img-section p {
   font-size: 1.1rem;
   font-weight: 500;
   color: #222;
 }

 .img-section span {
   color: red;
 }

 .dot-container p {
   font-size: 1.1rem;
   margin-bottom: 8px;
   color: #444;
 }

 .form-check-label {
   font-size: 0.95rem;
   margin-left: 4px;
   cursor: pointer;
 }

 .form-check-input:checked {
   background-color: #FD250D;
   border-color: #0d6efd;
 }

 .desc p {
   font-size: 0.95rem;
   line-height: 1.5;
   color: #555;
   background: #fcfeff;
   padding: 12px;
   border-left: 4px solid orange;
   border-radius: 4px;
   font-family: "Lexend", sans-serif;
   font-optical-sizing: auto;
   font-weight: 400;
   font-style: normal;
 }

 .btns {
   display: inline-block;
   overflow: hidden;
   transform: perspective(0) translateZ(0);
   background: #0d3964;
   box-shadow: 0 0 1px rgba(0, 0, 0, 0);
   border-color: transparent;
   color: #ffffff;
   border-radius: 5px;
   font-size: 18px;
   font-family: "Barlow", sans-serif;
   font-weight: 700;
   height: 57px;
   line-height: 56px;
   padding: 0px 50px;
   border: 0;
   border-style: solid;
   box-shadow: none;
   transition: all 0.5s ease 0s;
   cursor: pointer;
   z-index: 1;
   position: relative;
   text-decoration: none;
 }

 .btns::before {
   content: "";
   background: #0e0e0e;
   height: 50%;
   width: 0;
   position: absolute;
   top: 0;
   left: 0;
   right: auto;
   transition: 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
   z-index: -1;
 }

 .btns::after {
   content: "";
   background: #0e0e0e;
   height: 50%;
   width: 0;
   position: absolute;
   bottom: 0;
   right: 0;
   left: auto;
   transition: 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
   z-index: -1;
 }

 .btns:focus,
 .btns:focus:active {
   box-shadow: none;
 }

 .btns:hover {
   color: #ffffff;
 }

 .btns:hover::before {
   width: 100%;
   right: auto;
   left: 0;
 }

 .btns:hover::after {
   width: 100%;
   left: 0;
   right: auto;
 }

 /* Desktop logo */
 .desktop-logo {
   max-height: 114px;
 }

 /* Mobile logo bigger */
 .mobile-logo {
   max-height: 200px;
 }


 /* Mobile XS */
 @media (max-width: 320px) {
   .heading h2 {
     font-family: "Montserrat", sans-serif;
     font-optical-sizing: auto;
     font-weight: 800;
     font-style: normal;
     font-size: 15px;
   }
 }

 /* Mobile S */
 @media (max-width: 375px) {
   .heading h2 {
     font-family: "Montserrat", sans-serif;
     font-optical-sizing: auto;
     font-weight: 800;
     font-style: normal;
     font-size: 15px;
   }
 }

 /* Mobile M */
 @media (max-width: 414px) {}

 /* Mobile L / Android */
 @media (max-width: 480px) {
   .heading h2 {
     font-family: "Montserrat", sans-serif;
     font-optical-sizing: auto;
     font-weight: 800;
     font-style: normal;
     font-size: 23px !important;
   }
 }

 /* Tablets */
 @media (min-width: 600px) and (max-width: 768px) {
   .heading h2 {
     font-family: "Montserrat", sans-serif;
     font-optical-sizing: auto;
     font-weight: 800;
     font-style: normal;
     font-size: 15px;
   }
 }

 /* Tablets Landscape */
 @media (min-width: 769px) and (max-width: 1024px) {}

 /* Small Laptops */
 @media (min-width: 1025px) and (max-width: 1280px) {}

 /* Medium Desktops */
 @media (min-width: 1281px) and (max-width: 1440px) {}

 /* Large Desktops */
 @media (min-width: 1441px) and (max-width: 1920px) {}

 /* Ultra HD / 4K */
 @media (min-width: 1921px) {}

 /* Orientation Portrait */
 @media (orientation: portrait) {}

 /* Orientation Landscape */
 @media (orientation: landscape) {}

 /*Home page css*/

 .nav-img-btn {
   display: block;
   /*border-radius: 10px;*/
   overflow: hidden;
   /*box-shadow: 0 3px 8px rgba(0,0,0,.35);*/
   transition: transform .15s ease;
 }

 .nav-img-btn:hover {
   transform: translateY(-2px);
 }

 .nav-img-btn img {
   width: 92%;
   /*height: 70px;*/
   object-fit: cover;
   display: block;
 }

 @media (max-width: 768px) {
   /*.nav-img-btn img { height: 48px; }*/
 }

 .bg-data {
   background-color: #0d1f3c !important;
 }

 /* ------------------------------------
16.Footer Area Section Start Here 
---------------------------------------*/
 /* ══════════════════════════════════
       FOOTER TOP
    ══════════════════════════════════ */
 .footer-top-area {
   background: linear-gradient(160deg, #050d1a 0%, #0a1628 40%, #0d1f3c 100%);
   padding: 20px 0 50px;
   position: relative;
   overflow: hidden;
   border-top: 3px solid #1a6fd4;
 }

 /* Decorative background pattern */
 .footer-top-area::before {
   content: '';
   position: absolute;
   inset: 0;
   background-image:
     radial-gradient(circle at 10% 20%, rgba(26, 111, 212, 0.10) 0%, transparent 50%),
     radial-gradient(circle at 90% 80%, rgba(99, 179, 255, 0.07) 0%, transparent 50%);
   pointer-events: none;
 }

 /* Dot pattern overlay */
 .footer-top-area::after {
   content: '';
   position: absolute;
   inset: 0;
   background-image: radial-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px);
   background-size: 28px 28px;
   pointer-events: none;
 }

 /* ── Column titles ── */
 .single-footer h3 {
   font-family: 'Cormorant Garamond', serif;
   font-size: 1.45rem;
   font-weight: 700;
   color: #fff;
   letter-spacing: 1px;
   margin-bottom: 20px;
   padding-bottom: 12px;
   position: relative;
 }

 .single-footer h3::after {
   content: '';
   position: absolute;
   bottom: 0;
   left: 0;
   width: 40px;
   height: 2px;
   background: linear-gradient(90deg, #1a6fd4, transparent);
   border-radius: 2px;
 }

 /* ── About column ── */
 .footer-one p {
   color: rgba(255, 255, 255, 0.62);
   font-size: 0.9rem;
   line-height: 1.85;
   margin-bottom: 14px;
   font-weight: 300;
 }

 /* Social icons */
 .footer-social-media-area ul {
   list-style: none;
   padding: 0;
   margin: 0;
   display: flex;
   gap: 10px;
   flex-wrap: wrap;
 }

 .footer-social-media-area ul li a {
   display: flex;
   align-items: center;
   justify-content: center;
   width: 38px;
   height: 38px;
   border: 1px solid rgba(26, 111, 212, 0.35);
   border-radius: 8px;
   color: rgba(255, 255, 255, 0.65);
   font-size: 15px;
   text-decoration: none;
   transition: all 0.25s ease;
   background: rgba(26, 111, 212, 0.05);
 }

 .footer-social-media-area ul li a:hover {
   background: #1a6fd4;
   color: #fff;
   border-color: #1a6fd4;
   transform: translateY(-3px);
   box-shadow: 0 6px 18px rgba(26, 111, 212, 0.3);
 }

 /* ── Quick Links ── */
 .quick-links {
   list-style: none;
   padding: 0;
   margin: 0;
 }

 .quick-links li {
   border-bottom: 1px solid rgba(255, 255, 255, 0.05);
 }

 .quick-links li:last-child {
   border-bottom: none;
 }

 .quick-links li a {
   display: block;
   padding: 7px 0;
   color: rgba(255, 255, 255, 0.60);
   font-size: 0.88rem;
   font-weight: 400;
   text-decoration: none;
   letter-spacing: 0.3px;
   transition: all 0.2s ease;
 }

 .quick-links li a i {
   color: #1a6fd4;
   margin-right: 8px;
   font-size: 12px;
   transition: transform 0.2s;
 }

 .quick-links li a:hover {
   color: #1a6fd4;
   padding-left: 6px;
 }

 .quick-links li a:hover i {
   transform: translateX(3px);
 }

 /* ── Quotation / Image column ── */
 .footer-three .img-responsive {
   width: 100%;
   border-radius: 10px;
   border: 2px solid rgba(26, 111, 212, 0.25);
   box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
   transition: transform 0.3s;
 }

 .footer-three .img-responsive:hover {
   transform: scale(1.02);
 }

 /* ── Address column ── */
 .footer-four p {
   color: rgba(255, 255, 255, 0.60);
   font-size: 0.88rem;
   line-height: 1.85;
   font-weight: 300;
 }

 /* Address info items */
 .addr-item {
   display: flex;
   gap: 12px;
   align-items: flex-start;
   margin-bottom: 16px;
 }

 .addr-item i {
   color: #1a6fd4;
   font-size: 15px;
   margin-top: 3px;
   flex-shrink: 0;
 }

 .addr-item span {
   color: rgba(255, 255, 255, 0.60);
   font-size: 0.88rem;
   line-height: 1.75;
 }

 /* Divider between columns on mobile */
 @media (max-width: 767px) {
   .single-footer {
     margin-bottom: 40px;
     padding-bottom: 30px;
     border-bottom: 1px solid rgba(255, 255, 255, 0.07);
   }

   .single-footer:last-child {
     border-bottom: none;
     margin-bottom: 0;
   }
 }

 /* ══════════════════════════════════
       FOOTER BOTTOM
    ══════════════════════════════════ */
 .footer-bottom-area {
   background: #020813;
   padding: 18px 0;
   border-top: 1px solid rgba(26, 111, 212, 0.2);
 }

 .footer-bottom {
   display: flex;
   align-items: center;
   justify-content: center;
   flex-wrap: wrap;
   gap: 8px;
 }

 .footer-bottom p {
   margin: 0;
   color: rgba(255, 255, 255, 0.45);
   font-size: 0.82rem;
   text-align: center;
   font-weight: 300;
   letter-spacing: 0.3px;
 }

 .footer-bottom p a {
   color: #1a6fd4;
   text-decoration: none;
   font-weight: 500;
   transition: color 0.2s;
 }

 .footer-bottom p a:hover {
   color: #63b3ff;
 }

 /* ── Responsive column spacing ── */
 @media (max-width: 991px) and (min-width: 768px) {
   .footer-top-area .col-md-6 {
     margin-bottom: 36px;
   }
 }


 /* Desktop */

 .bg-NavData {
   background-color: #14146b !important;
 }

 .navbar-nav {
   display: flex;
   flex-wrap: wrap;
   width: 100%;
 }

 .navbar-nav .nav-item {
   width: 23%;
   padding: 5px;
 }

 .nav-img-btn {
   display: block;
 }

 .nav-img-btn img {
   width: 100%;
   height: auto;
   display: block;
 }

 /* Tablet */
 @media (max-width: 991px) {
   .navbar-nav .nav-item {
     width: 50%;
   }
 }

 /* Mobile */
 @media (max-width: 576px) {
   .navbar-nav {
     display: block;
     margin-top: 20px;
   }

   .navbar-nav .nav-item {
     width: 100%;
     margin-bottom: 10px;
   }

   .nav-img-btn img {
     width: 89%;
     height: auto;
   }
 }


 .image-datacontainer {
   margin-top: 20px;
 }

 .image-datacontainer img {

   width: 100%;
   max-height: 250px;
   object-fit: cover;
   display: block;
   border-radius: 10px;
 }


 /*the refuge for humanisam*/
 .dt-eyebrow {
   display: block;
   font-size: 13px;
   font-weight: 700;
   letter-spacing: .04em;
   text-transform: uppercase;
   color: var(--active-border);
   margin-bottom: 14px;
 }

 /* ---------- Shared box-trail (desktop: row, mobile: stacked column) ---------- */
 .crumb-trail {
   display: flex;
   align-items: stretch;
   justify-content: center;
   list-style: none;
   margin: 30px 0 0;
   padding: 20px 16px;
   /*border-bottom: 1px solid #ECECEC;*/
   /*overflow-x: auto;*/
   -webkit-overflow-scrolling: touch;
   scrollbar-width: none;
   /*background: #F5F7F9;*/
 }

 .crumb-trail::-webkit-scrollbar {
   display: none;
 }

 .crumb-trail .crumb {
   position: relative;
   display: flex;
   align-items: center;
   gap: 10px;
   flex: 0 0 auto;
   white-space: nowrap;
   cursor: pointer;
   padding: 12px 18px;
   margin-right: 28px;
   border: 1px solid var(--inactive-bg-2);
   border-radius: 12px;
   background: #fff;
   transition: border-color .2s ease, background .2s ease, box-shadow .2s ease;
 }

 .crumb-trail .crumb:not(:last-child)::after {
   content: "";
   position: absolute;
   top: 50%;
   right: -28px;
   width: 28px;
   height: 2px;
   background: var(--inactive-bg-2);
   transform: translateY(-50%);
 }

 .crumb-trail .crumb.active:not(:last-child)::after,
 .crumb-trail .crumb.done:not(:last-child)::after {
   background: var(--active-bg);
 }

 .crumb-trail .crumb .num {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   width: 24px;
   height: 24px;
   border-radius: 8px;
   background: var(--inactive-bg-2);
   color: var(--inactive-text);
   font-size: 12px;
   font-weight: 700;
   flex: 0 0 auto;
   transition: background .2s ease, color .2s ease;
 }

 .crumb-trail .crumb .label {
   font-size: 17px;
   font-weight: 600;
   color: var(--crumb-text);
   white-space: normal;
   transition: color .2s ease;
 }

 .crumb-trail .crumb.active {
   border-color: var(--active-border);
   background: #2563ec;
   box-shadow: 0 4px 12px rgba(27, 127, 160, .25);
 }

 .crumb-trail .crumb.active .num {
   background: #fff;
   color: var(--active-bg);
 }

 .crumb-trail .crumb.active .label {
   color: var(--active-text);
 }

 .crumb-trail .crumb:not(.active):hover {
   border-color: var(--active-border);
   box-shadow: 0 2px 8px rgba(0, 0, 0, .08);
 }

 .crumb-trail .crumb:not(.active):hover .label {
   color: var(--active-border);
 }

 @media (max-width: 991px) {
   .crumb-trail .crumb {
     margin-right: 20px;
     padding: 10px 14px;
   }

   .crumb-trail .crumb:not(:last-child)::after {
     right: -20px;
     width: 20px;
   }
 }

 /* ---------- Mobile: same box design, stacked vertically ---------- */
 @media (max-width: 767px) {
   .crumb-trail {
     flex-direction: column;
     align-items: stretch;
     overflow-x: visible;
     margin: 14px -6px 0;
     padding: 16px;
     gap: 0;
   }

   .crumb-trail .crumb {
     width: 100%;
     margin-right: 0;
     margin-bottom: 16px;
     padding: 12px 14px;
   }

   .crumb-trail .crumb:last-child {
     margin-bottom: 0;
   }

   .crumb-trail .crumb .label {
     white-space: normal;
     font-size: 18px;
     font-family: 'inter' sans-serif;
   }

   /* connecting line becomes vertical, sits below each box */
   .crumb-trail .crumb:not(:last-child)::after {
     top: 100%;
     left: 32px;
     right: auto;
     width: 2px;
     height: 16px;
     transform: none;
   }
 }


 /*latest code*/
 /* ============================
           CRUMB TRAIL / TABS (sticky)
        ============================ */
 .drive-top {
   /*background: var(--white);*/
   /*border-bottom: 2px solid var(--blue-100);*/
   padding: 16px 0 12px;
   /*position: sticky;*/
   top: 0;
   z-index: 500;
   /*box-shadow: 0 2px 12px rgba(10, 38, 71, 0.06);*/
   transition: top 0.2s;
 }

 .crumb-trail {
   display: flex;
   flex-wrap: wrap;
   gap: 6px 4px;
   list-style: none;
   padding: 0;
   margin: 0;
   justify-content: center;
 }

 .crumb {
   display: flex;
   align-items: center;
   gap: 8px;
   padding: 8px 18px 8px 14px;
   border-radius: 40px;
   background: transparent;
   color: var(--gray-600);
   font-size: 0.82rem;
   font-weight: 500;
   cursor: pointer;
   transition: all var(--transition);
   border: 1.5px solid transparent;
   user-select: none;
   white-space: nowrap;
 }

 .crumb .num {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   width: 28px;
   height: 28px;
   border-radius: 50%;
   background: var(--blue-100);
   color: var(--blue-800);
   font-size: 0.75rem;
   font-weight: 700;
   transition: all var(--transition);
   flex-shrink: 0;
 }

 .crumb .label {
   font-size: 0.8rem;
   letter-spacing: 0.01em;
 }

 .crumb:hover {
   background: var(--blue-50);
   color: var(--blue-800);
   border-color: var(--blue-100);
 }

 .crumb:hover .num {
   background: var(--blue-600);
   color: var(--white);
 }

 .crumb.active {
   background: var(--blue-800);
   color: var(--white);
   border-color: var(--blue-800);
   box-shadow: 0 4px 16px rgba(20, 66, 114, 0.25);
 }

 .crumb.active .num {
   background: var(--white);
   color: var(--blue-800);
 }

 .crumb.active:hover {
   background: var(--blue-700);
   border-color: var(--blue-700);
 }

 /* ============================
           CONTENT SECTIONS
        ============================ */
 .content-section {
   padding: 56px 0 60px;
   /*border-bottom: 1px solid var(--gray-200);*/
   scroll-margin-top: 100px;
 }

 .content-section-2 {
   padding: 56px 0 60px;
   /*border-bottom: 1px solid var(--gray-200);*/
   scroll-margin-top: 100px;
 }

 .content-section-2:nth-child(even) {
   background: var(--blue-10);
 }

 .content-section:last-of-type {
   border-bottom: none;
 }

 .content-section:nth-child(odd) {
   background: var(--white);
 }

 .content-section:nth-child(even) {
   background: var(--blue-10);
 }

 .section-number {
   display: inline-block;
   font-size: 0.7rem;
   font-weight: 700;
   letter-spacing: 0.12em;
   text-transform: uppercase;
   color: var(--blue-600);
   background: var(--blue-50);
   padding: 2px 16px;
   border-radius: 30px;
   margin-bottom: 12px;
 }

 .section-title {
   font-family: var(--font-serif);
   font-size: clamp(1.6rem, 3.2vw, 2.6rem);
   font-weight: 700;
   color: var(--blue-900);
   line-height: 1.25;
   margin-bottom: 20px;
 }

 .section-title .highlight {
   color: var(--blue-600);
 }

 .section-sub {
   font-size: 1.05rem;
   color: var(--gray-600);
   max-width: 700px;
   font-weight: 400;
   margin-bottom: 28px;
   line-height: 1.8;
    font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
 }

 .content-section p {
   /*max-width: 780px;*/
   margin-bottom: 18px;
   font-size: 1.08rem;
   line-height: 1.8;
   color: #454141;
 font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
   text-align: justify;
   word-wrap: break-word;
 }

 .content-section p strong {
   color: var(--blue-800);
   font-weight: 600;
 }

 .content-section ul,
 .content-section .list-grid {
   max-width: 780px;
   margin: 16px 0 22px;
   padding-left: 24px;
 }

 .content-section ul li {
   margin-bottom: 10px;
   font-size: 1rem;
   line-height: 1.7;
   list-style-type: none;
   position: relative;
   padding-left: 28px;
 }

 .content-section ul li::before {
   content: "◆";
   position: absolute;
   left: 0;
   top: 0;
   color: var(--blue-500);
   font-size: 0.8rem;
 }

 .content-section ul li strong {
   color: var(--blue-800);
 }

 .pillar-grid {
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
   gap: 18px;
   max-width: 780px;
   margin: 18px 0 22px;
 }

 .pillar-item {
   background: var(--white);
   border-left: 4px solid var(--blue-500);
   padding: 14px 18px;
   border-radius: 0 var(--radius) var(--radius) 0;
   font-weight: 500;
   font-size: 0.95rem;
   color: var(--blue-900);
   box-shadow: 0 2px 8px rgba(10, 38, 71, 0.04);
 }

 .pillar-item i {
   color: var(--blue-500);
   margin-right: 10px;
   width: 20px;
   text-align: center;
 }

 .quote-block {
   font-family: var(--font-serif);
   font-size: 1.15rem;
   font-style: italic;
   color: var(--blue-800);
   padding: 20px 28px;
   background: var(--blue-50);
   border-radius: var(--radius);
   border-left: 5px solid var(--blue-500);
   max-width: 780px;
   margin: 22px 0 18px;
   line-height: 1.7;
 }

 .quote-block cite {
   display: block;
   font-style: normal;
   font-size: 0.85rem;
   font-weight: 500;
   color: var(--gray-600);
   margin-top: 8px;
 }

 .two-col-layout {
   display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 40px;
   max-width: 900px;
   margin: 18px 0 22px;
 }

 .two-col-layout .col {
   background: var(--white);
   padding: 24px 28px;
   border-radius: var(--radius);
   border: 1px solid var(--gray-200);
   box-shadow: 0 2px 8px rgba(10, 38, 71, 0.04);
 }

 .two-col-layout .col h4 {
   font-family: var(--font-serif);
   font-size: 1.15rem;
   color: var(--blue-800);
   margin-bottom: 10px;
   display: flex;
   align-items: center;
   gap: 10px;
 }

 .two-col-layout .col h4 i {
   color: var(--blue-500);
   font-size: 1.2rem;
 }

 .two-col-layout .col p {
   font-size: 0.95rem;
   margin-bottom: 6px;
 }

 .two-col-layout .col ul {
   margin: 6px 0 0;
   padding-left: 20px;
 }

 .two-col-layout .col ul li {
   font-size: 0.9rem;
 }

 @media (max-width: 700px) {
   .two-col-layout {
     grid-template-columns: 1fr;
     gap: 20px;
   }
 }

 /* inline blue accent box */
 .blue-accent-box {
   background: var(--blue-10);
   padding: 18px 24px;
   border-radius: var(--radius);
   border-left: 5px solid var(--blue-500);
   margin: 14px 0 8px;
   max-width: 780px;
 }

 .blue-accent-box p {
   margin: 0;
   font-weight: 500;
   color: var(--blue-800);
 }

 .blue-accent-box p i {
   color: var(--blue-500);
 }

 .grid-2-compare {
   display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 20px;
   max-width: 780px;
   margin: 20px 0;
 }

 .grid-2-compare .card {
   background: var(--white);
   border-radius: var(--radius);
   padding: 18px 22px;
   border-left: 4px solid var(--blue-500);
   box-shadow: 0 2px 8px rgba(10, 38, 71, 0.04);
 }

 .grid-2-compare .card h5 {
   font-size: 0.9rem;
   color: var(--blue-800);
   font-weight: 700;
   margin-bottom: 8px;
 }

 .grid-2-compare .card ul {
   margin: 0;
   padding-left: 18px;
   font-size: 0.9rem;
 }

 .grid-2-compare .card ul li {
   font-size: 0.9rem;
 }

 .grid-2-compare .card-danger {
   border-left-color: #e53935;
 }

 .grid-2-compare .card-danger h5 {
   color: #c62828;
 }

 @media (max-width: 600px) {
   .grid-2-compare {
     grid-template-columns: 1fr;
   }
 }

 /* ============================
           RESPONSIVE FINE-TUNE
        ============================ */
 @media (max-width: 768px) {
   .drive-top {
     padding: 12px 0 10px;
     top: 0;
   }

   .crumb {
     padding: 5px 10px 5px 8px;
     font-size: 0.7rem;
     gap: 4px;
   }

   .crumb .num {
     width: 22px;
     height: 22px;
     font-size: 0.6rem;
   }

   .crumb .label {
     font-size: 0.65rem;
   }

   .content-section {
     padding: 40px 0 44px;
     scroll-margin-top: 80px;
   }

   .section-title {
     font-size: 1.5rem;
   }

   .two-col-layout .col {
     padding: 18px 20px;
   }

   .quote-block {
     font-size: 1rem;
     padding: 16px 20px;
   }

   .pillar-grid {
     grid-template-columns: 1fr 1fr;
   }
 }

 @media (max-width: 480px) {
   .crumb-trail {
     gap: 4px 2px;
   }

   .crumb {
     padding: 4px 6px 4px 6px;
     font-size: 0.6rem;
     gap: 3px;
     border-width: 1px;
   }

   .crumb .num {
     width: 18px;
     height: 18px;
     font-size: 0.5rem;
   }

   .crumb .label {
     font-size: 0.55rem;
   }

   .content-section {
     scroll-margin-top: 70px;
     padding: 28px 0 32px;
   }

   .pillar-grid {
     grid-template-columns: 1fr;
   }
 }

 /* ============================
           UTILITY
        ============================ */
 .text-accent {
   color: var(--blue-500);
 }

 .text-primary {
   color: var(--blue-800);
 }

 .fw-600 {
   font-weight: 600;
 }

 /* subtle fade-in */
 .content-section {
   opacity: 0;
   animation: fadeUp 0.6s ease forwards;
 }

 .content-section:nth-child(2) {
   animation-delay: 0.05s;
 }

 .content-section:nth-child(3) {
   animation-delay: 0.10s;
 }

 .content-section:nth-child(4) {
   animation-delay: 0.15s;
 }

 .content-section:nth-child(5) {
   animation-delay: 0.20s;
 }

 .content-section:nth-child(6) {
   animation-delay: 0.25s;
 }

 @keyframes fadeUp {
   0% {
     opacity: 0;
     transform: translateY(16px);
   }

   100% {
     opacity: 1;
     transform: translateY(0);
   }
 }


 .df-table {
   background-color: #ffffff;
 }

 .df-table th {
   font-weight: 700;
   font-size: 1.05rem;
 }

 .df-table td,
 .df-table th {
   vertical-align: middle;
   padding: 0.75rem 0.9rem;
 }

 .df-col-no {
   width: 60px;
 }

 @media (max-width: 576px) {

   .df-table td,
   .df-table th {
     font-size: 0.85rem;
     padding: 0.5rem 0.6rem;
     white-space: normal;
     font-family: 'inter' sans-serif;
     font-weight: 500;
   }

   .df-col-no {
     width: 40px;
   }
 }

 .trimmer p .numbering {
   font-size: 40px;
   color: red;
 }

 .hozntallines {
   position: absolute;
   top: 56px;
   bottom: 5px;
   left: 43%;
   width: 2px;
   background-color: blue;
   border: 0;
   margin: 0;
   padding: 0;
   margin-top: 192px;
 }

 /* Main section row */
 .report-row {
   position: relative;
   display: flex;
   align-items: center;
 }

 /* Vertical middle line */
 .hozntallines {
   position: absolute;
   top: 0;
   bottom: 0;
   left: 50%;

   width: 2px;
   height: auto;

   border: 0;
   border-left: 2px solid #d7d7ff;

   margin: 0;
   padding: 0;

   transform: translateX(-50%);
   z-index: 2;
 }




 .udf-main,
 .udf-main p,
 .udf-main span,
 .udf-main td,
 .udf-main th {
   font-family: 'Inter', -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
   color: var(--udf-text);
 }

 /* ===== Section heading: centered title + blue line-dot-line divider ===== */
 .section-heading {
   text-align: center;
   max-width: 760px;
   margin: 3rem auto 2rem;
   padding: 0 1rem;
 }

 .section-heading h2 {
   font-family: 'Playfair Display', Georgia, serif;
   font-weight: 700;
   font-size: clamp(1.4rem, 4vw, 2.1rem);
   color: var(--udf-blue-dark);
   margin-bottom: 0.9rem;
 }

 .section-heading>p {
   color: var(--udf-muted);
   font-size: clamp(0.9rem, 2vw, 1.02rem);
   margin-top: 0.9rem;
   margin-bottom: 0;
 }

 .line-divider {
   display: flex;
   align-items: center;
   justify-content: center;
   gap: 0.6rem;
   margin: 0 auto;
 }

 .line-divider .line {
   display: block;
   height: 2px;
   width: clamp(34px, 9vw, 90px);
   background: var(--udf-blue);
   border-radius: 2px;
 }

 .line-divider .cube {
   display: block;
   width: 9px;
   height: 9px;
   background: var(--udf-blue);
   transform: rotate(45deg);
   flex-shrink: 0;
 }

 /* ===== Birth section ===== */
 .birth-section {
   padding: 1rem 0 2.5rem;
 }

 .birth-img-col {
   margin-bottom: 1.25rem;
 }

 .birth-img-col img {
   width: 100%;
   height: auto;
   border-radius: 10px;
   box-shadow: 0 8px 24px rgba(28, 43, 74, 0.12);
   border: 2px solid #000;
 }

 .birth-text-col p {
   font-size: clamp(0.92rem, 1.6vw, 1rem);
   line-height: 1.8;
   margin-bottom: 1rem;
   text-align: justify;
   font-family: "inter" sans-serif;
 }

 /* ===== Text card (Genesis / Vistas paragraphs) ===== */
 .text-card {
   background: #fff;
   border-left: 4px solid var(--udf-blue);
   border-radius: 6px;
   box-shadow: 0 4px 18px rgba(28, 43, 74, 0.06);
   padding: clamp(1rem, 3vw, 1.75rem);
   margin: 0 auto 1.5rem;
   max-width: 980px;
 }

 .text-card p {
   font-size: clamp(0.92rem, 1.6vw, 1rem);
   line-height: 1.8;
   margin-bottom: 1rem;
 }

 .text-card p:last-child {
   margin-bottom: 0;
 }

 .quote-highlight {
   background: var(--udf-blue-light);
   border-left: 4px solid var(--udf-gold);
   border-radius: 6px;
   padding: clamp(0.9rem, 2.5vw, 1.4rem);
   margin: 1.25rem 0;
   line-height: 2;
   font-size: clamp(0.9rem, 1.6vw, 1rem);
 }

 /* ===== Civil society image strip ===== */
 .civil-imgs-row {
   margin: 0 0 2rem;
 }

 .civil-img-wrap {
   padding: 0.4rem;
 }

 .civil-img-wrap img {
   width: 100%;
   height: clamp(120px, 20vw, 190px);
   object-fit: cover;
   border-radius: 8px;
   box-shadow: 0 4px 14px rgba(28, 43, 74, 0.1);
   transition: transform 0.25s ease;
 }

 .civil-img-wrap img:hover {
   transform: translateY(-4px);
 }

 /* ===== Change makers list ===== */
 .changemaker-list {
   display: flex;
   flex-direction: column;
   gap: 1rem;
   max-width: 980px;
   margin: 0 auto 2rem;
 }

 .changemaker-item {
   display: flex;
   align-items: flex-start;
   gap: 1rem;
   background: #fff;
   border-radius: 8px;
   box-shadow: 0 3px 14px rgba(28, 43, 74, 0.08);
   padding: clamp(0.9rem, 2.5vw, 1.25rem);
 }

 .cm-icon {
   flex: 0 0 auto;
   width: 44px;
   height: 44px;
   border-radius: 50%;
   background: var(--udf-blue);
   color: #fff;
   display: flex;
   align-items: center;
   justify-content: center;
   font-size: 1.05rem;
 }

 .cm-text {
   display: flex;
   flex-direction: column;
   gap: 0.25rem;
 }

 .cm-text strong {
   color: var(--udf-blue-dark);
   font-size: 1rem;
 }

 .cm-text span {
   font-size: 0.92rem;
   line-height: 1.7;
   color: var(--udf-muted);
 }

 /* ===== Date badge ===== */
 .date-badge {
   display: inline-block;
   background: var(--udf-blue);
   color: #fff;
   font-size: 0.85rem;
   font-weight: 600;
   padding: 0.4rem 1.1rem;
   border-radius: 30px;
 }

 /* ===== Styled table ===== */
 .styled-table {
   width: 100%;
   border-collapse: collapse;
   font-size: clamp(0.85rem, 1.6vw, 0.95rem);
   min-width: 480px;
 }

 .styled-table thead th {
   background: var(--udf-blue);
   color: #fff;
   text-align: left;
   padding: 0.75rem 1rem;
   font-weight: 600;
   white-space: nowrap;
 }

 .styled-table tbody td {
   padding: 0.65rem 1rem;
   border-bottom: 1px solid #eceff3;
 }

 .styled-table tbody tr:nth-child(even) {
   background: #f7f9fc;
 }

 .styled-table tbody tr:hover {
   background: var(--udf-blue-light);
 }

 /* ===== Faculty cards ===== */
 .faculty-card {
   background: #fff;
   border-radius: 10px;
   overflow: hidden;
   box-shadow: 0 4px 18px rgba(28, 43, 74, 0.1);
   margin-bottom: 1.5rem;
   text-align: center;
   transition: transform 0.2s ease;
 }

 .faculty-card:hover {
   transform: translateY(-4px);
 }

 .card-top-bar {
   height: 6px;
 }

 .theme-blue .card-top-bar {
   background: var(--udf-blue);
 }

 .theme-pink .card-top-bar {
   background: var(--udf-pink);
 }

 .theme-green .card-top-bar {
   background: var(--udf-green);
 }

 .theme-purple .card-top-bar {
   background: var(--udf-purple);
 }

 .faculty-photo-wrap {
   padding: 1.25rem 0 0.5rem;
   display: flex;
   justify-content: center;
 }

 .faculty-photo {
   width: auto;
   height: 181px;
   /*border-radius:50%;*/
   object-fit: cover;
   /*border:3px solid #fff;*/
   /*box-shadow:0 0 0 3px var(--udf-blue-light);*/
 }

 .faculty-info {
   padding: 0.5rem 1rem 1.5rem;
 }

 .faculty-name {
   font-weight: 700;
   color: var(--udf-blue-dark);
   font-size: 0.98rem;
   margin-bottom: 0.5rem;
 }

 .designation-badge {
   display: inline-block;
   font-size: 0.78rem;
   font-weight: 600;
   padding: 0.25rem 0.85rem;
   border-radius: 20px;
   background: var(--udf-blue-light);
   color: var(--udf-blue);
 }

 /* ===== Address card ===== */
 .address-card {
   /*max-width:760px;*/
   margin: 1rem auto 3rem;
   text-align: center;
   background: #11117e;
   border-radius: 10px;
   padding: clamp(1.25rem, 3vw, 2rem);
 }

 .address-card h3 {
   font-family: 'Playfair Display', Georgia, serif;
   color: #fff;
   font-size: clamp(1.1rem, 2.5vw, 1.4rem);
   margin-bottom: 0.9rem;
 }

 .address-card p {
   font-size: clamp(0.85rem, 1.8vw, 0.95rem);
   line-height: 1.8;
   margin-bottom: 0.4rem;
   color: #fff;
 }

 .address-card i {
   color: var(--udf-blue);
   margin-right: 0.4rem;
 }

 .descv p {
   text-align: justify;
 }


 .democardyimg {
   width: 100% !important;
 }










 .truism-box {
   border: 1.5px solid #000;
   border-radius: 10px;
   max-width: 650px;
 }

 .avatar-circle {
   width: 30px;
   height: 30px;
   background: #000;
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
   flex-shrink: 0;
 }

 .truism-title {
   font-weight: 700;
   font-size: 1.4rem;
   color: #000;
 }

 .number-radio-btn {
   width: 60px;
   height: 60px;
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
   font-weight: 700;
   font-size: 1.4rem;
   border: 2px solid #000;
   color: #000;
   background: #fff;
   cursor: pointer;
   margin: 0;
 }

 .btn-check:checked+.number-radio-btn {
   background: #000;
   color: #fff;
   border-color: #000;
 }

 .nav-link-item {
   font-weight: 600;
   text-decoration: none;
   font-size: 13px;
 }

 .nav-link-item:hover {
   text-decoration: underline;
 }

 .link-name {
   color: #e2572b;
 }

 .link-solution {
   color: #d98c1f;
 }

 .link-action {
   color: #d98c1f;
 }

 .link-ideas {
   color: #2f5fa8;
 }


 .form-check-input {
   width: 1.2em;
   height: 1.2em;
   margin-top: 0.2em;
 }

 .form-check-label {
   font-size: 1.05rem;
   margin-left: 6px;
 }






 .navbar-toggler-icon {
   background-color: #fff;
   border: none;
 }

 .btndata a {
   font-size: 30px;
 }

 /* ============================================================
   BACK TO TOP BUTTON
============================================================ */
 .back-to-top-btn {
   position: fixed;
   bottom: 30px;
   right: 30px;
   width: 48px;
   height: 48px;
   border-radius: 50%;
   background: linear-gradient(135deg, #1a4b8c 0%, #2AABD4 100%);
   color: #ffffff !important;
   display: flex;
   align-items: center;
   justify-content: center;
   font-size: 18px;
   text-decoration: none;
   box-shadow: 0 4px 15px rgba(0, 0, 0, 0.22);
   cursor: pointer;
   opacity: 0;
   visibility: hidden;
   transform: translateY(20px) scale(0.85);
   transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
   z-index: 99999;
   border: 2px solid rgba(255, 255, 255, 0.4);
   outline: none;
 }

 .back-to-top-btn.show {
   opacity: 1;
   visibility: visible;
   transform: translateY(0) scale(1);
 }

 .back-to-top-btn:hover {
   background: linear-gradient(135deg, #2AABD4 0%, #1a4b8c 100%);
   color: #ffffff !important;
   transform: translateY(-4px) scale(1.06);
   box-shadow: 0 8px 24px rgba(42, 171, 212, 0.45);
 }

 .back-to-top-btn:active {
   transform: translateY(-1px) scale(0.96);
 }

 .back-to-top-btn i {
   line-height: 1;
   transition: transform 0.25s ease;
 }

 .back-to-top-btn:hover i {
   transform: translateY(-2px);
 }

 @media (max-width: 768px) {
   .back-to-top-btn {
     bottom: 20px;
     right: 20px;
     width: 42px;
     height: 42px;
     font-size: 16px;
   }
 }