/* Global Styles */
:root {
    --primary-blue: #1c75e8;
    --primary-blue-hover: #1557b0;
    --text-dark: #12151b;
    --text-light: #6b7280;
    --bg-light: #f9fafc;
    --bg-white: #ffffff;
    --border-color: #e5e7eb;
    --font-main: 'Inter', sans-serif;
}

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

body {
    font-family: var(--font-main);
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--bg-white);
    overflow-x: hidden;
    max-width: 100vw;
}

html {
    overflow-x: hidden;
    max-width: 100vw;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Utilities */
.bg-light {
    background-color: var(--bg-light);
}

.highlight-blue {
    color: var(--primary-blue);
}

.highlight-orange {
    color: #e97118;
}

.btn {
    display: inline-block;
    padding: 10px 24px;
    font-weight: 600;
    font-size: 14px;
    border-radius: 6px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--primary-blue);
    color: white;
    border: 1px solid var(--primary-blue);
    position: relative;
    overflow: hidden;
}

.btn-primary:hover {
    background-color: #e97118;
    border-color: #e97118;
    box-shadow: 0 4px 12px rgba(233, 113, 24, 0.3);
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    color: var(--text-dark);
    border: 1px solid var(--border-color);
}

.btn-outline:hover {
    color: #e97118;
    border-color: #e97118;
    background-color: rgba(233, 113, 24, 0.05);
}

.btn-white {
    background-color: white;
    color: var(--text-dark);
    border: 1px solid white;
}

.btn-white:hover {
    background-color: #f1f2f5;
}

.btn-large {
    padding: 14px 32px;
    font-size: 16px;
}

.btn-full {
    width: 100%;
    padding: 14px 0;
}

/* Header / Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.top-bar {
    background-color: rgba(255, 255, 255, 0.95);
    background-image:

        url('images/circuit_pattern.png');
    background-size: 400px;
    background-repeat: repeat;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
}

.bottom-bar {
    background-color: rgba(212, 100, 15, 0.95);
    backdrop-filter: blur(10px);
}

.top-bar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 85px;
}

.bottom-bar-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50px;
}

.logo-text {
    font-weight: 800;
    font-size: 20px;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    font-size: 14px;
    font-weight: 500;
    color: white;
}

.nav-links a:hover,
.nav-links a.active {
    color: rgba(255, 255, 255, 0.8);
}

/* Dropdown Styles */
.dropdown {
    position: relative;
    display: flex;
    align-items: center;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: var(--bg-white);
    min-width: 200px;
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.08);
    z-index: 10;
    border-radius: 8px;
    top: calc(100% + 15px);
    left: 0;
    flex-direction: column;
    padding: 12px 0;
    border: 1px solid var(--border-color);
}

.dropdown-content::before {
    content: '';
    position: absolute;
    top: -15px;
    left: 0;
    width: 100%;
    height: 15px;
}

.nav-links .dropdown-content a {
    color: var(--text-dark);
    padding: 10px 24px;
    display: block;
    font-size: 14px;
    font-weight: 500;
}

.nav-links .dropdown-content a:hover {
    background-color: var(--bg-light);
    color: var(--primary-blue);
}

.dropdown:hover .dropdown-content {
    display: flex;
}

.nav-actions {
    display: flex;
    gap: 16px;
    align-items: center;
}

.navbar .btn-outline {
    color: #d4640f;
    border-color: #d4640f;
}

.navbar .btn-outline:hover {
    background-color: #d4640f;
    color: white;
}

/* Hero Section */
.hero {
    position: relative;
    overflow: hidden;
    min-height: 600px;
}

.carousel-container {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease-in-out, visibility 0.8s;
    display: flex;
    align-items: center;
    padding-top: 120px;
    /* Offset for header */
}

.carousel-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    z-index: 1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Carousel Controls */
.carousel-prev,
.carousel-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    color: var(--primary-blue);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    z-index: 10;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-prev:hover,
.carousel-next:hover {
    background: var(--primary-blue);
    color: white;
}

.carousel-prev {
    left: 30px;
}

.carousel-next {
    right: 30px;
}

.carousel-indicators {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--border-color);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background-color: var(--primary-blue);
    width: 32px;
    border-radius: 6px;
}

.hero-container {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    z-index: 2;
}

.hero-content {
    max-width: 800px;
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: left;
}


