.navbar {
    position: fixed; /* Sticks it to the top */
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%; /* Adjust edges from left-right as needed */
    min-height: 80px;
    display: flex;
    justify-content: right; /* Centers navbar-container */
    align-items: center; /* Vertically centers navbar-container */
    background-color: #262424f5;
    border-radius: 200px; /* Rounded corners */
    padding: 0.75rem 2rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    z-index: 1000;
  }

.navbar-home {
    position: absolute;
    left: 7rem; /* Aligns with the navbar's padding-left */
    top: 50%;
    display: flex;
    justify-content: left;
    transform: translateY(-50%); /* Vertically centers Alpha Juliet */
    align-items: center;
}

.navbar-getstarted .getstarted-button {
    background-color: #b60707f2;
    color: white;
    position: absolute;
    right: 3rem; /* Aligns with the navbar's padding-right */
    top: 50%;
    display: flex;
    justify-content: right;
    padding-top: 0.9rem; /* Adjusts the height of the button */
    padding-bottom: 0.9rem; /* Adjusts the height of the button */
    padding-left: 2.5rem; /* Adjusts the width of the button */
    padding-right: 2.5rem; /* Adjusts the width of the button */
    border-radius: 100px;
    transform: translateY(-50%); /* Vertically centers Alpha Juliet */
    align-items: center;
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.7), /* Inner, more defined part of the glow */
    0 0 15px rgba(255, 255, 255, 0.5); /* Outer, more diffuse part of the glow */
    font-size: 1.2rem;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    text-shadow: #f3f1f1f5;
}


.getstarted-button:hover {
    cursor: pointer;
    opacity: 0.8;
}
  
.navbar-container {
    display: flex;
    gap: 100px;
    align-items: center;
 
}

.nav-item, .navbar-logo, .getstarted-button{
    color: rgb(255, 255, 255);
    font-size: 1.2rem;
    text-decoration: none;
    font-weight:600;
    font-family: 'Poppins', sans-serif;
    text-shadow: #f3f1f1f5;
}

.nav-item:hover{
    cursor: pointer;
    opacity: 0.8;
    color: #e9bebe;
}

.getstarted-button:hover{
    cursor: pointer;
    opacity: 0.8;
}

.nav-item:hover{
    transform: scale(1.1);
}

.navbar-home .navbar-logo,
.navbar-getstarted .navbar-logo {
    color: white; /* Or #FFFFFF */
    font-weight: bold;
    align-items: center;
    vertical-align: middle;
    font-size: 2.0rem;
}

.nav-item.active {
    color: #e9bebe;
    font-weight: bold;
    transform: none;
    opacity: 1;
  }
  




/* Footer.css */
.footer-component-wrapper {
  font-family: 'Poppins Bold', sans-serif; /* Choose a font that matches or is a good fallback */
  background-color: #000000;
  line-height: 1;
  padding-top: 40px;
}

