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

        body {
            font-family: 'Poppins', sans-serif;
            overflow-x: hidden;
        }
        html, body {
      max-width: 100%;
      overflow-x: hidden;
    }
        
        .section-padding{
              padding: 40px 0px 60px 0;
        }
        
        .img-fluid {
            max-width: 100%;
            height: auto;
        }
        
        .img-radius{
        border-radius:12px;
        }
    
        /* Header */
        .header {
            background-color: transparent;
            padding: 15px 0;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            transition: all 0.3s;
        }


        <!--.header::before {-->
        <!--    content: '';-->
        <!--    position: absolute;-->
        <!--    top: 0;-->
        <!--    right: 0;-->
        <!--    width: 50%;-->
        <!--    height: 100%;-->
        <!--    background: linear-gradient(135deg, rgba(227, 242, 253, 0.3) 0%, rgba(227, 242, 253, 0.5) 100%);-->
        <!--    z-index: -1;-->
        <!--}-->
        <!--.header.scrolled {-->
        <!--    background-color:white;-->
        <!--    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);-->
        <!--}-->

        .navbar-container {
            background-color: #ffffff;
            border-radius: 50px;
            padding: 10px 15px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
        }

        .logo  img {
           width:158px;
           height:52px;
            text-decoration: none;
            padding: 0 10px;
        }
    
        .logo span {
            color: #0066cc;
        }

        .nav-links {
            list-style: none;
            display: flex;
            gap: 5px;
            margin: 0;
            padding: 0;
        }

        .nav-links li a {
            text-decoration: none;
            color: #333;
            font-size: 16px;
            font-weight: 600;
            padding: 8px 20px;
            border-radius: 25px;
            display: block;
            transition: all 0.3s;
        }

        .nav-links li a.active {
            color: #0066cc;
           
        }
          .nav-links li a:hover {
            color: #0066cc;
           
        }

        .contact-btn { 
        background: linear-gradient(90deg, #0166B3 0%, #014C85 100%);
         color: white;
            padding: 10px 28px;
            border-radius: 25px;
            text-decoration: none;
            font-size: 15px;
            font-weight: 500;
        }

        /* Mobile Menu */
        .navbar-toggler {
            border: none;
            background: none;
            padding: 5px;
        }

        .navbar-toggler:focus {
            box-shadow: none;
        }

        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(0, 0, 0, 0.75)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
            width: 25px;
            height: 25px;
        }

        .mobile-sidebar {
            position: fixed;
            top: 0;
            left: -280px;
            width: 280px;
            height: 100vh;
            background-color: #ffffff;
            box-shadow: 2px 0 10px rgba(0,0,0,0.1);
            transition: left 0.3s;
            z-index: 9999;
        }

        .mobile-sidebar.active {
            left: 0;
        }

        .sidebar-header {
            padding: 20px;
            border-bottom: 1px solid #eee;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .close-btn {
            background: none;
            border: none;
            font-size: 28px;
            cursor: pointer;
        }

        .sidebar-nav {
            list-style: none;
            padding: 20px;
            margin: 0;
        }

        .sidebar-nav li {
            margin-bottom: 10px;
        }

        .sidebar-nav li a {
            display: block;
            padding: 12px;
            font-weight:600;
            color: #333;
            text-decoration: none;
            border-radius: 5px;
        }

        .sidebar-nav li a:hover {
            background-color: #e3f2fd;
            color: #0066cc;
        }

        .sidebar-contact {
            padding: 0 20px;
        }

        .overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background-color: rgba(0,0,0,0.5);
            display: none;
            z-index: 9998;
        }

        .overlay.active {
            display: block;
        }
        
          /* Hero Section */
        .hero-section {
            background: linear-gradient(to right, #ffffff 0%, #ffffff 70%, #e3f2fd 30%, #e3f2fd 100%);
            position: relative;
            overflow: hidden;
            padding: 120px 0 60px 0;
        }

        .hero-section h1 {
            font-size: 46px;
            font-weight: 700;
            color: #1C1C1C;
            line-height: 1.2;
            margin-bottom: 20px;
        }

        .hero-section p {
            font-size: 16px;
            color: #383838;
            line-height: 1.3;
            margin-bottom: 20px;
        }

        .hero-buttons {
            display: flex;
            gap: 15px;
            margin-bottom: 50px;
        }

        .btn-demo {
           background: linear-gradient(90deg, #0166B3 0%, #014C85 100%);
            color: white;
            padding: 12px 30px;
            border-radius: 25px;
            text-decoration: none;
            font-weight: 600;
        }

        .btn-contact {
            background-color: transparent;
            color: #0066cc;
            padding: 12px 30px;
            border-radius: 25px;
            border: 2px solid #0066cc;
            text-decoration: none;
            font-weight: 600;
        }

        /* Stats */
        .stats {
            display: flex;
            gap: 10px;
        }

        .stat-item {
            text-align: center;
        }

        .stat-item h2 {
            font-size: 40px;
            font-weight: 500;
            color: #1C1C1C;
            margin-bottom: 5px;
        }

        .stat-item p {
            font-size: 14px;
            color: #464646;
            line-height: 1.4;
        }

        /* Hero Image */
        .hero-image {
            position: relative;
        }

        /* Common Decorative Dots - 4 rows x 8 columns */
        .decorative-dots {
            position: absolute;
            width: 128px;  /* 8 columns × (8px + 8px gap) */
            height: 64px;  /* 4 rows × (8px + 8px gap) */
            background-image: radial-gradient(circle, #0066cc 4px, transparent 4px);
            background-size: 16px 16px;
            background-repeat: repeat;
            opacity: 0.3;
            z-index: 0;
        }

        .main-image {
            position: relative;
            z-index: 1;
        }

        .main-image img {
            width: 100%;
            border-radius: 15px;
        }

        .floating-left {
            position: absolute;
            left: -40%;
            top: 80%;
            transform: translateY(-50%);
            background: white;
            <!--padding: 15px;-->
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            z-index:1;
        }

        .floating-left img {
            width: 144px;
            border-radius: 8px;
        }

        /* Responsive */
        @media (max-width: 991px) {
            .navbar-container {
                padding: 8px 15px;
            }

            .hero-section h1 {
                font-size: 36px;
            }

            .stats {
                justify-content: center;
                flex-wrap: wrap;
            }
        }

        @media (max-width: 768px) {
             .hero-section {
           background: linear-gradient(to right, #ffffff 0%, #ffffff 100%);
            padding: 95px 0 60px 0;
        }

            .hero-section h1 {
                font-size: 1.5rem;
            }

            .hero-buttons {
                flex-direction: column;
            }

            .btn-demo, .btn-contact {
                text-align: center;
            }

            .stats {
                gap: 5px;
            }

            .stat-item h2 {
                font-size: 36px;
            }

            .floating-left {
                display: none;
            }

            .hero-image {
                margin-top: 40px;
            }
        }

        @media (max-width: 576px) {
            .hero-section h1 {
                font-size: 1.5rem;
            }

            .hero-section p {
                font-size: 15px;
            }
        }
        
        
          /* About Section */
        .about-section {
            
            background-color: #ffffff;
        }

        .about-content {
            position: relative;
        }

       

        .about-image-wrapper {
            position: relative;
            z-index: 1;
        }

        .about-image {
            width: 100%;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        }

        

        .about-text p {
            font-size: 15px;
            color: #666;
            line-height: 1.7;
        }
        
        /* Services Section */
       

        .common-header p {
            color: #0066cc;
            font-size: 24px;
            font-weight: 500;
            margin-bottom: 10px;
            letter-spacing: 0.5px;
        }

        .common-header h2 {
            font-size: 2.5rem;
            font-weight: 600;
            color: #1a1a1a;
            margin-bottom: 25px;
            line-height: 1.3;
        }

        .accordion {
            border-radius: 10px;
            border:none;
        }

        .accordion-button {
            background-color: #ffffff;
            color: #1a1a1a;
            font-size: 17px;
            font-weight: 600;
            padding: 8px 18px;
            border: 1px solid #e0e0e0;
            box-shadow: none;
            transition: all 0.3s ease;
            line-height: 1.5;
            justify-content: space-between;

        }

        <!--.accordion-button:hover {-->
        <!--    background-color: #f8f9fa;-->
        <!--}-->

        .accordion-button:not(.collapsed) {
            <!--background-color: #0066cc;-->
            color: #ffffff;
            border-color:none;
            box-shadow: 0 4px 12px rgba(0, 102, 204, 0.15);
        }

        .accordion-button:focus {
            box-shadow: none;
            border-color:none;
            outline: none;
            border:none;
        }

        .accordion-button:not(.collapsed):focus {
            border-color: none;
            box-shadow: 0 0 0 0.25rem rgba(0, 102, 204, 0.1);
        }

      
        .accordion-item {
          border: 0 !important;
          margin-bottom: 15px;
            border-radius: 10px;
        background-color: transparent;
          box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
          overflow: hidden; /* keeps radius clean */
        }
        
       .accordion,
        .accordion-item,
         .accordion-button {
              border: 0 !important;
            }
            
            .accordion-button,
            .accordion-button:focus,
            .accordion-button:active,
            .accordion-button:not(.collapsed) {
              border: 0 !important;
              outline: none !important;
              box-shadow: none !important;
              background-clip: padding-box;
            }

        .accordion-header{
        font-size:20px;
        font-weight: 500;
        }

        .accordion-item:first-of-type .accordion-button {
            border-radius: 10px 10px 0 0;
        }

        .accordion-item:last-of-type .accordion-button.collapsed {
            border-radius: 10px;
        }

        .accordion-body {
            background-color: #ffffff;
            padding: 20px 25px 25px 25px;
            color: #666;
            font-size: 15px;
            line-height: 1.8;
            border: 1px solid #e0e0e0;
            border-top: none;
            border-radius: 0 0 10px 10px;
        }

        .services-image-wrapper {
            position: relative;
            height: 100%;
            display: flex;
            align-items: center;
        }

        .services-image {
           
        width: 76%;
        <!--height: 80%;-->
        object-fit: cover;
        display: block;
        margin-left: auto;
        margin-right: auto;
        }

        .services-image:hover {
            transform: scale(1.02);
        }

        @media (max-width: 991px) {
            .services-header h2 {
                font-size: 32px;
            }

            .services-image-wrapper {
                margin-top: 30px;
            }
        }

        @media (max-width: 768px) {
            .section-padding {
                padding: 20px 0;
            }

            .common-header h2{
            font-size:1.5rem;
            margin-top:10px;
            }
            
            .accordion-button {
                font-size: 15px;
                padding: 15px 20px;
            }

            .accordion-body {
                font-size: 14px;
                padding: 15px 20px 20px 20px;
            }

            .services-image-wrapper {
                margin-top: 10px;
            }
            .services-image{
            width:100%;
            }
        }

        @media (max-width: 576px) {

            .accordion-button {
                font-size: 14px;
                padding: 14px 18px;
                line-height: 1.4;
            }

            .accordion-button::after {
                margin-left: 10px;
            }

            .accordion-body {
                font-size: 13px;
                line-height: 1.7;
            }

            .accordion-item {
                margin-bottom: 12px;
            }
        }

        @media (max-width: 768px) {
            

         
            .about-dots {
                display: none;
            }
        }
        
        
        .process-step {
            position: relative;
            display: flex;
            gap: 25px;
            padding-bottom: 45px;
        }

        .process-step::before {
            content: "";
            position: absolute;
            left: 19px;
            top: 50px;
            width: 2px;
            height: 100%;
            background: #e5e7eb;
        }

        .process-step.last::before {
            display: none;
        }

        .step-circle {
            width: 42px;
            height: 42px;
            border-radius: 50%;
            background: #e5e7eb;
            color: #6b7280;
            font-weight: 500;
            font-size: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        <!--.process-step.active .step-circle {-->
        <!--    background: #2563eb;-->
        <!--    color: #ffffff;-->
        <!--}-->

        .step-content h3 {
            font-size: 24px;
            font-weight: 500;
            margin-bottom: 8px;
            color: #111827;
        }

        .step-content p {
            font-size: 16px;
            color: #4b5563;
            margin-bottom: 0;
            max-width: 560px;
            line-height: 1.6;
        }
        
        .process-step:hover {
            transform: translateY(-6px);
            background: #ffffff;
            
        }

        .process-step:hover .step-circle {
            background: #2563eb;
            color: #ffffff;
        }

        .process-step:hover .step-content h3 {
            color: #005FD6;
        }

        @media (max-width: 576px) {
            .step-content h3 {
                font-size: 20px;
            }
        }
        
        
        
        .product-desc {
            font-size: 16px;
            color: #4b5563;
            max-width: 520px;
            margin-bottom: 20px;
        }

        .product-list {
            padding-left: 18px;
            margin-bottom: 0;
        }

        .product-list li {
            font-size: 15px;
            color: #374151;
            margin-bottom: 4px;
            position: relative;
        }

        .product-list li::marker {
            color: #2563eb;
        }
        
        
        
         /* Value Section */
        .value-section {
            background-color: #e8f4fd;
            <!--margin-top:80px;-->
          
        }

       

        .value-item {
            display: flex;
            align-items: flex-start;
            gap: 20px;
            padding: 20px 0;
        }

        .value-icon-inline {
            flex-shrink: 0;
            width: 50px;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .value-icon-inline i {
            font-size: 32px;
            color: #005FD6;
        }

        .value-text h3 {
            font-size: 20px;
            font-weight: 500;
            color: #1a1a1a;
            margin: 0;
            line-height: 1.5;
        }
        
         /* Industries Section */
       

        .industries-header {
            text-align: center;
            margin-bottom: 50px;
        }

       
        

        .industries-desc{
         
            color: #666 !important;
            font-size:18px !important;
            margin: 0 auto;
            line-height: 1.7;
        }
        .industry-card {
            background: #ffffff;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            margin-bottom: 30px;
            height: 100%;
        }

        .industry-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        }

        .industry-image {
            width: 100%;
            height: 220px;
            object-fit: cover;
        }

        .industry-content {
            padding: 25px;
            text-align: center;
        }

        .industry-content h3 {
            font-size: 22px;
            font-weight: 700;
            color: #1a1a1a;
            margin-bottom: 12px;
        }

        .industry-content p {
            font-size: 15px;
            color: #666;
            line-height: 1.7;
            margin: 0;
        }

        @media (max-width: 768px) {
           

            .industries-header {
                margin-bottom: 30px;
            }
            
            .industry-card {
                margin-bottom: 20px;
            }

            .industry-image {
                height: 200px;
            }

            .industry-content {
                padding: 20px;
            }

            .industry-content h3 {
                font-size: 20px;
            }
        }
        
        .cta-section {
            background: linear-gradient(180deg, #004e92, #006bb3);
            border-radius: 12px;
            padding: 60px 30px;
            color: #fff;
            text-align: center;
             
        }

        .cta-section h2 {
            font-size: 40px;
            font-weight: 600;
            margin-bottom: 12px;
        }

        .cta-section p {
            font-size: 20px;
            color: #dbe9f5;
            max-width: 900px;
            margin: 0 auto 25px;
        }

        .cta-btn {
            background-color: #ffffff;
            color: #004e92;
            border-radius: 6px;
            padding: 10px 22px;
            font-size: 14px;
            font-weight: 500;
            border: none;
            transition: all 0.3s ease;
        }

        .cta-btn:hover {
            background-color: #e9f3fb;
            color: #003b73;
        }

        /* Mobile Responsive */
        @media (max-width: 768px) {
            .cta-section {
                padding: 40px 20px;
            }

            .cta-section h2 {
                font-size: 24px;
            }

            .cta-section p {
                font-size: 14px;
            }
            
            <!--.value-section {-->
            <!--margin-top:80px;-->
            <!--}-->
        }
        
        
        
        
        
         /* Footer Section */
        .footer {
            background-color: #191919;
            color: #ffffff;
            padding: 60px 0 0 0;
        }


        .footer-logo-section {
            margin-bottom: 30px;
        }

        .footer-logo img{
            width:240px;
            text-decoration: none;
            display: block;
            margin-bottom: 8px;
        }

        .footer-tagline {
            font-size: 16px;
            color: #ffffff;
            margin-bottom: 25px;
            line-height: 1.5;
        }

        .footer-divider {
            height: 1px;
            background-color: #333;
            margin: 20px 0;
        }

        .footer-description {
            font-size: 16px;
            color: #ffffff;
            line-height: 1.7;
        }

        .footer h2 {
            font-size: 20px;
            font-weight: 600;
            color: #ffffff;
            margin-bottom: 16px;
        }

        .footer-links {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links li a {
            color: #ffffff;
            text-decoration: none;
            font-size: 16px;
            transition: color 0.3s;
            display: inline-block;
        }

        .footer-links li a:hover {
            color: #0066cc;
        }

        .footer-contact-item {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            margin-bottom: 16px;
            color: #ffffff;
            font-size: 14px;
            line-height: 1.6;
        }

        .footer-contact-item i {
            color: #ffffff;
            font-size: 16px;
            margin-top: 2px;
            flex-shrink: 0;
        }

        .footer-contact-item a {
            color: #ffffff;
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-contact-item a:hover {
            color: #0066cc;
        }
        .footer-social-section {
        margin-top:20px;
        }

        .footer-social {
            display: flex;
            gap: 2px;
            <!--margin-top: 20px;-->
        }

        .social-icon {
            width: 40px;
            height: 40px;
            background-color: transparent;
           
            display: flex;
            align-items: center;
            justify-content: center;
            color: #ffffff;
            font-size: 16px;
            transition: all 0.3s;
            text-decoration: none;
            margin-top:-2px;
        }

        .social-icon:hover {
           
            color: #0066cc;
          
            transform: translateY(-3px);
        }

        .footer-bottom {
            padding: 20px 0;
            text-align: center;
            color: #999;
            font-size: 16px;
        }

        /* Desktop - Products column format */
        @media (min-width: 992px) {
            .footer-products-social {
                display: flex;
                flex-direction: column;
            }
        }

        /* Mobile - Products row format */
        @media (max-width: 991px) {
            .footer h2 {
                margin-top: 30px;
                font-size: 17px;
            }

            .footer-logo-section {
                margin-bottom: 20px;
            }

            .footer-products-social {
                display: flex;
                flex-direction: row;
                justify-content: space-between;
                gap: 30px;
            }

            .footer-products-section {
                flex: 0 0 auto;
            }

            .footer-social-section {
                flex: 0 0 auto;
                margin-top:0px;
            }

            .footer-social-section h2 {
                margin-top: 0;
            }
        }

        @media (max-width: 768px) {
            .footer {
                padding: 40px 0 0 0;
            }

            .footer-content {
                padding-bottom: 30px;
            }

            .footer h2 {
                margin-top: 25px;
                font-size: 16px;
            }

            .footer-logo img {
                max-width: 180px;
            }

            .footer-bottom {
                padding: 18px 0;
                font-size: 12px;
            }

            .footer-products-social {
                gap: 20px;
               
            }
        }

        @media (max-width: 576px) {
            .footer-products-social {
                flex-direction: row;
                gap: 0;
               
            }

            .footer-social-section h2 {
                margin-top: 25px;
            }
        }
        
        
        <!--Serivces Page-->
        
        .problems-image-wrapper {
            position: relative;
            width: 100%;
            max-width: 450px;
            margin: 0 auto;
        }

        .main-image-container {
            position: relative;
            z-index: 2;
            background: white;
            border-radius: 12px;
        }

        .browser-header {
            background: #17a2b8;
            padding: 8px 12px;
            border-radius: 8px 8px 0 0;
            display: flex;
            gap: 6px;
            margin-bottom: 10px;
        }


        .main-image {
            width: 100%;
            height: auto;
            border-radius: 8px;
            display: block;
        }

        .floating-icon {
            position: absolute;
            background: white;
            border-radius: 12px;
            box-shadow: 0 8px 20px rgba(0,0,0,0.12);
            overflow: hidden;
        }

        .floating-icon img {
            width: 80%;
            <!--height: 100%;-->
            object-fit: cover;
            display: block;
        }

        .icon-top-left {
            width: 230px;
            height: 225px;
            top: -20px;
            left: -30px;
            z-index: 1;
        }

        .icon-bottom-right {
            width: 224px;
            height: 131px;
            bottom: 20px;
            right: -35px;
            z-index: 3;
        }

    @media (max-width: 991px) {
            .problem-image-wrapper {
                margin-bottom: 40px;
            }

        
        }

        @media (max-width: 576px) {
            .floating-icon {
                display: none;
            }

        }
        
        
        .section-title {
            font-size: 36px;
            font-weight: 700;
            color: #000;
            text-align: center;
            margin-bottom: 15px;
            line-height: 1.3;
        }

        .section-subtitle {
            font-size: 16px;
            color: #666;
            text-align: center;
            margin-bottom: 50px;
        }

        .support-container {
            display: flex;
            align-items: start;
            justify-content: center;
            gap: 20px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .feature-card {
            background: #E6EFFA;
            border-radius: 12px;
            padding: 40px 25px;
            text-align: center;
            width: 234px;
            min-height: 160px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .feature-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0,0,0,0.1);
        }

        .feature-icon {
            width: 50px;
            height: 50px;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 32px;
            color: #000;
        }

        .feature-title {
            font-size: 15px;
            font-weight: 600;
            color: #000;
            line-height: 1.4;
            margin: 0;
        }

        .center-image-container {
            position: relative;
            <!--width: 350px;-->
            flex-shrink: 0;
        }

        .center-image {
            width: 85%;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        }

        .bottom-text {
            text-align: center;
            margin-top: 30px;
            font-size: 16px;
            color: #333;
        }

        .bottom-text strong {
            font-weight: 700;
            color: #000;
        }

        .left-features,
        .right-features {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        @media (max-width: 992px) {
            .support-container {
                flex-wrap: wrap;
            }

            .center-image-container {
                order: -1;
                width: 100%;
                max-width: 400px;
            }

            .left-features,
            .right-features {
                width: 100%;
                flex-direction: row;
                justify-content: center;
                gap: 15px;
            }

            .feature-card {
                flex: 1;
                max-width: 250px;
            }

            .section-title {
                font-size: 28px;
            }
        }

        @media (max-width: 576px) {
            .support-section {
                padding: 40px 0;
            }

            .section-title {
                font-size: 24px;
                padding: 0 15px;
            }

            .section-subtitle {
                font-size: 14px;
                padding: 0 15px;
            }

            .left-features,
            .right-features {
                flex-direction: column;
                align-items: center;
            }

            .feature-card {
                width: 100%;
                max-width: 300px;
            }
        }
        
        
        
           .modernization-section {
            padding: 80px 0;
            background: white;
        }

        .left-content {
            padding-right: 40px;
        }

        .main-title {
            font-size: 38px;
            font-weight: 700;
            color: #000;
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .description {
            font-size: 15px;
            color: #666;
            line-height: 1.6;
            margin-bottom: 25px;
        }

        .highlight-text {
            font-size: 15px;
            color: #333;
            font-weight: 600;
            line-height: 1.6;
        }

        .right-content {
            padding-left: 20px;
        }

        .section-label {
            font-size: 15px;
            font-weight: 600;
            color: #000;
            margin-bottom: 20px;
        }

        .features-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
        }

        .feature-box {
            background: #f0f4ff;
            border-radius: 8px;
            padding: 20px 18px;
            display: flex;
            align-items: flex-start;
            gap: 12px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            height: 100%;
        }

        .feature-box:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 15px rgba(0,0,0,0.1);
        }

        .feature-icon {
            flex-shrink: 0;
            width: 45px;
            height: 45px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            color: #0066cc;
        }

        .feature-text {
            flex: 1;
        }

        .feature-text p {
            font-size: 18px;
            <!--font-weight: 600;-->
            color: #000;
            margin: 0;
            line-height: 1.4;
        }

        @media (max-width: 991px) {
            .left-content {
                padding-right: 15px;
                margin-bottom: 40px;
            }

            .right-content {
                padding-left: 15px;
            }

            .main-title {
                font-size: 32px;
            }
        }

        @media (max-width: 768px) {
            .modernization-section {
                padding: 50px 0;
            }

            .main-title {
                font-size: 28px;
            }
        }

        @media (max-width: 576px) {
            .main-title {
                font-size: 24px;
            }

            .feature-box {
                padding: 18px 15px;
            }

            .description,
            .highlight-text {
                font-size: 14px;
            }
        }
        
        <!--Product Page-->
        
        
        .main-title {
            font-size: 2.5rem;
            font-weight: 700;
            text-align: center;
            margin-bottom: 50px;
            color: #1a1a1a;
        }

        .capability-card {
            background: #ffffff;
            border-radius: 12px;
            padding: 30px 10px;
            height: 100%;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }

        .capability-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
            background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
            border: 2px solid #90caf9;
        }

        <!--.capability-card.highlight {-->
        <!--    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);-->
        <!--    border: 2px solid #90caf9;-->
        <!--}-->

        <!--.capability-card.highlight:hover {-->
        <!--    background: linear-gradient(135deg, #bbdefb 0%, #90caf9 100%);-->
        <!--    border-color: #64b5f6;-->
        <!--}-->

        .capability-card-title {
            font-size: 1.25rem;
            font-weight: 600;
            margin-bottom: 20px;
            color: #1a1a1a;
        }

        .capability-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .capability-list li {
            padding: 2px 0;
            display: flex;
            align-items: flex-start;
            color: #444;
            font-size: 0.95rem;
        }

        .capability-list li::before {
            content: "✓";
            color: #4caf50;
            font-weight: bold;
            font-size: 1.2rem;
            margin-right: 12px;
            flex-shrink: 0;
        }

      
        @media (max-width: 768px) {
            .main-title {
                font-size: 1.8rem;
                margin-bottom: 30px;
            }

            .capability-card {
                padding: 20px;
                margin-bottom: 20px;
            }

            .capability-card-title {
                font-size: 1.1rem;
            }

            .capability-list li {
                font-size: 0.9rem;
            }
        }

        @media (max-width: 576px) {
            .capabilities-section {
                padding: 40px 0;
            }

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

            .capability-card {
                padding: 18px;
            }
        }
        
        
        /* SECTION */ 
        .erp-section {
            padding: 70px 20px;
        }
        
        .erp-title {
            font-size: 32px;
            font-weight: 600;
            margin-bottom: 60px;
            text-align: center;
            color: #000;
        }
        
        /* LAYOUT */
        .erp-layout {
            position: relative;
            max-width: 1100px;
            margin: auto;
            min-height: 500px;
        }
        
        /* CARD */
        .erp-card {
            position: absolute;
            background: #ffffff;
            padding: 16px 20px;
            border-radius: 14px;
            width: 290px;
            box-shadow: 0 14px 32px rgba(0,0,0,0.08);
            display: flex;
            align-items: flex-start;
            gap: 12px;
            text-align: left;
        }
        
        /* COLUMN FORMAT FOR MODULAR AND SECURE */
        .erp-card.erp-modular,
        .erp-card.erp-secure {
            flex-direction: column;
            align-items: center;
            text-align: center;
            padding: 20px 10px;
            border-radius: 24px;
            background: #f8f9fb;
            border: 1px solid #e5e7eb;
        }
        
        .erp-icon {
            width: 48px;
            height: 48px;
            color: #2563eb;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
        }
        
        /* LARGER ICON FOR MODULAR AND SECURE */
        .erp-modular .erp-icon,
        .erp-secure .erp-icon {
            width: 48px;
            height: 48px;
            border-radius: 12px;
            <!--background: #eef2ff;-->
            margin-bottom: 20px;
        }
        
        <!--.erp-modular .erp-icon img,-->
        <!--.erp-secure .erp-icon img {-->
        <!--    width: 48px;-->
        <!--    height: 48px;-->
        <!--}-->
        
        <!--.erp-icon img {-->
        <!--    width: 24px;-->
        <!--    height: 24px;-->
        <!--}-->
        
        .erp-card p {
            margin: 0;
            font-size: 14px;
            color: #333;
            line-height: 1.5;
        }
        
        /* LARGER TEXT FOR MODULAR AND SECURE */
        .erp-modular p,
        .erp-secure p {
            font-size: 18px;
            font-weight: 500;
            color: #1f2937;
            line-height: 1.6;
        }
        
        /* CARD POSITIONS */
        .erp-end {
            top: 0;
            right: 0;
        }
        
        .erp-modular {
            top: 45%;
            left: 0;
            transform: translateY(-50%);
        }
        
        .erp-secure {
            top: 45%;
            right: 0;
            transform: translateY(-50%);
        }
        
        .erp-realtime {
            bottom: 0;
            left: 0;
        }
        
        /* CENTER IMAGE */
        .erp-image {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 320px;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 25px 55px rgba(0,0,0,0.15);
        }
        
        .erp-image img {
            width: 100%;
            display: block;
        }
        
        .erp-image-label {
            position: absolute;
            bottom: 12px;
            left: 50%;
            transform: translateX(-50%);
            background: rgba(0,0,0,0.6);
            color: #ffffff;
            padding: 6px 18px;
            border-radius: 20px;
            font-size: 14px;
        }
        
        /* MOBILE */
        @media (max-width: 992px) {
            .erp-layout {
                position: static;
                min-height: auto;
            }
            .erp-card,
            .erp-image {
                position: static;
                transform: none;
                margin: 16px auto;
            }
            .erp-card {
                justify-content: center;
                text-align: center;
            }
        }
<!--.erp-section {-->
<!--    padding: 70px 20px;-->
<!--    text-align: center;-->
<!--}-->

<!--.erp-title {-->
<!--    font-size: 32px;-->
<!--    font-weight: 600;-->
<!--    margin-bottom: 60px;-->
<!--}-->

<!--/* LAYOUT */-->
<!--.erp-layout {-->
<!--    position: relative;-->
<!--    max-width: 1100px;-->
<!--    margin: auto;-->
<!--    min-height: 500px;-->
<!--}-->

<!--/* CARD */-->
<!--.erp-card {-->
<!--    position: absolute;-->
<!--    background: #ffffff;-->
<!--    padding: 16px 20px;-->
<!--    border-radius: 14px;-->
<!--    width: 290px;-->
<!--    box-shadow: 0 14px 32px rgba(0,0,0,0.08);-->
<!--    display: flex;-->
<!--    align-items: flex-start;-->
<!--    gap: 12px;-->
<!--    text-align: left;-->
<!--}-->

<!--.erp-icon {-->
<!--    width: 34px;-->
<!--    height: 34px;-->
<!--    min-width: 34px;-->
<!--    border-radius: 8px;-->
<!--    background: #eef2ff;-->
<!--    color: #2563eb;-->
<!--    display: flex;-->
<!--    align-items: center;-->
<!--    justify-content: center;-->
<!--    font-size: 18px;-->
<!--}-->

<!--.erp-card p {-->
<!--    margin: 0;-->
<!--    font-size: 14px;-->
<!--    color: #333;-->
<!--    line-height: 1.5;-->
<!--}-->

<!--/* CARD POSITIONS */-->
<!--.erp-end {-->
<!--    top: 0;-->
<!--    right: 0;-->
<!--}-->

<!--.erp-modular {-->
<!--    top: 45%;-->
<!--    left: 0;-->
<!--    transform: translateY(-50%);-->
<!--}-->

<!--.erp-secure {-->
<!--    top: 45%;-->
<!--    right: 0;-->
<!--    transform: translateY(-50%);-->
<!--}-->

<!--.erp-realtime {-->
<!--    bottom: 0;-->
<!--    left: 0;-->
<!--}-->

<!--/* CENTER IMAGE */-->
<!--.erp-image {-->
<!--    position: absolute;-->
<!--    top: 50%;-->
<!--    left: 50%;-->
<!--    transform: translate(-50%, -50%);-->
<!--    width: 320px;-->
<!--    border-radius: 20px;-->
<!--    overflow: hidden;-->
<!--    box-shadow: 0 25px 55px rgba(0,0,0,0.15);-->
<!--}-->

<!--.erp-image img {-->
<!--    width: 100%;-->
<!--    display: block;-->
<!--}-->

<!--.erp-image span {-->
<!--    position: absolute;-->
<!--    bottom: 12px;-->
<!--    left: 50%;-->
<!--    transform: translateX(-50%);-->
<!--    background: rgba(0,0,0,0.6);-->
<!--    color: #ffffff;-->
<!--    padding: 6px 18px;-->
<!--    border-radius: 20px;-->
<!--    font-size: 14px;-->
<!--}-->

<!--/* MOBILE */-->
<!--@media (max-width: 992px) {-->
<!--    .erp-layout {-->
<!--        position: static;-->
<!--        min-height: auto;-->
<!--    }-->

<!--    .erp-card,-->
<!--    .erp-image {-->
<!--        position: static;-->
<!--        transform: none;-->
<!--        margin: 16px auto;-->
<!--    }-->

<!--    .erp-card {-->
<!--        justify-content: center;-->
<!--        text-align: center;-->
<!--    }-->
<!--}-->

/* SECTION */


/* LEFT IMAGE LAYOUT */
.who-erp-images {
    position: relative;
    width: 420px;
    height: 360px;
}

.who-erp-img-small {
    width: 281px;
    height: 341px;
    object-fit: cover;
    border-radius: 20px;
    position: absolute;
    top: 0;
    left: 0;
}

.who-erp-img-large {
    width: 225px;
    height: 227px;
    object-fit: cover;
    border-radius: 20px;
    position: absolute;
    top: 40px;
    right: -120px;
}


/* RIGHT CONTENT */
.who-erp-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 30px;
}

.who-erp-list {
    list-style: none;
    padding: 0;
}

.who-erp-list li {
    background: #f9fafb;
    padding: 12px 18px;
    border-radius: 14px;
    margin-bottom: 15px;
    border:1px solid #EDEEF0;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.05);
}

.who-erp-list span {
    width: 34px;
    height: 34px;
    background: #eaf2ff;
    color: #1D213D;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

/* MOBILE */
@media(max-width:768px){
    .who-erp-images {
        margin: auto;
        transform: scale(0.9);
    }
    .who-erp-img-large{
    display:none;
    }
    .who-erp-img-small{
    width:100%;
    }
    .who-erp-title {
        text-align: center;
    }
}




       
        .industry-feature-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 25px;
        }

        .industry-feature-icon {
            background: #E1F0FF;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            flex-shrink: 0;
            color: #0066cc;
            font-size: 16px;
        }

        .industry-feature-text {
            font-size: 16px;
            color: #000000;
            font-weight: 500;
            line-height: 1.5;
        }

        .career-what-we-stand {
            padding: 60px 0;
        }

        .main-title {
            font-size: 2.5rem;
            font-weight: 700;
            text-align: center;
            margin-bottom: 50px;
            color: #000;
        }

        .value-card {
            background: linear-gradient(135deg, #004B87 0%, #003D6E 100%);
            border-radius: 20px;
            padding: 40px 30px;
            height: 100%;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .value-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
        }

        .icon-box {
            background-color: white;
            width: 70px;
            height: 70px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
        }

        .icon-box svg {
            width: 40px;
            height: 40px;
            stroke: #004B87;
            fill: none;
            stroke-width: 2;
        }

        .icon-box i {
            font-size: 40px;
            color: #004B87;
        }

        .card-title {
            color: white;
            font-size: 1.4rem;
            font-weight: 600;
            text-align: center;
            margin-bottom: 20px;
        }

        .card-description {
            color: white;
            font-size: 1rem;
            text-align: center;
            line-height: 1.6;
            opacity: 0.95;
        }

        .card-col {
            margin-bottom: 30px;
        }

        @media (max-width: 768px) {
            .career-what-we-stand {
                padding: 40px 0;
            }

            .main-title {
                font-size: 2rem;
                margin-bottom: 30px;
            }

            .value-card {
                padding: 30px 20px;
            }

            .card-title {
                font-size: 1.2rem;
            }

            .card-description {
                font-size: 0.95rem;
            }
        }

        @media (max-width: 576px) {
            .main-title {
                font-size: 1.75rem;
            }

            .icon-box {
                width: 60px;
                height: 60px;
            }

            .icon-box i {
                font-size: 35px;
            }
        }  
        
         .hiring-process {
            background-color: #e8f4fd;
            padding: 80px 20px;
        }

        .hiring-process .section-title {
            font-size: 48px;
            font-weight: 600;
            color: #1a1a1a;
            margin-bottom: 16px;
            text-align: center;
            letter-spacing: -0.5px;
        }

        .hiring-process .section-subtitle {
            font-size: 18px;
            color: #5a5a5a;
            text-align: center;
            margin-bottom: 60px;
            font-weight: 400;
        }

        .hiring-process .process-container {
            display: flex;
            justify-content: center;
            align-items: center;
            flex-wrap: nowrap;
            gap: 0;
            max-width: 1200px;
            margin: 0 auto;
        }

        .hiring-process .hiring-process-step {
            background: #ffffff;
            border-radius: 20px;
            padding: 40px 30px;
            text-align: center;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
            transition: all 0.3s ease;
            flex: 0 0 auto;
            width: 200px;
            min-height: 200px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }

        .hiring-process .hiring-process-step:hover {
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
            transform: translateY(-5px);
        }

        .hiring-process .step-number {
            width: 80px;
            height: 80px;
            background-color: #0d5a9e;
            color: #ffffff;
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 42px;
            font-weight: 700;
            margin-bottom: 24px;
        }

        .hiring-process .step-title {
            font-size: 18px;
            font-weight: 500;
            color: #1a1a1a;
            margin: 0;
            line-height: 1.4;
            white-space: nowrap;
        }

        .hiring-process .arrow {
            color: #b0b8c3;
            font-size: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 20px;
            font-weight: 300;
        }

        @media (max-width: 1200px) {
            .hiring-process .section-title {
                font-size: 40px;
            }
            
            .hiring-process .hiring-process-step {
                width: 180px;
                padding: 35px 20px;
            }

            .hiring-process .step-number {
                width: 70px;
                height: 70px;
                font-size: 36px;
            }

            .hiring-process .arrow {
                margin: 0 15px;
            }

            .hiring-process .step-title {
                font-size: 16px;
            }
        }

        @media (max-width: 992px) {
            .hiring-process .section-title {
                font-size: 36px;
            }

            .hiring-process .process-container {
                flex-wrap: wrap;
                gap: 30px;
            }

            .hiring-process .arrow {
                display: none;
            }

            .hiring-process .hiring-process-step {
                width: 160px;
            }
        }

        @media (max-width: 768px) {
            .hiring-process {
                padding: 60px 20px;
            }

            .hiring-process .section-title {
                font-size: 32px;
            }

            .hiring-process .section-subtitle {
                font-size: 16px;
                margin-bottom: 40px;
            }

            .hiring-process .process-container {
                flex-direction: column;
                gap: 20px;
            }

            .hiring-process .hiring-process-step {
                width: 100%;
                max-width: 280px;
                padding: 35px 25px;
            }

            .hiring-process .step-title {
                white-space: normal;
            }
        }

        @media (max-width: 480px) {
            .hiring-process {
                padding: 40px 15px;
            }

            .hiring-process .section-title {
                font-size: 28px;
            }

            .hiring-process .section-subtitle {
                font-size: 15px;
            }

            .hiring-process .step-number {
                width: 65px;
                height: 65px;
                font-size: 32px;
                margin-bottom: 20px;
            }

            .hiring-process .step-title {
                font-size: 16px;
            }

            .hiring-process .hiring-process-step{
                max-width: 100%;
                padding: 30px 20px;
            }
        }
        
        
        
        .application-section {
            max-width: 1000px;
            margin: 0 auto;
            padding:60px 60px;
        }

        .form-container {
            background: #ffffff;
            border-radius: 8px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
            padding: 20px 40px;
        }

        .form-title {
            text-align: center;
            font-size: 2.5rem;
            font-weight: 600;
            color: #000000;
            margin-bottom: 50px;
        }

        .form-label {
            font-weight: 400;
            color: #000000;
            margin-bottom: 8px;
            font-size: 0.95rem;
        }

        .required {
            color: #dc3545;
        }

        .form-control, .form-select {
            border: 1px solid #d1d5db;
            border-radius: 6px;
            padding: 10px 14px;
            font-size: 0.95rem;
            transition: all 0.2s ease;
            background-color: #ffffff;
            color: #6b7280;
        }

        .form-control:focus, .form-select:focus {
            border-color: #3b82f6;
            box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
            outline: none;
        }

        .form-control::placeholder {
            color: #9ca3af;
        }

        textarea.form-control {
            min-height: 120px;
            resize: vertical;
        }

        .file-input-wrapper {
            position: relative;
            overflow: hidden;
            display: inline-block;
            width: 100%;
        }

        .file-input-wrapper input[type=file] {
            position: absolute;
            left: -9999px;
        }

        .file-input-label {
            display: block;
            padding: 10px 14px;
            background: #ffffff;
            border: 1px solid #d1d5db;
            border-radius: 6px;
            text-align: left;
            cursor: pointer;
            transition: all 0.2s ease;
            color: #9ca3af;
            font-weight: 400;
            font-size: 0.95rem;
        }

        .file-input-label:hover {
            border-color: #3b82f6;
        }

        .file-name {
            margin-top: 8px;
            font-size: 0.85rem;
            color: #6b7280;
        }

        .submit-btn {
            background: #004B97;
            border: none;
            color: white;
            padding: 12px 32px;
            font-size: 1rem;
            font-weight: 500;
            border-radius: 6px;
            cursor: pointer;
            transition: all 0.2s ease;
            display: block;
            margin: 40px auto 0;
        }

        .submit-btn:hover {
            background: #004B97;
        }

        .submit-btn:active {
            transform: scale(0.98);
        }

        /* Mobile Responsive */
        @media (max-width: 768px) {
        
             .application-section {
            max-width: 1000px;
            margin: 0 auto;
            padding:0px 0px;
        }
            .form-container {
                padding: 40px 30px;
            }

            .form-title {
                font-size: 2rem;
            }
        }

        @media (max-width: 480px) {
         
            .form-container {
                padding: 30px 20px;
                border-radius: 6px;
            }

            .form-title {
                font-size: 1.75rem;
                margin-bottom: 35px;
            }

            .submit-btn {
                width: 100%;
            }
        }
        
        <!--JobListing-->
        
         .job-listings-container {
            max-width: 850px;
            margin: 50px auto;
            padding: 0 20px;
        }

        .job-listings-container__header {
            text-align: center;
            font-size: 32px;
            font-weight: 600;
            color: #000;
            margin-bottom: 35px;
        }

        .job-listings-container__card {
            background: #fff;
            border: 1px solid #e5e7eb;
            border-radius: 8px;
            padding: 24px;
            margin-bottom: 16px;
            display: flex;
            align-items: flex-start;
            gap: 20px;
            transition: all 0.2s ease;
        }

        .job-listings-container__card:hover {
            border-color: #0167B4;
            box-shadow: 0 4px 12px rgba(59, 130, 246, 0.15);
        }

        .job-listings-container__icon-wrapper {
            flex-shrink: 0;
            width: 48px;
            height: 48px;
            background: #eff6ff;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .job-listings-container__icon {
            color: #3b82f6;
            font-size: 20px;
        }

        .job-listings-container__content {
            flex: 1;
            min-width: 0;
        }

        .job-listings-container__job-title {
            font-size: 18px;
            font-weight: 600;
            color: #000;
            margin-bottom: 8px;
            line-height: 1.4;
        }

        .job-listings-container__description {
            font-size: 14px;
            color: #6b7280;
            line-height: 1.5;
            margin-bottom: 14px;
        }

        .job-listings-container__meta {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
        }

        .job-listings-container__meta-item {
            display: flex;
            align-items: center;
            gap: 6px;
            font-size: 13px;
            font-weight: 400;
            padding: 6px 12px;
            border-radius: 6px;
        }

        .job-listings-container__meta-item--experience {
            color: #3b82f6;
            background-color: #eff6ff;
        }

        .job-listings-container__meta-item--experience .job-listings-container__meta-icon {
            color: #3b82f6;
        }

        .job-listings-container__meta-item--time {
            color: #059669;
            background-color: #d1fae5;
        }

        .job-listings-container__meta-item--time .job-listings-container__meta-icon {
            color: #059669;
        }

        .job-listings-container__meta-item--location {
            color: #6b7280;
            background-color: #f3f4f6;
        }

        .job-listings-container__meta-item--location .job-listings-container__meta-icon {
            color: #6b7280;
        }

        .job-listings-container__meta-icon {
            font-size: 13px;
        }

        .job-listings-container__button-wrapper {
            flex-shrink: 0;
            align-self: center;
        }

        .job-listings-container__button {
          background: linear-gradient(90deg, #014C85 0%, #0166B3 100%);
            color: #fff;
            border: none;
            padding: 10px 20px;
            border-radius: 12px;
            font-size: 14px;
            font-weight: 500;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 8px;
            transition: background 0.2s ease;
            white-space: nowrap;
        }

        .job-listings-container__button:hover {
            background: linear-gradient(90deg, #014C85 0%, #0166B3 100%);
        }

        .job-listings-container__button-icon {
            font-size: 14px;
        }

        .job-listings-container__more {
            text-align: center;
            margin-top: 20px;
        }

        .job-listings-container__more-button {
            background: transparent;
            border: none;
            color: #9ca3af;
            font-size: 20px;
            cursor: pointer;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            transition: all 0.2s ease;
        }

        .job-listings-container__more-button:hover {
            background: #f3f4f6;
            color: #6b7280;
        }

        @media (max-width: 768px) {
            .job-listings-container__card {
                flex-direction: column;
                 white-space: normal !important;
                word-wrap: break-word;
                overflow-wrap: break-word;
          
            }

            .job-listings-container__button-wrapper {
                width: 100%;
                align-self: stretch;
            }

            .job-listings-container__button {
                width: 100%;
                justify-content: center;
            }

            .job-listings-container__meta {
                gap: 15px;
            }
        }

        @media (max-width: 576px) {
            .job-listings-container__header {
                font-size: 24px;
            }

            .job-listings-container__card {
                padding: 18px;
            }

            .job-listings-container__job-title {
                font-size: 16px;
            }

            .job-listings-container__description {
                font-size: 13px;
            }
        }
        
         /* Bootstrap Modal Custom Styles */
        .modal-dialog {
            max-width: 500px;
        }

        .job-modal__header {
            padding: 30px 40px 20px;
            border-bottom: 1px solid #e5e7eb;
            position: relative;
        }

        .job-modal__close {
            position: absolute;
            top: 20px;
            right: 20px;
            background: #f3f4f6;
            border: none;
            width: 36px;
            height: 36px;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background 0.2s;
            opacity: 1;
        }

        .job-modal__close:hover {
            background: #e5e7eb;
        }

        .job-modal__title {
            font-size: 24px;
            font-weight: 600;
            color: #000;
            margin-bottom: 10px;
        }

        .job-modal__subtitle {
            font-size: 14px;
            color: #6b7280;
            margin-bottom: 0;
        }

        .job-modal__body {
            padding: 30px 40px;
        }

        .job-modal__left {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .job-modal__badge {
            display: inline-block;
            background: #eff6ff;
            color: #1e40af;
            padding: 6px 14px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            width: fit-content;
        }

        .job-modal__job-title {
            font-size: 22px;
            font-weight: 600;
            color: #000;
            margin-bottom: 10px;
        }

        .job-modal__posted {
            font-size: 13px;
            color: #6b7280;
            margin-bottom: 15px;
        }

        .job-modal__info-group {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .job-modal__info-item {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .job-modal__info-icon {
            width: 40px;
            height: 40px;
            background: #eff6ff;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #3b82f6;
            font-size: 16px;
        }

        .job-modal__info-text {
            display: flex;
            flex-direction: column;
        }

        .job-modal__info-label {
            font-size: 12px;
            color: #6b7280;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            font-weight: 500;
        }

        .job-modal__info-value {
            font-size: 14px;
            color: #000;
            font-weight: 500;
        }

        .job-modal__divider {
            height: 1px;
            background: #e5e7eb;
            margin: 10px 0;
        }

        .job-modal__section-title {
            font-size: 16px;
            font-weight: 600;
            color: #000;
            margin-bottom: 10px;
        }

        .job-modal__description {
            font-size: 14px;
            color: #6b7280;
            line-height: 1.6;
        }

        <!--.job-modal__right {-->
        <!--    background: #f9fafb;-->
        <!--    padding: 30px;-->
        <!--    border-radius: 8px;-->
        <!--}-->

       
        @media (max-width: 768px) {
            .job-listings-container__card {
                flex-direction: column;
            }

            .job-listings-container__button-wrapper {
                width: 100%;
                align-self: stretch;
            }

            .job-listings-container__button {
                width: 100%;
                justify-content: center;
            }

            .job-modal__header {
                padding: 20px;
            }
           

          

           
        }
        
         .contact-section {
            padding: 95px 0 60px 0;
        }

        .contact-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .contact-header h1 {
            font-size: 2.5rem;
            font-weight: 700;
            color: #212529;
            margin-bottom: 10px;
        }

        .contact-header p {
            color: #6c757d;
            font-size: 1rem;
        }

        .contact-info-card {
            background: white;
            border-radius: 12px;
            padding: 30px;
            text-align: center;
            box-shadow: 0 2px 8px rgba(0,0,0,0.08);
            height: 100%;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .contact-info-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 4px 16px rgba(0,0,0,0.12);
        }

        .contact-info-card .icon {
            width: 60px;
            height: 60px;
            margin: 0 auto 20px;
            background: #e7f3ff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .contact-info-card .icon i {
            font-size: 24px;
            color: #0d6efd;
        }

        .contact-info-card h5 {
            font-size: 0.875rem;
            color: #6c757d;
            margin-bottom: 10px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .contact-info-card a{
        text-decoration:none;
        }
        .contact-info-card p {
            font-size: 1rem;
            color: #212529;
            margin: 0;
            font-weight: 500;
        }

        .contact-form-section {
            background: white;
            border-radius: 12px;
            padding: 30px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.08);
        }

        .map-container {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 2px 8px rgba(0,0,0,0.08);
            height: 100%;
            min-height: 400px;
        }

        .map-container iframe {
            width: 100%;
            height: 100%;
            border: 0;
            min-height: 400px;
        }

        .form-label {
            font-weight: 500;
            color: #212529;
            margin-bottom: 8px;
        }

        .form-control {
            border: 1px solid #dee2e6;
            border-radius: 8px;
            padding: 12px 16px;
            font-size: 0.95rem;
        }

        .form-control:focus {
            border-color: #0d6efd;
            box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.1);
        }

        .btn-submit {
            background:linear-gradient(90deg, #0166B3 0%, #014C85 100%);
            color: white;
            padding: 12px 40px;
            border: none;
            border-radius: 8px;
            font-weight: 500;
            font-size: 1rem;
            transition: background 0.3s ease;
        }

        .btn-submit:hover {
            background: linear-gradient(90deg, #0166B3 0%, #014C85 100%);
            color:white;
        }

        @media (max-width: 768px) {
            .contact-header h1 {
                font-size: 2rem;
            }

             .contact-section {
            padding: 95px 0 60px 0;
        }

            .contact-info-card {
                margin-bottom: 20px;
            }

            .contact-form-section {
                margin-top: 20px;
            }

            .map-container {
                margin-bottom: 20px;
            }
        }
        
        
      .tox-dialog{
      max-width:500px;
      }
      .line-clamp-4 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.job-success-modal {
    border-radius: 16px;
    overflow: hidden;
    border: none;
   
}

.success-header {
    background: linear-gradient(135deg, #e6f6f1, #f3fbf8);
    padding: 30px;
    text-align: center;
    position: relative;
}

.check-circle {
    width: 64px;
    height: 64px;
    background: linear-gradient(90deg, #0166B3 0%, #014C85 100%);
    color: #fff;
    font-size: 34px;
    font-weight: bold;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.success-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
}

.success-text {
    color: #555;
    font-size: 16px;
    margin-bottom: 25px;
}

.success-text .job-title {
    color: #2f8f6b;
}

.back-btn {
    background:linear-gradient(90deg, #0166B3 0%, #014C85 100%);
    color: #fff;
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
}

.back-btn:hover {
    background: #257a5a;
    color: #fff;
}

.custom-close {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 10;
}
 .social-icon i {
    font-size: 28px; /* try 24px, 30px, 36px etc */
}