/* Android Mobility Page Styles */

@font-face {
    font-family: 'Graphik';
    src: url('../fonts/Graphik-Regular.woff2') format('woff2'),
        url('../fonts/Graphik-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Graphik';
    src: url('../fonts/Graphik-Medium.woff2') format('woff2'),
        url('../fonts/Graphik-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Graphik';
    src: url('../fonts/Graphik-Bold.woff2') format('woff2'),
        url('../fonts/Graphik-Bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');
/* Assuming Graphik is loaded via theme or @font-face already present */

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.am-fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.am-fade-in-up.am-animate {
    opacity: 1;
    transform: translateY(0);
}

.am-fade-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.am-fade-in-left.am-animate {
    opacity: 1;
    transform: translateX(0);
}

.am-fade-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.am-fade-in-right.am-animate {
    opacity: 1;
    transform: translateX(0);
}

/* Stagger delays if needed, but per-section is usually fine without delay */

/* Global Container Override if needed */


.android-mobility-wrapper {
    width: 100%;
    overflow-x: hidden;
    color: #fff;
    /* Default text color white as per dark theme */
}

/* Section 1: Hero Banner */
.am-hero-section {
    position: relative;
    background-image: url('../images/android-mobility-images/hero.png');
    /* Updated to local image */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 150px 0 100px;
    /* Adjust padding to vertically center content */
    min-height: 100vh;
    display: flex;
    align-items: center;
}

/* Overlay to ensure text readability if image is bright, though screenshot shows dark nature */
.am-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0) 100%);
    z-index: 1;
}

.am-hero-section .container {
    position: relative;
    z-index: 2;
}

.am-hero-content h1 {
    font-family: 'Graphik', 'Inter', sans-serif;
    font-style: normal;
    font-weight: 400;
    /* Regular as per screenshot */
    font-size: 70px;
    line-height: 80px;
    letter-spacing: -3px;
    color: #FFFFFF;
    margin-bottom: 24px;
}

.am-hero-content p {
    font-family: 'Graphik', 'Inter', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    /* Updated from screenshot */
    line-height: 26px;
    /* Updated from screenshot */
    color: rgba(255, 255, 255, 0.8);
    /* 80% Opacity */
    max-width: 600px;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .am-hero-section {
        min-height: 60vh;
        padding: 100px 0;
    }

    .am-hero-content h1 {
        font-size: 48px;
        line-height: 56px;
    }
}

@media (max-width: 767px) {
    .am-hero-section {
        background-position: center right;
        /* specific alignment */
    }

    .am-hero-content h1 {
        font-size: 36px;
        line-height: 42px;
        letter-spacing: -1px;
    }

    .am-hero-content p {
        font-size: 16px;
        line-height: 24px;
    }
}

/* Section 2: Solutions */
.am-solutions-section {
    padding: 100px 0;
    background-color: #f9f9f9;
    /* Updated to #f9f9f9 as per request */
    /* White background as per screenshot */
    color: #000;
    /* Dark text for this section */
}

.am-section-header {
    margin-bottom: 60px;
}

.am-subheading {
    font-family: 'Graphik', 'Inter', sans-serif;
    font-size: 20px;
    line-height: 32.5px;
    color: #000000;
    display: block;
    margin-bottom: 10px;
}

.am-section-header h2 {
    font-family: 'Graphik', 'Inter', sans-serif;
    font-weight: 400;
    /* Regular */
    font-size: 60px;
    line-height: 64px;
    letter-spacing: -4.2px;
    color: #000000;
}

.am-solution-row {
    margin-bottom: 80px;
    /* Space between rows if multiple */
}

.am-solution-card {
    padding-right: 20px;
}

.am-icon-box {
    width: 60px;
    height: 60px;
    background: #E8F0F8;
    /* Light blue background from screenshot, approximate */
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.am-icon-box img {
    width: 24px;
    height: auto;
}

.am-solution-card h3 {
    font-family: 'Graphik', 'Inter', sans-serif;
    font-weight: 500;
    /* Medium */
    font-size: 40px;
    line-height: 50px;
    letter-spacing: -1.2px;
    color: #000000;
    margin-bottom: 20px;
}

.am-solution-card p {
    font-family: 'Inter', sans-serif;
    /* Using Inter for body text as per standard or fallback */
    font-weight: 400;
    /* Regular */
    font-size: 20px;
    line-height: 24px;
    color: rgba(0, 0, 0, 0.6);
    /* 60% opacity */
    margin-bottom: 30px;
}

.am-solution-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.am-solution-list li {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    /* Estimated, slightly smaller than body */
    line-height: 28px;
    color: rgba(0, 0, 0, 0.6);
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
}

.am-solution-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: rgba(0, 0, 0, 0.6);
    font-weight: bold;
}