/* Top Banner Section */
.footer-banner-container {
  background-color: #000000;
  background: linear-gradient(135deg, #ca4a54, #b53b51); /* Approximated gradient from image */
  padding: 50px 20px;
  border-radius: 40px;
  text-align: center;
  max-width: 1500px;
  top: 40px;
  margin: 40px auto 0 auto; /* Margin top, centered, no bottom margin before dark footer */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  color: #ffffff;
}

.footer-banner-content {
  max-width: 700px;
  margin: 0 auto;
}

.banner-pre-title {
  font-size: 1em; /* Adjusted as per image */
  color: #f0f0f0e3;
  font-weight: bold;
  margin-bottom: 8px;
}

.banner-main-title {
  font-size: 2.2em;
  font-weight: bold;
  color: #ffffff;
  margin-bottom: 15px;
}

.banner-description {
  position: relative;
  justify-content: center;
  align-items: center;
  transform: translateX(8%);
  font-size: 1.1em;
  color: #e0e0e0;
  margin-bottom: 30px;
  max-width: 600px;
  line-height: 1.5;
}

.banner-cta-button {
  background-color: #ffffff;
  color: #c04552; /* Text color similar to banner's primary red */
  border: none;
  padding: 12px 30px;
  font-size: 1em;
  font-weight: bold;
  border-radius: 25px; /* Pill shape */
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.banner-cta-button:hover {
  background-color: #f0f0f0;
}

/* Dark Footer Area */
.dark-footer-area {
  background-color: #040404; /* Very dark gray / black */
  color: #f0f0f0; /* Default light text color */
}

.footer-main-content {
  padding: 60px 20px 40px; /* Padding for content within dark area */
  max-width: 1200px; /* Content max-width */
  margin: 0 auto; /* Center content */
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px; /* Space between columns */
}

.footer-section {
  flex: 1 1;
  min-width: 220px; /* Min width for columns */
  margin-bottom: 20px;
}

/* Company Info Section */
.company-info .footer-logo {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
}

.company-info .logo-aj {
  font-size: 2.5em; /* Adjust size for "∞J" */
  margin-right: 10px;
  display: inline-flex;
  align-items: center; /* Vertically align ∞ and J */
}

.company-info .logo-a {
  color: #fff; /* White 'infinity' symbol */
  font-weight: normal; /* Infinity can be bold by default */
  font-size: 0.85em; /* Scale infinity appropriately */
  line-height: 1;
  position: relative;
  top: -0.08em; /* Fine-tune vertical alignment */
  margin-right: 1px;
}

.company-info .logo-j {
  color: #e53e3e; /* Red 'J' */
  font-weight: bold;
  line-height: 1;
}

.company-info .company-name {
  font-size: 1.5em;
  font-weight: bold;
  color: #ffffff;
}

.company-info .contact-details p {
  margin-bottom: 12px;
  font-size: 0.9em;
  color: #d3d3d3;
  display: flex;
  align-items: flex-start;
}

.company-info .contact-details .contact-icon {
  margin-right: 10px;
  font-size: 1.1em;
  color: #fff;
  min-width: 20px; /* For alignment */
  line-height: 1.4; /* Adjust vertical alignment with text */
}

.company-info .social-media-icons {
  margin-top: 20px;
}

.company-info .social-link {
  color: #ffffff;
  font-size: 1.2em; /* Adjust size of text icons */
  margin-right: 18px;
  text-decoration: none;
  font-weight: normal; /* Default font-weight for text based icons */
  transition: color 0.3s ease;
}
.company-info .social-link.social-youtube {
    font-size: 1.4em; /* Make play icon slightly larger if needed */
    position: relative;
    top: 0.05em;
}


.company-info .social-link:hover {
  color: #ca4a54; /* Hover color similar to banner */
}
.company-info .social-link:last-child {
    margin-right: 0;
}


/* Useful Links & Services List Section */
.footer-section h4 {
  font-size: 1.1em; /* Title for link sections */
  color: #ffffff;
  margin-bottom: 20px;
  font-weight: bold;
}

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

.footer-section ul li {
  margin-bottom: 10px;
}

.footer-section ul li a {
  color: #b0b0b0;
  text-decoration: none;
  font-size: 0.9em;
  transition: color 0.3s ease;
}

.footer-section ul li a:hover {
  color: #ffffff;
  text-decoration: underline;
}

/* Footer Bottom Bar */
.footer-bottom-bar {
  padding: 20px 20px;
  max-width: 1200px; /* Content max-width */
  margin: 0 auto; /* Center content */
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  font-size: 0.85em;
  color: #a0a0a0;
  border-top: 1px solid #333333; /* Subtle separator line */
}

.copyright {
  margin: 5px 0;
}

.legal-links a {
  color: #a0a0a0;
  text-decoration: none;
  margin-left: 20px;
  transition: color 0.3s ease;
}
.legal-links a:first-child {
    margin-left: 0;
}

.legal-links a:hover {
  color: #ffffff;
  text-decoration: underline;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .footer-main-content {
    /* Columns will stack due to flex-wrap and min-width on .footer-section */
  }
}

@media (max-width: 768px) {
  .footer-banner-container {
    margin-left: 15px;
    margin-right: 15px;
    padding: 40px 15px;
  }
  .banner-main-title {
    font-size: 1.8em;
  }
  .banner-description {
    font-size: 0.9em;
  }

  .footer-main-content {
    padding-left: 20px;
    padding-right: 20px;
    flex-direction: column; /* Explicitly stack for smaller screens if gap is an issue */
    align-items: flex-start;
  }
   .footer-section {
    min-width: 100%; /* Ensure sections take full width when stacked */
    margin-bottom: 30px;
  }
  .footer-section:last-child {
    margin-bottom: 0;
  }

  .footer-bottom-bar {
    padding-left: 20px;
    padding-right: 20px;
    flex-direction: column;
    text-align: center;
  }
  .legal-links {
    margin-top: 10px;
  }
  .legal-links a {
    margin: 0 10px 5px 10px; /* Adjust spacing for mobile */
    display: inline-block; /* Keep on same line if space, or wrap */
  }
}

@media (max-width: 480px) {
    .banner-main-title {
        font-size: 1.6em;
    }
    .banner-cta-button {
        padding: 10px 25px;
        font-size: 0.9em;
    }
    .company-info .company-name {
        font-size: 1.3em;
    }
    .footer-section h4 {
        font-size: 1em;
    }
    .legal-links a {
        display: block; /* Stack legal links vertically */
        margin: 5px auto;
    }
}
/*# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbIndlYnBhY2s6Ly8uL3NyYy9jb21wb25lbnRzL0Zvb3Rlci5jc3MiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsZUFBZTtBQUNmO0VBQ0UsdUNBQXVDLEVBQUUscURBQXFEO0VBQzlGLHlCQUF5QjtFQUN6QixjQUFjO0VBQ2QsaUJBQWlCO0FBQ25COztBQUVBLHVCQUF1QjtBQUN2QjtFQUNFLHlCQUF5QjtFQUN6QixxREFBcUQsRUFBRSxxQ0FBcUM7RUFDNUYsa0JBQWtCO0VBQ2xCLG1CQUFtQjtFQUNuQixrQkFBa0I7RUFDbEIsaUJBQWlCO0VBQ2pCLFNBQVM7RUFDVCx3QkFBd0IsRUFBRSw4REFBOEQ7RUFDeEYseUNBQXlDO0VBQ3pDLGNBQWM7QUFDaEI7O0FBRUE7RUFDRSxnQkFBZ0I7RUFDaEIsY0FBYztBQUNoQjs7QUFFQTtFQUNFLGNBQWMsRUFBRSwwQkFBMEI7RUFDMUMsZ0JBQWdCO0VBQ2hCLGlCQUFpQjtFQUNqQixrQkFBa0I7QUFDcEI7O0FBRUE7RUFDRSxnQkFBZ0I7RUFDaEIsaUJBQWlCO0VBQ2pCLGNBQWM7RUFDZCxtQkFBbUI7QUFDckI7O0FBRUE7RUFDRSxrQkFBa0I7RUFDbEIsdUJBQXVCO0VBQ3ZCLG1CQUFtQjtFQUNuQix5QkFBeUI7RUFDekIsZ0JBQWdCO0VBQ2hCLGNBQWM7RUFDZCxtQkFBbUI7RUFDbkIsZ0JBQWdCO0VBQ2hCLGdCQUFnQjtBQUNsQjs7QUFFQTtFQUNFLHlCQUF5QjtFQUN6QixjQUFjLEVBQUUsK0NBQStDO0VBQy9ELFlBQVk7RUFDWixrQkFBa0I7RUFDbEIsY0FBYztFQUNkLGlCQUFpQjtFQUNqQixtQkFBbUIsRUFBRSxlQUFlO0VBQ3BDLGVBQWU7RUFDZix1REFBdUQ7RUFDdkQscUNBQXFDO0FBQ3ZDOztBQUVBO0VBQ0UseUJBQXlCO0FBQzNCOztBQUVBLHFCQUFxQjtBQUNyQjtFQUNFLHlCQUF5QixFQUFFLDJCQUEyQjtFQUN0RCxjQUFjLEVBQUUsNkJBQTZCO0FBQy9DOztBQUVBO0VBQ0UsdUJBQXVCLEVBQUUseUNBQXlDO0VBQ2xFLGlCQUFpQixFQUFFLHNCQUFzQjtFQUN6QyxjQUFjLEVBQUUsbUJBQW1CO0VBQ25DLGFBQWE7RUFDYiw4QkFBOEI7RUFDOUIsZUFBZTtFQUNmLFNBQVMsRUFBRSwwQkFBMEI7QUFDdkM7O0FBRUE7RUFDRSxTQUFPO0VBQ1AsZ0JBQWdCLEVBQUUsMEJBQTBCO0VBQzVDLG1CQUFtQjtBQUNyQjs7QUFFQSx5QkFBeUI7QUFDekI7RUFDRSxhQUFhO0VBQ2IsbUJBQW1CO0VBQ25CLG1CQUFtQjtBQUNyQjs7QUFFQTtFQUNFLGdCQUFnQixFQUFFLHlCQUF5QjtFQUMzQyxrQkFBa0I7RUFDbEIsb0JBQW9CO0VBQ3BCLG1CQUFtQixFQUFFLDZCQUE2QjtBQUNwRDs7QUFFQTtFQUNFLFdBQVcsRUFBRSw0QkFBNEI7RUFDekMsbUJBQW1CLEVBQUUsb0NBQW9DO0VBQ3pELGlCQUFpQixFQUFFLGlDQUFpQztFQUNwRCxjQUFjO0VBQ2Qsa0JBQWtCO0VBQ2xCLFlBQVksRUFBRSxpQ0FBaUM7RUFDL0MsaUJBQWlCO0FBQ25COztBQUVBO0VBQ0UsY0FBYyxFQUFFLFlBQVk7RUFDNUIsaUJBQWlCO0VBQ2pCLGNBQWM7QUFDaEI7O0FBRUE7RUFDRSxnQkFBZ0I7RUFDaEIsaUJBQWlCO0VBQ2pCLGNBQWM7QUFDaEI7O0FBRUE7RUFDRSxtQkFBbUI7RUFDbkIsZ0JBQWdCO0VBQ2hCLGNBQWM7RUFDZCxhQUFhO0VBQ2IsdUJBQXVCO0FBQ3pCOztBQUVBO0VBQ0Usa0JBQWtCO0VBQ2xCLGdCQUFnQjtFQUNoQixXQUFXO0VBQ1gsZUFBZSxFQUFFLGtCQUFrQjtFQUNuQyxnQkFBZ0IsRUFBRSx3Q0FBd0M7QUFDNUQ7O0FBRUE7RUFDRSxnQkFBZ0I7QUFDbEI7O0FBRUE7RUFDRSxjQUFjO0VBQ2QsZ0JBQWdCLEVBQUUsOEJBQThCO0VBQ2hELGtCQUFrQjtFQUNsQixxQkFBcUI7RUFDckIsbUJBQW1CLEVBQUUsNkNBQTZDO0VBQ2xFLDJCQUEyQjtBQUM3QjtBQUNBO0lBQ0ksZ0JBQWdCLEVBQUUsNkNBQTZDO0lBQy9ELGtCQUFrQjtJQUNsQixXQUFXO0FBQ2Y7OztBQUdBO0VBQ0UsY0FBYyxFQUFFLGtDQUFrQztBQUNwRDtBQUNBO0lBQ0ksZUFBZTtBQUNuQjs7O0FBR0EseUNBQXlDO0FBQ3pDO0VBQ0UsZ0JBQWdCLEVBQUUsNEJBQTRCO0VBQzlDLGNBQWM7RUFDZCxtQkFBbUI7RUFDbkIsaUJBQWlCO0FBQ25COztBQUVBO0VBQ0UsZ0JBQWdCO0VBQ2hCLFVBQVU7RUFDVixTQUFTO0FBQ1g7O0FBRUE7RUFDRSxtQkFBbUI7QUFDckI7O0FBRUE7RUFDRSxjQUFjO0VBQ2QscUJBQXFCO0VBQ3JCLGdCQUFnQjtFQUNoQiwyQkFBMkI7QUFDN0I7O0FBRUE7RUFDRSxjQUFjO0VBQ2QsMEJBQTBCO0FBQzVCOztBQUVBLHNCQUFzQjtBQUN0QjtFQUNFLGtCQUFrQjtFQUNsQixpQkFBaUIsRUFBRSxzQkFBc0I7RUFDekMsY0FBYyxFQUFFLG1CQUFtQjtFQUNuQyxhQUFhO0VBQ2IsOEJBQThCO0VBQzlCLG1CQUFtQjtFQUNuQixlQUFlO0VBQ2YsaUJBQWlCO0VBQ2pCLGNBQWM7RUFDZCw2QkFBNkIsRUFBRSwwQkFBMEI7QUFDM0Q7O0FBRUE7RUFDRSxhQUFhO0FBQ2Y7O0FBRUE7RUFDRSxjQUFjO0VBQ2QscUJBQXFCO0VBQ3JCLGlCQUFpQjtFQUNqQiwyQkFBMkI7QUFDN0I7QUFDQTtJQUNJLGNBQWM7QUFDbEI7O0FBRUE7RUFDRSxjQUFjO0VBQ2QsMEJBQTBCO0FBQzVCOztBQUVBLDJCQUEyQjtBQUMzQjtFQUNFO0lBQ0UseUVBQXlFO0VBQzNFO0FBQ0Y7O0FBRUE7RUFDRTtJQUNFLGlCQUFpQjtJQUNqQixrQkFBa0I7SUFDbEIsa0JBQWtCO0VBQ3BCO0VBQ0E7SUFDRSxnQkFBZ0I7RUFDbEI7RUFDQTtJQUNFLGdCQUFnQjtFQUNsQjs7RUFFQTtJQUNFLGtCQUFrQjtJQUNsQixtQkFBbUI7SUFDbkIsc0JBQXNCLEVBQUUsNERBQTREO0lBQ3BGLHVCQUF1QjtFQUN6QjtHQUNDO0lBQ0MsZUFBZSxFQUFFLGlEQUFpRDtJQUNsRSxtQkFBbUI7RUFDckI7RUFDQTtJQUNFLGdCQUFnQjtFQUNsQjs7RUFFQTtJQUNFLGtCQUFrQjtJQUNsQixtQkFBbUI7SUFDbkIsc0JBQXNCO0lBQ3RCLGtCQUFrQjtFQUNwQjtFQUNBO0lBQ0UsZ0JBQWdCO0VBQ2xCO0VBQ0E7SUFDRSx1QkFBdUIsRUFBRSw4QkFBOEI7SUFDdkQscUJBQXFCLEVBQUUsd0NBQXdDO0VBQ2pFO0FBQ0Y7O0FBRUE7SUFDSTtRQUNJLGdCQUFnQjtJQUNwQjtJQUNBO1FBQ0ksa0JBQWtCO1FBQ2xCLGdCQUFnQjtJQUNwQjtJQUNBO1FBQ0ksZ0JBQWdCO0lBQ3BCO0lBQ0E7UUFDSSxjQUFjO0lBQ2xCO0lBQ0E7UUFDSSxjQUFjLEVBQUUsaUNBQWlDO1FBQ2pELGdCQUFnQjtJQUNwQjtBQUNKIiwic291cmNlc0NvbnRlbnQiOlsiLyogRm9vdGVyLmNzcyAqL1xuLmZvb3Rlci1jb21wb25lbnQtd3JhcHBlciB7XG4gIGZvbnQtZmFtaWx5OiAnUG9wcGlucyBCb2xkJywgc2Fucy1zZXJpZjsgLyogQ2hvb3NlIGEgZm9udCB0aGF0IG1hdGNoZXMgb3IgaXMgYSBnb29kIGZhbGxiYWNrICovXG4gIGJhY2tncm91bmQtY29sb3I6ICMwMDAwMDA7XG4gIGxpbmUtaGVpZ2h0OiAxO1xuICBwYWRkaW5nLXRvcDogNDBweDtcbn1cblxuLyogVG9wIEJhbm5lciBTZWN0aW9uICovXG4uZm9vdGVyLWJhbm5lci1jb250YWluZXIge1xuICBiYWNrZ3JvdW5kLWNvbG9yOiAjMDAwMDAwO1xuICBiYWNrZ3JvdW5kOiBsaW5lYXItZ3JhZGllbnQoMTM1ZGVnLCAjY2E0YTU0LCAjYjUzYjUxKTsgLyogQXBwcm94aW1hdGVkIGdyYWRpZW50IGZyb20gaW1hZ2UgKi9cbiAgcGFkZGluZzogNTBweCAyMHB4O1xuICBib3JkZXItcmFkaXVzOiA0MHB4O1xuICB0ZXh0LWFsaWduOiBjZW50ZXI7XG4gIG1heC13aWR0aDogMTUwMHB4O1xuICB0b3A6IDQwcHg7XG4gIG1hcmdpbjogNDBweCBhdXRvIDAgYXV0bzsgLyogTWFyZ2luIHRvcCwgY2VudGVyZWQsIG5vIGJvdHRvbSBtYXJnaW4gYmVmb3JlIGRhcmsgZm9vdGVyICovXG4gIGJveC1zaGFkb3c6IDAgNHB4IDE1cHggcmdiYSgwLCAwLCAwLCAwLjEpO1xuICBjb2xvcjogI2ZmZmZmZjtcbn1cblxuLmZvb3Rlci1iYW5uZXItY29udGVudCB7XG4gIG1heC13aWR0aDogNzAwcHg7XG4gIG1hcmdpbjogMCBhdXRvO1xufVxuXG4uYmFubmVyLXByZS10aXRsZSB7XG4gIGZvbnQtc2l6ZTogMWVtOyAvKiBBZGp1c3RlZCBhcyBwZXIgaW1hZ2UgKi9cbiAgY29sb3I6ICNmMGYwZjBlMztcbiAgZm9udC13ZWlnaHQ6IGJvbGQ7XG4gIG1hcmdpbi1ib3R0b206IDhweDtcbn1cblxuLmJhbm5lci1tYWluLXRpdGxlIHtcbiAgZm9udC1zaXplOiAyLjJlbTtcbiAgZm9udC13ZWlnaHQ6IGJvbGQ7XG4gIGNvbG9yOiAjZmZmZmZmO1xuICBtYXJnaW4tYm90dG9tOiAxNXB4O1xufVxuXG4uYmFubmVyLWRlc2NyaXB0aW9uIHtcbiAgcG9zaXRpb246IHJlbGF0aXZlO1xuICBqdXN0aWZ5LWNvbnRlbnQ6IGNlbnRlcjtcbiAgYWxpZ24taXRlbXM6IGNlbnRlcjtcbiAgdHJhbnNmb3JtOiB0cmFuc2xhdGVYKDglKTtcbiAgZm9udC1zaXplOiAxLjFlbTtcbiAgY29sb3I6ICNlMGUwZTA7XG4gIG1hcmdpbi1ib3R0b206IDMwcHg7XG4gIG1heC13aWR0aDogNjAwcHg7XG4gIGxpbmUtaGVpZ2h0OiAxLjU7XG59XG5cbi5iYW5uZXItY3RhLWJ1dHRvbiB7XG4gIGJhY2tncm91bmQtY29sb3I6ICNmZmZmZmY7XG4gIGNvbG9yOiAjYzA0NTUyOyAvKiBUZXh0IGNvbG9yIHNpbWlsYXIgdG8gYmFubmVyJ3MgcHJpbWFyeSByZWQgKi9cbiAgYm9yZGVyOiBub25lO1xuICBwYWRkaW5nOiAxMnB4IDMwcHg7XG4gIGZvbnQtc2l6ZTogMWVtO1xuICBmb250LXdlaWdodDogYm9sZDtcbiAgYm9yZGVyLXJhZGl1czogMjVweDsgLyogUGlsbCBzaGFwZSAqL1xuICBjdXJzb3I6IHBvaW50ZXI7XG4gIHRyYW5zaXRpb246IGJhY2tncm91bmQtY29sb3IgMC4zcyBlYXNlLCBjb2xvciAwLjNzIGVhc2U7XG4gIGJveC1zaGFkb3c6IDAgMnB4IDVweCByZ2JhKDAsMCwwLDAuMSk7XG59XG5cbi5iYW5uZXItY3RhLWJ1dHRvbjpob3ZlciB7XG4gIGJhY2tncm91bmQtY29sb3I6ICNmMGYwZjA7XG59XG5cbi8qIERhcmsgRm9vdGVyIEFyZWEgKi9cbi5kYXJrLWZvb3Rlci1hcmVhIHtcbiAgYmFja2dyb3VuZC1jb2xvcjogIzA0MDQwNDsgLyogVmVyeSBkYXJrIGdyYXkgLyBibGFjayAqL1xuICBjb2xvcjogI2YwZjBmMDsgLyogRGVmYXVsdCBsaWdodCB0ZXh0IGNvbG9yICovXG59XG5cbi5mb290ZXItbWFpbi1jb250ZW50IHtcbiAgcGFkZGluZzogNjBweCAyMHB4IDQwcHg7IC8qIFBhZGRpbmcgZm9yIGNvbnRlbnQgd2l0aGluIGRhcmsgYXJlYSAqL1xuICBtYXgtd2lkdGg6IDEyMDBweDsgLyogQ29udGVudCBtYXgtd2lkdGggKi9cbiAgbWFyZ2luOiAwIGF1dG87IC8qIENlbnRlciBjb250ZW50ICovXG4gIGRpc3BsYXk6IGZsZXg7XG4gIGp1c3RpZnktY29udGVudDogc3BhY2UtYmV0d2VlbjtcbiAgZmxleC13cmFwOiB3cmFwO1xuICBnYXA6IDMwcHg7IC8qIFNwYWNlIGJldHdlZW4gY29sdW1ucyAqL1xufVxuXG4uZm9vdGVyLXNlY3Rpb24ge1xuICBmbGV4OiAxO1xuICBtaW4td2lkdGg6IDIyMHB4OyAvKiBNaW4gd2lkdGggZm9yIGNvbHVtbnMgKi9cbiAgbWFyZ2luLWJvdHRvbTogMjBweDtcbn1cblxuLyogQ29tcGFueSBJbmZvIFNlY3Rpb24gKi9cbi5jb21wYW55LWluZm8gLmZvb3Rlci1sb2dvIHtcbiAgZGlzcGxheTogZmxleDtcbiAgYWxpZ24taXRlbXM6IGNlbnRlcjtcbiAgbWFyZ2luLWJvdHRvbTogMjVweDtcbn1cblxuLmNvbXBhbnktaW5mbyAubG9nby1haiB7XG4gIGZvbnQtc2l6ZTogMi41ZW07IC8qIEFkanVzdCBzaXplIGZvciBcIuKInkpcIiAqL1xuICBtYXJnaW4tcmlnaHQ6IDEwcHg7XG4gIGRpc3BsYXk6IGlubGluZS1mbGV4O1xuICBhbGlnbi1pdGVtczogY2VudGVyOyAvKiBWZXJ0aWNhbGx5IGFsaWduIOKIniBhbmQgSiAqL1xufVxuXG4uY29tcGFueS1pbmZvIC5sb2dvLWEge1xuICBjb2xvcjogI2ZmZjsgLyogV2hpdGUgJ2luZmluaXR5JyBzeW1ib2wgKi9cbiAgZm9udC13ZWlnaHQ6IG5vcm1hbDsgLyogSW5maW5pdHkgY2FuIGJlIGJvbGQgYnkgZGVmYXVsdCAqL1xuICBmb250LXNpemU6IDAuODVlbTsgLyogU2NhbGUgaW5maW5pdHkgYXBwcm9wcmlhdGVseSAqL1xuICBsaW5lLWhlaWdodDogMTtcbiAgcG9zaXRpb246IHJlbGF0aXZlO1xuICB0b3A6IC0wLjA4ZW07IC8qIEZpbmUtdHVuZSB2ZXJ0aWNhbCBhbGlnbm1lbnQgKi9cbiAgbWFyZ2luLXJpZ2h0OiAxcHg7XG59XG5cbi5jb21wYW55LWluZm8gLmxvZ28taiB7XG4gIGNvbG9yOiAjZTUzZTNlOyAvKiBSZWQgJ0onICovXG4gIGZvbnQtd2VpZ2h0OiBib2xkO1xuICBsaW5lLWhlaWdodDogMTtcbn1cblxuLmNvbXBhbnktaW5mbyAuY29tcGFueS1uYW1lIHtcbiAgZm9udC1zaXplOiAxLjVlbTtcbiAgZm9udC13ZWlnaHQ6IGJvbGQ7XG4gIGNvbG9yOiAjZmZmZmZmO1xufVxuXG4uY29tcGFueS1pbmZvIC5jb250YWN0LWRldGFpbHMgcCB7XG4gIG1hcmdpbi1ib3R0b206IDEycHg7XG4gIGZvbnQtc2l6ZTogMC45ZW07XG4gIGNvbG9yOiAjZDNkM2QzO1xuICBkaXNwbGF5OiBmbGV4O1xuICBhbGlnbi1pdGVtczogZmxleC1zdGFydDtcbn1cblxuLmNvbXBhbnktaW5mbyAuY29udGFjdC1kZXRhaWxzIC5jb250YWN0LWljb24ge1xuICBtYXJnaW4tcmlnaHQ6IDEwcHg7XG4gIGZvbnQtc2l6ZTogMS4xZW07XG4gIGNvbG9yOiAjZmZmO1xuICBtaW4td2lkdGg6IDIwcHg7IC8qIEZvciBhbGlnbm1lbnQgKi9cbiAgbGluZS1oZWlnaHQ6IDEuNDsgLyogQWRqdXN0IHZlcnRpY2FsIGFsaWdubWVudCB3aXRoIHRleHQgKi9cbn1cblxuLmNvbXBhbnktaW5mbyAuc29jaWFsLW1lZGlhLWljb25zIHtcbiAgbWFyZ2luLXRvcDogMjBweDtcbn1cblxuLmNvbXBhbnktaW5mbyAuc29jaWFsLWxpbmsge1xuICBjb2xvcjogI2ZmZmZmZjtcbiAgZm9udC1zaXplOiAxLjJlbTsgLyogQWRqdXN0IHNpemUgb2YgdGV4dCBpY29ucyAqL1xuICBtYXJnaW4tcmlnaHQ6IDE4cHg7XG4gIHRleHQtZGVjb3JhdGlvbjogbm9uZTtcbiAgZm9udC13ZWlnaHQ6IG5vcm1hbDsgLyogRGVmYXVsdCBmb250LXdlaWdodCBmb3IgdGV4dCBiYXNlZCBpY29ucyAqL1xuICB0cmFuc2l0aW9uOiBjb2xvciAwLjNzIGVhc2U7XG59XG4uY29tcGFueS1pbmZvIC5zb2NpYWwtbGluay5zb2NpYWwteW91dHViZSB7XG4gICAgZm9udC1zaXplOiAxLjRlbTsgLyogTWFrZSBwbGF5IGljb24gc2xpZ2h0bHkgbGFyZ2VyIGlmIG5lZWRlZCAqL1xuICAgIHBvc2l0aW9uOiByZWxhdGl2ZTtcbiAgICB0b3A6IDAuMDVlbTtcbn1cblxuXG4uY29tcGFueS1pbmZvIC5zb2NpYWwtbGluazpob3ZlciB7XG4gIGNvbG9yOiAjY2E0YTU0OyAvKiBIb3ZlciBjb2xvciBzaW1pbGFyIHRvIGJhbm5lciAqL1xufVxuLmNvbXBhbnktaW5mbyAuc29jaWFsLWxpbms6bGFzdC1jaGlsZCB7XG4gICAgbWFyZ2luLXJpZ2h0OiAwO1xufVxuXG5cbi8qIFVzZWZ1bCBMaW5rcyAmIFNlcnZpY2VzIExpc3QgU2VjdGlvbiAqL1xuLmZvb3Rlci1zZWN0aW9uIGg0IHtcbiAgZm9udC1zaXplOiAxLjFlbTsgLyogVGl0bGUgZm9yIGxpbmsgc2VjdGlvbnMgKi9cbiAgY29sb3I6ICNmZmZmZmY7XG4gIG1hcmdpbi1ib3R0b206IDIwcHg7XG4gIGZvbnQtd2VpZ2h0OiBib2xkO1xufVxuXG4uZm9vdGVyLXNlY3Rpb24gdWwge1xuICBsaXN0LXN0eWxlOiBub25lO1xuICBwYWRkaW5nOiAwO1xuICBtYXJnaW46IDA7XG59XG5cbi5mb290ZXItc2VjdGlvbiB1bCBsaSB7XG4gIG1hcmdpbi1ib3R0b206IDEwcHg7XG59XG5cbi5mb290ZXItc2VjdGlvbiB1bCBsaSBhIHtcbiAgY29sb3I6ICNiMGIwYjA7XG4gIHRleHQtZGVjb3JhdGlvbjogbm9uZTtcbiAgZm9udC1zaXplOiAwLjllbTtcbiAgdHJhbnNpdGlvbjogY29sb3IgMC4zcyBlYXNlO1xufVxuXG4uZm9vdGVyLXNlY3Rpb24gdWwgbGkgYTpob3ZlciB7XG4gIGNvbG9yOiAjZmZmZmZmO1xuICB0ZXh0LWRlY29yYXRpb246IHVuZGVybGluZTtcbn1cblxuLyogRm9vdGVyIEJvdHRvbSBCYXIgKi9cbi5mb290ZXItYm90dG9tLWJhciB7XG4gIHBhZGRpbmc6IDIwcHggMjBweDtcbiAgbWF4LXdpZHRoOiAxMjAwcHg7IC8qIENvbnRlbnQgbWF4LXdpZHRoICovXG4gIG1hcmdpbjogMCBhdXRvOyAvKiBDZW50ZXIgY29udGVudCAqL1xuICBkaXNwbGF5OiBmbGV4O1xuICBqdXN0aWZ5LWNvbnRlbnQ6IHNwYWNlLWJldHdlZW47XG4gIGFsaWduLWl0ZW1zOiBjZW50ZXI7XG4gIGZsZXgtd3JhcDogd3JhcDtcbiAgZm9udC1zaXplOiAwLjg1ZW07XG4gIGNvbG9yOiAjYTBhMGEwO1xuICBib3JkZXItdG9wOiAxcHggc29saWQgIzMzMzMzMzsgLyogU3VidGxlIHNlcGFyYXRvciBsaW5lICovXG59XG5cbi5jb3B5cmlnaHQge1xuICBtYXJnaW46IDVweCAwO1xufVxuXG4ubGVnYWwtbGlua3MgYSB7XG4gIGNvbG9yOiAjYTBhMGEwO1xuICB0ZXh0LWRlY29yYXRpb246IG5vbmU7XG4gIG1hcmdpbi1sZWZ0OiAyMHB4O1xuICB0cmFuc2l0aW9uOiBjb2xvciAwLjNzIGVhc2U7XG59XG4ubGVnYWwtbGlua3MgYTpmaXJzdC1jaGlsZCB7XG4gICAgbWFyZ2luLWxlZnQ6IDA7XG59XG5cbi5sZWdhbC1saW5rcyBhOmhvdmVyIHtcbiAgY29sb3I6ICNmZmZmZmY7XG4gIHRleHQtZGVjb3JhdGlvbjogdW5kZXJsaW5lO1xufVxuXG4vKiBSZXNwb25zaXZlIEFkanVzdG1lbnRzICovXG5AbWVkaWEgKG1heC13aWR0aDogOTkycHgpIHtcbiAgLmZvb3Rlci1tYWluLWNvbnRlbnQge1xuICAgIC8qIENvbHVtbnMgd2lsbCBzdGFjayBkdWUgdG8gZmxleC13cmFwIGFuZCBtaW4td2lkdGggb24gLmZvb3Rlci1zZWN0aW9uICovXG4gIH1cbn1cblxuQG1lZGlhIChtYXgtd2lkdGg6IDc2OHB4KSB7XG4gIC5mb290ZXItYmFubmVyLWNvbnRhaW5lciB7XG4gICAgbWFyZ2luLWxlZnQ6IDE1cHg7XG4gICAgbWFyZ2luLXJpZ2h0OiAxNXB4O1xuICAgIHBhZGRpbmc6IDQwcHggMTVweDtcbiAgfVxuICAuYmFubmVyLW1haW4tdGl0bGUge1xuICAgIGZvbnQtc2l6ZTogMS44ZW07XG4gIH1cbiAgLmJhbm5lci1kZXNjcmlwdGlvbiB7XG4gICAgZm9udC1zaXplOiAwLjllbTtcbiAgfVxuXG4gIC5mb290ZXItbWFpbi1jb250ZW50IHtcbiAgICBwYWRkaW5nLWxlZnQ6IDIwcHg7XG4gICAgcGFkZGluZy1yaWdodDogMjBweDtcbiAgICBmbGV4LWRpcmVjdGlvbjogY29sdW1uOyAvKiBFeHBsaWNpdGx5IHN0YWNrIGZvciBzbWFsbGVyIHNjcmVlbnMgaWYgZ2FwIGlzIGFuIGlzc3VlICovXG4gICAgYWxpZ24taXRlbXM6IGZsZXgtc3RhcnQ7XG4gIH1cbiAgIC5mb290ZXItc2VjdGlvbiB7XG4gICAgbWluLXdpZHRoOiAxMDAlOyAvKiBFbnN1cmUgc2VjdGlvbnMgdGFrZSBmdWxsIHdpZHRoIHdoZW4gc3RhY2tlZCAqL1xuICAgIG1hcmdpbi1ib3R0b206IDMwcHg7XG4gIH1cbiAgLmZvb3Rlci1zZWN0aW9uOmxhc3QtY2hpbGQge1xuICAgIG1hcmdpbi1ib3R0b206IDA7XG4gIH1cblxuICAuZm9vdGVyLWJvdHRvbS1iYXIge1xuICAgIHBhZGRpbmctbGVmdDogMjBweDtcbiAgICBwYWRkaW5nLXJpZ2h0OiAyMHB4O1xuICAgIGZsZXgtZGlyZWN0aW9uOiBjb2x1bW47XG4gICAgdGV4dC1hbGlnbjogY2VudGVyO1xuICB9XG4gIC5sZWdhbC1saW5rcyB7XG4gICAgbWFyZ2luLXRvcDogMTBweDtcbiAgfVxuICAubGVnYWwtbGlua3MgYSB7XG4gICAgbWFyZ2luOiAwIDEwcHggNXB4IDEwcHg7IC8qIEFkanVzdCBzcGFjaW5nIGZvciBtb2JpbGUgKi9cbiAgICBkaXNwbGF5OiBpbmxpbmUtYmxvY2s7IC8qIEtlZXAgb24gc2FtZSBsaW5lIGlmIHNwYWNlLCBvciB3cmFwICovXG4gIH1cbn1cblxuQG1lZGlhIChtYXgtd2lkdGg6IDQ4MHB4KSB7XG4gICAgLmJhbm5lci1tYWluLXRpdGxlIHtcbiAgICAgICAgZm9udC1zaXplOiAxLjZlbTtcbiAgICB9XG4gICAgLmJhbm5lci1jdGEtYnV0dG9uIHtcbiAgICAgICAgcGFkZGluZzogMTBweCAyNXB4O1xuICAgICAgICBmb250LXNpemU6IDAuOWVtO1xuICAgIH1cbiAgICAuY29tcGFueS1pbmZvIC5jb21wYW55LW5hbWUge1xuICAgICAgICBmb250LXNpemU6IDEuM2VtO1xuICAgIH1cbiAgICAuZm9vdGVyLXNlY3Rpb24gaDQge1xuICAgICAgICBmb250LXNpemU6IDFlbTtcbiAgICB9XG4gICAgLmxlZ2FsLWxpbmtzIGEge1xuICAgICAgICBkaXNwbGF5OiBibG9jazsgLyogU3RhY2sgbGVnYWwgbGlua3MgdmVydGljYWxseSAqL1xuICAgICAgICBtYXJnaW46IDVweCBhdXRvO1xuICAgIH1cbn0iXSwic291cmNlUm9vdCI6IiJ9 */

.home-container {
    background-color: #191414;
    background-image: radial-gradient(ellipse at 45% 40%, rgba(204, 10, 10, 0.305), transparent 60%);
    color: #f3f0f0;
    /*position: relative;*/
    display: flex;
    flex-direction: column;
    align-items: center;    /* Horizontally centers the h1 and p */
    justify-content: flex-start; /* Vertically moves the block of h1 and p to the top */
    min-height: calc(100vh - 90px); /* 90px is the padding-top from .app-content for the navbar */
    text-align: center; /* Centers text within h1 and p */
    box-sizing: border-box;
    padding-bottom: 40px;
}

.home-container h1 {
    font-family: 'Poppins Bold', sans-serif;
    font-size: 2.5rem;
    max-width: 900px;
    margin-bottom: 18px;
    font-weight: bold;
    padding-top: 150px; /* Adjusts the height of the h1 + p beneath it */
  }
  
.home-container p {
    font-size: 1.2rem;
    max-width: 900px;
    color: #989797b4;
    font-family: 'Poppins Bold', sans-serif;
    text-align: center;
    line-height: 1.5;
    margin-bottom: 55px;
}

.home-logo {
    width: 200px;
    height: auto;
}

.aj-logo {
    width: 50px;
    height: auto;
}

.home-cta {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 0px;
    margin-top: 0px;
    left: 30rem;
}

.getstarted-logo {
    background-color: #b60707f2;
    position: relative;
    right: 5.5rem; /* Aligns with the screen */
    top: 3%;
    display: flex;
    justify-content: center;
    padding-top: 0.9rem; /* Adjusts the height of the button */
    padding-bottom: 0.9rem; /* Adjusts the height of the button */
    padding-left: 2.5rem; /* Adjusts the width of the button */
    padding-right: 2.5rem; /* Adjusts the width of the button */
    border-radius: 100px;
    transform: translateY(-50%); /* Vertically centers Get Started button */
    align-items: center;
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.7), /* Inner, more defined part of the glow */
    0 0 15px rgba(255, 255, 255, 0.5); /* Outer, more diffuse part of the glow */
    color: white; /* Or #FFFFFF */
    font-size: 1.2rem;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    text-shadow: #f3f1f1f5;
}

.requestademo-logo {
    position: relative;
    left: 7.5rem;
    bottom: 3.9rem;
    display: flex;
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    text-shadow: #f3f1f1f5;
    color: #f3e5e5;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem; /* space between text and arrow */
    transition: all 0.3s ease;
  }
  
  .requestademo-logo:hover {
    color: #ffffff;
    transform: scale(1.05);
  }
  
  .requestademo-logo .arrow {
    font-size: 1.3rem;
    transition: transform 0.3s ease;
    font-family: Arial, sans-serif;
  }

.getstarted-logo:hover {
    cursor: pointer;
    opacity: 0.8;
}

.home-logo {
    position: relative;
    left: -1rem;
    right: 5.5rem;
    top: 4%;
    width: 1500px;
    height: auto;
    /*opacity: 0.0;*/                /* Makes the image semi-transparent */
    border: 1px solid rgba(128, 128, 128, 0.557);      /* Gray border */
    border-radius: 20px;         /* Rounded corners */
    box-sizing: border-box;      /* Include border in element's width */
   /* mask-image: linear-gradient(to bottom, 
      rgba(0, 0, 0, 1) 0%, 
        rgba(0, 0, 0, 0) 90%);*/
}


.about-alpha-juliet-section {
    background-color: #0c0b0b; /* Very dark background */
    color: #e0e0e0; /* Light grey text for paragraphs */
    padding: 80px 20px; /* Generous padding */
    font-family: 'Poppins Bold', sans-serif; /* Or your preferred font */
    line-height: 1.7;
    min-height: 70vh; /* Ensure it takes up a good portion of the viewport */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
  }
  
  .about-content-container {
    display: flex;
    align-items: center; /* Vertically align items in the flex container */
    max-width: 1500px; /* Max width of the content */
    width: 100%;
    gap: 200px; /* Space between image column and text column */
  }
  
  .about-images-column {
    flex: 1 1; /* Takes up available space */
    position: relative; /* Crucial for absolute positioning of images */
    min-width: 300px; /* Minimum width for the image column */
    height: 450px; /* Approximate height to contain the images, adjust as needed */
    /* border: 1px solid red; */ /* For debugging layout */
  }
  
  .about-image {
    position: absolute;
    border-radius: 15px; /* Rounded corners for images */
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3); /* Softer shadow for depth */
    object-fit: cover; /* Ensures images cover their bounds well */
    transition: transform 0.3s ease-out;
  }
  
  .image-top-left { /* AJ-AboutUsMild.png - Mechanical one */
    width: 60%; /* Adjust size */
    top: -100px;
    left: 0;
    transform: rotate(-8deg);
    z-index: 1;
  }
  
  .image-top-right-dashboards { /* AJ-SecondAboutUs.png - Dashboards */
    width: 60%; /* Adjust size */
    top: -90px; /* Adjust vertical position */
    right: -90px; /* Adjust horizontal position, allow some overlap */
    transform: rotate(5deg);
    z-index: 2;
  }
  
  .image-bottom-middle-brain { /* AJ-FirstAboutUs.png - Brain one */
    width: 60%; /* Adjust size, this one is more prominent */
    bottom: -100px; /* Position at the bottom of the relative container */
    left: 60%;
    transform: translateX(-50%) rotate(-2deg); /* Center it and slightly rotate */
    z-index: 3; /* On top of others */
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4); /* More prominent shadow */
  }
  
  .about-text-column {
    flex: 1.2 1; /* Give text column slightly more space */
    min-width: 300px;
    /* border: 1px solid blue; */ /* For debugging layout */
  }
  
  .about-text-column h2 {
    font-size: 2.8em; /* Large heading */
    color: #ffffff; /* White heading */
    margin-bottom: 30px;
    font-weight: bold;
  }
  
  .about-text-column p {
    font-size: 1em; /* Standard paragraph size */
    margin-bottom: 20px;
    color: #c7c7c7; /* Slightly lighter than default for better readability */
  }
  
  .our-story-button {
    background-color: #d9363e; /* Red button color */
    color: #ffffff;
    border: none;
    padding: 12px 30px;
    font-size: 1em;
    font-weight: bold;
    border-radius: 25px; /* Pill shape */
    cursor: pointer;
    margin-top: 20px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 4px 15px rgba(217, 54, 62, 0.4); /* Glow effect */
  }
  
  .our-story-button:hover {
    background-color: #c22d35; /* Darker red on hover */
    transform: translateY(-2px);
  }
  
  /* Responsive Adjustments */
  @media (max-width: 992px) {
    .about-content-container {
      flex-direction: column;
      text-align: center; /* Center text when stacked */
    }
  
    .about-images-column {
      height: 400px; /* Adjust height for smaller screens */
      margin-bottom: 40px; /* Space between images and text */
      width: 80%; /* Make image container wider for better display */
      max-width: 500px; /* But not too wide */
    }
  
    .image-top-left {
      width: 55%;
      left: 5%;
    }
    .image-top-right-dashboards {
      width: 60%;
      right: 5%;
      top: 20px;
    }
    .image-bottom-middle-brain {
      width: 70%;
    }
  
    .about-text-column {
      align-items: center; /* Center button */
      display: flex;
      flex-direction: column;
    }
    .about-text-column h2 {
      font-size: 2.4em;
    }
  }
  
  @media (max-width: 768px) {
    .about-alpha-juliet-section {
      padding: 60px 15px;
    }
    .about-images-column {
      height: 350px;
      width: 90%;
    }
    .image-top-left { width: 50%; left: 2%; }
    .image-top-right-dashboards { width: 55%; right: 2%; top: 15px; }
    .image-bottom-middle-brain { width: 65%; }
  
    .about-text-column h2 {
      font-size: 2em;
    }
    .about-text-column p {
      font-size: 0.95em;
    }
    .our-story-button {
      padding: 10px 25px;
      font-size: 0.95em;
    }
  }
  
  @media (max-width: 480px) {
      .about-images-column {
          height: 280px; /* Further reduce for very small screens */
          width: 100%;
      }
      .image-top-left { width: 50%; transform: rotate(-5deg); left: 0;}
      .image-top-right-dashboards { width: 50%; transform: rotate(3deg); right: 0; top: 10px;}
      .image-bottom-middle-brain { width: 60%; transform: translateX(-50%) rotate(0deg); }
  
      .about-text-column h2 {
          font-size: 1.8em;
      }
  }