.hero-subtitle {
    color: var(--primary-blue);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.hero-title {
    font-size: 54px;
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: -2px;
    margin-bottom: 24px;
    color: #ffffff;
    /* Make text readable on dark banners */
}

.hero-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    /* Lighter text for the description on dark banners */
    margin: 0 0 32px 0;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
}

.hero-stats {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    padding: 24px 32px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.5);
    margin-bottom: 20px;
}

.stat-label {
    font-size: 11px;
    font-weight: 700;
    color: var(--text-light);
    letter-spacing: 0.5px;
}

.stat-value {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary-blue);
}

/* Precision Engineering Section */
.precision-section {
    padding: 60px 0;
}

.precision-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
}

.precision-left {
    flex: 1;
}

.precision-left h2 {
    font-size: 36px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -1px;
    margin-bottom: 20px;
}

.blue-line {
    width: 60px;
    height: 4px;
    background-color: var(--primary-blue);
}

.precision-right {
    flex: 2;
}

.quote {
    font-size: 24px;
    line-height: 1.5;
    font-weight: 400;
    color: var(--text-light);
    margin-bottom: 60px;
}

.stats-row {
    display: flex;
    gap: 80px;
}

.stat-item h3 {
    font-size: 40px;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 8px;
}

.stat-item p {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--text-light);
}

/* Products Section */
.products-section {
    padding: 60px 0;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 8px;
}

.subtitle {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--text-light);
    text-transform: uppercase;
}

.view-all {
    color: #e97118;
    font-size: 13px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease;
}

.view-all:hover {
    color: var(--primary-blue);
}

.btn-explore {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    background-color: #e97118;
    color: white !important;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.btn-explore:hover {
    background-color: var(--primary-blue);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(233, 113, 24, 0.2);
}

.btn-download {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    background-color: transparent;
    color: #e97118 !important;
    border: 2px solid #e97118;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.btn-download:hover {
    background-color: #e97118;
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(233, 113, 24, 0.2);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 40px;
}

.product-card {
    background: white;
    padding: 48px 40px;
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.product-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
    border-color: rgba(28, 117, 232, 0.2);
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, var(--primary-blue), #e97118);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.product-card:hover::before {
    transform: scaleX(1);
}

.icon-wrapper {
    width: 48px;
    height: 48px;
    background: var(--bg-light);
    color: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 24px;
}

.product-img-wrapper {
    height: 260px;
    width: 100%;
    margin-bottom: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: radial-gradient(circle, rgba(28, 117, 232, 0.05) 0%, transparent 70%);
    border-radius: 12px;
    padding: 20px;
}

.product-img-wrapper img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    transition: all 0.5s ease;
    filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.1));
}

.product-card:hover .product-img-wrapper img {
    transform: scale(1.1) rotate(-2deg);
}

.product-card h3 {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 16px;
    line-height: 1.4;
    color: var(--text-dark);
}

.product-card p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.6;
}

/* Applications Section */
.applications-section {
    padding: 60px 0;
}

.applications-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.app-card {
    border-radius: 12px;
    overflow: hidden;
    background: white;
    border: 1px solid var(--border-color);
}

.app-card img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.app-card:hover img {
    transform: scale(1.1);
}

.app-info {
    padding: 24px;
}

.app-info h3 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

.blue-line-small {
    width: 30px;
    height: 3px;
    background-color: var(--primary-blue);
}

.orange-line-small {
    width: 30px;
    height: 3px;
    background-color: #e97118;
}

/* Partners Section - Marquee Style */
.partners-section {
    padding: 60px 0;
    border-top: 1px solid var(--border-color);
    background: #ffffff;
    overflow: hidden;
}

.partners-title {
    font-size: 18px;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--text-light);
    margin-bottom: 40px;
    text-align: center;
    text-transform: uppercase;
}

.logo-marquee-container {
    padding: 20px 0;
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
}

.logo-marquee-track {
    display: flex;
    width: fit-content;
    animation: marquee 60s linear infinite;
    gap: 0px;
}

.logo-item-premium-img {
    height: 120px;
    width: auto;
    object-fit: contain;
    margin-right: 50px;
}

.logo-marquee-track:hover {
    animation-play-state: paused;
}

.logo-item-premium {
    font-size: 24px;
    font-weight: 900;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: 0.6;
    transition: all 0.3s ease;
    cursor: default;
}

.logo-item-premium:hover {
    opacity: 1;
    transform: scale(1.05);
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-50% - 50px));
    }
}