.am-solution-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    /* Rounded corners as per screenshot */
}

/* Responsive Adjustments for Section 2 */
@media (max-width: 991px) {
    .am-section-header h2 {
        font-size: 48px;
        line-height: 54px;
        letter-spacing: -2px;
    }

    .am-solution-card h3 {
        font-size: 32px;
        line-height: 40px;
    }

    .am-solution-image {
        margin-top: 40px;
    }
}

/* Section 3: Why Team Computers */
.am-why-tc-section {
    padding: 100px 0;
    background-color: #fff;
    overflow: hidden;
    /* Prevent horizontal scrollbar if carousel overflows */
}

.am-why-tc-section .container {
    padding-right: 15px;
    /* Default BS padding, or keep it removed if we want strictly edge-to-edge content, but we want alignment. Defaults are better. */
    /* Reverting to default Bootstrap container behavior to ensure left alignment matches other sections */
}

/* ... existing styles ... */

.am-cards-carousel {
    margin-top: 60px;
    width: calc(50vw + 50%);
    /* Extends from the container's left edge to the viewport's right edge */
}

.am-why-tc-section .am-section-title {
    font-family: 'Graphik', 'Inter', sans-serif;
    font-weight: 500;
    /* Medium */
    font-size: 50px;
    line-height: 60px;
    letter-spacing: -2px;
    color: #000000 !important;
    /* Force black color */
    margin-bottom: 0;
}

.am-why-tc-section .am-why-subheading {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    /* Regular */
    font-size: 20px;
    line-height: 28px;
    color: rgba(0, 0, 0, 0.6) !important;
    /* Force color */
    display: block;
}

.am-cards-carousel {
    margin-top: 60px;
}

.am-carousel-item {
    margin: 0 15px;
    /* Add margin for spacing between cards */
}

/* Ensure images fill the card */
.am-card-image {
    transform: rotateY(180deg);
}

.am-card-image img {
    width: 100%;
    height: auto;
    aspect-ratio: 3/2;
    /* Enforce consistent aspect ratio */
    object-fit: cover;
    /* Ensure image covers the area without distortion */
    border-radius: 20px;
    margin-bottom: 24px;
}

.am-feature-card {
    text-align: left;
}

.am-feature-card h3 {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    /* SemiBold */
    font-size: 20px;
    line-height: 28px;
    color: #000000;
    margin-bottom: 12px;
}

.am-feature-card p {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    /* Regular */
    font-size: 16px;
    line-height: 24px;
    color: rgba(0, 0, 0, 0.6);
}

.am-stats-row {
    margin-top: 80px;
}

.am-stat-number {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    /* Bold */
    font-size: 60px;
    line-height: 64px;
    color: #0c5adb;
    /* Approximated Blue from logo/screenshot */
    margin-bottom: 10px;
}

.am-stat-label {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 16px;
    color: rgba(0, 0, 0, 0.6);
}

/* Responsive Adjustments for Section 3 */
@media (max-width: 991px) {
    .am-section-title {
        font-size: 40px;
        line-height: 48px;
        margin-bottom: 20px;
    }

    .am-why-subheading {
        text-align: left !important;
        /* Force left align on mobile */
    }

    .am-card-image img {
        margin-bottom: 16px;
    }
}

/* Section 4: Our Products */
.am-products-section {
    padding: 100px 0;
    background-color: #F9F9F9;
}

.am-products-section .am-section-title {
    font-family: 'Graphik', 'Inter', sans-serif;
    font-weight: 500;
    font-size: 48px;
    line-height: 56px;
    color: #000000;
    margin-bottom: 10px;
}

.am-section-subtitle {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 28px;
    color: #000000;
    display: block;
    margin-bottom: 40px;
}

/* Filters */
.am-product-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.am-filter-btn {
    border: 1px solid #E2E8F0;
    background-color: #FFFFFF;
    color: #0F172A;
    border-radius: 50px;
    /* Pillow shape pills */
    padding: 10px 24px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
}