.ai-page-container {
    background-color: #0d0d0d; /* Very dark background from the image */
    color: #e0e0e0; /* Light greyish text color */
    min-height: 100vh; /* Ensure it takes at least full viewport height */
    padding: 40px 20px 60px; /* Top, horizontal, bottom padding */
    display: flex;
    flex-direction: column;
    align-items: center; /* Center the content section horizontally */
    font-family: 'Poppins', sans-serif; /* Assuming Poppins is available */
  }
  
  .ai-content-section {
    max-width: 1500px; /* Max width for the content area */
    width: 100%;
    text-align: center; /* Center text elements within this section */
  }
  
  .ai-main-title {
    font-family: 'Poppins Bold', sans-serif; /* Or 'Poppins' with font-weight: bold; */
    font-size: 4.5rem; /* Large title */
    color: #ffffff;
    margin-bottom: 25px;
    font-weight: bold;
  }
  
  .ai-main-description {
    font-size: 5.2rem;
    max-width: 1200px; /* Control line length for readability */
    color: #b0b0b0; /* Slightly muted grey for description */
    line-height: 22.7;
    margin: 0 auto 40px auto; /* Center description block and add bottom margin */
  }
  
  .ai-learn-more-button {
    background-color: #cc0000; /* Strong red color from image */
    color: white;
    padding: 15px 35px;
    border-radius: 50px; /* Fully rounded button */
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500; /* Medium font weight */
    display: inline-block; /* Allows margin and padding */
    margin-bottom: 60px; /* Space after button, before cards */
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
    box-shadow: 0 0 10px rgba(255, 0, 0, 0.3), /* Inner red glow */
                0 0 20px rgba(255, 0, 0, 0.2); /* Outer red glow */
  }
  
  .ai-learn-more-button:hover {
    background-color: #e60000; /* Slightly brighter red on hover */
    transform: translateY(-2px);
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.4),
                0 0 25px rgba(255, 0, 0, 0.3);
  }
  
  .ai-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* Responsive grid */
    gap: 35px; /* Gap between cards */
    width: 100%;
  }
  
  .ai-service-card {
    background-color: #252525; /* Dark grey for card background, slightly lighter than page */
    border-radius: 15px; /* Rounded corners for the card */
    overflow: hidden; /* Crucial for making image corners follow border-radius */
    text-align: center;
    display: flex;
    flex-direction: column;
    box-shadow: 0 8px 25px rgba(0,0,0,0.4); /* Soft shadow for depth */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .ai-card-image-container {
    aspect-ratio: 1 / 1;
    position: relative;
    width: 100%;
    padding: 25px;
    /* The image itself should have rounded corners as well, or this container handles it with overflow:hidden on .ai-service-card */
    /* No fixed height here, let the image define aspect ratio or set one */
  }
  
  .ai-homecard-image {
    width: 100%;
    object-fit: cover; /* Use if setting a fixed height */
    display: block; /* Remove extra space below image */
    border-top-left-radius: 15px; /* Match card radius */
    border-top-right-radius: 15px; /* Match card radius */
    /* If .ai-service-card has overflow:hidden, these image radii are not strictly needed but don't hurt */
  }
  
  .ai-card-title-text {
    font-family: 'Poppins', sans-serif;
    font-size: 1.45rem; /* Font size for card titles */
    font-weight: 450; /* Semi-bold */
    color: #f0c0c0; /* Light pinkish-white color for card titles from image */
    padding-top: 25px;
    padding-bottom: 0px;
    margin: 0; /* Reset default margin */
    flex-grow: 0; /* Allows title area to take remaining space if needed */
    display: flex;
    align-items: center; /* Vertically center text if there's extra space */
    text-align: center;
    justify-content: center; /* Horizontally center text */
  }
  
  /* Responsive adjustments */
  @media (max-width: 992px) {
    .ai-main-title {
      font-size: 3.5rem;
    }
    .ai-main-description {
      font-size: 2.05rem;
    }
    .ai-learn-more-button {
      padding: 12px 30px;
      font-size: 1rem;
      margin-bottom: 50px;
    }
    .ai-card-title-text {
      font-size: 1.3rem;
    }
  }
  
  @media (max-width: 768px) {
    .ai-page-container {
      padding: 60px 15px 40px;
    }
    .ai-main-title {
      font-size: 2.8rem;
    }
    .ai-main-description {
      font-size: 2rem;
      margin-bottom: 30px;
    }
    .ai-learn-more-button {
      margin-bottom: 40px;
    }
    .ai-cards-grid {
      grid-template-columns: 1fr; /* Stack cards on smaller screens */
      gap: 30px;
    }
     .ai-service-card {
      max-width: 450px; /* Limit card width when stacked */
      margin-left: auto;
      margin-right: auto;
    }
    .ai-card-title-text {
      font-size: 1.25rem;
      padding: 20px 15px;
    }
  }
  
  @media (max-width: 480px) {
    .ai-main-title {
      font-size: 2.3rem;
    }
    .ai-card-title-text {
      font-size: 1.15rem;
    }
  }


.software-section-container {
    background-color: #0d0d0d; /* Very dark background from the image */
    color: #e0e0e0; /* Light greyish default text color */
    padding: 80px 20px 60px; /* Top, horizontal, bottom padding */
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: -100px; /* Moves the top up */
    width: 100%;
    font-family: 'Poppins', sans-serif; /* Fallback if not globally set */
  }
  
  .software-header {
    text-align: center;
    /* Increase max-width or use percentage for more fluidity */
    max-width: 1400px; /* Example: 90% of the container's width */
    /* OR a larger pixel value: max-width: 1600px; */
    /* OR remove max-width if you want it to fill up to the container's padding */
    margin-left: auto; /* Keep it centered */
    margin-right: auto; /* Keep it centered */
    margin-bottom: 60px;
  }
  
  .software-main-title {
    font-size: 4rem; /* Large title */
    font-weight: 700; /* Bold */
    color: #ffffff;
    margin-bottom: 20px;
  }
  
  .software-main-description {
    font: 'Poppins Bold';
    font-size: 1.2rem;
    color: #a0a0a0; /* Slightly darker grey for description */
    line-height: 1.7;
    max-width: 1000px; /* Slightly narrower than header max-width for visual appeal */
    margin-left: auto;
    margin-right: auto;
  }
  
  .software-services-grid {
    display: grid;
    /* Adjust minmax for how wide you want each item before wrapping */
    /* 300px usually allows for 3 items on a ~1000px wide container */
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px 30px; /* Row gap, Column gap */
    width: 100%;
    max-width: 1500px; /* Max width for the grid itself */
    margin-left: auto;
    margin-right: auto;
  }
  
  .software-service-item,
  .software-learn-more-container {
    display: flex;
    flex-direction: column;
    /* align-items: flex-start; /* Align content to the start (left) */
    /* padding: 10px; Optional additional padding within each item */
  }
  
  .service-icon-container {
    width: 60px; /* Size of the red circle */
    height: 60px;
    background-color: #cc0000; /* Strong red color from image */
    border-radius: 50%; /* Makes it a circle */
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px; /* Space between icon and title */
  }
  
  .service-icon-img {
    width: 28px; /* Size of the icon inside the circle */
    height: 28px;
    /* If your icons are black and need to be white: */
    /* filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(100%) contrast(100%); */
  }
  
  .service-title {
    font-size: 1.25rem;
    font-weight: 600; /* Semi-bold */
    color: #e9bebe; /* White or very light pinkish from image */
    margin-bottom: 0px;
  }
  
  .service-item-description {
    font-size: 1.1rem;
    font: 'Poppins Bold';   
    color: #999999; /* Grey for description */
    line-height: 1.6;
    flex-grow: 1; /* Allows description to take space if items have uneven heights */
  }
  
  .software-learn-more-container {
    /* This ensures the button itself can be centered or stretched if needed */
    /* and aligns with other items that might have more text. */
    display: flex;
    align-items: center; /* Vertically center the button if the container is taller */
    justify-content: flex-start; /* Or 'center' if you want the button centered in its cell */
  }
  
  .learn-more-software-button {
    background-color: #cc0000; /* Strong red color */
    color: white;
    padding: 12px 25px;
    border-radius: 50px; /* Fully rounded button */
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    display: inline-block;
    text-align: center;
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
    /* Subtle glow effect */
    box-shadow: 0 0 10px rgba(204, 0, 0, 0.3),
                0 0 15px rgba(204, 0, 0, 0.2);
    min-width: 400px; /* Give button a decent minimum width */
    margin-top: 110px;
    margin-left: -70px; /* Moves left */
  }
  
  .learn-more-software-button:hover {
    background-color: #e60000; /* Slightly brighter red on hover */
    transform: translateY(-2px);
    box-shadow: 0 0 15px rgba(204, 0, 0, 0.4),
                0 0 20px rgba(204, 0, 0, 0.3);
  }
  
  /* Responsive Adjustments */
  @media (max-width: 992px) {
    .software-main-title {
      font-size: 3rem;
    }
    .software-services-grid {
      /* Allow 2 items per row on medium screens if minmax(300px) causes 3 */
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px 25px;
    }
  }
  
  @media (max-width: 768px) {
    .software-section-container {
      padding: 60px 15px 40px;
    }
    .software-main-title {
      font-size: 2.5rem;
    }
    .software-main-description {
      font-size: 1rem;
    }
    .software-services-grid {
      /* Stack to 1 column on small screens */
      grid-template-columns: 1fr;
      gap: 35px;
    }
    .software-service-item,
    .software-learn-more-container {
      align-items: center; /* Center content when stacked */
      text-align: center;
    }
    .service-icon-container {
      margin-left: auto; /* Center icon when item is centered */
      margin-right: auto;
    }
    .learn-more-software-button {
      width: 100%; /* Make button full width in its container when stacked */
      max-width: 350px; /* But not excessively wide */
    }
  }
  
  @media (max-width: 480px) {
    .software-main-title {
      font-size: 2.1rem;
    }
    .service-title {
      font-size: 1.15rem;
    }
    .learn-more-software-button {
      font-size: 0.95rem;
      padding: 10px 20px;
    }
  } 


.bpo-section-container {
    background-color: #0d0d0d; /* Very dark background */
    color: #e0e0e0; /* Default light text color */
    padding: 80px 20px 100px; /* Top, horizontal, bottom padding */
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: 'Poppins Bold', sans-serif;
    overflow-x: hidden; /* Prevent horizontal scroll if image border is too wide with glow */
  }
  
  .bpo-header {
    text-align: center;
    max-width: 900px;
    margin-bottom: 60px;
  }
  
  .bpo-main-title {
    font-size: 4rem;
    font-weight: 700; /* Bold */
    color: #ffffff;
    margin-bottom: 20px;
  }
  
  .bpo-main-description {
    font-size: 1.2rem;
    color: #a0a0a0; /* Lighter grey for description */
    line-height: 1.7;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .bpo-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Two equal columns */
    gap: 60px; /* Gap between columns */
    width: 100%;
    max-width: 1500px; /* Max width for the content grid */
    align-items: flex-start; /* Align items to the top of their grid cell */
  }

.location-content-wrapper {
    display: flow;
    grid-template-columns: 1fr 1fr; /* Two equal columns */
    gap: 10px; /* Gap between columns */
    width: 100%;
    max-width: 1500px; /* Max width for the content grid */
    align-items:center ; /* Align items to the top of their grid cell */
}

  .bpo-services-list {
    display: flex;
    flex-direction: column;
  }
  
  .bpo-featured-service-item {
    margin-bottom: 30px; /* Space before the next list items */
  }
  
  .bpo-icon-wrapper {
    width: 60px;
    height: 60px;
    background-color: #cc0000; /* Red circle */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
  }
  
  .bpo-service-title-main {
    font-size: 1.5rem; /* Larger title for featured service */
    font-weight: 700; /* Bold */
    color: #f0c0c0; /* Pink color, adjust as needed */
    margin-bottom: 10px;
  }
  
  .bpo-service-description-main {
    font-size: 1rem;
    color: #999999;
    line-height: 1.6;
    margin-bottom: 25px;
    max-width: 450px; /* Limit line length */
  }
  
  .bpo-learn-more-button {
    background-color: #cc0000; /* Red button */
    color: white;
    padding: 10px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    display: inline-block;
    text-align: center;
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(204, 0, 0, 0.3);
  }
  
  .bpo-learn-more-button:hover {
    background-color: #e60000;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(204, 0, 0, 0.4);
  }
  
  .bpo-service-item {
    font-size: 1.1rem;
    color: #b0b0b0; /* Grey for other service titles */
    padding: 18px 0;
    border-bottom: 1px solid #333333; /* Separator line */
    text-decoration: none;
    transition: color 0.3s ease, padding-left 0.3s ease;
  }

.location-item {
    font-size: 1.1rem;
    color: #b0b0b0; /* Grey for other service titles */
    padding: 2px 0;
    /*border-bottom: 1px solid #333333;*/ /* Separator line */
    text-decoration: none;
    transition: color 0.3s ease, padding-left 0.3s ease;
    align-content: center
}

  .bpo-service-item:hover {
    color: #f080a0; /* Pink on hover */
    padding-left: 10px;
  }
  
  .bpo-service-item:last-child {
    border-bottom: none;
  }
  
  .bpo-image-showcase {
    display: flex;
    justify-content: center; /* Center the frame if the column is wider */
    align-items: center;
    padding-top: 20px; /* Give some space from the top if needed */
  }
  
  .bpo-image-frame {
    margin-top: -30px;
    /*background-color: #cc0000;*/ /* Bright Pink - HotPink */
    /* For a gradient similar to image:
    background: linear-gradient(145deg, #ff5599 0%, #ff3366 100%);
    */
    padding: 20px 20px 0px; /* This creates the thickness of the pink border */
    border-radius: 25px; /* Rounded corners for the frame */
    /*box-shadow: 0 0 25px rgba(255, 105, 180, 0.4),*/ /* Glow effect for pink */
                /*0 0 40px rgba(255, 105, 180, 0.2);*/
    /* max-width: 500px; Limit size of the image frame if necessary */
    width: 100%; /* Make it responsive within its grid column */
    max-width: 1000px; /* Optional: control max size */
    min-height: 400px;
  }
  
  .bpo-image {
    display: block;
    width: 100%;
    height: auto; /* Maintain aspect ratio */
    object-fit: cover;
    border-radius: 15px; /* Rounded corners for the image itself, smaller than frame */
  }
  
  
  /* Responsive Adjustments */
  @media (max-width: 992px) {
    .bpo-main-title {
      font-size: 3rem;
    }
    .bpo-content-wrapper {
      grid-template-columns: 1fr; /* Stack columns */
      gap: 50px;
      max-width: 700px; /* Adjust max-width for single column layout */
    }
    .bpo-services-list {
      order: 1; /* Keep services list first when stacked */
    }
    .bpo-image-showcase {
      order: 2; /* Image below services when stacked */
      margin-top: 0;
      padding-top: 0;
      justify-content: center;
    }
    .bpo-image-frame {
       margin-left: auto;
       margin-right: auto;
    }
    .bpo-service-description-main {
      max-width: none; /* Allow full width in single column */
    }
  }
  
  @media (max-width: 768px) {
    .bpo-section-container {
      padding: 60px 15px 80px;
    }
    .bpo-main-title {
      font-size: 2.5rem;
    }
    .bpo-main-description {
      font-size: 1rem;
    }
    .bpo-service-title-main {
      font-size: 1.35rem;
    }
  }
  
  @media (max-width: 480px) {
    .bpo-main-title {
      font-size: 2.1rem;
    }
    .bpo-service-item {
      font-size: 1rem;
      padding: 15px 0;
    }
    .bpo-image-frame {
      padding: 10px;
      border-radius: 20px;
    }
    .bpo-image {
      border-radius: 12px;
    }
  }




.software-container {
  background-color: #191414;
  background-image: radial-gradient(ellipse at 45% 40%, rgba(204, 10, 10, 0.305), transparent 60%);
  color: #f3f0f0;
  display: flex;
  flex-direction: column;
  align-items: center;    /* Horizontally centers the h1 and p */
  justify-content: flex-start; /* Vertically moves the block of h1 and p to the top */
  min-height: calc(100vh - 90px); /* 90px is the padding-top from .app-content for the navbar */
  text-align: center; /* Centers text within h1 and p */
  box-sizing: border-box;
  padding-bottom: 0px; /* Increased padding at the bottom to give images more space if needed */
  overflow-x: hidden; /* Prevent horizontal scroll if images with transform go out slightly */
}

.software-container h1 {
  font-family: 'Poppins Bold', sans-serif;
  font-size: 4.5rem;
  max-width: 800px;
  margin-bottom: 18px;
  font-weight: bold;
  padding-top: 150px; 
}

.software-container p {
  font-size: 1.2rem;
  max-width: 900px;
  color: #989797b4;
  font-family: 'Poppins Bold', sans-serif;
  text-align: center;
  line-height: 1.5;
  margin-bottom: 55px;
}

/* .software-logo class was present but not used in Software.js, can be kept or removed */
.software-logo {
  width: 100%;
  height: auto;
}

.software-cta {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 0px; /* Gap handled by image showcase margin-top */
  margin-top: 0px;
  width: 100%; /* Ensure CTA takes width for centering its children */
}

.software-getstarted-logo {
  background-color: #b60707f2;
  position: relative;
  right: 5.5rem; /* Aligns with the screen */
  top: 3%;
  display: flex;
  justify-content: center;
  padding-top: 0.9rem; /* Adjusts the height of the button */
  padding-bottom: 0.9rem; /* Adjusts the height of the button */
  padding-left: 1.5rem; /* Adjusts the width of the button */
  padding-right: 1.5rem; /* Adjusts the width of the button */
  border-radius: 100px;
  transform: translateY(-50%); /* Vertically centers Get Started button */
  align-items: center;
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.7), /* Inner, more defined part of the glow */
  0 0 15px rgba(255, 255, 255, 0.5); /* Outer, more diffuse part of the glow */
  color: white; /* Or #FFFFFF */
  font-size: 1.1rem;
  text-decoration: none;
  font-family: 'Poppins', sans-serif;
  text-shadow: #f3f1f1f5;
}