/* Contact Section */
.contact-section {
    padding: 60px 0;
}

.contact-container {
    display: flex;
    justify-content: space-between;
    gap: 80px;
    align-items: center;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -2px;
    margin-bottom: 24px;
}

.contact-info>p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 48px;
    max-width: 400px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.contact-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact-detail-item .icon {
    width: 40px;
    height: 40px;
    background: #e6f0fd;
    color: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.contact-detail-item h4 {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.contact-detail-item p {
    font-size: 14px;
    color: var(--text-light);
}

.contact-form-wrapper {
    flex: 1;
    background: white;
    padding: 48px;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.form-row {
    display: flex;
    gap: 24px;
}

.form-group {
    margin-bottom: 24px;
    flex: 1;
}

.form-group label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--text-light);
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-family: inherit;
    font-size: 14px;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(28, 117, 232, 0.1);
}

/* Footer */
.footer {
    padding: 80px 0 40px;
    border-top: 1px solid var(--border-color);
}

.footer-container {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.footer h4 {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 24px;
}

.footer-desc {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 24px;
    line-height: 1.7;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-links a {
    color: var(--text-light);
    font-size: 18px;
}

.social-links a:hover {
    color: var(--primary-blue);
}

.footer-col {
    display: flex;
    flex-direction: column;
}

.footer-col a {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 12px;
}

.footer-col a:hover {
    color: var(--primary-blue);
}

.footer-right p {
    font-size: 12px;
    color: var(--text-light);
    margin-bottom: 8px;
    text-align: right;
}

/* Responsive (Basic) */
@media (max-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .applications-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-container {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .hero-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 40px;
    }

    .hero-bg {
        width: 100%;
        opacity: 0.2;
    }

    .precision-container {
        flex-direction: column;
    }

    .applications-grid {
        grid-template-columns: 1fr;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .footer-container {
        grid-template-columns: 1fr;
    }

    .stats-row {
        flex-direction: column;
        gap: 20px;
    }
}

/* Product Page Styles */
.navbar-simple {
    background-color: var(--bg-white);
    position: relative;
    border-bottom: none;
    box-shadow: none;
    padding: 10px 0;
}

.logo-text.highlight-blue {
    color: var(--primary-blue);
}

.nav-links-dark a {
    color: var(--text-dark);
    font-weight: 500;
}

.nav-links-dark a:hover {
    color: var(--primary-blue);
}

.nav-links-dark a.active {
    color: var(--primary-blue);
    border-bottom: 2px solid var(--primary-blue);
    padding-bottom: 5px;
}

.search-icon {
    color: var(--text-dark);
    font-size: 18px;
    margin-right: 16px;
}

.search-icon:hover {
    color: var(--primary-blue);
}

.page-banner {
    padding: 0 40px;
    margin-top: 140px;
}

.banner-wrapper {
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    height: 300px;
}

.banner-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.section-header-flex {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
    gap: 30px;
}

.portfolio-title {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 8px;
    letter-spacing: -1px;
}

.portfolio-desc {
    font-size: 16px;
    color: var(--text-light);
    max-width: 800px;
    line-height: 1.6;
}

.view-guide {
    color: var(--primary-blue);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
}

.product-cards-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
}

.portfolio-card {
    flex: 0 0 calc(33.333% - 16px);
    max-width: calc(33.333% - 16px);
    min-width: 300px;
    background: white;
    border: 1px solid rgba(229, 231, 235, 0.5);
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
}

.portfolio-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(28, 117, 232, 0.08);
    border-color: rgba(28, 117, 232, 0.2);
}

.portfolio-card .card-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #e6f0fd, #f1f5fb);
    color: var(--primary-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-size: 20px;
    margin-bottom: 24px;
    box-shadow: 0 4px 10px rgba(28, 117, 232, 0.1);
}

.portfolio-card .card-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

.portfolio-card .card-desc {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 24px;
    flex-grow: 1;
}

.spec-table {
    margin-bottom: 24px;
}

.spec-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(229, 231, 235, 0.5);
    font-size: 13px;
}

.spec-row:last-child {
    border-bottom: none;
}

.spec-label {
    color: var(--text-light);
}

.spec-value {
    font-weight: 700;
    color: var(--text-dark);
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.btn-download {
    background: linear-gradient(135deg, #f1f5fb, #ffffff);
    color: var(--text-dark);
    border: 1px solid rgba(28, 117, 232, 0.15);
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-size: 14px;
    box-shadow: 0 2px 4px rgba(28, 117, 232, 0.05);
}

.btn-download i {
    color: #e97118;
    font-size: 16px;
    transition: color 0.3s ease;
}

.btn-download:hover {
    background: #e97118;
    color: white;
    border-color: #e97118;
    box-shadow: 0 4px 12px rgba(233, 113, 24, 0.25);
    transform: translateY(-2px);
}

.btn-download:hover i {
    color: white;
}

.footer-simple {
    padding: 24px 0;
}

.footer-simple-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.footer-simple-left h4 {
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 8px;
}

.footer-simple-left p {
    font-size: 11px;
    color: var(--text-light);
    max-width: 320px;
}

.footer-simple-right .footer-simple-links {
    display: flex;
    gap: 20px;
    align-items: center;
    font-size: 11px;
    color: var(--text-light);
    font-weight: 500;
}

.footer-simple-links a {
    color: var(--text-light);
}

.footer-simple-links a:hover {
    color: var(--primary-blue);
}

@media (max-width: 1024px) {
    .product-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .product-cards-grid {
        grid-template-columns: 1fr;
    }

    .footer-simple-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
    }

    .footer-simple-right .footer-simple-links {
        flex-wrap: wrap;
    }
}

/* Applications Page Layout (New Grid) */
.app-layout-grid-modern {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 40px;
    margin-bottom: 24px;
}

.app-card-standard {
    background: white;
    border: 1px solid rgba(229, 231, 235, 0.5);
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: row;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.app-card-standard:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(28, 117, 232, 0.08);
    border-color: rgba(28, 117, 232, 0.2);
}

.app-card-standard .app-img-box {
    width: 200px;
    min-height: 90px;
    flex-shrink: 0;
}

.app-card-standard .app-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.app-card-standard .app-content-box {
    flex: 1;
    padding: 16px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.app-icon {
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, #e6f0fd, #f1f5fb);
    color: var(--primary-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    font-size: 12px;
    margin-bottom: 8px;
    box-shadow: 0 4px 10px rgba(28, 117, 232, 0.1);
}

.app-features {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid rgba(229, 231, 235, 0.6);
}

.app-feature-title {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.app-feature-title i {
    color: var(--primary-blue);
    font-size: 14px;
}

.app-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.badge {
    background-color: #f3f6fc;
    color: var(--primary-blue);
    font-size: 10px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
    letter-spacing: 0.5px;
    border: 1px solid rgba(28, 117, 232, 0.1);
    transition: all 0.3s ease;
}

.badge:hover {
    background-color: var(--primary-blue);
    color: white;
}

.app-title {
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 6px;
    color: var(--text-dark);
}

.app-desc {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.5;
    margin-bottom: 0px;
}

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

.app-list li {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}

.app-list li i {
    color: var(--primary-blue);
}

.app-link {
    font-size: 11px;
    font-weight: 800;
    color: var(--primary-blue);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: auto;
}

/* Custom Solution Call To Action */
.custom-solution {
    text-align: center;
    padding: 60px 0;
}

.custom-solution h2 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 16px;
}

.custom-solution p {
    font-size: 15px;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto 32px;
}

.custom-solution .btn-group {
    display: flex;
    justify-content: center;
    gap: 16px;
}

/* Top Nav Variant for Application */
.nav-app-variant {
    background: white;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 40px;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.nav-app-variant .logo-text {
    color: var(--primary-blue);
    font-size: 18px;
    font-weight: 800;
}

.nav-app-variant .center-links {
    display: flex;
    gap: 32px;
}

.nav-app-variant .center-links a {
    font-size: 13px;
    color: var(--text-light);
    font-weight: 600;
}

.nav-app-variant .center-links a.active {
    color: var(--primary-blue);
    border-bottom: 2px solid var(--primary-blue);
    padding-bottom: 4px;
}

.nav-app-variant .right-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-app-variant .right-actions i {
    color: var(--text-light);
    font-size: 18px;
    cursor: pointer;
}

.nav-app-variant .btn-contact {
    background: var(--primary-blue);
    color: white;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
}

@media (max-width: 1024px) {

    .app-layout-grid-new,
    .app-layout-grid-row2 {
        grid-template-columns: 1fr;
    }
}

/* --- Contact Page Styles --- */
.contact-hero {
    position: relative;
    padding: 0;
    margin: 140px 0 40px 0;
    /* Offset for nav */
    border-radius: 16px;
    overflow: hidden;
    color: white;
    min-height: 380px;
    display: flex;
    align-items: center;
}

.contact-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.contact-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(16, 32, 54, 0.9) 0%, rgba(16, 32, 54, 0.4) 100%);
    z-index: 2;
}

.contact-hero-content {
    position: relative;
    z-index: 3;
    max-width: 600px;
    padding-left: 40px;
}

.contact-hero-title {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.contact-hero-desc {
    font-size: 16px;
    margin-bottom: 40px;
    opacity: 0.9;
}

.contact-pills {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.contact-pill {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 12px 20px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

a.contact-pill:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Contact Grid Layout */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 20px 40px;
}

/* Form Styling */
.contact-form-box {
    background: white;
    border: 1px solid rgba(229, 231, 235, 0.5);
    border-radius: 12px;
    padding: 40px;
}

.contact-form-box h3 {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 24px;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

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

.form-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-dark);
}

.form-control {
    border: 1px solid rgba(229, 231, 235, 0.8);
    border-radius: 6px;
    padding: 12px 16px;
    font-family: inherit;
    font-size: 14px;
    background: #fdfdfd;
    transition: all 0.3s;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(28, 117, 232, 0.1);
}

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

/* Operational Hubs */
.contact-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-sidebar h3 {
    font-size: 18px;
    font-weight: 800;
}

.hub-card-primary {
    background: var(--primary-blue);
    color: white;
    border-radius: 12px;
    padding: 30px;
    position: relative;
    overflow: hidden;
}

.hub-card-primary .hub-label {
    font-size: 10px;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 8px;
    opacity: 0.8;
}

.hub-card-primary h4 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 20px;
}

.hub-card-primary p {
    font-size: 13px;
    margin-bottom: 16px;
    opacity: 0.9;
    line-height: 1.5;
}

.hub-icon-bg {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 60px;
    opacity: 0.1;
}

.hub-grid-mini {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.hub-card-mini {
    background: #f9fafc;
    border: 1px solid rgba(229, 231, 235, 0.5);
    border-radius: 12px;
    padding: 24px;
}

.hub-card-mini .card-title {
    font-size: 15px;
    font-weight: 800;
    margin-bottom: 8px;
}

.hub-card-mini .card-desc {
    font-size: 12px;
    color: var(--text-light);
    margin-bottom: 16px;
    line-height: 1.5;
}

.hub-tag {
    font-size: 10px;
    font-weight: 700;
    color: var(--primary-blue);
    text-transform: uppercase;
}

/* Dark CTA */
.dark-cta-panel {
    background-color: #121826;
    margin: 40px;
    border-radius: 16px;
    padding: 60px 40px;
    text-align: center;
    color: white;
}

.dark-cta-panel h2 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 16px;
}

.dark-cta-panel p {
    font-size: 16px;
    opacity: 0.8;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 991px) {
    .contact-grid {
        grid-template-columns: 1fr;
        padding: 20px;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .contact-hero {
        margin: 120px 20px 20px 20px;
    }

    .dark-cta-panel {
        margin: 20px;
    }
}

/* --- About Page Styles --- */

/* Split Hero */
.about-hero {
    display: flex;
    align-items: center;
    gap: 60px;
    padding: 180px 0 80px 0;
}

.about-hero-text {
    flex: 1;
}

.about-hero-text h1 {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.about-hero-text p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 40px;
    max-width: 480px;
}

.about-hero-img {
    flex: 1;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Vision Grid */
.vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

.vision-box {
    background: white;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(229, 231, 235, 0.5);
    position: relative;
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.vision-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(28, 117, 232, 0.1);
}

.vision-box-blue {
    background: linear-gradient(135deg, var(--primary-blue), #2c85f8);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
}

.vision-box-orange {
    background: linear-gradient(135deg, #e97118, #f5893a);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
}

.vision-box-blue h2,
.vision-box-orange h2 {
    font-size: 42px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-align: center;
}

.vision-box h3 {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 16px;
}

.vision-box p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.6;
}

.vision-watermark {
    position: absolute;
    bottom: -10px;
    left: 40px;
    font-size: 100px;
    font-weight: 800;
    color: rgba(28, 117, 232, 0.05);
    line-height: 1;
}

.core-values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 80px;
}

.value-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    border: 1px solid rgba(229, 231, 235, 0.5);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(28, 117, 232, 0.08);
}

.value-icon {
    font-size: 24px;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.value-card h4 {
    font-size: 15px;
    font-weight: 800;
    margin-bottom: 12px;
}

.value-card p {
    font-size: 13px;
    color: var(--text-light);
}

/* Timeline */
.section-timeline {
    position: relative;
}

.section-timeline::after {
    content: '';
    position: absolute;
    width: 2px;
    background-color: rgba(229, 231, 235, 0.8);
    top: 40px;
    bottom: 40px;
    left: 50%;
    margin-left: -1px;
}

.timeline-item {
    position: relative;
    background-color: inherit;
    width: 50%;
    padding: 0 40px 60px 40px;
}

.timeline-item::after {
    content: '';
    position: absolute;
    width: 12px;
    height: 12px;
    right: -6px;
    background-color: white;
    border: 3px solid var(--primary-blue);
    top: 20px;
    border-radius: 50%;
    z-index: 1;
}

.timeline-left {
    left: 0;
}

.timeline-right {
    left: 50%;
}

.timeline-right::after {
    left: -6px;
}

.timeline-content {
    padding: 30px;
    background-color: white;
    position: relative;
    border-radius: 12px;
    border: 1px solid rgba(229, 231, 235, 0.5);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.timeline-content:hover {
    transform: translateX(4px);
    box-shadow: 0 15px 30px rgba(28, 117, 232, 0.08);
}

.timeline-left .timeline-content:hover {
    transform: translateX(-4px);
}

.timeline-content-blue {
    background-color: var(--primary-blue);
    color: white;
}

.timeline-content-orange {
    background-color: #e97118;
    color: white;
}

.timeline-content h3 {
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 16px;
}

.timeline-content p {
    font-size: 14px;
    color: var(--text-light);
}

.timeline-content-blue p {
    color: rgba(255, 255, 255, 0.9);
}

/* Core Stats */
.core-stats-section {
    display: flex;
    align-items: center;
    gap: 60px;
    margin: 80px 0;
}

.core-stats-images {
    flex: 1;
    display: flex;
    gap: 20px;
}

.core-img-box {
    border-radius: 16px;
    overflow: hidden;
    flex: 1;
}

.core-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.core-stats-content {
    flex: 1;
}

.core-stats-content h2 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 40px;
}

.stat-row {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    margin-bottom: 30px;
}

.stat-number {
    font-size: 36px;
    font-weight: 800;
    color: var(--primary-blue);
    opacity: 0.3;
    min-width: 80px;
}

.stat-text h4 {
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 6px;
}

.stat-text p {
    font-size: 14px;
    color: var(--text-light);
}

/* Team Grid */
.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.team-card {
    display: flex;
    flex-direction: column;
    transition: transform 0.4s ease;
}

.team-card:hover {
    transform: translateY(-8px);
}

.team-img {
    width: 100%;
    aspect-ratio: 3/4;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 20px;
    background: #f1f2f5;
}

.team-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-role {
    font-size: 10px;
    color: var(--primary-blue);
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 6px;
    letter-spacing: 1px;
}

.team-name {
    font-size: 16px;
    font-weight: 800;
}

/* Recognition */
.recognition-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(229, 231, 235, 0.6);
    padding-top: 40px;
    margin-top: 80px;
}

.recognition-item {
    text-align: center;
    color: #a0aab8;
}

.recognition-item i {
    font-size: 32px;
    margin-bottom: 15px;
}

.recognition-item p {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.recognition-title {
    max-width: 200px;
}

.recognition-title h3 {
    font-size: 16px;
    font-weight: 800;
    color: var(--text-dark);
}

.recognition-title p {
    font-size: 12px;
    color: var(--text-light);
    margin-top: 8px;
}

/* Quality Boxes */
.quality-boxes {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 80px 0;
}

.q-box {
    background: white;
    border-radius: 16px;
    padding: 40px;
    border: 1px solid rgba(229, 231, 235, 0.5);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.q-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(28, 117, 232, 0.1);
}

.q-box-blue {
    background: var(--primary-blue);
    color: white;
}

.q-box-orange {
    background: #e97118;
    color: white;
}

.q-icon {
    font-size: 24px;
    color: var(--primary-blue);
    margin-bottom: 24px;
}

.q-box-blue .q-icon {
    color: white;
}

.q-box h3 {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 16px;
}

.q-box p {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 24px;
}

.q-box-blue p {
    color: rgba(255, 255, 255, 0.9);
}

.q-box hr {
    border: 0;
    height: 1px;
    background: rgba(229, 231, 235, 0.6);
    margin: 16px 0;
}

.q-box-blue hr {
    background: rgba(255, 255, 255, 0.2);
}

.q-tags {
    display: flex;
    gap: 12px;
}

.q-tag {
    font-size: 10px;
    font-weight: 700;
    padding: 4px 8px;
    background: #f1f5fb;
    color: var(--primary-blue);
    border-radius: 4px;
}

@media (max-width: 991px) {
    .about-hero {
        flex-direction: column;
        text-align: center;
        padding-top: 140px;
    }

    .about-hero-text h1 {
        font-size: 40px;
    }

    .vision-grid {
        grid-template-columns: 1fr;
    }

    .core-values-grid,
    .team-grid,
    .quality-boxes {
        grid-template-columns: 1fr 1fr;
    }

    .section-timeline::after {
        left: 31px;
    }

    .timeline-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px;
    }

    .timeline-right {
        left: 0%;
    }

    .timeline-item::after {
        left: 24px;
    }

    .core-stats-section {
        flex-direction: column;
    }

    .recognition-grid {
        flex-wrap: wrap;
        gap: 30px;
    }
}

@media (max-width: 768px) {

    .core-values-grid,
    .team-grid,
    .quality-boxes {
        grid-template-columns: 1fr;
    }
}

.badge-orange {
    padding: 6px 12px;
    background: rgba(233, 113, 24, 0.1);
    color: #e97118;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.app-badge-orange {
    display: inline-block;
    padding: 4px 10px;
    background-color: #e97118;
    color: white;
    font-size: 10px;
    font-weight: 700;
    border-radius: 20px;
    text-transform: uppercase;
    margin-right: 8px;
    margin-bottom: 8px;
}

/* ---- CLEAN MODE ABOUT US MODULE ---- */
.about-hero-clean {
    position: relative;
    padding: 160px 0 80px 0;
    text-align: center;
}

.about-hero-clean h1 {
    font-size: 50px;
    font-weight: 800;
    color: var(--text-dark);
    letter-spacing: -1px;
    margin-bottom: 20px;
}

.about-hero-clean p {
    font-size: 18px;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto 40px auto;
}

.flat-card {
    background: white;
    border: 1px solid rgba(229, 231, 235, 0.5);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.flat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(28, 117, 232, 0.08);
}

.text-orange {
    color: #e97118;
}

.timeline-horizontal {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin: 60px 0;
}

.timeline-h-card {
    position: relative;
    padding-top: 30px;
    background: white;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid rgba(229, 231, 235, 0.5);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
    transition: transform 0.3s ease;
}

.timeline-h-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 30px rgba(28, 117, 232, 0.08);
}

.timeline-h-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 4px;
    width: 100%;
    background: linear-gradient(90deg, #e97118, var(--primary-blue));
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
}

.timeline-h-card h3 {
    font-size: 20px;
    color: var(--primary-blue);
    margin-bottom: 12px;
    font-weight: 800;
}

.timeline-h-card p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.6;
}

.stats-glow-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
    margin: 60px 0;
}

.stat-g {
    text-align: center;
    background: white;
    padding: 40px;
    border-radius: 12px;
    border: 1px solid rgba(229, 231, 235, 0.5);
    transition: transform 0.3s ease;
}

.stat-g:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 30px rgba(28, 117, 232, 0.08);
}