.am-filter-btn:hover {
    background-color: #F1F5F9;
    color: #0F172A;
}

.am-filter-btn.active {
    background-color: #0c5adb;
    /* Blue */
    color: #FFFFFF;
    border-color: #0c5adb;
}

/* Product Cards */
.am-product-card {
    background: #FFFFFF;
    border-radius: 20px;
    padding: 40px 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    border: 1px solid #E2E8F0;
    /* Subtle border */
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.am-product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.am-product-img-wrapper {
    margin-bottom: 24px;
    height: 250px;
    /* Fixed height for consistency */
    display: flex;
    align-items: center;
    justify-content: center;
}

.am-product-img-wrapper img {
    max-height: 100%;
    width: auto;
}

.am-product-title {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 18px;
    line-height: 24px;
    color: #0F172A;
    margin-bottom: 8px;
}

.am-product-specs {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #0F172A;
    /* Or simpler black/grey mix */
    opacity: 0.8;
    /* Slight fade */
    margin-bottom: 16px;
    flex-grow: 1;
    /* Push link to bottom if varying heights */
}

.am-product-link {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 14px;
    color: #0c5adb;
    text-decoration: none;
    transition: color 0.2s ease;
    display: none;
}

.am-product-link:hover {
    color: #0842a0;
}

.am-product-link i {
    margin-left: 5px;
    font-size: 12px;
}

.am-btn-primary {
    background-color: #0c5adb;
    color: #FFFFFF;
    border-radius: 8px;
    /* Standard button radius */
    padding: 12px 32px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 16px;
    border: none;
    transition: background-color 0.3s ease;
}

.am-btn-primary:hover {
    background-color: #0842a0;
    color: #FFFFFF;
}

/* Responsive */
@media (max-width: 767px) {
    .am-product-filters {
        gap: 10px;
    }

    .am-filter-btn {
        padding: 8px 16px;
        font-size: 13px;
    }
}

/* Section 5: Our Customers */
.am-customers-section {
    padding: 80px 0;
    /* Background removed from here */
}

.am-customers-section .container {
    background-color: #E0EBF4;
    border-radius: 21px;
    /* Requested radius */
    padding: 36px 15px 67px;
    /* Inner padding */
}

.am-customers-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    /* Approx 17.44px */
    color: #0F172A;
    padding: 4px 8px;
    /* Subtle spacing */
    display: inline-block;
    margin-bottom: 10px;
    /* Visual highlight from screenshot suggests just text or selection, using plain text for now */
}

.am-customers-section .am-section-title {
    margin-bottom: 40px;
    font-family: 'Graphik', 'Inter', sans-serif !important;
    font-weight: 500;
    font-size: 48px;
    letter-spacing: -2px;
    color: #0F172A !important;
}

.am-logo-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    align-items: center;
}

.am-logo-item {
    background-color: #FFFFFF;
    border-radius: 50px;
    /* Pill shape */
    padding: 10px;
    /* Reduced padding */
    display: flex;
    align-items: center;
    justify-content: center;
    width: 141px;
    /* Fixed width */
    height: 80px;
    /* Fixed height */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    /* Soft shadow */
    transition: transform 0.3s ease;
}

.am-logo-item:hover {
    transform: translateY(-3px);
}

.am-logo-item img {
    max-height: 48px;
    max-width: 100px;
    width: auto;
    object-fit: contain;
}

/* Responsive */
@media (max-width: 767px) {
    .am-logo-grid {
        gap: 15px;
    }

    .am-logo-item {
        width: 120px;
        /* Smaller fixed width on mobile */
        height: 60px;
        padding: 5px;
    }

    .am-customers-section .container {
        padding: 40px 15px;
    }
}

/* Section 6: Use Cases */
.am-use-cases-section {
    padding: 100px 0;
    background-color: #FFFFFF;
}

.am-use-cases-section .am-section-title {
    font-family: 'Graphik', 'Inter', sans-serif !important;
    font-weight: 500;
    font-size: 48px;
    letter-spacing: -2px;
    color: #0F172A !important;
    margin-bottom: 10px;
}

.am-use-cases-section .am-section-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    color: #000000;
    display: block;
    margin-bottom: 60px;
}