.software-requestademo-logo {
  position: relative;
  left: 7.5rem;
  bottom: 3.7rem;
  display: flex;
  font-family: 'Poppins', sans-serif;
  font-size: 1.2rem;
  text-shadow: #f3f1f1f5;
  color: #f3e5e5;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem; /* space between text and arrow */
  transition: all 0.3s ease;
}

.software-requestademo-logo:hover {
  color: #ffffff;
  transform: scale(1.05) translateX(2px); /* Minor move on hover */
}

.software-requestademo-logo .arrow {
  font-size: 1.2rem; /* Slightly adjusted */
  transition: transform 0.3s ease;
  font-family: Arial, sans-serif;
}

.software-getstarted-logo:hover {
  cursor: pointer;
  opacity: 0.8;
}


/* Container for the three software images */
.software-image-showcase {
display: flex;
justify-content: center;
align-items: center; 
gap: 10px; 
margin-top: 40px;  /* Reduced margin-top to bring images up */
width: 100%;       
padding-bottom: 0px; 
position: relative; 
}

/* Common styles for all three images */
.software-image-left,
.software-image-middle,
.software-image-right {
  border-radius: 20px;
  object-fit: cover;
  height: 100%; /* Maintain aspect ratio */
  width: 100%;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
  opacity: 0.6; /* Full opacity to start */
  mask-image: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.6) 0%,
    rgba(0, 0, 0, 0.4) 70%,
    rgba(0, 0, 0, 0.2) 85%,
    rgba(0, 0, 0, 0.1) 95%
  );
  
}