.stat-g-num {
    font-size: 56px;
    font-weight: 800;
    color: #e97118;
    margin-bottom: 10px;
}

.stat-g h4 {
    font-size: 15px;
    letter-spacing: 1px;
    color: var(--text-dark);
    font-weight: 700;
}

.team-glass-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.team-glass-card {
    background: white;
    padding: 20px;
    border-radius: 12px;
    border: 1px solid rgba(229, 231, 235, 0.5);
    text-align: center;
    transition: transform 0.4s ease;
    width: 220px;
}

.team-glass-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 30px rgba(28, 117, 232, 0.08);
}

.team-glass-card .img-box {
    width: 100%;
    height: 240px;
    background: #f1f5fb;
    border-radius: 8px;
    margin-bottom: 20px;
}

.team-glass-card h4 {
    color: var(--text-dark);
    font-size: 16px;
    margin-bottom: 4px;
    font-weight: 800;
}

.team-glass-card p {
    color: #e97118;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-clean-title {
    text-align: center;
    font-size: 28px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 50px;
}

/* CTA Section Button Hover Effect */
.contact-pill {
    padding: 12px 28px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 50px;
    font-weight: 700;
    font-size: 15px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.contact-pill:hover {
    background-color: #e97118 !important;
    border-color: #e97118 !important;
    color: white !important;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(233, 113, 24, 0.3);
}

.contact-pill-white:hover {
    background-color: #e97118 !important;
    border-color: #e97118 !important;
    color: white !important;
}

/* Mobile Nav Styles */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--text-dark);
    cursor: pointer;
    z-index: 1001;
}