.am-use-case-img img {
    border-radius: 20px;
    width: 100%;
    height: auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.am-use-case-content {
    padding-left: 40px;
}

.am-use-case-title {
    font-family: 'Graphik', 'Inter', sans-serif;
    font-weight: 500;
    font-size: 36px;
    line-height: 40px;
    color: #000000;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.am-use-case-desc {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    line-height: 28px;
    color: rgba(0, 0, 0, 0.8);
    margin-bottom: 30px;
}

.am-feature-list {
    list-style: none;
    padding: 0;
    margin: 20px 0 0 0;
}

.am-feature-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: #475569;
}

.am-feature-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    background-color: #64748B;
    border-radius: 50%;
}

.am-use-case-list {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
}

.am-use-case-list li {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    line-height: 28px;
    color: #000000;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.am-use-case-list li i {
    color: #10B981;
    /* Green check */
    margin-right: 15px;
    font-size: 16px;
}

.am-use-case-list li strong {
    font-family: 'Graphik', 'Inter', sans-serif;
    font-weight: 600;
    margin-right: 5px;
}

.am-use-case-btn {
    padding: 14px 32px;
    border-radius: 8px;
}

/* Custom Slider Arrows */

.am-use-cases-slider+.row {
    position: relative;
    z-index: 2;
}

.am-prev-btn,
.am-next-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #FFFFFF;
    border: 1px solid #E2E8F0;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
}

.am-prev-btn:hover,
.am-next-btn:hover {
    background-color: #F8FAFC;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.08);
}

.am-prev-btn svg,
.am-next-btn svg {
    width: 20px;
    height: 20px;
    display: block;
}

.am-prev-btn path,
.am-next-btn path {
    transition: stroke 0.3s;
}

.am-prev-btn:hover path,
.am-next-btn:hover path {
    stroke: #0F172A;
}


/* Section 7: Leaders */
/* ... (existing Section 7 styles remain) ... */

/* Section 8: Contact Form */
.am-contact-section {
    padding: 100px 0;
}

/* Typography Overrides */
.am-contact-section .am-section-title {
    font-family: 'Graphik', 'Inter', sans-serif;
    font-size: 48px;
    font-weight: 500;
    line-height: 48px;
    letter-spacing: -2px;
    color: #FFFFFF;
    margin-bottom: 24px;
}

.am-contact-section .am-section-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 26px;
    letter-spacing: 0px;
    color: rgba(255, 255, 255, 0.8) !important;
    opacity: 1 !important;
    max-width: 530px !important;
}

.am-contact-card {
    border-radius: 20px;
    padding: 40px !important;
    /* Force override bootstrap p-Ig-5 if needed, or adjust classes */
}

/* On desktop, maybe more padding */
@media (min-width: 992px) {
    .am-contact-card {
        padding: 50px !important;
    }

    nav.navbar {
        margin-left: -99px;
    }
}

.am-contact-title {
    font-family: 'Graphik', 'Inter', sans-serif;
    font-size: 28px;
    font-weight: 600;
    color: #0F172A;
}

.am-contact-card .am-form-control {
    height: 50px;
    border-radius: 14px !important;
    border: 1px solid #E2E8F0 !important;
    padding: 10px 15px;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: #334155;
    background-color: #FFFFFF;
}

.am-form-control::placeholder {
    color: #94A3B8;
}

.am-form-control:focus {
    border-color: #3B82F6;
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
    outline: none;
}

/* CF7 Form Styles */
.am-contact-card .wpcf7-form-control-wrap {
    margin-bottom: 16px;
}

.am-contact-card .wpcf7-form-control-wrap[data-name="your-name"],
.am-contact-card .wpcf7-form-control-wrap[data-name="full_name"],
.am-contact-card .wpcf7-form-control-wrap[data-name="name"] {
    margin-bottom: 16px;
}

.am-contact-card .wpcf7-form-control-wrap[data-name="tel"],
.am-contact-card .wpcf7-form-control-wrap[data-name="phone"],
.am-contact-card .wpcf7-form-control-wrap[data-name="contactno"],
.am-contact-card .wpcf7-form-control-wrap[data-name="contact_number"] {
    margin-bottom: 16px;
}

.am-contact-card .wpcf7-form-control-wrap[data-name="your-email"],
.am-contact-card .wpcf7-form-control-wrap[data-name="email"],
.am-contact-card .wpcf7-form-control-wrap[data-name="email_address"] {
    margin-bottom: 16px;
}