.software-image-left {
  transform: translateY(40%);
  width: 33%; /* Approximate desired proportion */
  min-width: 160px; /* Minimum size on small containers */
  max-width: 420px; /* Maximum size on large containers */
  z-index: 1; /* Behind middle image */
}

.software-image-middle {
  width: 33%; /* Larger proportion for the middle image */
  min-width: 200px; 
  max-width: 520px; 
  z-index: 2; /* In front of side images */
}

.software-image-right {
  transform: translateY(35%);
  width: 33%; 
  min-width: 160px; 
  max-width: 420px; 
  z-index: 1; /* Behind middle image */
}

/* Responsive adjustments for images */
@media (max-width: 992px) {
.software-container h1 {
  font-size: 3.5rem; /* Adjust heading size */
  padding-top: 120px;
}
.software-container p {
  font-size: 1.1rem;
  margin-bottom: 40px;
}
.software-getstarted-logo {
  right: 4rem;
  font-size: 1rem;
  padding: 0.6rem 1.8rem;
}
.software-requestademo-logo {
  left: 5.5rem;
  bottom: 3rem; /* Adjust relative to first button */
  font-size: 1rem;
}

.software-image-showcase {
  margin-top: 30px; /* Further adjust spacing */
}
.software-image-left {
  width: clamp(180px, 20vw, 230px);
}
.software-image-middle {
  width: clamp(220px, 25vw, 280px);
}
.software-image-right {
  width: clamp(180px, 20vw, 230px);
}
}

@media (max-width: 768px) {
.software-container h1 {
  font-size: 2.8rem;
  padding-top: 100px;
}
 .software-container p {
  font-size: 1rem;
  max-width: 90%;
}
/* Stack buttons on mobile and center them */
.software-getstarted-logo,
.software-requestademo-logo {
  position: static; /* Reset relative positioning */
  transform: none;  /* Reset transforms */
  margin: 10px auto; /* Center them with auto margins */
  width: fit-content; /* Adjust width to content */
  display: flex; /* ensure they behave as block for margin auto */
}
.software-requestademo-logo {
   margin-bottom: 20px; /* Space before image showcase */
}

.software-image-showcase {
  display: flex;
  justify-content: center; /* Centers the group of images */
  align-items: center;    /* Vertically aligns images if heights differ */
  gap: 0px;               /* No explicit gap, overlap is controlled by transforms */
  margin-top: 40px;       /* Space below the buttons (adjust as needed) */
  width: 100%;            /* Showcase itself takes full available width */
  padding-bottom: 30px;
  position: relative; 
}

.software-image-left,
.software-image-middle,
.software-image-right {
  transform: none;
  z-index: auto;
  width: 60%; 
  max-width: 240px; 
  opacity: 0.85; /* Slightly more opaque on mobile if preferred */
  mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 60%, rgba(0,0,0,0) 100%);
}
.software-image-middle {
  width: 65%; 
  max-width: 260px;
}
}

@media (max-width: 480px) {
.software-container h1 {
  font-size: 2.2rem;
  padding-top: 80px;
}
.software-container p {
  font-size: 0.9rem;
}
.software-getstarted-logo, .software-requestademo-logo {
  font-size: 0.9rem;
  padding: 0.5rem 1.5rem;
}
.software-image-left,
.software-image-middle,
.software-image-right {
  width: 70%;
  max-width: 200px;
}
.software-image-middle {
  width: 75%;
  max-width: 220px;
}
.software-image-showcase {
  margin-top: 15px;
  gap: 20px;
}
}