@media (max-width: 991px) {
    .mobile-menu-btn {
        display: block;
    }

    .bottom-bar {
        position: relative;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        background: var(--bg-white);
        position: absolute;
        top: 100%;
        left: 0;
        padding: 20px;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        gap: 16px;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        color: var(--text-dark);
        font-size: 16px;
        font-weight: 600;
    }

    .nav-links .dropdown-content {
        position: static;
        box-shadow: none;
        border: none;
        padding-left: 20px;
        display: none;
    }

    .nav-links .dropdown.active .dropdown-content {
        display: flex;
    }
    
    .nav-actions {
        display: flex !important;
        gap: 8px !important;
    }
    
    .nav-actions img {
        height: 35px !important;
    }

    .nav-actions .btn-outline {
        padding: 6px 10px;
        font-size: 11px;
    }
    
    .top-bar-container {
        justify-content: flex-start;
        position: relative;
        gap: 10px;
    }

    .mobile-menu-btn {
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
    }
}

/* Comprehensive Mobile Adjustments */
@media (max-width: 768px) {
    /* Headings & Text */
    .hero-title, .about-hero-text h1, .about-hero-clean h1 {
        font-size: 32px !important;
        line-height: 1.2;
    }

    h2, .contact-info h2, .custom-solution h2, .section-clean-title {
        font-size: 26px !important;
    }

    .portfolio-title, .contact-hero-title, .core-stats-content h2, .q-box h3, .timeline-h-card h3 {
        font-size: 24px !important;
    }

    .hero-description, .about-hero-text p, .about-hero-clean p {
        font-size: 16px !important;
        margin-left: 0 !important;
    }
    
    .hero-content {
        padding: 0 20px;
        text-align: center;
        align-items: center;
    }
    
    .hero-content ul.hero-description {
        margin-left: 0 !important;
        padding-left: 20px !important;
        text-align: left;
    }
    
    .contact-pills {
        margin-left: 0 !important;
        justify-content: center;
    }

    /* Grids & Flexboxes */
    .vision-grid, .core-values-grid, .team-glass-grid, .timeline-horizontal, .stats-glow-grid, .quality-boxes {
        grid-template-columns: 1fr !important;
        gap: 20px;
    }

    .timeline-horizontal {
        margin: 20px 0;
    }

    .team-glass-card {
        width: 100%;
    }

    .app-card-standard {
        flex-direction: column;
    }

    .app-card-standard .app-img-box {
        width: 100%;
        height: 200px;
    }

    .contact-grid, .form-grid, .hub-grid-mini, .footer-container {
        grid-template-columns: 1fr !important;
    }

    /* Containers & Spacing */
    .container {
        padding: 0 20px;
    }

    .about-hero, .about-hero-clean {
        padding-top: 120px !important;
        padding-bottom: 40px !important;
    }

    .contact-hero {
        margin-top: 100px;
    }

    .section-padding, .products-section, .applications-section, .partners-section, .contact-section, .custom-solution {
        padding: 40px 0;
    }

    .stat-item.flat-card {
        margin-bottom: 20px;
    }
    
    .product-card {
        padding: 30px 20px;
    }

    .carousel-prev, .carousel-next {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }

    .carousel-prev {
        left: 10px;
    }

    .carousel-next {
        right: 10px;
    }

    .logo-img {
        max-height: 35px !important;
    }

    .nav-links {
        z-index: 1000;
        top: 85px; /* height of top-bar */
        padding: 30px 20px;
    }

    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .section-header > div:last-child {
        flex-wrap: wrap;
    }

    .logo-item-premium-img {
        height: 60px;
        margin-right: 30px;
    }
}