.am-contact-card .wpcf7-form-control-wrap[data-name="company"],
.am-contact-card .wpcf7-form-control-wrap[data-name="companyname"],
.am-contact-card .wpcf7-form-control-wrap[data-name="company_name"] {
    margin-bottom: 16px;
}

.am-contact-card .wpcf7-form-control-wrap[data-name="city"] {
    margin-bottom: 16px;
}

.am-contact-card .wpcf7-form-control-wrap[data-name="your-message"],
.am-contact-card .wpcf7-form-control-wrap[data-name="message"] {
    margin-bottom: 20px;
}

.am-contact-card .wpcf7-form-control-wrap input,
.am-contact-card .wpcf7-form-control-wrap select,
.am-contact-card .wpcf7-form-control-wrap textarea {
    height: 50px;
    border-radius: 14px !important;
    border: 1px solid #E2E8F0 !important;
    padding: 10px 15px;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: #334155;
    background-color: #FFFFFF;
    width: 100%;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.am-contact-card .wpcf7-form-control-wrap textarea {
    height: auto;
    min-height: 100px;
    resize: none;
}

.am-contact-card .wpcf7-form-control-wrap input::placeholder,
.am-contact-card .wpcf7-form-control-wrap textarea::placeholder {
    color: #94A3B8;
}

.am-contact-card .wpcf7-form-control-wrap input:focus,
.am-contact-card .wpcf7-form-control-wrap select:focus,
.am-contact-card .wpcf7-form-control-wrap textarea:focus {
    border-color: #3B82F6 !important;
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
    outline: none;
}

.am-contact-card .wpcf7-form-control-wrap select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2394A3B8' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    padding-right: 40px;
}

.am-contact-card .wpcf7-submit {
    height: 50px;
    border-radius: 14px;
    border: none;
    padding: 10px 24px;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #FFFFFF;
    background-color: #0F172A;
    cursor: pointer;
    width: 100%;
    transition: background-color 0.2s, transform 0.2s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.am-contact-card .wpcf7-submit:hover {
    background-color: #283849;
    transform: translateY(-1px);
}

.am-contact-card .wpcf7-submit:active {
    transform: translateY(0);
}

.am-contact-card .wpcf7-validation-error {
    color: #DC3232;
    font-size: 12px;
    margin-top: 4px;
}

.am-contact-card .wpcf7-not-valid-tip {
    color: #DC3232;
    font-size: 12px;
    margin-top: 4px;
}

.am-contact-card .wpcf7-response-output {
    margin: 16px 0 0 0;
    padding: 12px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
}

.am-contact-card .wpcf7-response-output.wpcf7-validation-errors {
    background-color: #FEF2F2;
    color: #DC2626;
}

.am-contact-card .wpcf7-response-output.wpcf7-mail-sent-ok {
    background-color: #F0FDF4;
    color: #16A34A;
}

.am-contact-card .wpcf7-spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #FFFFFF;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.am-contact-card .form-row {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.am-contact-card .form-row>.wpcf7-form-control-wrap {
    flex: 1;
    min-width: calc(50% - 8px);
}

.am-contact-card .form-row>.wpcf7-form-control-wrap:has([name="city"]),
.am-contact-card .form-row>.wpcf7-form-control-wrap:has([name="company"]),
.am-contact-card .form-row>.wpcf7-form-control-wrap:has([name="companyname"]) {
    flex: 1;
    min-width: calc(50% - 8px);
}

.am-contact-card .form-row>.wpcf7-form-control-wrap:only-child {
    flex: 1 1 100%;
}

@media (max-width: 767px) {
    .am-contact-card .form-row {
        flex-direction: column;
    }

    .am-contact-card .form-row>.wpcf7-form-control-wrap {
        min-width: 100%;
    }
}

/* Section 8: Contact Form */
/* ... existing styles ... */
textarea.am-form-control {
    height: auto;
    resize: none;
}

/* Section 9: Blogs */
.am-blog-section {
    padding: 100px 0;
    background-color: #FFFFFF;
}

.am-blog-section .am-section-title {
    font-family: 'Graphik', 'Inter', sans-serif;
    font-size: 48px;
    font-weight: 500;
    line-height: 48px;
    letter-spacing: -2px;
    color: #0F172A;
    margin-bottom: 24px;
}

