 a {
     text-decoration: none;
 }

 .custom-navbar {
     font-family: 'Inter', sans-serif;
     background: linear-gradient(135deg, #ffffff 0%, #f1f5f9 100%);
     transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
     padding: 1.25rem 0;
     z-index: 1030;
     border-bottom: 2px solid transparent;
     /* Thin multi-colored brand gradient border line at the bottom */
     border-image: linear-gradient(90deg, rgba(34, 54, 96, 0.1) 0%, rgba(222, 30, 57, 0.15) 50%, rgba(34, 54, 96, 0.1) 100%) 1;
     box-shadow: 0 4px 30px rgba(34, 54, 96, 0.04);
 }

 /* Shrinks and applies a modern light glassmorphism backdrop on scroll */
 .custom-navbar.scrolled {
     padding: 0.8rem 0;
     background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(241, 245, 249, 0.95) 100%) !important;
     backdrop-filter: blur(12px);
     -webkit-backdrop-filter: blur(12px);
     box-shadow: 0 10px 30px rgba(34, 54, 96, 0.08);
     border-image: linear-gradient(90deg, rgba(34, 54, 96, 0.15) 0%, rgba(222, 30, 57, 0.3) 50%, rgba(34, 54, 96, 0.15) 100%) 1;
 }

 /* --- Brand & Logo Layout --- */
 .navbar-brand {
     font-weight: 800;
     font-size: 1.45rem;
     color: #223660 !important;
     /* Premium Navy */
     display: flex;
     align-items: center;
     gap: 8px;
     letter-spacing: -0.5px;
     transition: transform 0.25s ease;
 }

 .navbar-brand:hover {
     transform: scale(1.02);
 }

 .navbar-brand i {
     color: #de1e39;
     /* Crimson Red Accent */
     font-size: 1.65rem;
     filter: drop-shadow(0 2px 8px rgba(222, 30, 57, 0.2));
 }

 .brand-accent-text {
     color: #de1e39;
     /* Crimson Accent */
     font-weight: 500;
 }

 /* --- Navigation Menu Links styling --- */
 .nav-link {
     color: rgba(34, 54, 96, 0.8) !important;
     /* Navy base with opacity */
     font-weight: 600;
     font-size: 0.95rem;
     padding: 0.55rem 1.05rem !important;
     position: relative;
     transition: all 0.25s ease;
     border-radius: 8px;
 }

 .nav-link:hover,
 .nav-link.active {
     color: #de1e39 !important;
     /* Shifts to Crimson Red on active/hover */
     background: rgba(34, 54, 96, 0.04);
 }

 /* Animated Indicator Crimson Underline (Wide Viewports Only) */
 @media (min-width: 992px) {
     .nav-link::after {
         content: '';
         position: absolute;
         width: 0;
         height: 3px;
         bottom: 0;
         left: 50%;
         background: linear-gradient(90deg, #223660, #de1e39);
         transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
         border-radius: 4px;
         transform: translateX(-50%);
         box-shadow: 0 1px 4px rgba(222, 30, 57, 0.3);
     }

     .nav-link:hover::after,
     .nav-link.active::after {
         width: 50%;
     }
 }

 /* --- Premium Glossy Light Dropdown Menu --- */
 .dropdown-menu {
     border: 1px solid rgba(34, 54, 96, 0.1);
     box-shadow: 0 15px 35px rgba(34, 54, 96, 0.1);
     border-radius: 14px;
     padding: 0.75rem;
     background: rgba(255, 255, 255, 0.98);
     backdrop-filter: blur(20px);
     -webkit-backdrop-filter: blur(20px);
     display: block;
     opacity: 0;
     visibility: hidden;
     transform: translateY(12px) scale(0.96);
     transition: all 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.1);
 }

 /* Hover states trigger smooth visual transitions on desktop */
 @media (min-width: 992px) {
     .nav-item.dropdown:hover .dropdown-menu {
         opacity: 1;
         visibility: visible;
         transform: translateY(0) scale(1);
     }
 }

 /* Responsive Mobile Collapsed Accordion Dropdown Setup */
 @media (max-width: 991.98px) {
     .dropdown-menu {
         display: none;
         opacity: 1;
         visibility: visible;
         transform: none;
         background: rgba(34, 54, 96, 0.03);
         box-shadow: none;
         padding-left: 1rem;
         border-left: 3px solid #de1e39;
         /* Crimson border on mobile */
         border-top: none;
         border-right: none;
         border-bottom: none;
         border-radius: 0;
         margin-top: 0.5rem;
     }

     .dropdown-menu.show {
         display: block;
     }
 }

 /* Dropdown list item aesthetics */
 .dropdown-item {
     font-weight: 600;
     font-size: 0.88rem;
     padding: 0.65rem 1.15rem;
     border-radius: 8px;
     color: #223660;
     transition: all 0.2s ease;
     display: flex;
     align-items: center;
     gap: 10px;
 }

 .dropdown-item i {
     color: #de1e39;
     /* Crimson icons inside list */
     font-size: 1.15rem;
     transition: transform 0.25s ease;
 }

 .dropdown-item:hover {
     background: rgba(222, 30, 57, 0.06);
     color: #de1e39;
     transform: translateX(4px);
 }

 .dropdown-item:hover i {
     transform: scale(1.1);
 }

 /* --- Premium Crimson-to-Navy Gradient Call-To-Action Button --- */
 .btn-brand-glow {
     background: linear-gradient(135deg, #de1e39 0%, #223660 100%);
     color: #ffffff;
     border: none;
     font-weight: 700;
     font-size: 0.9rem;
     padding: 0.65rem 1.5rem;
     border-radius: 30px;
     transition: all 0.25s cubic-bezier(0.25, 0.8, 0.25, 1);
     box-shadow: 0 6px 15px rgba(222, 30, 57, 0.25);
     letter-spacing: 0.2px;
 }

 .btn-brand-glow:hover {
     transform: translateY(-2px);
     color: #ffffff;
     box-shadow: 0 10px 25px rgba(222, 30, 57, 0.4);
     filter: brightness(1.1);
 }

 /* Highly Customizable Hamburger for Light Theme */
 .custom-toggler {
     border: none;
     padding: 0.5rem;
     background: rgba(34, 54, 96, 0.05);
     border-radius: 8px;
 }

 .custom-toggler:focus {
     box-shadow: none;
     outline: none;
 }

 .custom-toggler:hover {
     background: rgba(34, 54, 96, 0.1);
 }

 .toggler-icon {
     display: block;
     width: 20px;
     height: 2px;
     background-color: #223660;
     /* Navy Hamburger Lines */
     margin: 4px 0;
     transition: all 0.25s cubic-bezier(0.68, -0.6, 0.32, 1.6);
     border-radius: 1px;
 }

 /* Morph hamburger lines to 'X' on open toggle state */
 .custom-toggler[aria-expanded="true"] .toggler-icon:nth-child(1) {
     transform: rotate(45deg) translate(4px, 4px);
     background-color: #de1e39;
     /* Turns crimson on close active mode */
 }

 .custom-toggler[aria-expanded="true"] .toggler-icon:nth-child(2) {
     opacity: 0;
     transform: scale(0.2);
 }

 .custom-toggler[aria-expanded="true"] .toggler-icon:nth-child(3) {
     transform: rotate(-45deg) translate(4px, -4px);
     background-color: #de1e39;
 }

 /* Pill Badge used inside dropdown sub-menus */
 .badge-gradient {
     background: linear-gradient(135deg, #de1e39 0%, #223660 100%);
     color: #ffffff;
     font-size: 0.68rem;
     font-weight: 800;
     padding: 0.2rem 0.5rem;
     border-radius: 30px;
     box-shadow: 0 2px 6px rgba(222, 30, 57, 0.2);
 }

 /* banner */
 /* Scoped container to prevent collision with other stylesheets */
 .banner-slider-wrapper {
     font-family: 'Inter', sans-serif;
     overflow: hidden;
     position: relative;
     background-color: #0f172a;
     /* Fallback deep slate */
     width: 100%;
 }

 /* Swiper container padding and layout */
 .banner-swiper {
     width: 100%;
     padding: 0;
     position: relative;
 }

 /* Full height and centered content configuration */
 .banner-slide-content {
     display: flex;
     align-items: center;
     justify-content: center;
     min-height: 700px;
     height: 90vh;
     position: relative;
     z-index: 5;
     padding-top: 6rem;
     padding-bottom: 6rem;
     text-align: center;
 }

 /* --- Full Background Image Layout --- */
 .banner-slide-bg-container {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     z-index: 1;
     background-size: cover;
     background-position: center;
     background-repeat: no-repeat;
 }

 /* 
           Gradient overlay that blends Navy (#223660) and Crimson (#de1e39)
           over the full background image to ensure text is fully readable.
        */
 .banner-slide-overlay {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: linear-gradient(135deg,
             rgba(34, 54, 96, 0.92) 0%,
             rgba(34, 54, 96, 0.75) 50%,
             rgba(222, 30, 57, 0.75) 100%);
     z-index: 2;
 }

 /* Subtle grid pattern overlay for modern texture depth */
 .banner-grid-overlay {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background-image: radial-gradient(rgba(255, 255, 255, 0.04) 1.5px, transparent 1.5px);
     background-size: 32px 32px;
     pointer-events: none;
     z-index: 3;
 }

 /* Fluid Responsive Heading */
 .banner-title {
     color: #ffffff;
     font-weight: 800;
     font-size: clamp(2.4rem, 5vw, 4.5rem);
     line-height: 1.2;
     letter-spacing: -1.5px;
     margin-bottom: 2.5rem;
     max-width: 1000px;
     margin-left: auto;
     margin-right: auto;
 }

 /* Premium gradient span text */
 .banner-title-gradient {
     background: linear-gradient(135deg, #ffffff 40%, #de1e39 100%);
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
     display: inline;
 }

 /* --- Single Premium CTA Button (Crimson to Navy Gradient) --- */
 .banner-btn-group {
     display: flex;
     justify-content: center;
 }

 .banner-btn-primary {
     background: linear-gradient(135deg, #de1e39 0%, #223660 100%);
     color: #ffffff !important;
     font-weight: 700;
     font-size: 1rem;
     padding: 1.1rem 2.5rem;
     border-radius: 50px;
     border: none;
     box-shadow: 0 10px 30px rgba(222, 30, 57, 0.35);
     transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
     display: inline-flex;
     align-items: center;
     gap: 12px;
     text-decoration: none;
 }

 .banner-btn-primary:hover {
     transform: translateY(-4px);
     box-shadow: 0 15px 35px rgba(222, 30, 57, 0.55);
     filter: brightness(1.15);
 }

 /* --- Navigation Controls Layout --- */
 .banner-nav-btn {
     width: 55px;
     height: 55px;
     background-color: rgba(255, 255, 255, 0.1);
     color: #ffffff;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
     cursor: pointer;
     transition: all 0.25s ease;
     backdrop-filter: blur(8px);
     z-index: 10;
     border: 1px solid rgba(255, 255, 255, 0.15);
 }

 .banner-nav-btn::after {
     display: none;
     /* Hide default Swiper font arrows */
 }

 .banner-nav-btn:hover {
     background-color: #de1e39;
     color: #ffffff;
     box-shadow: 0 8px 24px rgba(222, 30, 57, 0.5);
     border-color: #de1e39;
 }

 .banner-prev-btn {
     left: 30px;
 }

 .banner-next-btn {
     right: 30px;
 }

 /* Navigation bullets styling */
 .banner-pagination {
     bottom: 35px !important;
     z-index: 10;
 }

 .banner-pagination .swiper-pagination-bullet {
     width: 12px;
     height: 12px;
     background: #ffffff;
     opacity: 0.35;
     margin: 0 6px !important;
     transition: all 0.3s ease;
 }

 .banner-pagination .swiper-pagination-bullet-active {
     opacity: 1;
     background: #de1e39;
     width: 35px;
     border-radius: 6px;
 }

 /* Disable navigation arrows on mobile and adjust sizing */
 @media (max-width: 991.98px) {
     .banner-slide-content {
         min-height: 600px;
         height: 80vh;
         padding-top: 4rem;
         padding-bottom: 4rem;
     }

     .banner-nav-btn {
         display: none;
     }
 }

 /* about and why choose us */
 /* Scoped wrapper targeting only the About section to prevent stylesheet pollution */

 .abt-button {
     background: linear-gradient(135deg, #de1e39 0%, #223660 100%);
     color: #ffffff;
     border: none;
     font-weight: 700;
     font-size: 0.9rem;
     padding: 0.65rem 1.5rem;
     border-radius: 30px;
     transition: all 0.25s cubic-bezier(0.25, 0.8, 0.25, 1);
     box-shadow: 0 6px 15px rgba(222, 30, 57, 0.25);
     letter-spacing: 0.2px;
     margin-top: 20px;
 }

 .abt-button:hover {
     transform: translateY(-2px);
     color: #ffffff;
     box-shadow: 0 10px 25px rgba(222, 30, 57, 0.4);
     filter: brightness(1.1);
 }

 .nilaas-about-premium {
     font-family: 'Inter', sans-serif;
     background-color: #fafbfc;
     padding: 7rem 0;
     overflow: hidden;
     position: relative;
 }

 /* Abstract ambient background details */
 .nilaas-about-premium .ambient-blob {
     position: absolute;
     width: 500px;
     height: 500px;
     border-radius: 50%;
     background: radial-gradient(circle, rgba(34, 54, 96, 0.03) 0%, rgba(222, 30, 57, 0.02) 50%, transparent 100%);
     top: -10%;
     right: -5%;
     z-index: 1;
     pointer-events: none;
 }

 .nilaas-about-premium .ambient-blob-2 {
     position: absolute;
     width: 400px;
     height: 400px;
     border-radius: 50%;
     background: radial-gradient(circle, rgba(222, 30, 57, 0.03) 0%, rgba(34, 54, 96, 0.01) 70%, transparent 100%);
     bottom: -5%;
     left: -10%;
     z-index: 1;
     pointer-events: none;
 }

 /* Premium Section Tag */
 .nilaas-about-premium .section-tag {
     font-size: 0.8rem;
     font-weight: 800;
     text-transform: uppercase;
     letter-spacing: 2px;
     color: #de1e39;
     margin-bottom: 0.75rem;
     display: flex;
     align-items: center;
     gap: 10px;
 }

 .nilaas-about-premium .section-tag::after {
     content: '';
     display: inline-block;
     width: 40px;
     height: 2px;
     background: linear-gradient(90deg, #de1e39, transparent);
 }

 /* Typography */
 .nilaas-about-premium .main-title {
     color: #223660;
     font-weight: 800;
     font-size: clamp(2.2rem, 4.5vw, 3.2rem);
     line-height: 1.15;
     letter-spacing: -1px;
     margin-bottom: 2rem;
 }

 .nilaas-about-premium .main-title span {
     background: linear-gradient(135deg, #223660 30%, #de1e39 100%);
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
 }

 /* Interactive Text Mask Expand System */
 .nilaas-about-premium .text-mask-wrapper {
     position: relative;
 }

 .nilaas-about-premium .exact-paragraph {
     color: #4a5568;
     font-size: 1.05rem;
     line-height: 1.8;
     font-weight: 400;
     margin-bottom: 0;
 }

 /* .nilaas-about-premium .expandable-content {
     max-height: 0;
     opacity: 0;
     overflow: hidden;
     transition: max-height 0.8s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.5s ease;
 } */

 .nilaas-about-premium .expandable-content.is-visible {
     max-height: 400px;
     opacity: 1;
     margin-top: 1.5rem;
 }

 /* Clean fading gradient overlay on the first paragraph to invite user click */
 .nilaas-about-premium .fade-overlay {
     position: absolute;
     bottom: 0;
     left: 0;
     width: 100%;
     height: 45px;
     background: linear-gradient(to top, #fafbfc, transparent);
     pointer-events: none;
     transition: opacity 0.4s ease;
 }

 .nilaas-about-premium .fade-overlay.is-hidden {
     opacity: 0;
 }

 /* Styled Premium Interactive Action Button */
 .nilaas-about-premium .btn-explore {
     background: #ffffff;
     border: 2px solid rgba(34, 54, 96, 0.1);
     color: #223660;
     font-weight: 700;
     font-size: 0.95rem;
     padding: 0.85rem 2rem;
     border-radius: 100px;
     display: inline-flex;
     align-items: center;
     gap: 12px;
     cursor: pointer;
     transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
     box-shadow: 0 4px 15px rgba(34, 54, 96, 0.03);
     text-decoration: none;
 }

 .nilaas-about-premium .btn-explore:hover {
     border-color: #de1e39;
     color: #de1e39;
     transform: translateY(-2px);
     box-shadow: 0 10px 25px rgba(222, 30, 57, 0.08);
 }

 .nilaas-about-premium .btn-explore i {
     font-size: 1.1rem;
     transition: transform 0.3s ease;
 }

 .nilaas-about-premium .btn-explore:hover i {
     transform: translateX(4px);
 }

 /* Core Service Visual Interactive Grid */
 .nilaas-about-premium .visual-grid-container {
     position: relative;
     z-index: 2;
 }

 /* Abstract dynamic ring background behind grid */
 .nilaas-about-premium .geometric-ring {
     position: absolute;
     top: 50%;
     left: 50%;
     transform: translate(-50%, -50%);
     width: 80%;
     height: 80%;
     border: 1px dashed rgba(34, 54, 96, 0.08);
     border-radius: 50%;
     pointer-events: none;
     animation: slowRotate 40s linear infinite;
 }

 @keyframes slowRotate {
     from {
         transform: translate(-50%, -50%) rotate(0deg);
     }

     to {
         transform: translate(-50%, -50%) rotate(360deg);
     }
 }

 /* Interactive Service Visual Cards */
 .nilaas-about-premium .service-visual-card {
     background: #ffffff;
     border: 1px solid rgba(34, 54, 96, 0.05);
     border-radius: 24px;
     padding: 1.75rem;
     box-shadow: 0 10px 30px rgba(34, 54, 96, 0.02);
     transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
     position: relative;
     overflow: hidden;
     height: 100%;
 }

 .nilaas-about-premium .service-visual-card::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 4px;
     background: linear-gradient(90deg, #223660, #de1e39);
     opacity: 0;
     transition: opacity 0.3s ease;
 }

 .nilaas-about-premium .service-visual-card:hover {
     transform: translateY(-8px);
     border-color: rgba(34, 54, 96, 0.1);
     box-shadow: 0 20px 40px rgba(34, 54, 96, 0.07);
 }

 .nilaas-about-premium .service-visual-card:hover::before {
     opacity: 1;
 }

 /* Service Cards Icon Frame */
 .nilaas-about-premium .icon-frame {
     width: 55px;
     height: 55px;
     border-radius: 16px;
     background: rgba(34, 54, 96, 0.04);
     color: #223660;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 1.5rem;
     margin-bottom: 1.25rem;
     transition: all 0.3s ease;
 }

 .nilaas-about-premium .service-visual-card:hover .icon-frame {
     background: linear-gradient(135deg, #223660, #de1e39);
     color: #ffffff;
     transform: scale(1.05) rotate(5deg);
     box-shadow: 0 8px 20px rgba(222, 30, 57, 0.2);
 }

 .nilaas-about-premium .service-title {
     color: #223660;
     font-weight: 700;
     font-size: 1.1rem;
     line-height: 1.4;
     margin-bottom: 0.5rem;
 }

 .nilaas-about-premium .service-pill {
     display: inline-flex;
     align-items: center;
     gap: 6px;
     background: rgba(222, 30, 57, 0.05);
     color: #de1e39;
     font-size: 0.72rem;
     font-weight: 700;
     text-transform: uppercase;
     padding: 0.35rem 0.85rem;
     border-radius: 50px;
     letter-spacing: 0.5px;
 }

 .nilaas-about-premium .pulse-dot {
     width: 6px;
     height: 6px;
     background-color: #de1e39;
     border-radius: 50%;
     display: inline-block;
     animation: corePulse 1.8s infinite ease-in-out;
 }

 /* Why Choose Us Section Styles */
 .nilaas-about-premium .why-choose-divider {
     border: 0;
     height: 1px;
     background: linear-gradient(90deg, transparent, rgba(34, 54, 96, 0.1) 20%, rgba(222, 30, 57, 0.15) 50%, rgba(34, 54, 96, 0.1) 80%, transparent);
     margin: 5.5rem 0;
 }

 .nilaas-about-premium .why-title-wrapper {
     margin-bottom: 3.5rem;
 }

 .nilaas-about-premium .why-choose-card {
     background: #ffffff;
     border: 1px solid rgba(34, 54, 96, 0.05);
     border-radius: 20px;
     padding: 2rem;
     height: 100%;
     transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
     position: relative;
     z-index: 2;
     box-shadow: 0 10px 25px rgba(34, 54, 96, 0.01);
 }

 .nilaas-about-premium .why-choose-card::after {
     content: '';
     position: absolute;
     bottom: 0;
     right: 0;
     width: 60px;
     height: 60px;
     background: radial-gradient(circle, rgba(222, 30, 57, 0.05) 0%, transparent 70%);
     border-radius: 50%;
     opacity: 0;
     transition: opacity 0.3s ease;
 }

 .nilaas-about-premium .why-choose-card:hover {
     transform: translateY(-6px);
     border-color: rgba(222, 30, 57, 0.15);
     box-shadow: 0 15px 35px rgba(34, 54, 96, 0.06);
 }

 .nilaas-about-premium .why-choose-card:hover::after {
     opacity: 1;
 }

 .nilaas-about-premium .why-icon-container {
     width: 50px;
     height: 50px;
     border-radius: 12px;
     background: rgba(222, 30, 57, 0.06);
     color: #de1e39;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 1.35rem;
     margin-bottom: 1.5rem;
     transition: all 0.3s ease;
 }

 .nilaas-about-premium .why-choose-card:hover .why-icon-container {
     background: linear-gradient(135deg, #de1e39, #223660);
     color: #ffffff;
     transform: scale(1.05);
     box-shadow: 0 6px 15px rgba(222, 30, 57, 0.15);
 }

 .nilaas-about-premium .why-card-text {
     color: #223660;
     font-size: 1.05rem;
     font-weight: 700;
     line-height: 1.5;
     margin: 0;
     transition: color 0.3s ease;
 }

 .nilaas-about-premium .why-choose-card:hover .why-card-text {
     color: #de1e39;
 }

 @keyframes corePulse {
     0% {
         transform: scale(0.8);
         opacity: 0.5;
     }

     50% {
         transform: scale(1.3);
         opacity: 1;
     }

     100% {
         transform: scale(0.8);
         opacity: 0.5;
     }
 }

 /* Responsive Breakpoints adjust */
 @media (max-width: 991.98px) {
     .nilaas-about-premium {
         padding: 4.5rem 0;
     }

     .nilaas-about-premium .visual-grid-container {
         margin-top: 4rem;
     }

     .nilaas-about-premium .why-choose-divider {
         margin: 4rem 0;
     }
 }

 /* services */
 .nilaas-services-section {
     background-color: #0b1329;
     background-image:
         radial-gradient(circle at 10% 20%, rgba(34, 54, 96, 0.45) 0%, transparent 45%),
         radial-gradient(circle at 90% 80%, rgba(222, 30, 57, 0.18) 0%, transparent 50%),
         linear-gradient(rgba(255, 255, 255, 0.007) 1px, transparent 1px),
         linear-gradient(90deg, rgba(255, 255, 255, 0.007) 1px, transparent 1px);
     background-size: 100% 100%, 100% 100%, 30px 30px, 30px 30px;
     font-family: 'Inter', sans-serif;
     color: #f1f5f9;
     position: relative;
     overflow: hidden;
     padding: 5rem 1rem;
     -webkit-font-smoothing: antialiased;
 }

 /* Scoped Premium Badging System */
 .nilaas-services-section .nilaas-badge {
     display: inline-flex;
     align-items: center;
     gap: 0.5rem;
     padding: 0.25rem 0.75rem;
     border-radius: 999px;
     font-size: 0.75rem;
     font-weight: 600;
     text-transform: uppercase;
     letter-spacing: 0.05em;
     color: #de1e39;
     background-color: rgba(222, 30, 57, 0.1);
     border: 1px solid rgba(222, 30, 57, 0.2);
 }

 .nilaas-services-section .nilaas-badge .dot {
     width: 6px;
     height: 6px;
     border-radius: 50%;
     background-color: #de1e39;
     animation: heart-pulse 1.5s infinite;
 }

 /* Scoped Glassmorphic Service Card Design */
 .nilaas-services-section .nilaas-card {
     background: rgba(15, 23, 42, 0.45);
     backdrop-filter: blur(16px);
     -webkit-backdrop-filter: blur(16px);
     border: 1px solid rgba(255, 255, 255, 0.08);
     border-radius: 24px;
     padding: 2rem;
     height: 480px;
     display: flex;
     flex-direction: column;
     justify-content: space-between;
     transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
     position: relative;
     overflow: hidden;
     text-decoration: none;
     color: inherit;
 }

 .nilaas-services-section .nilaas-card:hover {
     transform: translateY(-12px);
     border-color: rgba(222, 30, 57, 0.45);
     box-shadow: 0 20px 40px rgba(222, 30, 57, 0.12);
 }

 /* Scoped Background glow configurations */
 .nilaas-services-section .card-glow-base {
     position: absolute;
     right: -64px;
     top: -64px;
     width: 128px;
     height: 128px;
     border-radius: 50%;
     filter: blur(48px);
     opacity: 0.12;
     transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
     pointer-events: none;
 }

 .nilaas-services-section .nilaas-card:hover .card-glow-base {
     opacity: 0.25;
     transform: scale(1.3);
 }

 .nilaas-services-section .icon-box {
     width: 48px;
     height: 48px;
     border-radius: 16px;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 1.5rem;
     transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
 }

 /* Continuous Micro-Animations */
 @keyframes aviation-float {

     0%,
     100% {
         transform: translateY(0) rotate(0deg);
     }

     50% {
         transform: translateY(-4px) rotate(-4deg);
     }
 }

 .nilaas-services-section .animate-aviation {
     animation: aviation-float 3s ease-in-out infinite;
 }

 @keyframes supply-pulse {

     0%,
     100% {
         transform: scale(1);
     }

     50% {
         transform: scale(1.1);
     }
 }

 .nilaas-services-section .animate-supply {
     animation: supply-pulse 2.5s ease-in-out infinite;
 }

 @keyframes finance-grow {

     0%,
     100% {
         transform: translateY(0);
     }

     50% {
         transform: translateY(-3px);
     }
 }

 .nilaas-services-section .animate-finance {
     animation: finance-grow 2s ease-in-out infinite;
 }

 @keyframes digit-spin {
     0% {
         transform: rotate(0deg);
     }

     50% {
         transform: rotate(15deg);
     }

     100% {
         transform: rotate(0deg);
     }
 }

 .nilaas-services-section .animate-digit {
     animation: digit-spin 4s ease-in-out infinite;
 }

 .nilaas-services-section .card-meta-code {
     font-family: 'JetBrains Mono', monospace;
     font-size: 0.65rem;
     letter-spacing: 0.08em;
     color: #64748b;
 }

 /* Scoped Vector mask bounds for dynamic slide-up image interaction */
 .nilaas-services-section .vector-mask-container {
     position: relative;
     width: 100%;
     height: 96px;
     overflow: hidden;
     border-radius: 12px;
     background: rgba(15, 23, 42, 0.5);
     border: 1px solid rgba(255, 255, 255, 0.04);
     display: flex;
     align-items: center;
     justify-content: center;
 }

 /* Scanning laser element animation */
 @keyframes scanning-laser {

     0%,
     100% {
         transform: translateY(-10px);
         opacity: 0.3;
     }

     50% {
         transform: translateY(45px);
         opacity: 1;
     }
 }

 .nilaas-services-section .laser-line {
     animation: scanning-laser 2.5s infinite ease-in-out;
 }

 /* Vector popup transitions on card hover */
 .nilaas-services-section .vector-artwork {
     position: absolute;
     bottom: -6px;
     width: 75%;
     height: 80px;
     opacity: 0.22;
     transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
 }

 .nilaas-services-section .nilaas-card:hover .vector-artwork {
     opacity: 0.85;
     transform: translateY(-8px) scale(1.1);
 }

 /* Scoped anchor navigation buttons styled to function beautifully without scripts */
 .nilaas-services-section .btn-circle-action {
     width: 40px;
     height: 40px;
     border-radius: 50%;
     background: rgba(30, 41, 59, 0.6);
     border: 1px solid rgba(255, 255, 255, 0.08);
     display: flex;
     align-items: center;
     justify-content: center;
     color: #94a3b8;
     text-decoration: none;
     /* Prevents default underlines */
     transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
 }

 /* Anchor specific hover feedback configurations */
 .nilaas-services-section .nilaas-card:hover .btn-circle-action {
     background: #de1e39;
     border-color: #de1e39;
     color: #ffffff;
     transform: scale(1.1) rotate(45deg);
 }

 /* Action link outline prevention on focus state */
 .nilaas-services-section .btn-circle-action:focus {
     outline: none;
     box-shadow: 0 0 0 2px rgba(222, 30, 57, 0.5);
 }

 @keyframes heart-pulse {

     0%,
     100% {
         transform: scale(1);
         opacity: 0.5;
     }

     50% {
         transform: scale(1.4);
         opacity: 1;
     }
 }

 /* industries */

 /* footer */
 .nilaas-footer-section {
     background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
     color: #334155;
     padding: 6rem 2rem 3rem;
     font-family: 'Inter', system-ui, -apple-system, sans-serif;
     position: relative;
     overflow: hidden;
     border-top: 1px solid rgba(222, 30, 57, 0.15);
     box-shadow: 0 -8px 30px rgba(0, 0, 0, 0.02);
 }

 .nilaas-footer-section * {
     box-sizing: border-box;
 }

 /* Decorative gradient orb background */
 .nilaas-footer-section::before {
     content: "";
     position: absolute;
     top: -30%;
     right: -10%;
     width: 40%;
     height: 97%;
     background: radial-gradient(circle, rgba(222, 30, 57, 0.06) 0%, rgba(34, 54, 96, 0.03) 100%);
     border-radius: 50%;
     pointer-events: none;
     z-index: 0;
 }

 .nilaas-footer-section::after {
     content: "";
     position: absolute;
     bottom: -20%;
     left: -5%;
     width: 40%;
     height: 100%;
     background: radial-gradient(circle, rgba(34, 54, 96, 0.04) 0%, rgba(222, 30, 57, 0.02) 100%);
     border-radius: 50%;
     pointer-events: none;
     z-index: 0;
 }

 .nilaas-footer-content {
     max-width: 1200px;
     margin: 0 auto;
     display: grid;
     grid-template-columns: 1.5fr 1fr 1.5fr 1.5fr;
     gap: 1rem;
     position: relative;
     z-index: 2;
 }

 @media (max-width: 992px) {
     .nilaas-footer-content {
         grid-template-columns: 1fr;
         gap: 3rem;
     }
 }

 .nilaas-brand-area {
     display: flex;
     flex-direction: column;
     gap: 1.25rem;
 }

 .nilaas-logo {
     font-size: 2rem;
     font-weight: 800;
     background: linear-gradient(135deg, #223660 0%, #de1e39 80%);
     background-clip: text;
     -webkit-background-clip: text;
     color: transparent;
     letter-spacing: -0.03em;
 }

 .nilaas-about {
     font-size: 0.95rem;
     line-height: 1.7;
     max-width: 320px;
     color: #475569;
 }

 .nilaas-social-links {
     display: flex;
     gap: 1rem;
     margin-top: 0.5rem;
 }

 .nilaas-social-links a {
     color: #223660;
     background: #ffffff;
     width: 40px;
     height: 40px;
     display: flex;
     align-items: center;
     justify-content: center;
     border-radius: 50%;
     text-decoration: none;
     transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
     border: 1px solid rgba(222, 30, 57, 0.25);
     box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
 }

 .nilaas-social-links a:hover {
     background: linear-gradient(145deg, #de1e39, #c41730);
     color: #ffffff;
     transform: translateY(-4px);
     border-color: #de1e39;
     box-shadow: 0 12px 18px -6px rgba(222, 30, 57, 0.3);
 }

 .nilaas-footer-column h4 {
     color: #1e293b;
     font-size: 1.1rem;
     margin-bottom: 1.75rem;
     font-weight: 700;
     letter-spacing: -0.01em;
     position: relative;
     display: inline-block;
 }

 .nilaas-footer-column h4::after {
     content: '';
     position: absolute;
     bottom: -8px;
     left: 0;
     width: 40px;
     height: 2px;
     background: linear-gradient(90deg, #de1e39, #223660);
     border-radius: 4px;
 }

 .nilaas-links-list {
     list-style: none;
     padding: 0;
 }

 .nilaas-links-list li {
     margin-bottom: 1rem;
 }

 .nilaas-links-list a {
     color: #475569;
     text-decoration: none;
     font-size: 0.95rem;
     transition: all 0.3s ease;
     display: flex;
     align-items: center;
     gap: 8px;
     font-weight: 500;
 }

 .nilaas-links-list a i {
     font-size: 0.85rem;
     color: #de1e39;
     transition: transform 0.2s;
 }

 .nilaas-links-list a:hover {
     color: #de1e39;
     transform: translateX(5px);
 }

 .nilaas-links-list a:hover i {
     transform: translateX(3px);
 }

 .nilaas-map-container {
     height: 180px;
     border: 1px solid rgba(222, 30, 57, 0.2);
     border-radius: 16px;
     position: relative;
     overflow: hidden;
     transition: all 0.4s ease;
     box-shadow: 0 6px 14px rgba(0, 0, 0, 0.02);
 }

 .nilaas-map-container:hover {
     border-color: #de1e39;
     transform: scale(1.01);
     box-shadow: 0 12px 24px -12px rgba(222, 30, 57, 0.2);
 }

 .nilaas-map-container iframe {
     width: 100%;
     height: 100%;
     border: 0;
     display: block;
 }

 .nilaas-address-text {
     font-size: 0.9rem;
     line-height: 1.8;
     color: #334155;
     margin-top: 1.25rem;
     font-weight: 500;
     background: rgba(255, 255, 255, 0.7);
     padding: 0.5rem 1rem;
     border-radius: 12px;
 }

 .nilaas-footer-bottom {
     max-width: 1200px;
     margin: 5rem auto 0;
     padding-top: 2rem;
     border-top: 1px solid rgba(222, 30, 57, 0.15);
     display: flex;
     justify-content: space-between;
     font-size: 0.85rem;
     color: #5b6e8c;
     position: relative;
     z-index: 2;
     flex-wrap: wrap;
     gap: 1rem;
 }

 @media (max-width: 768px) {
     .nilaas-footer-section {
         padding: 3rem 1.5rem;
     }

     .nilaas-footer-bottom {
         flex-direction: column;
         text-align: center;
         justify-content: center;
     }
 }

 /* cta */
 .nilaas-contact-cta {
     padding: 50px 20px;
     font-family: 'Inter', sans-serif;
     background-color: #ededed;
     display: flex;
     justify-content: center;
     align-items: center;
 }

 .nilaas-contact-cta .cta-card {
     background: #f8fafc;
     border-radius: 24px;
     padding: 64px;
     max-width: 1200px;
     width: 100%;
     text-align: center;
     border: 1px solid rgba(226, 232, 240, 0.8);
     box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05);
 }

 .nilaas-contact-cta .cta-heading {
     font-weight: 800;
     color: #223660;
     font-size: 2.5rem;
     margin-bottom: 24px;
     line-height: 1.2;
 }

 .nilaas-contact-cta .cta-text {
     color: #64748b;
     font-size: 1.125rem;
     margin-bottom: 40px;
     max-width: 600px;
     margin-left: auto;
     margin-right: auto;
     line-height: 1.6;
 }

 .nilaas-contact-cta .cta-button {
     background-color: #de1e39;
     color: #ffffff;
     padding: 16px 40px;
     border-radius: 12px;
     font-weight: 600;
     text-decoration: none;
     display: inline-block;
     transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
     border: none;
     font-size: 1rem;
 }

 .nilaas-contact-cta .cta-button:hover {
     background-color: #c21a32;
     transform: translateY(-2px);
     box-shadow: 0 10px 15px -3px rgba(222, 30, 57, 0.2);
     color: #ffffff;
 }

 @media (max-width: 768px) {
     .nilaas-contact-cta .cta-card {
         padding: 40px 24px;
     }

     .nilaas-contact-cta .cta-heading {
         font-size: 2rem;
     }
 }

 /*industries  */
 .industries-module {
     font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
     background: linear-gradient(125deg, #f1f5f9 0%, #ffffff 100%);
     padding: 5rem 2rem;
     position: relative;
     overflow: hidden;
 }

 .industries-module * {
     box-sizing: border-box;
 }

 /* abstract decorative blobs (soft background) */
 .industries-module::before {
     content: "";
     position: absolute;
     top: -20%;
     right: -5%;
     width: 60%;
     height: 80%;
     background: radial-gradient(circle, rgba(222, 30, 57, 0.08) 0%, rgba(34, 54, 96, 0.04) 100%);
     border-radius: 50%;
     pointer-events: none;
     z-index: 0;
 }

 .industries-module::after {
     content: "";
     position: absolute;
     bottom: -15%;
     left: -8%;
     width: 55%;
     height: 70%;
     background: radial-gradient(circle, rgba(34, 54, 96, 0.05) 0%, rgba(222, 30, 57, 0.02) 100%);
     border-radius: 50%;
     pointer-events: none;
     z-index: 0;
 }

 .section-title-creative {
     font-size: 3rem;
     font-weight: 800;
     background: linear-gradient(135deg, #223660 0%, #de1e39 70%);
     background-clip: text;
     -webkit-background-clip: text;
     color: transparent;
     margin-bottom: 1rem;
     display: inline-block;
     letter-spacing: -0.02em;
 }

 .creative-subhead {
     color: #4a5568;
     font-size: 1.2rem;
     max-width: 620px;
     margin: 0 auto;
     font-weight: 400;
 }

 /* ---------- INDUSTRY CARD WITH VISIBLE BG IMAGE ON HOVER ---------- */
 .industry-card {
     position: relative;
     background: rgba(255, 255, 255, 0.92);
     backdrop-filter: blur(1px);
     border-radius: 2rem;
     padding: 2rem 1.5rem;
     text-align: center;
     transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
     border: 1px solid rgba(34, 54, 96, 0.08);
     box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.08);
     height: 100%;
     z-index: 2;
     overflow: hidden;
     /* cursor: pointer; */
 }

 /* Background image layer - FULLY VISIBLE on hover with smooth transition */
 .industry-card .card-bg-image {
     position: absolute;
     inset: 0;
     background-size: cover;
     background-position: center;
     background-repeat: no-repeat;
     opacity: 0;
     transition: opacity 0.55s cubic-bezier(0.2, 0.9, 0.4, 1.1);
     z-index: 0;
     border-radius: 2rem;
     transform: scale(1.02);
 }

 /* On hover: background becomes beautifully visible with slight dark overlay for readability */
 .industry-card:hover .card-bg-image {
     opacity: 1;
 }

 /* Additional gradient overlay on hover to enhance text readability (dark, yet bg visible) */
 .industry-card::after {
     content: "";
     position: absolute;
     inset: 0;
     background: linear-gradient(145deg, rgba(34, 54, 96, 0.75) 0%, rgba(222, 30, 57, 0.65) 100%);
     border-radius: 2rem;
     opacity: 0;
     transition: opacity 0.45s ease;
     z-index: 1;
     pointer-events: none;
 }

 .industry-card:hover::after {
     opacity: 0.88;
 }

 /* Content wrapper - stays above both layers */
 .industry-card .card-content {
     position: relative;
     z-index: 3;
     transition: all 0.35s ease;
 }

 /* Icon container - modern floating style */
 .industry-icon-wrapper {
     width: 85px;
     height: 85px;
     background: linear-gradient(145deg, #ffffff, #f8f9fc);
     display: flex;
     align-items: center;
     justify-content: center;
     border-radius: 28px;
     margin: 0 auto 1.5rem;
     transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
     box-shadow: 0 15px 25px -10px rgba(34, 54, 96, 0.2);
     border: 1px solid rgba(222, 30, 57, 0.25);
 }

 .industry-card:hover .industry-icon-wrapper {
     background: white;
     transform: scale(1.08) rotate(2deg);
     border-color: #de1e39;
     box-shadow: 0 20px 30px -8px rgba(222, 30, 57, 0.4);
 }

 .industry-icon-wrapper i {
     font-size: 3rem;
     color: #de1e39;
     transition: transform 0.25s;
 }

 .industry-card:hover .industry-icon-wrapper i {
     transform: scale(1.05);
     color: #223660;
 }

 .industry-title {
     font-size: 1.7rem;
     font-weight: 800;
     color: #223660;
     margin-bottom: 0.75rem;
     letter-spacing: -0.02em;
     transition: all 0.25s;
     display: inline-block;
     padding: 0 0.3rem;
 }

 .industry-desc {
     color: #2d3e5f;
     font-size: 0.92rem;
     font-weight: 500;
     line-height: 1.45;
     transition: all 0.3s;
     background: transparent;
     padding: 0.2rem 0;
     border-radius: 16px;
 }

 /* Hover text becomes white with soft background glow */
 .industry-card:hover .industry-title {
     color: #ffffff;
     text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
 }

 .industry-card:hover .industry-desc {
     color: #f8fafc;
     font-weight: 500;
     background: rgba(0, 0, 0, 0.4);
     backdrop-filter: blur(6px);
     padding: 0.3rem 0.8rem;
     display: inline-block;
     border-radius: 40px;
 }

 /* responsive magic */
 @media (max-width: 768px) {
     .industries-module {
         padding: 3rem 1.2rem;
     }

     .section-title-creative {
         font-size: 2.2rem;
     }

     .industry-title {
         font-size: 1.4rem;
     }

     .industry-icon-wrapper {
         width: 70px;
         height: 70px;
         border-radius: 22px;
     }

     .industry-icon-wrapper i {
         font-size: 2.3rem;
     }

     .creative-subhead {
         font-size: 1rem;
     }
 }

 /* decorative floating dots */
 .float-dot {
     position: absolute;
     border-radius: 50%;
     background: #de1e39;
     opacity: 0.06;
     pointer-events: none;
     z-index: 0;
 }

 /* subtle shine animation on hover */
 .industry-card {
     transition: transform 0.35s, box-shadow 0.4s;
 }

 .industry-card:hover {
     transform: translateY(-12px) scale(1.01);
     box-shadow: 0 30px 45px -16px rgba(222, 30, 57, 0.35);
     border-color: transparent;
 }

 /* about page */
 /* Slight Border Curve Uniform Token */
 .slight-curve {
     border-radius: 1.25rem !important;
     /* Elegant 20px slight curve */
 }

 .hero-curve-bottom {
     border-bottom-left-radius: 2rem !important;
     border-bottom-right-radius: 2rem !important;
 }

 /* Hero Section Ambient Gradient Backplate */
 .hero-backplate {
     background: radial-gradient(circle at top right, rgba(222, 30, 57, 0.15) 0%, transparent 60%),
         radial-gradient(circle at bottom left, rgba(18, 30, 54, 0.2) 0%, transparent 60%),
         #09101f;
     position: relative;
     overflow: hidden;
 }

 /* Specialties Loop Interactive Circular Orbit Layout */
 .dial-orbit-container {
     position: relative;
     width: 480px;
     height: 480px;
     display: flex;
     align-items: center;
     justify-content: center;
 }

 .dial-orbit-ring {
     position: absolute;
     width: 100%;
     height: 100%;
     border: 3px dashed rgba(18, 30, 54, 0.12);
     border-radius: 50% !important;
     transition: transform 1.2s cubic-bezier(0.25, 1, 0.5, 1);
 }

 /* Interactive Circle Nodes */
 .dial-node {
     position: absolute;
     width: 90px;
     height: 90px;
     background: #ffffff;
     border: 2px solid rgba(18, 30, 54, 0.08);
     border-radius: 50% !important;
     box-shadow: 0 20px 40px -15px rgba(18, 30, 54, 0.08);
     cursor: pointer;
     display: flex;
     align-items: center;
     justify-content: center;
     transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
     z-index: 10;
 }

 .node-content {
     display: flex;
     flex-direction: column;
     align-items: center;
     justify-content: center;
     text-align: center;
     transition: transform 1.2s cubic-bezier(0.25, 1, 0.5, 1);
 }

 .dial-node i {
     font-size: 1.6rem;
     color: #121e36;
     transition: color 0.3s ease;
 }

 .dial-node span {
     font-size: 0.65rem;
     font-weight: 700;
     text-transform: uppercase;
     margin-top: 0.25rem;
     color: #64748b;
     letter-spacing: 0.03em;
     transition: color 0.3s ease;
 }

 /* Circular Tracing Coordinates (240px radius from center) */
 .node-aviation {
     top: 50%;
     left: 50%;
     transform:
         translate(-50%, -50%) rotate(0deg) translate(240px) rotate(0deg);
 }

 .node-BPO {
     top: 50%;
     left: 50%;
     transform:
         translate(-50%, -50%) rotate(72deg) translate(240px) rotate(-72deg);
 }

 .node-supplychain {
     top: 50%;
     left: 50%;
     transform:
         translate(-50%, -50%) rotate(144deg) translate(240px) rotate(-144deg);
 }

 .node-finance {
     top: 50%;
     left: 50%;
     transform:
         translate(-50%, -50%) rotate(216deg) translate(240px) rotate(-216deg);
 }

 .node-digitization {
     top: 50%;
     left: 50%;
     transform:
         translate(-50%, -50%) rotate(288deg) translate(240px) rotate(-288deg);
 }

 .dial-node:hover,
 .dial-node.active-node {
     background: #121e36;
     border-color: #121e36;
     box-shadow: 0 15px 30px rgba(18, 30, 54, 0.2);
 }

 .dial-node:hover i,
 .dial-node.active-node i {
     color: #ffffff;
 }

 .dial-node:hover span,
 .dial-node.active-node span {
     color: #de1e39;
 }

 /* Central Details Display Orb */
 .center-details-curved {
     position: absolute;
     width: 270px;
     height: 270px;
     background: #ffffff;
     border-radius: 50% !important;
     border: 6px double rgba(18, 30, 54, 0.08);
     box-shadow: 0 20px 40px -15px rgba(18, 30, 54, 0.08);
     padding: 1.5rem;
     display: flex;
     flex-direction: column;
     align-items: center;
     justify-content: center;
     text-align: center;
     z-index: 11;
     pointer-events: none;
 }

 /* Brand Accent Colors */
 .brand-primary {
     color: #121e36 !important;
 }

 .brand-accent {
     color: #de1e39 !important;
 }

 .bg-brand-primary {
     background-color: #121e36 !important;
 }

 .bg-brand-accent {
     background-color: #de1e39 !important;
 }

 /* Premium Hover States for Cards */
 .card-interactive {
     position: relative;
     overflow: hidden;
     transition: all 0.45s cubic-bezier(0.16, 1, 0.3, 1);
     border: 1px solid rgba(18, 30, 54, 0.08) !important;
     background: #faeded;
     transform: translateY(0) scale(1);
 }

 /* Animated top gradient line */
 .card-interactive::before {
     content: "";
     position: absolute;
     top: 0;
     left: -100%;
     width: 100%;
     height: 4px;
     background: linear-gradient(90deg, #DE1E39, #F4C542, #18222C);
     transition: all 0.5s ease;
 }

 /* Soft background glow */
 .card-interactive::after {
     content: "";
     position: absolute;
     inset: 0;
     background: radial-gradient(circle at top right,
             rgba(222, 30, 57, 0.08),
             transparent 70%);
     opacity: 0;
     transition: opacity 0.4s ease;
     pointer-events: none;
 }

 .card-interactive:hover {
     transform: translateY(-10px) scale(1.02);
     box-shadow:
         0 25px 40px rgba(18, 30, 54, 0.10),
         0 8px 20px rgba(222, 30, 57, 0.08) !important;
     border-color: rgba(222, 30, 57, 0.35) !important;
 }

 /* Animate top line */
 .card-interactive:hover::before {
     left: 0;
 }

 /* Show glow */
 .card-interactive:hover::after {
     opacity: 1;
 }

 /* Optional: animate inner content */
 .card-interactive>* {
     transition: transform 0.35s ease, color 0.35s ease;
 }

 .card-interactive:hover>* {
     transform: translateY(-2px);
 }

 /* Optional icon animation */
 .card-interactive:hover i {
     transform: scale(1.15) rotate(5deg);
     color: #DE1E39;
     transition: all 0.35s ease;
 }

 /* Responsive Adaptation for Circular Dial on Small Viewports */
 @media (max-width: 640px) {
     .dial-orbit-container {
         width: 310px;
         height: 310px;
     }

     .dial-node {
         width: 72px;
         height: 72px;
     }

     .dial-node i {
         font-size: 1.25rem;
     }

     .dial-node span {
         font-size: 0.55rem;
     }

     .center-details-curved {
         width: 175px;
         height: 175px;
         padding: 0.75rem;
     }

     @media (max-width:640px) {

         .node-aviation {
             transform: translate(-50%, -50%) rotate(0deg) translate(150px) rotate(0deg);
         }

         .node-BPO {
             transform: translate(-50%, -50%) rotate(72deg) translate(150px) rotate(-72deg);
         }

         .node-supplychain {
             transform: translate(-50%, -50%) rotate(144deg) translate(150px) rotate(-144deg);
         }

         .node-finance {
             transform: translate(-50%, -50%) rotate(216deg) translate(150px) rotate(-216deg);
         }

         .node-digitization {
             transform: translate(-50%, -50%) rotate(288deg) translate(150px) rotate(-288deg);
         }

     }
 }

 /* services */

 /* Slight Border Curve Uniform Token */
 .slight-curve {
     border-radius: 1.25rem !important;
 }

 /* ========= COMMON TOP BANNER WITH BACKGROUND IMAGE & BREADCRUMBS ========= */
 .common-hero-banner {
     background-image: url('../img/banner.webp');
     background-size: cover;
     background-position: center 30%;
     background-repeat: no-repeat;
     position: relative;
     border-bottom: 1px solid rgba(222, 30, 57, 0.4);
 }

 .common-hero-banner::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: linear-gradient(135deg, rgba(10, 15, 31, 0.92) 0%, rgba(8, 12, 25, 0.88) 100%);
     pointer-events: none;
 }

 .common-hero-banner .container {
     position: relative;
     z-index: 5;
 }

 .breadcrumb-custom .breadcrumb-item a {
     text-decoration: none;
     color: #cbd5e1;
     transition: all 0.2s;
     font-weight: 500;
 }

 .breadcrumb-custom .breadcrumb-item a:hover {
     color: #de1e39;
 }

 .breadcrumb-custom .breadcrumb-item.active {
     color: #ffffff;
     font-weight: 600;
 }

 .breadcrumb-custom .breadcrumb-item+.breadcrumb-item::before {
     color: #94a3b8;
     content: "›";
     font-size: 1.1rem;
     font-weight: 600;
 }

 /* Aviation Operations Hero */
 .aviation-operations-hero-banner {
     background: radial-gradient(circle at top right, rgba(222, 30, 57, 0.15) 0%, transparent 60%),
         radial-gradient(circle at bottom left, rgba(18, 30, 54, 0.2) 0%, transparent 60%),
         #09101f;
     position: relative;
     overflow: hidden;
     border-bottom-left-radius: 2rem !important;
     border-bottom-right-radius: 2rem !important;
 }

 /* Mid-page Operational Excellence Banner */
 .aviation-operational-excellence-banner {
     background: radial-gradient(circle at top left, rgba(222, 30, 57, 0.1) 0%, transparent 50%),
         linear-gradient(135deg, #121e36 0%, #09101f 100%);
     position: relative;
     overflow: hidden;
 }

 /* Brand Accent Colors */
 .brand-primary-color {
     color: #121e36 !important;
 }

 .brand-accent-color {
     color: #de1e39 !important;
 }

 .bg-brand-primary {
     background-color: #121e36 !important;
 }

 .bg-brand-accent {
     background-color: #de1e39 !important;
 }

 /* Clean Card Hover States */
 .detail-card {
     background: #ffffff;
     border: 1px solid rgba(18, 30, 54, 0.08) !important;
     transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
 }

 .detail-card:hover {
     transform: translateY(-4px);
     box-shadow: 0 20px 40px rgba(18, 30, 54, 0.05) !important;
     border-color: rgba(222, 30, 57, 0.15) !important;
 }

 /* Bullet List Accents */
 .custom-bullet-item {
     padding: 0.75rem 1rem;
     background-color: #f8fafc;
     border: 1px solid rgba(18, 30, 54, 0.04);
     font-size: 0.85rem;
     font-weight: 600;
     color: #1e293b;
     transition: all 0.2s ease;
 }

 .custom-bullet-item:hover {
     background-color: #fff5f5;
     border-left: 3px solid #de1e39;
 }

 .text-gradient-white {
     background: linear-gradient(135deg, #ffffff 0%, #cbd5e6 100%);
     -webkit-background-clip: text;
     background-clip: text;
     color: transparent;
 }

 .badge-glass {
     background: rgba(222, 30, 57, 0.15);
     backdrop-filter: blur(4px);
     border: 0.5px solid rgba(222, 30, 57, 0.3);
 }


 /* WITHOU PERA CARD */
 .service-card {
     background: #ffffff;
     border: 1px solid rgba(18, 30, 54, 0.08) !important;
     transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
 }

 .service-card:hover {
     transform: translateY(-4px);
     box-shadow: 0 20px 40px rgba(18, 30, 54, 0.05) !important;
     border-color: rgba(222, 30, 57, 0.15) !important;
 }

 /* Bullet List Accents */
 .service-bullet-item {
     padding: 0.75rem 1rem;
     background-color: #f8fafc;
     border: 1px solid rgba(18, 30, 54, 0.04);
     font-size: 0.85rem;
     font-weight: 600;
     color: #1e293b;
     transition: all 0.2s ease;
 }

 .service-bullet-item:hover {
     background-color: #fff5f5;
     border-left: 3px solid #de1e39;
 }

 .text-gradient-white {
     background: linear-gradient(135deg, #ffffff 0%, #cbd5e6 100%);
     -webkit-background-clip: text;
     background-clip: text;
     color: transparent;
 }

 .badge-glass {
     background: rgba(222, 30, 57, 0.15);
     backdrop-filter: blur(4px);
     border: 0.5px solid rgba(222, 30, 57, 0.3);
 }

 /* contt */
 .contt {
     font-size: 0.75rem;
     z-index: 1;
     position: relative;
 }

 /* career */
 /* Slight Border Curve Token applied consistently to panels, inputs, and buttons */
 .nilaas-curved-token {
     border-radius: 1.25rem !important;
     /* Elegant 20px slight curve */
 }

 /* Page Banner Styling */
 .nilaas-career-hero-viewport {
     background: radial-gradient(circle at top right, rgba(222, 30, 57, 0.15) 0%, transparent 60%),
         radial-gradient(circle at bottom left, rgba(18, 30, 54, 0.2) 0%, transparent 60%),
         #09101f;
     position: relative;
     overflow: hidden;
     border-bottom-left-radius: 2rem !important;
     border-bottom-right-radius: 2rem !important;
 }

 /* Brand Colors styled via explicit class selectors */
 .nilaas-text-primary-brand {
     color: #121e36 !important;
 }

 .nilaas-text-accent-brand {
     color: #de1e39 !important;
 }

 .nilaas-bg-primary-brand {
     background-color: #121e36 !important;
 }

 .nilaas-bg-accent-brand {
     background-color: #de1e39 !important;
 }

 /* Subtle interactive elements */
 .form-control:focus,
 .form-select:focus {
     border-color: rgba(222, 30, 57, 0.4) !important;
     box-shadow: 0 0 0 0.25rem rgba(222, 30, 57, 0.15) !important;
     background-color: #ffffff !important;
 }

 /* Creative Design: Offset background frame for the image */
 .nilaas-creative-photo-wrapper {
     position: relative;
     padding: 10px;
 }

 .nilaas-creative-photo-wrapper::before {
     content: '';
     position: absolute;
     bottom: 0;
     right: 0;
     width: 90%;
     height: 90%;
     background: rgba(222, 30, 57, 0.08);
     border: 2px dashed rgba(222, 30, 57, 0.25);
     border-radius: 1.25rem;
     z-index: 1;
 }

 .nilaas-creative-photo-container {
     position: relative;
     z-index: 2;
 }

 /* contact */
 .ndx-curved-token {
     border-radius: 16px !important;
 }

 .ndx-text-primary-brand {
     color: #121e36 !important;
     font-weight: 800;
 }

 .bg-brand-accent {
     background-color: #de1e39 !important;
     transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
 }

 .bg-brand-accent:hover {
     background-color: #be1226 !important;
     transform: translateY(-2px);
     box-shadow: 0 8px 20px rgba(222, 30, 57, 0.3);
 }

 /* Hero Banner matching the ndx theme */
 .ndx-hero-viewport {
     background: linear-gradient(135deg, #121e36 0%, #0b1220 100%);
     position: relative;
     overflow: hidden;
     border-bottom-left-radius: 32px;
     border-bottom-right-radius: 32px;
 }

 .ndx-icon-box {
     width: 40px;
     height: 40px;
     border-radius: 10px;
     display: flex;
     align-items: center;
     justify-content: center;
     background-color: rgba(222, 30, 57, 0.1);
     color: #de1e39;
 }

 /* Focus borders for input elements */
 .form-control:focus,
 .form-select:focus {
     border-color: #de1e39 !important;
     box-shadow: 0 0 0 4px rgba(222, 30, 57, 0.15) !important;
     background-color: #fff !important;
 }

 /* BPO */
 .nilaas-curved-token {
     border-radius: 16px !important;
 }

 .nilaas-text-primary-brand {
     color: #121e36 !important;
     font-weight: 800;
 }

 .bg-brand-accent {
     background-color: #de1e39 !important;
 }

 /* Redesigned BPO interactive card matrix */
 .nilaas-modern-BPO-card {
     background: #ffffff;
     border: 1px solid #e2e8f0;
     border-radius: 20px;
     transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
     position: relative;
     overflow: hidden;
     height: 100%;
     display: flex;
     flex-direction: column;
     justify-content: space-between;
 }

 .nilaas-modern-BPO-card:hover {
     transform: translateY(-6px);
     box-shadow: 0 20px 40px rgba(18, 30, 54, 0.08);
     border-color: #de1e39 !important;
 }

 /* Subtle glowing accent strip inside the card */
 .nilaas-modern-BPO-card::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 4px;
     background: #de1e39;
     transform: scaleX(0);
     transform-origin: left;
     transition: transform 0.4s ease;
 }

 .nilaas-modern-BPO-card:hover::before {
     transform: scaleX(1);
 }

 /* Premium Icon Design */
 .nilaas-BPO-icon-container {
     width: 52px;
     height: 52px;
     border-radius: 12px;
     display: flex;
     align-items: center;
     justify-content: center;
     background-color: #f8fafc;
     color: #121e36;
     transition: all 0.3s ease;
     font-size: 1.35rem;
     border: 1px solid #f1f5f9;
 }

 .nilaas-modern-BPO-card:hover .nilaas-BPO-icon-container {
     background-color: rgba(222, 30, 57, 0.1);
     color: #de1e39;
     border-color: rgba(222, 30, 57, 0.15);
 }

 /* Number sequence styling */
 .nilaas-BPO-number {
     font-size: 0.85rem;
     font-weight: 700;
     color: #94a3b8;
     font-family: monospace;
     letter-spacing: 0.05em;
 }

 .nilaas-modern-BPO-card:hover .nilaas-BPO-number {
     color: #de1e39;
 }