/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial Nova Light', Arial, sans-serif;
    font-weight: 300;
    line-height: 1.4;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Banner/Header Styles */
.banner {
    background: white;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.banner-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    min-height: 75px;
    line-height: 1;
}

/* Logo Section */
.logo-section {
    display: flex;
    align-items: center;
    gap: 15px;
    height: 45px;
    line-height: 1;
}

.logo-carousel {
    position: relative;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.logo-icon {
    position: absolute;
    width: 45px;
    height: 45px;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
    border-radius: 8px;
}

.logo-icon.active {
    opacity: 1;
}

.company-name {
    height: auto;
    max-height: 45px;
    width: auto;
    display: flex;
    align-items: center;
    object-fit: contain;
    margin: 0;
    padding: 0;
    transform: translateY(3px);
}

/* Navigation Styles */
.navigation {
    display: flex;
    align-items: center;
}

.nav-desktop {
    display: flex;
    gap: 30px;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 400;
    font-size: 16px;
    padding: 10px 15px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: #7030A0;
    font-weight: bold;
    font-family: Arial, sans-serif;
}

/* Special styling for Contact button */
.nav-link[href="#contact"] {
    border-radius: 25px;
}

.nav-link[href="#contact"]:hover {
    background-color: #7030A0;
    color: white;
    font-weight: bold;
    font-family: Arial, sans-serif;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.email-icon {
    width: 32px;
    height: 32px;
}

.hamburger-line {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    flex-direction: column;
    background: white;
    border-top: 1px solid #e0e0e0;
    padding: 20px 0;
}

.mobile-menu.active {
    display: flex;
}

.mobile-nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 400;
    font-size: 16px;
    padding: 15px 20px;
    border-bottom: 1px solid #f0f0f0;
    transition: background-color 0.3s ease;
}

.mobile-nav-link:hover {
    background-color: #f8f9fa;
}

/* Hero Section Styles */
.hero {
    background-color: white;
    padding: 80px 0;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-text {
    padding-right: 40px;
}

.hero-title {
    font-family: 'Train Led', Arial, sans-serif;
    font-size: 3.5rem;
    font-weight: normal;
    color: #333;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-family: Arial, sans-serif;
    font-size: 1.4rem;
    font-weight: 400;
    color: #333;
    line-height: 1.3;
    margin-bottom: 20px;
}

.service-description {
    font-family: 'Arial Nova Light', Arial, sans-serif;
    font-weight: 300;
    line-height: 1.1;
    color: #666;
}

/* Override Arial Nova Light with Arial Bold for strong elements */
.service-description strong {
    font-family: Arial, sans-serif !important;
    font-weight: bold !important;
    font-style: normal !important;
}

/* Lifecycle Section */
.lifecycle-section {
    text-align: left;
    margin: 30px 0 40px 0;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.lifecycle-title {
    font-family: 'Train Led', Arial, sans-serif;
    font-size: 1.4rem;
    font-weight: normal;
    color: #333;
    margin: 30px 0;
    line-height: 1.2;
    padding: 2.5px 0;
}

.lifecycle-image {
    width: 100%;
    max-width: 1200px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    margin: 0 auto;
    display: block;
}

/* Learn More Button */
.learn-more-desktop {
    display: block;
}

.learn-more-btn {
    display: inline-block;
    text-decoration: none;
    transition: all 0.3s ease;
}

.learn-more-btn:hover {
    transform: translateY(-2px);
}

.learn-more-text {
    font-family: 'Train Led', Arial, sans-serif;
    font-size: 0.9rem;
    font-weight: normal;
    color: #333;
    background: white;
    padding: 9px 18px;
    border: none;
    border-radius: 25px;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.learn-more-btn:hover .learn-more-text {
    background: #f5f5f5;
    color: #333;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    transform: translateY(-1px);
}

/* Our Services Section */
.our-services {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    background-image: url('contactless-payment-background.png?v=1761165345');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 80px 0;
    position: relative;
}

.our-services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(248, 249, 250, 0.8);
    z-index: 1;
}

.our-services .container {
    position: relative;
    z-index: 2;
}

.services-header {
    text-align: left;
    margin-bottom: 40px;
}

.services-title {
    font-size: 2.5rem;
    font-weight: normal;
    color: #333;
    margin-bottom: 20px;
    font-family: 'Train Led', Arial, sans-serif;
}

.services-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin: 0;
    line-height: 1.4;
    font-family: 'Arial Nova Light', Arial, sans-serif;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.service-icon {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.service-title {
    font-size: 1.4rem;
    font-weight: normal;
    color: #333;
    margin-bottom: 15px;
    font-family: 'Train Led', Arial, sans-serif;
}

.service-description {
    font-size: 1rem;
    color: #666;
    line-height: 1.3;
    font-family: 'Arial Nova Light', Arial, sans-serif;
    font-weight: 300;
    text-align: left;
}

/* Hanging indent for bullet points in service descriptions */
.service-description {
    text-indent: 0;
}

/* Apply hanging indent to lines that start with bullet character */
.service-description br + • {
    text-indent: -15px;
    padding-left: 15px;
}

/* Hanging indent for bullet text lines */
.service-description {
    white-space: pre-line;
}

/* Apply hanging indent to bullet lines */
.service-description {
    text-indent: 0;
}

.service-description br + • {
    text-indent: -15px;
    padding-left: 15px;
}

/* Force hanging indent on all bullet lines */
.service-description {
    line-height: 1.3;
}

.service-description {
    text-indent: hanging 15px;
}

/* Style bullet points with proper hanging indent aligned with paragraph text */
.service-description ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.service-description li {
    position: relative;
    padding-left: 15px;
    margin-bottom: 6px;
    text-indent: -15px;
    line-height: 1.3;
}

.service-description li:before {
    content: '•';
    color: #7030A0;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0;
}



/* Mobile Responsive */
@media (max-width: 768px) {
    .our-services {
        padding: 60px 0;
    }
    
    .services-title {
        font-size: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .service-card {
        padding: 25px;
    }
}

/* Hero Images Grid */
.hero-images {
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 0; /* No gaps between images */
    width: 450px;
    height: 450px;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.grid-position {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.grid-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0; /* No individual border radius for seamless grid */
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
}

.grid-image.active {
    opacity: 1;
}

/* Services and Contact Sections */
.services {
    background-color: #f8f9fa;
    padding: 60px 0;
    text-align: center;
}

.contact {
    background-color: white;
    padding: 60px 0;
    text-align: center;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        gap: 40px;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .image-grid {
        width: 350px;
        height: 350px;
    }
}

@media (max-width: 768px) {
    .nav-desktop {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .logo-carousel {
        width: 40px;
        height: 40px;
    }
    
    .logo-icon {
        width: 40px;
        height: 40px;
    }
    
    .company-name {
        height: 35px;
    }
    
    .banner-content {
        padding: 10px 0;
    }
    
    /* Hero Mobile Styles */
    .hero {
        padding: 60px 0;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    /* Hide Learn More button on mobile */
    .learn-more-desktop {
        display: none;
    }
    
    /* Hero Mobile Styles */
    .hero {
        padding: 60px 0;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    
    .hero-text {
        padding-right: 0;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .image-grid {
        width: 300px;
        height: 300px;
        gap: 0;
    }
}

@media (max-width: 480px) {
    .logo-section {
        gap: 10px;
    }
    
    .company-name {
        height: 30px;
    }
    
    .logo-carousel {
        width: 35px;
        height: 35px;
    }
    
    .logo-icon {
        width: 35px;
        height: 35px;
    }
}

/* Introducing Section */
.introducing-section {
    background: white;
    padding: 80px 0;
}

.introducing-title {
    font-family: 'Train Led', Arial, sans-serif;
    font-size: 2.5rem;
    font-weight: normal;
    color: #333;
    margin-bottom: 30px;
    text-align: left;
}

.introducing-description {
    font-family: Arial, sans-serif;
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 50px;
}

.team-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.team-member-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.member-layout {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 20px;
}

.member-photo {
    flex-shrink: 0;
}

.member-info {
    flex: 1;
}

.profile-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.member-name {
    font-family: 'Train Led', Arial, sans-serif;
    font-size: 1.4rem;
    color: #333;
    margin: 0 0 8px 0;
    font-weight: normal;
}

.member-role {
    font-family: 'Arial Nova Light', Arial, sans-serif;
    font-size: 1rem;
    font-weight: bold;
    color: #666;
    margin: 0 0 15px 0;
    line-height: 1.2;
}

.member-description {
    font-family: 'Arial Nova Light', Arial, sans-serif;
    font-size: 0.95rem;
    color: #666;
    line-height: 1.3;
    margin: 0;
    text-align: left;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .introducing-section {
        padding: 60px 0;
    }
    
    .introducing-title {
        font-size: 2rem;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .profile-image {
        width: 50px;
        height: 50px;
    }
}

/* Contact Section */
.contact {
    background: #f8f9fa url('contact-background.jpg') center/cover no-repeat;
    padding: 80px 0;
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(248, 249, 250, 0.8);
    z-index: 1;
}

.contact .container {
    position: relative;
    z-index: 2;
}

.contact-title {
    font-family: 'Train Led', Arial, sans-serif;
    font-size: 2.5rem;
    font-weight: normal;
    color: #333;
    margin-bottom: 40px;
    text-align: left;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    align-items: start;
}

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

.contact-description {
    font-family: 'Arial Nova Light', Arial, sans-serif;
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    text-align: left;
}

.contact-email {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 30px 0;
}

.email-link {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: inherit;
}

.email-link:hover {
    opacity: 1;
}

.email-link:hover .email-address {
    color: #7030A0;
}

.email-address {
    font-family: 'Arial Nova Light', Arial, sans-serif;
    font-size: 1.1rem;
    color: #333;
}
.linkedin-link:hover {
    color: #7030A0;
}

/* Service Images Styling */
.service-image {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
    margin: 20px 0;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    object-fit: contain;
}

/* Responsive adjustments for service images */
@media (max-width: 768px) {
    .service-image {
        margin: 15px 0;
    }
}xt-decoration: none;
    font-family: Arial, sans-serif;
    font-weight: bold;
}

.linkedin-link:hover {
    text-decoration: underline;
}

/* Contact Form Styling */
.contact-right {
    padding-left: 20px;
}

.contact-form-container {
    background: white;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    max-width: 650px;
    margin-left: auto;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group input,
.form-group select {
    padding: 12px 16px;
    border: 2px solid #e1e5e9;
    border-radius: 8px;
    font-family: 'Arial Nova Light', Arial, sans-serif;
    font-size: 14px;
    color: #333;
    background: white;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #7030A0;
    box-shadow: 0 0 0 3px rgba(112, 48, 160, 0.1);
}

.form-group input::placeholder {
    color: #999;
    font-family: 'Arial Nova Light', Arial, sans-serif;
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url('data:image/svg+xml;charset=US-ASCII,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 4 5"><path fill="%23999" d="M2 0L0 2h4zm0 5L0 3h4z"/></svg>');
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 12px;
    padding-right: 40px;
}

.form-label {
    font-family: 'Arial Nova Light', Arial, sans-serif;
    font-size: 14px;
    color: #333;
    margin-bottom: 10px;
    font-weight: 500;
}

.blueprint-info {
    font-family: 'Arial Nova Light', Arial, sans-serif;
    font-size: 12px;
    color: #666;
    line-height: 1.4;
    margin: 10px 0 15px 0;
    text-align: left;
}

.blueprint-question {
    text-align: left !important;
}

.blueprint-category-title {
    font-family: 'Train Led', Arial, sans-serif;
    font-size: 1.1rem;
    font-weight: normal;
    color: #333;
    margin: 20px 0 15px 0;
    text-align: left;
}

.radio-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: left;
}

.radio-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-family: 'Arial Nova Light', Arial, sans-serif;
    font-size: 14px;
    color: #333;
    text-align: left;
    justify-content: flex-start;
    margin-bottom: 8px;
}

.radio-label input[type="radio"] {
    width: 18px;
    height: 18px;
    min-width: 18px;
    min-height: 18px;
    border: 2px solid #e1e5e9;
    border-radius: 50%;
    cursor: pointer;
    accent-color: #7030A0;
    margin-top: 2px;
    flex-shrink: 0;
}

.radio-text {
    user-select: none;
}

.form-privacy {
    margin: 10px 0;
}

.privacy-text {
    font-family: 'Arial Nova Light', Arial, sans-serif;
    font-size: 12px;
    color: #666;
    line-height: 1.4;
    margin: 0;
    text-align: left;
}

.submit-button {
    background: #7030A0;
    color: white;
    border: none;
    padding: 14px 32px;
    border-radius: 25px;
    font-family: Arial, sans-serif;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
    align-self: flex-start;
}

.submit-button:hover {
    background: #5a2580;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(112, 48, 160, 0.3);
}

.submit-button:active {
    transform: translateY(0);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .contact {
        padding: 60px 0;
    }
    
    .contact-title {
        font-size: 2rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-left,
    .contact-right {
        padding: 0;
    }
    
    .contact-form-container {
        margin: 0;
        padding: 30px 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

/* Footer Section */
.footer {
    background: #7030A0 url('footer-background.jpg') center/cover no-repeat;
    padding: 40px 0;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(112, 48, 160, 0.8);
    z-index: 1;
}

.footer .container {
    position: relative;
    z-index: 2;
}

.footer-content {
    display: flex;
    justify-content: flex-end;
}

.footer-text {
    text-align: right;
}

.footer-text p {
    color: white;
    font-family: Arial, sans-serif;
    font-size: 0.9rem;
    margin: 5px 0;
    line-height: 1.4;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .footer {
        padding: 30px 0;
    }
    
    .footer-content {
        justify-content: center;
    }
    
    .footer-text {
        text-align: center;
    }
}

/* Company Name Link */
.company-name-link {
    text-decoration: none;
    display: inline-block;
    transition: opacity 0.3s ease;
}

.company-name-link:hover {
    opacity: 0.8;
}

/* Smooth scrolling for anchor links */
html {
    scroll-behavior: smooth;
}