.about-alpha-juliet-section {
    background-color: #0c0b0b; /* Very dark background */
    color: #e0e0e0; /* Light grey text for paragraphs */
    padding: 80px 20px; /* Generous padding */
    font-family: 'Poppins Bold', sans-serif; /* Or your preferred font */
    line-height: 1.7;
    min-height: 70vh; /* Ensure it takes up a good portion of the viewport */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
  }
  
  .about-content-container {
    display: flex;
    align-items: center; /* Vertically align items in the flex container */
    max-width: 1500px; /* Max width of the content */
    width: 100%;
    gap: 200px; /* Space between image column and text column */
  }
  
  .about-images-column {
    flex: 1 1; /* Takes up available space */
    position: relative; /* Crucial for absolute positioning of images */
    min-width: 300px; /* Minimum width for the image column */
    height: 450px; /* Approximate height to contain the images, adjust as needed */
    /* border: 1px solid red; */ /* For debugging layout */
  }
  
  .about-image {
    position: absolute;
    border-radius: 15px; /* Rounded corners for images */
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3); /* Softer shadow for depth */
    object-fit: cover; /* Ensures images cover their bounds well */
    transition: transform 0.3s ease-out;
  }
  
  /*
    Adjust top, left, transform: rotate(), width, and z-index
    to match the desired collage effect. This will require fine-tuning.
  */
  .image-software-top-left { /* AJ-AboutUsMild.png - Mechanical one */
    width: 60%; /* Adjust size */
    top: -100px;
    left: 50px;
    transform: rotate(-1deg);
    z-index: 1;
  }
  
  .image-software-top-right-dashboards { /* AJ-SecondAboutUs.png - Dashboards */
    width: 60%; /* Adjust size */
    top: -90px; /* Adjust vertical position */
    right: -90px; /* Adjust horizontal position, allow some overlap */
    transform: rotate(1deg);
    z-index: 2;
  }
  
  .image-software-bottom-middle-brain { /* AJ-FirstAboutUs.png - Brain one */
    width: 60%; /* Adjust size, this one is more prominent */
    bottom: -150px; /* Position at the bottom of the relative container */
    left: 60%;
    transform: translateX(-50%) rotate(-2deg); /* Center it and slightly rotate */
    z-index: 3; /* On top of others */
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4); /* More prominent shadow */
  }
  
  .about-text-column {
    flex: 1.2 1; /* Give text column slightly more space */
    min-width: 300px;
    /* border: 1px solid blue; */ /* For debugging layout */
  }
  
  .about-text-column h2 {
    font-size: 2.8em; /* Large heading */
    color: #ffffff; /* White heading */
    margin-bottom: 30px;
    font-weight: bold;
  }
  
  .about-text-column p {
    font-size: 1em; /* Standard paragraph size */
    margin-bottom: 20px;
    color: #c7c7c7; /* Slightly lighter than default for better readability */
  }
  
  .our-story-button {
    background-color: #d9363e; /* Red button color */
    color: #ffffff;
    border: none;
    padding: 12px 30px;
    font-size: 1em;
    font-weight: bold;
    border-radius: 25px; /* Pill shape */
    cursor: pointer;
    margin-top: 20px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 4px 15px rgba(217, 54, 62, 0.4); /* Glow effect */
  }
  
  .our-story-button:hover {
    background-color: #c22d35; /* Darker red on hover */
    transform: translateY(-2px);
  }
  
  /* Responsive Adjustments */
  @media (max-width: 992px) {
    .about-content-container {
      flex-direction: column;
      text-align: center; /* Center text when stacked */
    }
  
    .about-images-column {
      height: 400px; /* Adjust height for smaller screens */
      margin-bottom: 40px; /* Space between images and text */
      width: 80%; /* Make image container wider for better display */
      max-width: 500px; /* But not too wide */
    }
  
    .image-top-left {
      width: 55%;
      left: 5%;
    }
    .image-top-right-dashboards {
      width: 60%;
      right: 5%;
      top: 20px;
    }
    .image-bottom-middle-brain {
      width: 70%;
    }
  
    .about-text-column {
      align-items: center; /* Center button */
      display: flex;
      flex-direction: column;
    }
    .about-text-column h2 {
      font-size: 2.4em;
    }
  }
  
  @media (max-width: 768px) {
    .about-alpha-juliet-section {
      padding: 60px 15px;
    }
    .about-images-column {
      height: 350px;
      width: 90%;
    }
    .image-top-left { width: 50%; left: 2%; }
    .image-top-right-dashboards { width: 55%; right: 2%; top: 15px; }
    .image-bottom-middle-brain { width: 65%; }
  
    .about-text-column h2 {
      font-size: 2em;
    }
    .about-text-column p {
      font-size: 0.95em;
    }
    .our-story-button {
      padding: 10px 25px;
      font-size: 0.95em;
    }
  }
  
  @media (max-width: 480px) {
      .about-images-column {
          height: 280px; /* Further reduce for very small screens */
          width: 100%;
      }
      .image-top-left { width: 50%; transform: rotate(-5deg); left: 0;}
      .image-top-right-dashboards { width: 50%; transform: rotate(3deg); right: 0; top: 10px;}
      .image-bottom-middle-brain { width: 60%; transform: translateX(-50%) rotate(0deg); }
  
      .about-text-column h2 {
          font-size: 1.8em;
      }
  }




.our-services-section-container {
    background-color: #0d0d0d; /* Very dark background from the image */
    color: #e0e0e0; /* Light greyish default text color */
    padding: 80px 20px 60px; /* Top, horizontal, bottom padding */
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 0px; /* Moves the top up - kept as per original */
    width: 100%;
    font-family: 'Poppins Bold', sans-serif; /* Fallback if not globally set */
  }
  
  .our-services-header {
    text-align: center;
    max-width: 1400px; 
    margin-left: auto; 
    margin-right: auto; 
    margin-bottom: 60px;
  }
  
  .our-services-main-title {
    font-size: 4rem; /* Large title */
    font-weight: 600; /* Bold */
    color: #ffffff;
    margin-bottom: 20px;
  }
  
  .our-services-main-description {
    font: 'Poppins Bold'; 
    font-size: 1.2rem;
    font-weight: 300;
    color: #a0a0a0; /* Slightly darker grey for description */
    line-height: 1.7;
    max-width: 1000px; 
    margin-left: auto;
    margin-right: auto;
  }
  
  .our-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px 30px; /* Row gap, Column gap */
    width: 100%;
    max-width: 1500px; /* Max width for the grid itself */
    margin-left: auto;
    margin-right: auto;
  }
  
  .our-services-item {
    display: flex;
    flex-direction: column;
   
  }
  .service-icon-container {
    width: 60px; /* Size of the red circle */
    height: 60px;
    background-color: #cc0000; /* Strong red color from image */
    border-radius: 50%; /* Makes it a circle */
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px; /* Space between icon and title */
  }
  
  .service-icon-img {
    width: 28px; /* Size of the icon inside the circle */
    height: 28px;
  }
  
  .service-title {
    font-size: 1.25rem;
    font-weight: 600; /* Semi-bold */
    color: #e9bebe; /* White or very light pinkish from image */
    margin-bottom: 0px; 
    margin-bottom: 5px; 
  }
  
  .service-item-description {
    font-size: 1.1rem;
    font-weight: 300;
    
    color: #999999; /* Grey for description */
    line-height: 1.6;
    flex-grow: 1; /* Allows description to take space if items have uneven heights */
  }
  
  @media (max-width: 992px) {
    .our-services-main-title {
      font-size: 3rem;
    }
    .our-services-grid {
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px 25px;
    }
  }
  
  @media (max-width: 768px) {
    .our-services-section-container {
      padding: 60px 15px 40px;
    }
    .our-services-main-title {
      font-size: 2.5rem;
    }
    .our-services-main-description {
      font-size: 1rem;
    }
    .our-services-grid {
      grid-template-columns: 1fr;
      gap: 35px;
    }
    .our-services-item {
      align-items: center; /* Center content when stacked */
      text-align: center;
    }
    .service-icon-container { 
    }
  }
  
  @media (max-width: 480px) {
    .our-services-main-title {
      font-size: 2.1rem;
    }
    .service-title {
      font-size: 1.15rem;
    }
   
  }


.BPO-hero-section {
  display: flex; /* Arranges .BPO-container and .BPO-image-showcase side-by-side */
  align-items: center; /* Vertically aligns the content of both columns */
  min-height: calc(100vh - 90px); /* Full viewport height minus assumed navbar height */
  background-color: #191414;
  /* Subtle gradient originating from the left, as in the target image */
  background-image: radial-gradient(ellipse at 20% 50%, rgba(204, 10, 10, 0.25), transparent 70%);
  color: #f3f0f0;
  box-sizing: border-box;
  padding: 40px 5%; /* Overall padding for the section */
  overflow: hidden; /* Prevents scrollbars if content slightly overflows during responsive adjustments */
}

/* Styles for the LEFT column (text content) */
.BPO-container {
  margin-left: 100px;
  flex-basis: 50%; /* Takes up 50% of the BPO-hero-section width */
  display: flex;
  flex-direction: column;
  justify-content: center;  /* Vertically centers its content (h1, p, cta) */
  align-items: flex-start;  /* Horizontally aligns its content to the start (left) */
  padding-right: 30px;      /* Adds some spacing between text and the image column */
  box-sizing: border-box;
  /* Resetting/removing styles that are now handled by BPO-hero-section or not needed for left-alignment */
  min-height: auto;
  padding-bottom: 0;
  background-image: none; /* Background is on .BPO-hero-section now */
  text-align: left; /* Default text alignment for children */
}

/* H1 styles - keeping user's font-size, adjusting for new layout */
.BPO-container h1 {
  font-family: 'Poppins Bold', sans-serif;
  font-size: 4.5rem; /* As per user's original CSS */
  max-width: 500px;   /* Takes full width of its parent (.BPO-container) */
  margin-bottom: 25px;
  font-weight: bold;
  padding-top: 0; /* Vertical centering handled by flexbox on .BPO-container */
  text-align: left; /* Explicitly left-align */
  color: #FFFFFF;   /* Bright white for heading */
  line-height: 1.15;
}

/* Paragraph styles - keeping user's font-size, adjusting for new layout */
.BPO-container p {
  font-size: 1.2rem; /* As per user's original CSS */
  max-width: 680px;   /* Slightly less than full width of parent */
  color: #c0c0c0;   /* Lighter gray than original for better visibility, like target */
  font-family: 'Poppins', sans-serif; /* Regular Poppins for paragraph, not Bold, as in target */
  text-align: left; /* Explicitly left-align */
  line-height: 1.6;
  font-weight: 300;
  margin-bottom: 40px;
}

/* CTA buttons container - adjusting for new layout */
.BPO-cta {
  display: flex;
  flex-direction: row; /* Buttons side-by-side */
  align-items: center; /* Align buttons vertically */
  gap: 25px;           /* Space between buttons */
  /* Resetting previous positioning attempts */
  position: static;
  left: auto;
  margin-top: 0;
}

/* "Explore Our Services" button - preserving core styles, adapting layout */
.BPO-getstarted-logo {
  background-color: #b60707f2;
  position: static;
  right: auto;
  top: auto;
  display: inline-block;
  padding-top: 0.9rem; /* Adjusts the height of the button */
  padding-bottom: 0.9rem; /* Adjusts the height of the button */
  padding-left: 1.5rem; /* Adjusts the width of the button */
  padding-right: 1.5rem; /* Adjusts the width of the button */
  border-radius: 100px;
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.7), /* Inner, more defined part of the glow */
  0 0 15px rgba(255, 255, 255, 0.5); /* Outer, more diffuse part of the glow */
  color: white; /* Or #FFFFFF */
  font-size: 1.1rem;
  text-decoration: none;
  font-family: 'Poppins', sans-serif;
  text-shadow: #f3f1f1f5;
}

.BPO-getstarted-logo:hover {
  cursor: pointer;
  opacity: 0.8;
}

/* "Request a Demo" link - preserving core styles, adapting layout */
.BPO-requestademo-logo {
  position: static;
  align-items: center;
  justify-content: center;
  left: auto;
  bottom: auto;
  font-family: 'Poppins', sans-serif;
  font-size: 1.2rem;
  text-shadow: #f3f1f1f5;
  color: #f3e5e5;
  text-decoration: none;
  display: inline-flex;
  gap: 0.5rem; /* space between text and arrow */
  transition: all 0.3s ease;
}

.BPO-requestademo-logo:hover {
  color: #ffffff;
  transform: scale(1.05) translateX(2px); /* Minor move on hover */
}

.BPO-requestademo-logo .arrow {
  font-size: 1.3rem;
  transition: transform 0.3s ease;
  font-family: Arial, sans-serif;
  /* Ensure you changed the arrow to ">" in BPO.js */
}

.BPO-image-showcase {
  transform: scale(0.9);
  flex-basis: 50%;
  display: grid;
  grid-template-columns: repeat(1fr, 1fr);
  grid-template-rows: repeat(1fr, 1fr);
  gap: 0px; /* space between images */
  padding: 10px;
  box-sizing: border-box;
  align-items: center;
  justify-items: center;
}

.BPO-image-showcase img {
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-right: 120px;
  max-width: auto;
  height: auto;
  border-radius: 20px;
  box-shadow: 0px 15px 35px -10px rgba(0, 0, 0, 0.3), 0px 8px 15px -8px rgba(0, 0, 0, 0.25);
  object-fit: cover;
  mask-image: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.6) 0%,
    rgba(0, 0, 0, 0.4) 70%,
    rgba(0, 0, 0, 0.2) 85%,
    rgba(0, 0, 0, 0.1) 95%
  );
}

/* If you want the large image on the left and the smaller ones stacked on the right: */
.BPO-big-logo {
  transform: translateX(5px) translateY(65px);
  grid-column: 1 / 2;
  grid-row: 1 / 3; /* Span both rows */
  align-self: center;
}

.BPO-small-logo1 {
  transform: translateY(70px) scale(0.9);
  grid-column: 2 / 3;
  grid-row: 1 / 2;
}

.BPO-small-logo2 {
  transform: translateY(50px) scale(0.9);
  grid-column: 2 / 3;
  grid-row: 2 / 3;
}


.our-services-section-container {
    background-color: #0d0d0d; /* Very dark background from the image */
    color: #e0e0e0; /* Light greyish default text color */
    padding: 80px 20px 60px; /* Top, horizontal, bottom padding */
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 0px; /* Moves the top up - kept as per original */
    width: 100%;
    font-family: 'Poppins Bold', sans-serif; /* Fallback if not globally set */
  }
  
  .our-services-header {
    text-align: center;
    max-width: 1400px; 
    margin-left: auto; 
    margin-right: auto; 
    margin-bottom: 60px;
  }
  
  .our-services-main-title {
    font-size: 4rem; /* Large title */
    font-weight: 600; /* Bold */
    color: #ffffff;
    margin-bottom: 20px;
  }
  
  .our-services-main-description {
    font: 'Poppins Bold'; /* Note: This CSS syntax might be an issue, typically font-family and font-weight are separate */
                           /* Or it refers to a specific font name 'Poppins Bold'. Assuming it works as intended. */
    font-size: 1.2rem;
    font-weight: 300;
    color: #a0a0a0; /* Slightly darker grey for description */
    line-height: 1.7;
    max-width: 1000px; 
    margin-left: auto;
    margin-right: auto;
  }
  
  .our-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px 30px; /* Row gap, Column gap */
    width: 100%;
    max-width: 1500px; /* Max width for the grid itself */
    margin-left: auto;
    margin-right: auto;
  }
  
  .our-services-item {
    display: flex;
    flex-direction: column;
    /* align-items: flex-start; /* Align content to the start (left) */
    /* padding: 10px; Optional additional padding within each item */
  }
  
  /* Reusing styles for inner elements of a service item as their appearance is identical */
  .service-icon-container {
    width: 60px; /* Size of the red circle */
    height: 60px;
    background-color: #cc0000; /* Strong red color from image */
    border-radius: 50%; /* Makes it a circle */
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px; /* Space between icon and title */
  }
  
  .service-icon-img {
    width: 28px; /* Size of the icon inside the circle */
    height: 28px;
    /* If your icons are black and need to be white: */
    /* filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(100%) contrast(100%); */
  }
  
  .service-title {
    font-size: 1.25rem;
    font-weight: 600; /* Semi-bold */
    color: #e9bebe; /* White or very light pinkish from image */
    margin-bottom: 0px; /* Adjusted from 10px to 0px to match image more closely if needed, or keep 10px as in original */
                       /* Looking at the image, 0px or a very small margin like 5px might be more accurate here. */
                       /* The original HomeSoftware.css had 10px. Let's check the image. The provided image for "Our Services" seems to have less space than 10px, maybe more like 5-8px. */
                       /* I'll set it to 5px as a compromise. */
    margin-bottom: 5px; 
  }
  
  .service-item-description {
    font-size: 1.1rem;
    font-weight: 300;
    /* font: 'Poppins Bold'; /* Original CSS had this. If it's a specific font, okay. Otherwise, it's usually font-family, font-weight etc. */
                           /* Let's assume 'Poppins Bold' is a valid font or intended style from the original. */
    color: #999999; /* Grey for description */
    line-height: 1.6;
    flex-grow: 1; /* Allows description to take space if items have uneven heights */
  }
  
  /* Responsive Adjustments - Copied and adapted from HomeSoftware.css */
  @media (max-width: 992px) {
    .our-services-main-title {
      font-size: 3rem;
    }
    .our-services-grid {
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px 25px;
    }
  }
  
  @media (max-width: 768px) {
    .our-services-section-container {
      padding: 60px 15px 40px;
    }
    .our-services-main-title {
      font-size: 2.5rem;
    }
    .our-services-main-description {
      font-size: 1rem;
    }
    .our-services-grid {
      grid-template-columns: 1fr;
      gap: 35px;
    }
    .our-services-item {
      align-items: center; /* Center content when stacked */
      text-align: center;
    }
    .service-icon-container { /* This will be centered due to .our-services-item align-items: center */
      /* margin-left: auto; /* Not strictly needed if parent is centering */
      /* margin-right: auto; */
    }
  }
  
  @media (max-width: 480px) {
    .our-services-main-title {
      font-size: 2.1rem;
    }
    .service-title {
      font-size: 1.15rem;
    }
    /* .learn-more-software-button related styles removed */
  }