.am-blog-card {
    background-color: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.am-blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.am-blog-img-wrapper {
    height: 240px;
    background-color: #F1F5F9;
    overflow: hidden;
}

.am-blog-img-wrapper img {
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.am-blog-card:hover .am-blog-img-wrapper img {
    transform: scale(1.05);
}

.am-blog-content {
    padding: 24px;
}

.am-blog-date {
    font-family: 'Graphik', 'Inter', sans-serif;
    font-size: 12px;
    line-height: 16px;
    font-weight: 400;
    color: #0957D0;
    margin-bottom: 12px;
}

.am-blog-title {
    font-family: 'Graphik', 'Inter', sans-serif;
    font-size: 18px;
    line-height: 28px;
    font-weight: 600;
    color: #0F172A;
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    /* Optional: min-height: 84px; to align buttons if needed */
}

.am-blog-read-more {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #2563EB;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: gap 0.2s ease;
}

.am-blog-read-more:hover {
    gap: 5px;
    color: #1D4ED8;
}

.am-blog-read-more i {
    font-size: 14px;
}

.am-leaders-section {
    padding: 100px 0;
    background-color: #FFFFFF;
}

.am-leaders-section .am-section-title {
    font-size: 48px;
    line-height: normal;
    font-weight: 500;
    color: #0F172A;
    margin-bottom: 20px;
    font-family: 'Graphik', 'Inter', sans-serif;
}

.am-leaders-container {
    display: flex;
    gap: 20px;
    height: 501px;
    width: 100%;
}

.am-leader-card {
    flex: 1;
    background-size: cover;
    background-position: center top;
    border-radius: 30px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.am-leader-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 40%);
    opacity: 0.8;
    transition: opacity 0.3s;
}

/* Hover State */
.am-leader-card:hover {
    flex: 0 0 333.1px;
    /* Expand to specific width */
}

/* Active class handling */
/* If using JS to toggle active, keep this. If purely CSS hover, remove class from HTML or use JS to remove it on mouseenter others */
.am-leader-card.active {
    flex: 0 0 383.1px;
}

/* Collapsed Info: First Name Vertical */
.am-leader-info-collapsed {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%) rotate(-90deg);
    color: #FFFFFF;
    font-family: 'Graphik', 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 500;
    white-space: nowrap;
    opacity: 1;
    transition: opacity 0.3s;
    pointer-events: none;
    transform-origin: center center;
}

/* Expanded Info: Full Name + Designation */
.am-leader-info-expanded {
    position: absolute;
    bottom: 30px;
    left: 30px;
    color: #FFFFFF;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
    width: calc(100% - 60px);
}

.am-leader-info-expanded h3 {
    font-family: 'Graphik', 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 500;
    margin: 0 0 2px 0;
    line-height: 1.2;
}

.am-leader-info-expanded p {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    margin: 0;
    color: #FFFFFF !important;
    opacity: 1;
}

/* States */
.am-leader-card:hover .am-leader-info-collapsed {
    opacity: 0;
}

.am-leader-card:hover .am-leader-info-expanded {
    opacity: 1;
    transform: translateY(0);
}

.am-leader-card.active .am-leader-info-collapsed {
    opacity: 0;
}

.am-leader-card.active .am-leader-info-expanded {
    opacity: 1;
    transform: translateY(0);
}


@media (max-width: 991px) {
    .am-leaders-container {
        flex-direction: column;
        height: auto;
        gap: 15px;
    }

    .am-leader-card {
        height: 300px;
        flex: none;
        width: 100%;
    }

    .am-leader-card:hover {
        flex: none;
    }

    .am-leader-info-collapsed {
        display: none;
    }

    .am-leader-info-expanded {
        opacity: 1;
        transform: translateY(0);
        bottom: 20px;
        left: 20px;
    }
}


@media (max-width: 991px) {
    .am-use-case-content {
        padding-left: 0;
        margin-top: 30px;
    }

    .am-use-case-title {
        font-size: 28px;
    }
}


/* FAQ Section */
.am-faq-section {
    padding: 80px 0;
    background-color: #fff;
}

.am-faq-section .am-section-title {
    font-family: 'Inter', sans-serif;
    font-size: 48px;
    font-weight: 700;
    line-height: 48px;
    letter-spacing: 0px;
    color: #0F172A;
    margin-bottom: 8px;
}

.am-faq-section .am-section-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 28px;
    color: #334155;
    margin-bottom: 40px;
}