.bpo-question-page {
    background-color: #100e0e; /* Dark background */
    min-height: 100vh;
    padding: 60px 0; /* Responsive padding */
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    width: 100vw;
    align-items: center;
    font-family: 'Poppins Bold', sans-serif; /* Default font */
    color: #e0e0e0; /* Default light text color */
}

.bpo-question-header {
    width: 100%;
    text-align: center;
    margin-bottom: 60px; /* Space below header */
    max-width: auto;
    padding: 0 20px; /* Internal padding for header text on smaller screens / if no max-width */
    box-sizing: border-box; /* Centered by align-items on .bpo-question-page */
}

.bpo-question-header h1 {
    font-size: clamp(2.4rem, 5vw, 3.2rem); /* Responsive font size */
    font-weight: 600; /* Bold */
    color: #FFFFFF;
    margin-bottom: 15px;
    line-height: 1.2;
}

.bpo-question-header .subtitle {
    font-size: clamp(1rem, 2.5vw, 1.15rem);
    color: #b0b0b0; /* Light gray for subtitle */
    line-height: 1.6;
    font-weight: 300;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
}

.bpo-content-block {
    display: flex;
    align-items: center; /* Vertically align card and image container */
    position: relative;
    width: 100%;
    height: 100%;
    margin-left: 100px;
}

.text-card {
    transform: scale(1.3);
    background-color: #2a2a2a;
    padding: 35px 40px;
    border-radius: 18px;
    /* Text card takes a smaller portion of the width */
    flex-shrink: 0; /* Prevent card from shrinking if space is tight */
    width: 38%;    /* Relative width for the text card */
    max-width: 800px; /* Max width for the text card to prevent it becoming too wide on large screens */
    height: auto;
    box-shadow: 0px 20px 45px rgba(0, 0, 0, 0.4); /* Enhanced shadow */
    z-index: 2; /* Ensure card is above the image */
    position: relative;
    /* Give card some space from the left edge of the screen */
    margin-left: 14%; 
    /* Negative margin to pull the image under its right side */
    /* This value makes the text card visually overlap about 1/3 to 1/2 of its width over the image. */
    /* (Assumes image starts right after text card before this margin) */
    margin-right: -15%; /* Adjust this for more/less overlap with the larger image */
    font-weight: 300;
    color: #cccccc;
}

.text-card h2 {
    font-size: clamp(1.4rem, 3.5vw, 1.8rem);
    color: #FFFFFF;
    font-weight: 600; /* Semi-bold */
    margin-bottom: 25px;
    line-height: 1.3;
    /* font-family: 'Poppins Bold', sans-serif; */
}

.text-card p {
    font-size: clamp(0.85rem, 2vw, 0.95rem);
    line-height: 1.75;
    margin-bottom: 18px;
    color: #b8b8b8; /* Light gray text for paragraphs */
}

.text-card p:last-of-type {
    margin-bottom: 30px; /* More space before the button */
}

.cta-button {
    display: inline-block;     /* so it responds to text-align */
    transform: scale(0.75);
    background-color: #b60707f2; /* Red button */
    padding-top: 0.9rem; /* Adjusts the height of the button */
    padding-bottom: 0.9rem; /* Adjusts the height of the button */
    padding-left: 1.5rem; /* Adjusts the width of the button */
    padding-right: 1.5rem; /* Adjusts the width of the button */
    border-radius: 100px;
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.7), /* Inner, more defined part of the glow */
    0 0 15px rgba(255, 255, 255, 0.5); /* Outer, more diffuse part of the glow */
    color: white; /* Or #FFFFFF */
    font-size: 1.1rem;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    text-shadow: #f3f1f1f5;
}

.cta-button:hover {
    cursor: pointer;
    opacity: 0.8;
}

.image-container {
    margin-top: 3%;
    transform: translateX(-3%) scale(1.15);
    /* Image container takes the remaining width and is allowed to grow */
    flex-grow: 1;
    z-index: 1; /* Behind the text card */
    position: relative;
    display: flex;
    /* The image itself will define height, container adapts */
    height: 80vh; /* Make the image container very tall */
    max-height: 850px; /* Cap max height for extremely tall screens */
    min-height: auto; /* Ensure it's substantially tall */
    justify-content: flex-end;
    margin-right: 300px;
    align-items: center;
}

.image-container img {
    width: auto; /* Image fills its container width */
    height: 100%; /* Image fills its container height */
    /* max-width: 580px; <-- REMOVED, image will fill its larger container */
    border-radius: 18px; /* Rounded corners on all sides as per target image */
    object-fit: cover;
    box-shadow: 0px 10px 30px rgba(0,0,0,0.2); /* Subtle shadow for image */
}

/* Responsive adjustments for smaller screens */
@media (max-width: 900px) {
    .bpo-question-page {
        padding: 40px 0; /* Adjust top/bottom padding */
    }
    .bpo-content-block {
        flex-direction: column;
        align-items: center;
    }

    .text-card {
        width: 85%; /* Card takes most of the width */
        max-width: 500px; /* Cap width */
        margin-left: auto;  /* Center the card */
        margin-right: auto; /* Center the card */
        margin-bottom: -70px; /* Increased negative margin for overlap */
        order: 2; /* Text card below image visually */
    }

    .image-container {
        width: 90%; /* Image container slightly wider or same as card */
        max-width: 580px;
        order: 1; /* Image on top */
        height: 55vh; /* Adjust height for tablet */
        min-height: 400px;
        margin-left: auto;
        margin-right: auto;
    }

    .image-container img {
        border-radius: 18px; /* Ensure all corners are rounded */
    }
}

@media (max-width: 500px) {
    .bpo-question-page {
        padding: 30px 0;
    }
    .bpo-question-header {
        padding: 0 15px; /* Less padding for header on mobile */
        margin-bottom: 30px;
    }
    .text-card {
        width: 90%;
        padding: 25px 30px;
        margin-bottom: -50px;
    }
    .image-container {
        width: 100%; /* Image can be full-bleed if card has margins */
        height: 45vh;
        min-height: 350px;
    }
     .text-card h2 {
        font-size: 1.3rem;
    }
    .text-card p {
        font-size: 0.8rem;
    }
    .cta-button {
        font-size: 0.9rem;
        padding: 10px 24px;
    }
}


.bpo-services-section {
    margin-bottom: -200px;
    background-color: #161616; /* Very dark background for the section */
    padding: 70px 5%; /* Generous padding */
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    color: #e0e0e0; /* Default light text color */
    min-height: 100vh; /* Optional: if this section should fill screen height */
    width: auto;
}

.bpo-services-header {
    text-align: center;
    margin-bottom: 60px;
}

.bpo-services-header h2 {
    font-size: clamp(2.5rem, 5vw, 3.3rem); /* Responsive main title */
    font-size: 4.5rem;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 15px;
    line-height: 1.2;
}

.bpo-services-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.15rem);
    color: #a0a0a0; /* Lighter gray for subtitle */
    max-width: 650px;
    margin: 0 auto; /* Center the subtitle if it's not full width */
    line-height: 1.6;
    font-weight: 300;
}

.bpo-services-cards-container {
    min-height: auto;
    display: flex;
    justify-content: center; /* Center cards if they don't fill the width */
    align-items: stretch; /* Make cards same height if content differs */
    gap: 30px; /* Space between cards */
    flex-wrap: wrap; /* Allow cards to wrap on smaller screens */
}

.bpo-service-card {
    padding: 20px;
    background-color: #231415; /* Dark gray for card background */
    border-radius: 20px; /* Rounded corners for the card */
    overflow: hidden; /* To ensure image corners conform to card radius */
    box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.25); /* Subtle shadow */
    display: flex;
    flex-direction: column;
    width: auto; /* Full width on small screens before wrapping */
    height: auto;
    max-width: 360px; /* Max width for each card on larger screens */
    
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bpo-card-image-wrapper {
    width: 100%;
    height: 220px; /* Fixed height for the image area */
    overflow: hidden; /* Ensure image doesn't break out */
}

.bpo-card-image {
    border-radius: 20px;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Cover the area, might crop image */
    display: block;
}

.bpo-card-content {
    padding: 25px 10px 10px; /* Padding inside the text content area */
    flex-grow: 1; /* Allows content area to take remaining space in card */
    display: flex;
    flex-direction: column;
}

.bpo-card-step-label {
    transform: scale(1.2);
    display: inline-block;
    background-color: #5C4346; /* Muted purple/brownish color from image */
    color: #E9C4C2;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 6px 15px; /* Padding for the label */
    border-radius: 30px; /* Pill shape */
    margin-bottom: 0px;
    align-self: flex-start; /* Align label to the start */
}

.bpo-card-content h3 {
    font-size: 1.45rem; /* Title size within card */
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 0px;
    line-height: 1.3;
}

.bpo-card-content p {
    font-size: 0.95rem; /* Description text size */
    color: #b0b0b0; /* Lighter gray for description */
    line-height: 1.65;
    flex-grow: 1; /* Helps push content down if card height is flexed */
    margin-bottom: 0; /* Remove bottom margin if it's the last element */
    font-weight: 400;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .bpo-service-card {
        max-width: calc(50% - 15px); /* Two cards per row, considering the gap */
    }
}

@media (max-width: 768px) {
    .bpo-services-header h2 {
        font-size: clamp(2rem, 6vw, 2.8rem);
    }
    .bpo-services-subtitle {
        font-size: clamp(0.9rem, 3vw, 1.05rem);
    }
    .bpo-services-cards-container {
        gap: 25px;
    }
    .bpo-service-card {
        max-width: 450px; /* Allow cards to be a bit wider when stacked */
        /* Or keep calc(100%) if you want them to take full width if only one per row */
    }
     .bpo-card-image-wrapper {
        height: 200px;
    }
    .bpo-card-content h3 {
        font-size: 1.3rem;
    }
    .bpo-card-content p {
        font-size: 0.9rem;
    }
}

@media (max-width: 500px) {
    .bpo-services-section {
        padding: 50px 4%;
    }
    .bpo-services-header {
        margin-bottom: 40px;
    }
     .bpo-service-card {
        max-width: 100%; /* Full width for single card stack */
    }
}