.am-faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.am-faq-item {
    margin-bottom: 20px;
    border: 1px solid #E2E8F0;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.am-faq-item:hover,
.am-faq-item.active {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    border-color: #CBD5E1;
}

.am-faq-question {
    width: 100%;
    text-align: left;
    background: #fff;
    border: none;
    padding: 24px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 18px;
    color: #0F172A;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: color 0.3s ease;
}

.am-faq-question:hover {
    color: #2563EB;
}

.am-faq-icon {
    font-size: 16px;
    color: #2563EB;
    transition: transform 0.3s ease;
}

.am-faq-item.active .am-faq-icon {
    transform: rotate(180deg);
}

.am-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0, 1, 0, 1);
}

.am-faq-answer p {
    padding: 0 24px 24px 24px;
    margin: 0;
    color: #475569;
    font-size: 16px;
    line-height: 1.6;
}

/* Mobile Responsive Fixes */
@media (max-width: 767px) {

    /* Global Section Padding */
    .am-hero-section,
    .am-solutions-section,
    .am-why-tc-section,
    .am-products-section,
    .am-customers-section,
    .am-use-cases-section,
    .am-leaders-section,
    .am-contact-section,
    .am-blog-section,
    .am-faq-section {
        padding: 50px 0 !important;
    }

    /* Hide Line Breaks Globally on Mobile */
    br {
        display: none;
    }

    /* Typography */
    .am-hero-content h1 {
        font-size: 36px !important;
        line-height: 44px !important;
    }

    .am-section-header h2,
    .am-section-title {
        font-size: 32px !important;
        line-height: 40px !important;
        letter-spacing: -1px !important;
    }

    .am-solution-card h3 {
        font-size: 28px !important;
        line-height: 36px !important;
    }

    /* Hero Section */
    .am-hero-section {
        min-height: auto;
        padding-top: 100px !important;
        padding-bottom: 60px !important;
        background-position: center bottom;
    }

    /* Solutions Section */
    .am-solution-row {
        margin-bottom: 40px;
        flex-direction: column-reverse;
    }

    .am-solution-card {
        padding-right: 0;
        text-align: center;
        margin-bottom: 30px;
    }

    .am-icon-box {
        margin: 0 auto 20px auto;
    }

    .am-solution-image {
        margin-top: 0;
        margin-bottom: 30px;
        /* Add space below image */
    }

    .am-solution-row.am-reverse-row {
        flex-direction: column;
    }

    .am-solution-image img {
        border-radius: 12px;
    }

    /* Stats */
    .am-stats-row {
        margin-top: 40px;
    }

    .am-stat-number {
        font-size: 36px;
        line-height: 40px;
    }

    /* Carousel */
    .am-cards-carousel {
        width: 100%;
        margin-top: 40px;
    }

    /* Products */
    .am-product-filters {
        gap: 8px;
    }

    .am-filter-btn {
        padding: 8px 16px;
        font-size: 13px;
    }

    /* Use Cases */
    .am-use-case-content {
        padding-left: 0;
        margin-top: 30px;
    }

    .am-use-case-title {
        font-size: 28px;
        line-height: 34px;
    }

    .am-use-case-controls {
        padding-left: 0 !important;
        margin-top: 20px !important;
        justify-content: center;
    }

    .am-use-cases-slider+.row .col-lg-6.offset-lg-6 {
        justify-content: center;
        display: flex;
    }

    /* Contact Form */
    .am-contact-section .am-section-subtitle {
        text-align: center !important;
        margin: 0 auto 30px auto !important;
    }

    .am-contact-section .text-white {
        text-align: center;
    }

    /* FAQ */
    .am-faq-question {
        font-size: 16px;
        padding: 16px;
    }

    .am-faq-answer p {
        font-size: 14px;
        padding: 0 16px 16px 16px;
    }
}

/* Android Mobility Custom Header Styles */
.header-android .header-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-android .logo {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-android .logo img {
    max-height: 60px;
    width: auto;
}

.header-android .logo .android-logo {
    max-height: 50px;
}

.header-android .partner-logo {
    padding-left: 20px;
    border-left: 1px solid rgba(255, 255, 255, 0.3);
}

.header-android .partner-logo img {
    max-height: 40px;
    width: auto;
}

.header-android .navbar {
    flex-grow: 1;
    justify-content: flex-end;
}