.software-container {
    background-color: #191414;
    background-image: radial-gradient(ellipse at 45% 40%, rgba(204, 10, 10, 0.305), transparent 60%);
    color: #f3f0f0;
    display: flex;
    flex-direction: column;
    align-items: center;    /* Horizontally centers the h1 and p */
    justify-content: flex-start; /* Vertically moves the block of h1 and p to the top */
    min-height: calc(100vh - 90px); /* 90px is the padding-top from .app-content for the navbar */
    text-align: center; /* Centers text within h1 and p */
    box-sizing: border-box;
    padding-bottom: 0px; /* Increased padding at the bottom to give images more space if needed */
    overflow-x: hidden; /* Prevent horizontal scroll if images with transform go out slightly */
  }
  
  .software-container h1 {
    font-family: 'Poppins Bold', sans-serif;
    font-size: 4.5rem;
    max-width: 800px;
    margin-bottom: 18px;
    font-weight: bold;
    padding-top: 150px; 
  }
  
  .software-container p {
    font-size: 1.2rem;
    max-width: 900px;
    color: #989797b4;
    font-family: 'Poppins Bold', sans-serif;
    text-align: center;
    line-height: 1.5;
    margin-bottom: 55px;
  }
  
  /* .software-logo class was present but not used in Software.js, can be kept or removed */
  .software-logo {
    width: 100%;
    height: auto;
  }
  
  .software-cta {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 0px; /* Gap handled by image showcase margin-top */
    margin-top: 0px;
    width: 100%; /* Ensure CTA takes width for centering its children */
  }
  
  .software-getstarted-logo {
    background-color: #b60707f2;
    position: relative;
    right: 5.5rem; /* Aligns with the screen */
    top: 3%;
    display: flex;
    justify-content: center;
    padding-top: 0.9rem; /* Adjusts the height of the button */
    padding-bottom: 0.9rem; /* Adjusts the height of the button */
    padding-left: 1.5rem; /* Adjusts the width of the button */
    padding-right: 1.5rem; /* Adjusts the width of the button */
    border-radius: 100px;
    transform: translateY(-50%); /* Vertically centers Get Started button */
    align-items: center;
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.7), /* Inner, more defined part of the glow */
    0 0 15px rgba(255, 255, 255, 0.5); /* Outer, more diffuse part of the glow */
    color: white; /* Or #FFFFFF */
    font-size: 1.1rem;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    text-shadow: #f3f1f1f5;
  }
  
  .software-requestademo-logo {
    position: relative;
    left: 7.5rem;
    bottom: 3.7rem;
    display: flex;
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    text-shadow: #f3f1f1f5;
    color: #f3e5e5;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem; /* space between text and arrow */
    transition: all 0.3s ease;
  }
  
  .software-requestademo-logo:hover {
    color: #ffffff;
    transform: scale(1.05) translateX(2px); /* Minor move on hover */
  }
  
  .software-requestademo-logo .arrow {
    font-size: 1.2rem; /* Slightly adjusted */
    transition: transform 0.3s ease;
    font-family: Arial, sans-serif;
  }
  
  .software-getstarted-logo:hover {
    cursor: pointer;
    opacity: 0.8;
  }
  
  
  /* Container for the three software images */
  .software-image-showcase {
  display: flex;
  justify-content: center;
  align-items: center; 
  gap: 10px; 
  margin-top: 40px;  /* Reduced margin-top to bring images up */
  width: 100%;       
  padding-bottom: 0px; 
  position: relative; 
  }
  
  /* Common styles for all three images */
  .software-image-left,
  .software-image-middle,
  .software-image-right {
    border-radius: 20px;
    object-fit: cover;
    height: 100%; /* Maintain aspect ratio */
    width: 100%;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
    opacity: 0.6; /* Full opacity to start */
    mask-image: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.6) 0%,
      rgba(0, 0, 0, 0.4) 70%,
      rgba(0, 0, 0, 0.2) 85%,
      rgba(0, 0, 0, 0.1) 95%
    );
    
  }
  
  .software-image-left {
    width: 33%; /* Approximate desired proportion */
    min-width: 160px; /* Minimum size on small containers */
    max-width: 420px; /* Maximum size on large containers */
    z-index: 1; /* Behind middle image */
  }
  
  .software-image-middle {
    width: 33%; /* Larger proportion for the middle image */
    min-width: 200px; 
    max-width: 520px; 
    z-index: 2; /* In front of side images */
  }
  
  .software-image-right {
    width: 33%; 
    min-width: 160px; 
    max-width: 420px; 
    z-index: 1; /* Behind middle image */
  }
  
  /* Responsive adjustments for images */
  @media (max-width: 992px) {
  .software-container h1 {
    font-size: 3.5rem; /* Adjust heading size */
    padding-top: 120px;
  }
  .software-container p {
    font-size: 1.1rem;
    margin-bottom: 40px;
  }
  .software-getstarted-logo {
    right: 4rem;
    font-size: 1rem;
    padding: 0.6rem 1.8rem;
  }
  .software-requestademo-logo {
    left: 5.5rem;
    bottom: 3rem; /* Adjust relative to first button */
    font-size: 1rem;
  }
  
  .software-image-showcase {
    margin-top: 30px; /* Further adjust spacing */
  }
  .software-image-left {
    width: clamp(180px, 20vw, 230px);
  }
  .software-image-middle {
    width: clamp(220px, 25vw, 280px);
  }
  .software-image-right {
    width: clamp(180px, 20vw, 230px);
  }
  }
  
  @media (max-width: 768px) {
  .software-container h1 {
    font-size: 2.8rem;
    padding-top: 100px;
  }
   .software-container p {
    font-size: 1rem;
    max-width: 90%;
  }
  /* Stack buttons on mobile and center them */
  .software-getstarted-logo,
  .software-requestademo-logo {
    position: static; /* Reset relative positioning */
    transform: none;  /* Reset transforms */
    margin: 10px auto; /* Center them with auto margins */
    width: fit-content; /* Adjust width to content */
    display: flex; /* ensure they behave as block for margin auto */
  }
  .software-requestademo-logo {
     margin-bottom: 20px; /* Space before image showcase */
  }
  
  .software-image-showcase {
    display: flex;
    justify-content: center; /* Centers the group of images */
    align-items: center;    /* Vertically aligns images if heights differ */
    gap: 0px;               /* No explicit gap, overlap is controlled by transforms */
    margin-top: 40px;       /* Space below the buttons (adjust as needed) */
    width: 100%;            /* Showcase itself takes full available width */
    padding-bottom: 30px;
    position: relative; 
  }
  
  .software-image-left,
  .software-image-middle,
  .software-image-right {
    transform: none;
    z-index: auto;
    width: 60%; 
    max-width: 240px; 
    opacity: 0.85; /* Slightly more opaque on mobile if preferred */
    mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 60%, rgba(0,0,0,0) 100%);
  }
  .software-image-middle {
    width: 65%; 
    max-width: 260px;
  }
  }
  
  @media (max-width: 480px) {
  .software-container h1 {
    font-size: 2.2rem;
    padding-top: 80px;
  }
  .software-container p {
    font-size: 0.9rem;
  }
  .software-getstarted-logo, .software-requestademo-logo {
    font-size: 0.9rem;
    padding: 0.5rem 1.5rem;
  }
  .software-image-left,
  .software-image-middle,
  .software-image-right {
    width: 70%;
    max-width: 200px;
  }
  .software-image-middle {
    width: 75%;
    max-width: 220px;
  }
  .software-image-showcase {
    margin-top: 15px;
    gap: 20px;
  }
  }


.ai-page-container {
    background-color: #0d0d0d; /* Very dark background from the image */
    color: #e0e0e0; /* Light greyish text color */
    min-height: 100vh; /* Ensure it takes at least full viewport height */
    padding: 10px 20px 60px; /* Top, horizontal, bottom padding */
    margin-bottom: -120px;
    display: flex;
    flex-direction: column;
    align-items: center; /* Center the content section horizontally */
    font-family: 'Poppins', sans-serif; /* Assuming Poppins is available */
  }
  
  .ai-content-section {
    max-width: 1500px; /* Max width for the content area */
    width: 100%;
    text-align: center; /* Center text elements within this section */
  }
  
  .ai-main-title {
    font-family: 'Poppins Bold', sans-serif; /* Or 'Poppins' with font-weight: bold; */
    font-size: 4.5rem; /* Large title */
    color: #ffffff;
    margin-bottom: 25px;
    font-weight: bold;
  }
  
  .ai-main-description {
    font-size: 1.8rem;
    font-weight: 300;
    max-width: 1050px; /* Control line length for readability */
    color: #b0b0b0; /* Slightly muted grey for description */
    line-height: 1.7;
    margin: 0 auto 10px auto; /* Center description block and add bottom margin */
  }
  
  .ai-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* Responsive grid */
    gap: 35px; /* Gap between cards */
    width: 100%;
  }
  
  .ai-service-card {
    background-color: #252525; /* Dark grey for card background, slightly lighter than page */
    border-radius: 15px; /* Rounded corners for the card */
    overflow: hidden; /* Crucial for making image corners follow border-radius */
    text-align: center;
    display: flex;
    flex-direction: column;
    box-shadow: 0 8px 25px rgba(0,0,0,0.4); /* Soft shadow for depth */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .ai-card-image-container {
    aspect-ratio: 1 / 1;
    position: relative;
    width: 100%;
    padding: 25px;
    /* The image itself should have rounded corners as well, or this container handles it with overflow:hidden on .ai-service-card */
    /* No fixed height here, let the image define aspect ratio or set one */
  }
  
  .ai-homecard-image {
    width: 100%;
    object-fit: cover; /* Use if setting a fixed height */
    display: block; /* Remove extra space below image */
    border-top-left-radius: 15px; /* Match card radius */
    border-top-right-radius: 15px; /* Match card radius */
    /* If .ai-service-card has overflow:hidden, these image radii are not strictly needed but don't hurt */
  }
  
  .ai-card-title-text {
    font-family: 'Poppins', sans-serif;
    font-size: 1.45rem; /* Font size for card titles */
    font-weight: 450; /* Semi-bold */
    color: #f0c0c0; /* Light pinkish-white color for card titles from image */
    padding-top: 25px;
    padding-bottom: 0px;
    margin: 0; /* Reset default margin */
    flex-grow: 0; /* Allows title area to take remaining space if needed */
    display: flex;
    align-items: center; /* Vertically center text if there's extra space */
    text-align: center;
    justify-content: center; /* Horizontally center text */
  }
  
  /* Responsive adjustments */
  @media (max-width: 992px) {
    .ai-main-title {
      font-size: 3.5rem;
    }
    .ai-main-description {
      font-size: 1.05rem;
    }
    .ai-learn-more-button {
      padding: 12px 30px;
      font-size: 1rem;
      margin-bottom: 50px;
    }
    .ai-card-title-text {
      font-size: 1.3rem;
    }
  }
  
  @media (max-width: 768px) {
    .ai-page-container {
      padding: 60px 15px 40px;
    }
    .ai-main-title {
      font-size: 2.8rem;
    }
    .ai-main-description {
      font-size: 1rem;
      margin-bottom: 30px;
    }
    .ai-learn-more-button {
      margin-bottom: 40px;
    }
    .ai-cards-grid {
      grid-template-columns: 1fr; /* Stack cards on smaller screens */
      gap: 30px;
    }
     .ai-service-card {
      max-width: 450px; /* Limit card width when stacked */
      margin-left: auto;
      margin-right: auto;
    }
    .ai-card-title-text {
      font-size: 1.25rem;
      padding: 20px 15px;
    }
  }
  
  @media (max-width: 480px) {
    .ai-main-title {
      font-size: 2.3rem;
    }
    .ai-card-title-text {
      font-size: 1.15rem;
    }
  }


body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    background-color: #181515; /* Dark background with a hint of warmth, similar to image */
    color: #ffffff; /* Default text color */
}

.contact-page-wrapper {
    margin-top: 7%;
    margin-bottom: -250px;
    display: flex;
    justify-content: center;
    align-items: flex-start; /* Align content to the top */
    min-height: 100vh;
    padding: 50px 20px; /* Padding around the main content area */
    box-sizing: border-box;
    /* Subtle grid pattern for the background */
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 40px 40px; /* Size of the grid squares */
}

.contact-container {
    display: flex;
    max-width: 1200px; /* Adjust based on desired max width */
    width: 100%;
    gap: 50px; /* Space between left and right sections */
}

/* Left Section: Info */
.contact-info-section {
    flex: 1 1;
    padding-top: 10px; /* Align top content slightly with form title */
}

.contact-info-section h1 {
    font-size: 3.2em; /* Adjusted for two lines */
    font-weight: 700;
    color: #ffffff;
    margin-top: 0;
    margin-bottom: 20px;
    line-height: 1.25;
}

.contact-info-section .subtitle {
    font-size: 1.1em;
    color: #b0b0b0;
    margin-bottom: 30px;
    line-height: 1.6;
    max-width: 450px; /* Constrain width for better readability */
}

.contact-map-image {
    width: 100%;
    max-width: 500px; /* Control map size */
    height: auto;
    border-radius: 8px;
    margin-bottom: 30px;
    display: block; /* Remove extra space below image */
}

.address-details .detail-item {
    display: flex;
    align-items: flex-start; /* Align icon with the top of the text */
    margin-bottom: 18px;
    font-size: 1em;
    color: #d0d0d0;
}

.address-details .icon {
    font-size: 1.4em; /* Icon size */
    margin-right: 15px;
    color: #cccccc;
    line-height: 1.4; /* Align icon better with multi-line text if any */
}

.address-details .detail-item div p {
    margin: 0 0 5px 0; /* Space between lines of address */
    line-height: 1.4;
}
.address-details .detail-item div p:last-child {
    margin-bottom: 0;
}
.address-details .detail-item > p { /* For single line details like phone */
    margin: 0;
    line-height: 1.4;
}


/* Right Section: Form */
.contact-form-wrapper {
    flex: 1 1;
    background-color: #1e1e1e; /* Dark gray form background */
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.contact-form-wrapper h2 {
    font-size: 1.75em;
    font-weight: 600;
    color: #ffffff;
    margin-top: 0;
    margin-bottom: 10px;
}

.contact-form-wrapper .form-subtitle {
    font-size: 0.95em;
    color: #a0a0a0;
    margin-bottom: 30px;
    line-height: 1.5;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form-row .form-group {
    flex: 1 1; /* Each group in a row takes equal space */
}
.form-row .form-group:last-child {
    margin-bottom: 0; /* if it's the only thing causing bottom margin in form-row */
}


.form-group {
    margin-bottom: 20px; /* Default bottom margin for single column groups */
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.9em;
    color: #c0c0c0;
    font-weight: 500;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group textarea {
    width: 100%;
    padding: 14px 16px; /* Generous padding for a taller feel */
    background-color: #2c2c2c; /* Input field background */
    border: 1px solid #3a3a3a; /* Subtle border */
    border-radius: 8px;
    color: #e0e0e0;
    font-size: 1em;
    box-sizing: border-box;
    transition: border-color 0.2s ease-in-out;
}

.form-group input[type="text"]::placeholder,
.form-group input[type="email"]::placeholder,
.form-group input[type="tel"]::placeholder,
.form-group textarea::placeholder {
    color: #757575;
}

.form-group input[type="text"]:focus,
.form-group input[type="email"]:focus,
.form-group input[type="tel"]:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #5e5e5e; /* Slightly more prominent border on focus */
}

.form-group textarea {
    resize: vertical;
    min-height: 120px; /* Taller textarea */
}

.submit-button {
    background-color: #e53935; /* Red submit button */
    color: white;
    padding: 14px 30px;
    border: none;
    border-radius: 30px; /* Pill shape */
    font-size: 1.1em;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s ease;
    width: 100%;
    margin-top: 10px; /* Space above the button */
}

.submit-button:hover {
    background-color: #c62828; /* Darker red on hover */
}

/* Responsive Adjustments */
@media (max-width: 992px) { /* Tablet and below */
    .contact-container {
        flex-direction: column;
        gap: 40px;
    }

    .contact-info-section h1 {
        font-size: 2.8em;
    }
    .contact-info-section .subtitle {
        max-width: 100%; /* Allow subtitle to use full width */
    }
    .contact-map-image {
        max-width: 100%; /* Map takes full width of its column */
    }
}

@media (max-width: 768px) { /* Smaller tablets / large phones */
    .contact-page-wrapper {
        padding: 30px 15px;
    }
    .contact-info-section h1 {
        font-size: 2.4em;
    }
    .contact-form-wrapper h2 {
        font-size: 1.6em;
    }
    .form-row {
        flex-direction: column;
        gap: 0; /* Remove gap as they stack */
    }
    .form-row .form-group {
        margin-bottom: 20px; /* Add margin back for stacked items */
    }
}

@media (max-width: 480px) { /* Mobile phones */
    .contact-info-section h1 {
        font-size: 2em;
    }
    .contact-info-section .subtitle {
        font-size: 1em;
    }
    .contact-form-wrapper {
        padding: 25px;
    }
    .contact-form-wrapper h2 {
        font-size: 1.4em;
    }
    .form-group input[type="text"],
    .form-group input[type="email"],
    .form-group input[type="tel"],
    .form-group textarea {
        padding: 12px 14px;
    }
    .submit-button {
        padding: 12px 25px;
        font-size: 1em;
    }
}



*, *::before, *::after {
    box-sizing: border-box;
  }
  
  html, body {
    margin: 0;
    padding: 0;
    background-color: #191414;
  }
  
  /* 2. Ensure root fills the screen */
  #root {
    width: 100%;
    min-height: 100dvh;     /* better than 100vh for mobile */
    background-color: #191414;
  }
  
