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

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

.skip-link {
    position: absolute;
    left: -9999px;
    z-index: 999;
    padding: 1em;
    background-color: white;
    color: #1D7A8C;
    text-decoration: none;
}

.skip-link:focus {
    left: 50%;
    transform: translateX(-50%);
    top: 0;
}

::focus {
    outline: 3px solid #1D7A8C;
    outline-offset: 2px;
}

.client-logos-container {
    width: 100%;
    overflow: hidden;
    padding: 20px 0;
    margin-bottom: 3rem;
    background: transparent;
    position: relative;
}

.client-logos-slider {
    position: relative;
    width: 100%;
}

.slide-track {
    display: flex;
    width: calc(200px * 10);
    animation: scroll 25s linear infinite;
    gap: 20px;
}

.client-logo-animate {
    height: 100px;
    width: 200px;
    padding: 0 30px;
    object-fit: contain;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.client-logo-animate:hover {
    transform: scale(1.1);
    animation-play-state: paused;
}

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

@keyframes scroll {
    0% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(-100%);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 0.7;
        transform: translateY(0);
    }
}


@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important;
    }
}

.btn-request-demo,
.btn-demo,
.btn-learn {
    min-height: 44px;
    min-width: 44px;
    padding: 12px 24px;
}

input,
textarea,
button {
    min-height: 44px;
}

/* Layout Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Navigation */
.top-bar {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1001;
    background: rgba(240, 87, 66, 0.95);
    color: white;
    padding: 8px 0;
    text-align: center;
    transition: transform 0.3s ease;
    backdrop-filter: blur(10px);
}

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

.top-bar a {
    color: white;
    text-decoration: none;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: color 0.3s ease;
}

.top-bar a:hover {
    color: #1D7A8C;
}

.top-bar i {
    font-size: 12px;
}

@media (max-width: 768px) {
    .top-bar {
        padding: 10px 0;
    }

    .contact-container {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
        padding: 0 20px;
    }

    .contact-container a {
        font-size: 13px;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes floatAnimation {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

@keyframes scaleIn {
    from {
        transform: scale(0.95);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.hero-content {
    animation: fadeInUp 1s ease-out;
}

.service-card,
.solution-card,
.partner-card {
    transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.service-card:hover,
.solution-card:hover,
.partner-card:hover {
    transform: scale(1.05) translateY(-10px);
}

.feature-item {
    animation: scaleIn 0.5s ease-out;
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}


.btn-demo,
.btn-learn,
.btn-request-demo {
    transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.btn-demo:hover,
.btn-learn:hover,
.btn-request-demo:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(29, 122, 140, 0.2);
}

.testimonial-item {
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.testimonial-item:hover {
    transform: translateY(-5px) scale(1.01);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.nav-links a {
    position: relative;
    overflow: hidden;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #1D7A8C;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.nav-links a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.cursor {
    width: 20px;
    height: 20px;
    background: #1D7A8C;
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.7;
}

body {
    background-color: #f8f9fa;
    overflow-x: hidden;
}

nav {
    background: rgba(255, 255, 255, 0.98);
    width: 100%;
    z-index: 100;
    padding: 15px 0;
    position: fixed;
    top: 36px;
    left: 0;
    backdrop-filter: blur(15px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    height: 100%;
}

/* Remove this duplicate mobile rule */

.nav-links a {
    color: #333;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    padding: 8px 12px;
    position: relative;
    transition: all 0.3s ease;
    white-space: nowrap;
}

nav.scrolled {
    background: rgba(255, 255, 255, 0.99);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    padding: 8px 0;
    backdrop-filter: blur(20px);
}

@media (max-width: 768px) {
    /* Hide top bar on mobile */
    .top-bar {
        display: none;
    }
    
    nav {
        top: 0;
        padding: 10px 0;
        height: auto;
        min-height: 60px;
    }

    .nav-container {
        padding: 0 20px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        height: 100%;
        position: relative;
    }
    
    .logo {
        order: 1;
    }

    .logo {
        height: 35px;
        flex-shrink: 0;
    }

    .menu-toggle {
        display: flex !important;
        z-index: 1001;
        position: relative;
        background: rgba(29, 122, 140, 0.1);
        border: 1px solid rgba(29, 122, 140, 0.3);
        order: 2;
        align-items: center;
        justify-content: center;
    }
    
    .nav-links {
        display: none !important;
        order: 3;
        position: fixed;
        top: 60px;
        left: 0;
        width: 100%;
        height: calc(100vh - 60px);
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(15px);
        flex-direction: column;
        padding: 20px;
        gap: 0;
        box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
        overflow-y: auto;
        z-index: 1000;
        animation: slideDown 0.3s ease-out;
    }


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

    .nav-links a {
        width: 100%;
        padding: 15px 20px;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        font-size: 16px;
        font-weight: 500;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .dropdown {
        width: 100%;
    }

    .dropdown-trigger {
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .dropdown-content {
        position: static;
        display: none;
        background: rgba(240, 87, 66, 0.05);
        box-shadow: none;
        border-radius: 0;
        padding: 0;
        margin-left: 20px;
        border-left: 2px solid #F05742;
        opacity: 1;
        transform: none;
    }

    .dropdown.active .dropdown-content {
        display: block;
    }

    .dropdown-content a {
        padding: 12px 20px;
        font-size: 14px;
        color: #666;
        border-bottom: 1px solid rgba(0, 0, 0, 0.03);
    }

    .dropdown-content a:hover {
        background: rgba(240, 87, 66, 0.1);
        color: #F05742;
        border-left: none;
        transform: none;
    }

    .btn-request-demo {
        margin-top: 20px;
        text-align: center;
        justify-content: center;
        background: #1D7A8C !important;
        color: white !important;
        border-radius: 8px;
        font-weight: 600;
    }

    .nav-links::-webkit-scrollbar {
        display: none;
    }

    .nav-links a {
        font-size: 14px;
        padding: 5px 8px;
    }

    .btn-request-demo {
        padding: 8px 16px !important;
        font-size: 14px;
    }
}

.btn-request-demo {
    background: #1D7A8C;
    color: white !important;
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 14px;
    transition: background 0.3s;
}

.btn-request-demo:hover {
    background: #F05742;
    color: white !important;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(240, 87, 66, 0.2);
}

.nav-links a {
    font-size: 1.1rem;
    color: #444;
    padding: 0.5rem 0;
    position: relative;
    transition: color 0.3s;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-trigger {
    display: flex;
    align-items: center;
    gap: 5px;
}

.dropdown-trigger i {
    font-size: 12px;
    transition: transform 0.3s;
}

.dropdown:hover .dropdown-trigger i {
    transform: rotate(180deg);
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 200px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 8px 0;
    z-index: 1000;
}

.dropdown:hover .dropdown-content {
    display: block;
    animation: fadeInDown 0.3s ease;
}

.dropdown-content a {
    display: block;
    padding: 8px 16px;
    color: #444;
    text-decoration: none;
    transition: background 0.3s, color 0.3s;
}

.dropdown-content a:hover {
    background: #f5f5f5;
    color: #1D7A8C;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.nav-links a:not(.btn-request-demo)::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #F05742;
    transition: width 0.3s;
}

.nav-links a:not(.btn-request-demo):hover::after {
    width: 100%;
}

.nav-links a:hover {
    color: #F05742;
}

.btn-request-demo {
    background: #007A87;
    color: white !important;
    padding: 0.75rem 1.5rem !important;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-request-demo:hover {
    background: #F05742;
    color: white !important;
}

.logo {
    height: 45px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
    opacity: 0.9;
}

.logo img {
    height: 100%;
    width: auto;
    object-fit: contain;
    filter: brightness(1.1) contrast(1.1);
}

/* Menu Toggle */
.menu-toggle {
    display: none;
    background: rgba(29, 122, 140, 0.1);
    border: 1px solid rgba(29, 122, 140, 0.3);
    font-size: 1.8rem;
    color: #333;
    cursor: pointer;
    padding: 10px;
    border-radius: 4px;
    transition: all 0.3s ease;
    min-width: 44px;
    min-height: 44px;
    align-items: center;
    justify-content: center;
}

.menu-toggle i {
    display: block !important;
    color: #1D7A8C !important;
    font-size: 1.5rem !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.menu-toggle:hover {
    background: rgba(29, 122, 140, 0.1);
    color: #1D7A8C;
}

/* Removed the X icon change - keep hamburger icon always */

/* Dropdown Styles */
.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    background: white;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 10px 0;
    z-index: 1000;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.dropdown:hover .dropdown-content {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.dropdown-content a {
    display: block;
    padding: 10px 20px;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.dropdown-content a:hover {
    background: rgba(240, 87, 66, 0.1);
    color: #F05742;
    border-left-color: #F05742;
    transform: translateX(5px);
}

@media (max-width: 768px) {
    .logo {
        height: 35px;
    }
}

@media (max-width: 480px) {
    .logo {
        height: 30px;
    }

    .nav-links a {
        font-size: 13px;
        padding: 4px 6px;
    }

    .btn-request-demo {
        padding: 6px 12px !important;
        font-size: 13px;
    }
}

/* Hero Section */
.hero {
    padding: 10rem 8% 4rem;
    background: linear-gradient(45deg, rgba(240, 87, 66, 0.92) 0%, rgba(0, 122, 135, 0.88) 100%), url('attached_assets/office.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    will-change: transform;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    position: relative;
}

.hero-content {
    color: white;
    max-width: 800px;
}

.we-do {
    color: #F05742;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.hero-content h1 {
    font-size: 4rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.hero-content p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

.btn-demo {
    background: #1D7A8C;
    color: white;
    padding: 12px 24px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.btn-learn {
    border: 2px solid white;
    color: white;
    padding: 12px 24px;
    border-radius: 5px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-learn:hover {
    background: #F05742;
    border-color: #F05742;
}

/* Problems Section */
.problems-section {
    padding: 6rem 8%;
    background: #ffffff;
}

.problems-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1D7A8C;
    line-height: 1.3;
}

.section-subtitle {
    text-align: center;
    color: #1D7A8C;
    margin-bottom: 3rem;
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.problem-item {
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 15px;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
}

.problem-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: linear-gradient(to top, rgba(29, 122, 140, 0.05), transparent);
    transition: height 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
    border-radius: 15px;
}

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

.problem-item:hover::after {
    height: 100%;
}

.problem-item:hover i {
    transform: translateY(-5px);
    color: #1D7A8C;
}

.problem-item:hover h3 {
    transform: scale(1.05);
    color: #1D7A8C;
}

.problem-item i {
    color: #F05742;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.problem-item h3 {
    color: #F05742;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.problem-item h3:hover {
    color: #1D7A8C;
}

.problem-item p {
    color: #666;
    line-height: 1.6;
}

/* Services Section */
.services {
    padding: 4rem 8%;
    background: white;
}

/* SAP Business Section */
.sap-business {
    padding: 6rem 8%;
    background: #2C406E;
    color: white;
}

.sap-business-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.sap-business h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.sap-business p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.sap-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.feature-item i {
    color: #1D7A8C;
    font-size: 1.2rem;
}

.btn-explore-erp {
    background: #00FF9D;
    color: #2C406E;
    border: none;
    padding: 1rem 2rem;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-explore-erp:hover {
    background: #F05742;
    color: white;
}


.stats-overlay {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    gap: 2rem;
}

.stat {
    text-align: center;
}

.stat span {
    font-size: 1.8rem;
    font-weight: bold;
    color: #00FF9D;
    display: block;
}

.stat p {
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.8;
}

@media (max-width: 1024px) {
    .sap-business-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .stats-overlay {
        position: static;
        justify-content: center;
        margin-top: 2rem;
    }
}

@media (max-width: 768px) {
    .sap-business h2 {
        font-size: 2rem;
    }
}

.services h2,
.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1D7A8C;
}

.services-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

/* Grid Layouts */
.services-grid,
.solutions-grid,
.industries-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 2rem auto;
    max-width: 1200px;
    padding: 0 4rem;
}

.service-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: linear-gradient(to top, rgba(29, 122, 140, 0.05), transparent);
    transition: height 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.service-card:hover::after {
    height: 100%;
}

.service-card i {
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover i {
    transform: translateY(-10px);
    color: #00FF9D;
}

.pain-point-card {
    padding: 1.5rem;
}

.pain-point-card .card-header {
    text-align: center;
    margin-bottom: 1rem;
}

.pain-point-card .card-header h3 {
    margin-top: 1rem;
    color: #1D7A8C;
    font-size: 1.25rem;
}

.pain-point-card .card-divider {
    height: 2px;
    background: linear-gradient(to right, transparent, #1D7A8C, transparent);
    margin: 1rem 0;
}

.pain-point-card .card-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pain-point-card .card-content ul li {
    padding: 0.5rem 0;
    color: #666;
    position: relative;
    padding-left: 1.5rem;
}

.pain-point-card .card-content ul li:before {
    content: "►";
    color: #1D7A8C;
    position: absolute;
    left: 0;
    font-size: 0.8rem;
}

.service-card h3 {
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover h3 {
    transform: scale(1.05);
}

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

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

.service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: linear-gradient(to top, rgba(29, 122, 140, 0.05), transparent);
    transition: height 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
    border-radius: 10px;
}

.service-card:hover::after {
    height: 100%;
}


.service-card h3 {
    color: #F05742;
    padding: 1.5rem 1.5rem 1rem;
    font-size: 1.3rem;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card ul {
    list-style: none;
    padding: 0 1.5rem;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.service-card ul li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 0.8rem;
    color: #444;
    transition: all 0.3s ease;
}

.service-card:hover h3 {
    transform: scale(1.05);
    color: #1D7A8C;
}

.service-card:hover ul li::before {
    color: #F05742;
    transform: translateX(3px);
}

.service-card ul li::before {
    content: '›';
    position: absolute;
    left: 0;
    color: #1D7A8C;
}

.learn-more {
    display: block;
    padding: 0 1.5rem 1.5rem;
    color: #1D7A8C;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.learn-more:hover {
    color: #F05742;
}

/* Cards */
.solution-card,
.industry-card {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.solution-card i {
    font-size: 2.5rem;
    color: #1D7A8C;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.solution-card:hover i {
    transform: translateY(-10px);
    color: #F05742;
}

.solution-card h3 {
    color: #F05742;
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

.solution-card:hover h3 {
    color: #1D7A8C;
}

.solution-card ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
    text-align: left;
}

.solution-card ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #666;
    transition: all 0.3s ease;
}

.solution-card ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #1D7A8C;
    transition: all 0.3s ease;
}

.solution-card:hover ul li::before {
    color: #F05742;
    transform: translateX(3px);
}

.solutions-section {
    background: #f8f9fa;
}

.solution-card {
    transition: all 0.3s ease;
}

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

.solution-card {
    transition: transform 0.5s ease;
}

.solution-card:hover {
    transform: scale(1.05);
}

.achievements li:hover span {
    transform: scale(1.1);
    color: #1D7A8C;
}

.achievements span {
    transition: all 0.3s ease;
}

.social-links a:hover {
    color: #1D7A8C;
    transform: translateY(-3px);
}

.social-links a {
    transition: all 0.3s ease;
}

.btn-demo:hover,
.btn-learn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.btn-demo,
.btn-learn {
    transition: all 0.3s ease;
}

.service-card i {
    font-size: 2.5rem;
    color: #1D7A8C;
    margin-bottom: 1rem;
}

/* About Section */
.about {
    padding: 4rem 8%;
    text-align: center;
}

#about-title,
#impact-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1D7A8C;
}

.section-content h2 {
    text-align: center;
    color: #1D7A8C;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.mission-vision-content h2 {
    text-align: center;
    color: #1D7A8C;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.mission-block h3,
.vision-block h3 {
    color: #F05742;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.mission-block h3:hover,
.vision-block h3:hover {
    color: #1D7A8C;
}

.achievements {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.achievements li {
    text-align: center;
    color: #F05742;
}

.achievements span {
    display: block;
    font-size: 2.5rem;
    color: #F05742;
    font-weight: bold;
}

/* Solutions Section */
.solutions {
    padding: 4rem 8%;
    background: #f8f9fa;
}

.solutions h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1D7A8C;
}

/* Contact Section */
.contact {
    padding: 4rem 8%;
    background: white;
}

.contact-content {
    max-width: 800px;
    margin: 0 auto;
}

.contact form {
    display: grid;
    gap: 1rem;
    margin-top: 2rem;
}

.contact input,
.contact textarea {
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 10px;
}

.contact button {
    padding: 1rem;
    background: #1D7A8C;
    color: white;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact button:hover {
    background: #F05742;
    color: white;
}

/* Footer */
footer {
    background: linear-gradient(180deg, #1D7A8C 0%, #165E6B 100%);
    color: white;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 1;
    box-shadow: inset 0 15px 25px -15px rgba(0, 0, 0, 0.3);
}

.footer-main {
    padding: 5rem 8%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), transparent);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-section h3 {
    color: white;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    position: relative;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 40px;
    height: 2px;
    background: #F05742;
}

.footer-section h4 {
    color: #F05742;
    margin: 1rem 0;
    font-size: 1.1rem;
}

.contact-info p {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: 0.9;
    transition: all 0.3s ease;
    padding: 8px;
    border-radius: 6px;
}

.contact-info p:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
}

.contact-info p:hover i {
    color: #F05742;
}

.contact-info i {
    color: #F05742;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-links a {
    color: white;
    text-decoration: none;
    opacity: 0.9;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: #F05742;
    transform: translateX(5px);
    opacity: 1;
}

.contact-info p {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: 0.9;
    transition: all 0.3s ease;
    padding: 8px;
    border-radius: 6px;
}

.contact-info p:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
}

.contact-info i {
    color: #F05742;
    font-size: 1.1rem;
    min-width: 20px;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.social-links a {
    color: white;
    text-decoration: none;
    font-size: 1.5rem;
    opacity: 0.9;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
}

.social-links a:hover {
    color: white;
    background: #F05742;
    transform: translateY(-3px);
    opacity: 1;
}

.newsletter h4 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.newsletter-form {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 0.5rem;
}

.newsletter-form input {
    width: 100%;
    padding: 0.8rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 5px;
    color: white;
    min-height: 44px;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.newsletter-form button {
    background: transparent;
    border: 2px solid white;
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    min-height: 44px;
    white-space: nowrap;
}

.newsletter-form button:hover {
    background: #F05742;
    color: white;
    border-color: #F05742;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(240, 87, 66, 0.2);
}

.footer-bottom {
    padding: 1.5rem 8%;
    background: rgba(0, 0, 0, 0.2);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom-links {
    display: flex;
    gap: 2rem;
    margin-left: auto;
}

.footer-bottom-links a {
    text-align: right;
}

.footer-bottom-links a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
    font-size: 0.9rem;
}

.footer-bottom-links a:hover {
    opacity: 1;
    color: #F05742;
}

/* Enhanced Success Stories Styles */
.success-stories {
    padding: 4rem 8%;
    background: #fff;
}

.filter-container {
    text-align: center;
    margin-bottom: 3rem;
}

.filter-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-top: 1.5rem;
}

.filter-btn {
    padding: 0.8rem 1.5rem;
    border: 2px solid #1D7A8C;
    border-radius: 30px;
    background: transparent;
    color: #1D7A8C;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.filter-btn.active,
.filter-btn:hover {
    background: #1D7A8C;
    color: white;
}

.success-stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.story-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.5s forwards;
    position: relative;
    overflow: hidden;
}

.story-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom right, rgba(29, 122, 140, 0.05), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.story-card:hover::after {
    opacity: 1;
}

.story-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.story-card {
    transition: all 0.3s ease;
}

.story-card {
    transition: all 0.3s ease-in-out;
}

.story-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(29, 122, 140, 0.2);
}

.story-card:hover .story-header h3 {
    color: #F05742;
    transition: color 0.3s ease;
}

.story-card:hover .story-header i {
    color: #F05742;
    transform: scale(1.1);
}

.story-card:hover .story-header h3 {
    color: #F05742;
}

.filter-btn {
    transition: all 0.3s ease;
}

.filter-btn:hover {
    background: #F05742;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(240, 87, 66, 0.2);
}

.btn-case-study {
    transition: all 0.3s ease;
}

.btn-case-study:hover {
    background: #F05742;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(240, 87, 66, 0.2);
}

.metric {
    transition: all 0.3s ease;
}

.story-card:hover .metric {
    transform: translateY(-5px);
    background: rgba(29, 122, 140, 0.15);
}

.story-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.logo-link {
    display: block;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.logo-link:hover {
    transform: scale(1.1);
}

.logo-link:active {
    transform: scale(0.95);
}

.company-logo {
    width: 50px;
    height: 50px;
    background: #1D7A8C;
    color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(29, 122, 140, 0.15);
    position: relative;
    overflow: hidden;
}

.company-logo::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right,
            transparent,
            rgba(255, 255, 255, 0.2),
            transparent);
    transition: 0.5s;
}

.story-card:hover .company-logo::before {
    left: 100%;
}

.story-card:hover .company-logo {
    background: #F05742;
    transform: scale(1.1);
}

.author-info {
    margin: 1rem 0;
    text-align: right;
    font-style: italic;
}

.author-name {
    color: #1D7A8C;
    font-weight: 600;
    margin-bottom: 0.2rem;
}

.author-position {
    color: #666;
    font-size: 0.9rem;
}

.story-header h3 {
    color: #1D7A8C;
    margin: 0;
    font-size: 1.3rem;
}

.success-metrics {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.metric {
    text-align: center;
    padding: 1.2rem;
    background: rgba(29, 122, 140, 0.1);
    border-radius: 12px;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.metric:hover {
    transform: translateY(-3px);
    background: rgba(29, 122, 140, 0.15);
}

.metric span {
    position: relative;
    z-index: 1;
    font-weight: 700;
    background: linear-gradient(45deg, #1D7A8C, #F05742);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: all 0.3s ease;
}

.metric:hover span {
    transform: scale(1.1);
    color: #F05742;
}

.metric:hover {
    transform: translateY(-5px);
    background: rgba(29, 122, 140, 0.1);
    cursor: pointer;
    transition: all 0.3s ease;
}

.metric span {
    display: block;
    font-size: 1.8rem;
    color: #F05742;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.metric p {
    margin: 0;
    color: #666;
    font-size: 0.9rem;
}

.story-card blockquote {
    font-style: italic;
    color: #444;
    line-height: 1.6;
    margin: 1.5rem 0;
    padding-left: 1rem;
    border-left: 3px solid #1D7A8C;
}

.impact-areas {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: auto;
    padding: 1rem 0;
}

.impact-tag {
    background: rgba(29, 122, 140, 0.08);
    color: #1D7A8C;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.85rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(29, 122, 140, 0.15);
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-weight: 500;
    box-shadow: 0 2px 4px rgba(29, 122, 140, 0.05);
}

.impact-tag {
    font-weight: 500;
    0;
}

.impact-tag:hover {
    background: #1D7A8C;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(29, 122, 140, 0.2);
    border-color: #1D7A8C;
}

.impact-tag:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(29, 122, 140, 0.1);
}

.btn-case-study {
    width: 100%;
    padding: 1rem;
    background: #1D7A8C;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-case-study:hover {
    background: #F05742;
    color: white;
}

.case-study-preview {
    margin-top: 1rem;
    padding: 0.8rem;
    background: #f5f5f5;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
}

.case-study-preview:hover {
    background: #F05742;
    color: white;
}

.case-study-preview i {
    font-size: 1.2rem;
}

.related-stories {
    padding: 4rem 8%;
    background: #fff;
}

.related-stories h2 {
    text-align: center;
    color: #1D7A8C;
    margin-bottom: 2rem;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.related-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
    text-decoration: none;
    color: #1D7A8C;
    transition: all 0.3s ease;
}

.related-link:hover {
    background: #1D7A8C;
    color: white;
    transform: translateY(-2px);
}

.success-metrics-overview,
.industry-metrics {
    padding: 4rem 8%;
    background: #f8f9fa;
    text-align: center;
    margin-bottom: 4rem;
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 3rem auto 0;
    max-width: 1200px;
}

.metric-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.metric-card:hover {
    transform: translateY(-5px);
}

.metric-number {
    font-size: 2.5rem;
    color: #1D7A8C;
    font-weight: bold;
    display: block;
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

.metric-number:hover {
    color: #F05742;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

    .filter-buttons {
        flex-direction: column;
        align-items: stretch;
    }

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

.industry-section {
    margin-bottom: 4rem;
}

.industry-section h2 {
    color: #1D7A8C;
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

.testimonial-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-align: center;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(29, 122, 140, 0.2);
}

.client-logo {
    font-size: 3rem;
    color: #1D7A8C;
    margin-bottom: 1.5rem;
}

.testimonial-card blockquote {
    font-style: italic;
    color: #444;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.client-info h4 {
    color: #1D7A8C;
    margin-bottom: 0.5rem;
}

.client-info p {
    color: #666;
    font-size: 0.9rem;
}

.client-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding: 4rem 8%;
    background: #f8f9fa;
    text-align: center;
}

.stat-item span {
    font-size: 2.5rem;
    color: #1D7A8C;
    font-weight: bold;
    display: block;
    margin-bottom: 0.5rem;
}

.stat-item p {
    color: #666;
    font-size: 1.1rem;
}

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

    .client-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

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

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .footer-bottom-links {
        justify-content: center;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form button {
        width: 100%;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .top-bar {
        padding: 10px 0;
    }

    .contact-container {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
        padding: 0 20px;
    }

    .contact-container a {
        font-size: 13px;
    }

    .nav-container {
        flex-direction: row;
        justify-content: space-between;
        padding: 15px 20px;
        align-items: center;
    }

    .nav-links {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        align-items: center;
        gap: 10px;
    }

    .logo {
        height: 35px;
    }

    .hero {
        padding: 8rem 5% 4rem;
        text-align: left;
        min-height: auto;
    }

    .hero-content {
        width: 100%;
    }

    .hero-content h1 {
        font-size: 2.5rem;
        line-height: 1.3;
    }

    .hero-buttons {
        justify-content: flex-start;
    }

    .services,
    .about,
    .solutions,
    .contact {
        padding: 4rem 5%;
    }

    .services-grid,
    .solutions-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

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

    .achievements {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }

    .achievements li {
        font-size: 14px;
    }

    .achievements span {
        font-size: 2rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 3rem 5%;
    }

    .footer-section {
        text-align: left;
    }

    .social-links {
        justify-content: flex-start;
    }

    .cursor {
        display: block;
        opacity: 0.7;
        transform: scale(0.75);
    }
}

@media (max-width: 480px) {
    .nav-links {
        gap: 10px;
    }

    .nav-links a {
        font-size: 13px;
        padding: 4px 6px;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .btn-demo,
    .btn-learn {
        width: 100%;
        text-align: center;
    }

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

/* Small devices (phones, 480px and down) */
@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.8rem;
        line-height: 1.3;
    }

    .services h2,
    .solutions h2,
    .about h2,
    .partners h2 {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }

    .hero-content p {
        font-size: 1rem;
        line-height: 1.5;
    }

    .services-grid,
    .solutions-grid,
    .partners-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }

    .achievements {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .footer-section {
        padding: 1rem;
    }

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

/* Medium devices (tablets, 768px and down) */
@media (max-width: 768px) {
    .hero {
        padding: 6rem 5% 3rem;
    }

    .nav-container {
        padding: 0.5rem 1rem;
    }

    .service-card,
    .solution-card,
    .partner-card {
        margin: 0 auto;
        max-width: 400px;
    }

    .testimonial-item {
        padding: 1.5rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem 1rem;
    }
}

/* Large devices (laptops/desktops, 1024px and down) */
@media (max-width: 1024px) {

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

    .transform-section {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Extra large devices (large desktops, 1200px and down) */
@media (max-width: 1200px) {
    .container {
        padding: 0 2rem;
    }
}

/* Transform Section */
.transform-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    padding: 4rem 8%;
    background: #1D7A8C;
    color: white;
}

.transform-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.transform-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.btn-request,
.btn-contact {
    background: transparent;
    border: 2px solid white;
    color: white;
    padding: 1rem 2rem;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-request:hover,
.btn-contact:hover {
    background: #F05742;
    color: white;
    border-color: #F05742;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(240, 87, 66, 0.2);
}

.transform-form {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    color: #333;
}

.transform-form h3 {
    color: #1D2F66;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #666;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.btn-send {
    background: #1D7A8C;
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 5px;
    width: 100%;
    margin-top: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-send:hover {
    background: #F05742;
}

/* Video Testimonials Section */
.video-testimonials {
    padding: 4rem 8%;
    background: white;
    text-align: center;
}

.video-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.filter-select {
    padding: 0.8rem 1.5rem;
    border: 2px solid #1D7A8C;
    border-radius: 8px;
    background: white;
    color: #1D7A8C;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-select:hover {
    border-color: #F05742;
    color: #F05742;
}

.video-pagination {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.pagination-btn {
    padding: 0.8rem 1.5rem;
    background: #1D7A8C;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pagination-btn:hover {
    background: #F05742;
}

.pagination-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
}

#pageInfo {
    color: #1D7A8C;
    font-weight: 500;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.video-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.filter-select {
    padding: 0.8rem 1.5rem;
    border: 2px solid #1D7A8C;
    border-radius: 8px;
    background: white;
    color: #1D7A8C;
    font-size: 1rem;
    min-width: 200px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-select:hover {
    border-color: #F05742;
    color: #F05742;
}

.video-pagination {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.pagination-btn {
    padding: 0.8rem 1.5rem;
    background: #1D7A8C;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pagination-btn:hover {
    background: #F05742;
}

.pagination-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
}

.video-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 1rem;
    padding: 1rem;
    background: rgba(29, 122, 140, 0.05);
    border-radius: 8px;
}

.industry-tag,
.year-tag {
    padding: 0.5rem 1rem;
    background: white;
    border: 1px solid rgba(29, 122, 140, 0.2);
    border-radius: 20px;
    font-size: 0.85rem;
    color: #1D7A8C;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    transition: all 0.3s ease;
}

.industry-tag:hover,
.year-tag:hover {
    background: #F05742;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(240, 87, 66, 0.2);
}

.industry-tag::before {
    content: '🏢';
}

.year-tag::before {
    content: '📅';
}

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

    .video-filters {
        flex-direction: column;
        align-items: stretch;
    }

    .filter-select {
        width: 100%;
    }
}

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

.video-card {
    background: #f8f9fa;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.video-card:hover {
    transform: translateY(-10px);
}

.video-filters {
    margin-bottom: 3rem;
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-select {
    min-width: 200px;
    padding: 0.8rem 1.5rem;
    border: 2px solid #1D7A8C;
    border-radius: 8px;
    background: white;
    color: #1D7A8C;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-select:hover {
    border-color: #F05742;
    color: #F05742;
}

.video-container {
    position: relative;
    padding-top: 56.25%;
    /* 16:9 aspect ratio */
    width: 100%;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-card h3 {
    color: #1D7A8C;
    padding: 1.5rem 1.5rem 0.5rem;
    font-size: 1.2rem;
}

.video-card p {
    color: #666;
    padding: 0 1.5rem 1.5rem;
}

/* Testimonials Section */
.testimonials {
    padding: 6rem 8%;
    background: #f8f9fa;
    text-align: center;
}

.testimonial-slider {
    max-width: 800px;
    margin: 3rem auto 0;
    position: relative;
}

.testimonial-container {
    display: flex;
    overflow: hidden;
    width: 100%;
}

.testimonial-item {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    flex: 0 0 100%;
    min-width: 100%;
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s ease-in-out;
    position: relative;
    overflow: hidden;
}

.testimonial-item.active {
    opacity: 1;
    transform: translateX(0);
}

.testimonial-item::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 6rem;
    color: rgba(29, 122, 140, 0.1);
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-item blockquote {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #444;
    margin: 0 0 1.5rem;
    position: relative;
    z-index: 1;
}

.testimonial-item.active {
    transform: scale(1.02);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #1D7A8C;
    transform: scale(1.2);
}

.testimonial-container {
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-item blockquote {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    font-style: italic;
    color: #444;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    justify-content: flex-start;
    padding: 1rem;
    background: rgba(29, 122, 140, 0.05);
    border-radius: 10px;
    margin-top: 1.5rem;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #fff;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.testimonial-author h4 {
    color: #1D7A8C;
    margin: 0 0 0.3rem;
    font-size: 1.1rem;
}

.testimonial-author p {
    color: #666;
    margin: 0;
    font-size: 0.9rem;
}


.testimonial-author h4 {
    color: #1D7A8C;
    margin: 0;
}

.testimonial-author p {
    color: #666;
    margin: 0;
}

/* Breadcrumb Navigation */
.breadcrumb {
    padding: 1rem 8%;
    background: #f8f9fa;
}

.breadcrumb ol {
    list-style: none;
    display: flex;
    gap: 0.5rem;
    margin: 0;
    padding: 0;
}

.breadcrumb li:not(:last-child)::after {
    content: "›";
    margin-left: 0.5rem;
    color: #666;
}

.breadcrumb a {
    color: #1D7A8C;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: #F05742;
}

/* Markets Section */
.markets {
    padding: 6rem 8%;
    background: #f8f9fa;
    text-align: center;
}

.markets h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1D7A8C;
}

.markets-content {
    margin-top: 3rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.markets-text {
    width: 100%;
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.markets-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.location-dots {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.location-dot {
    position: absolute;
    width: 12px;
    height: 12px;
    background: #00FF9D;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.location-dot:nth-child(1) {
    top: 30%;
    left: 45%;
    animation-delay: 0s;
}

.location-dot:nth-child(2) {
    top: 35%;
    left: 48%;
    animation-delay: 0.2s;
}

.location-dot:nth-child(3) {
    top: 40%;
    left: 46%;
    animation-delay: 0.4s;
}

.location-dot:nth-child(4) {
    top: 45%;
    left: 47%;
    animation-delay: 0.6s;
}

.location-dot:nth-child(5) {
    top: 50%;
    left: 48%;
    animation-delay: 0.8s;
}

.location-dot:nth-child(6) {
    top: 55%;
    left: 47%;
    animation-delay: 1s;
}

.location-dot:nth-child(7) {
    top: 60%;
    left: 46%;
    animation-delay: 1.2s;
}

.location-dot:nth-child(8) {
    top: 65%;
    left: 45%;
    animation-delay: 1.4s;
}

.location-dot {
    position: absolute;
    width: 12px;
    height: 12px;
    background: #00FF9D;
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(0, 255, 157, 0.3);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 255, 157, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(0, 255, 157, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(0, 255, 157, 0);
    }
}

.country-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

.country-grid button {
    background: white;
    border: 1px solid #ddd;
    padding: 1rem;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    color: #F05742;
}

.country-grid button:hover {
    background: #1D7A8C;
    color: white;
    border-color: #1D7A8C;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(29, 122, 140, 0.2);
}


.markets-text h3 {
    color: #F05742;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.markets-text h3:hover {
    color: #1D7A8C;
}

.country-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

.country-grid button {
    background: white;
    border: 1px solid #ddd;
    padding: 1rem;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.country-grid button:hover {
    background: #1D7A8C;
    color: white;
    border-color: #1D7A8C;
}

/* Partners Section */
.partners {
    padding: 6rem 8%;
    background: white;
}

.partners h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1D7A8C;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.partner-card {
    background: transparent;
    height: 300px;
    perspective: 1000px;
    border-radius: 10px;
    cursor: pointer;
}

.partner-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
    will-change: transform;
}

.partner-card:hover .partner-card-inner {
    transform: rotateY(180deg);
}

.partner-card-front,
.partner-card-back {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.partner-card-front,
.partner-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    background: white;
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.partner-card-front {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.partner-card-back {
    transform: rotateY(180deg);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1rem;
}

.partner-card .partner-logo {
    width: 100px;
    height: 100px;
    object-fit: contain;
    margin: 0 auto;
}

.partner-card h3 {
    margin: 0;
    color: #F05742;
    font-size: 1.3rem;
}

.partner-card h3:hover {
    color: #1D7A8C;
}

.partner-card p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.partner-card-back .partner-link {
    margin-top: auto;
    padding: 10px 20px;
    background: #F05742;
    color: white;
    border-radius: 5px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.partner-card-back .partner-link:hover {
    background: #1D7A8C;
    transform: translateY(-3px);
}

/* Page-specific styles */
.page-hero {
    padding: 8rem 8% 4rem;
    background: linear-gradient(45deg, rgba(27, 47, 102, 0.9) 0%, rgba(0, 122, 135, 0.85) 100%), url('../attached_assets/_M7A7231 copy.jpg');
    background-size: cover;
    background-position: center;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    transition: all 0.5s ease;
}

.page-hero.team-hero {
    background-attachment: fixed;
    background-position: center 25%;
}

.page-hero.team-hero::after {
    display: none;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.page-hero .hero-content {
    position: relative;
    z-index: 2;
}

/* Hero Section */
.page-hero {
    padding-top: 120px;
    padding-bottom: 60px;
    background: #f5f5f5;
    text-align: center;
}

.company-hero {
    background: linear-gradient(45deg, rgba(27, 47, 102, 0.9) 0%, rgba(0, 122, 135, 0.85) 100%), url('../attached_assets/over.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 60vh;
}

.page-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.section-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 4%;
}

.company-overview {
    padding: 4rem 8%;
    background: white;
}

.intro-section {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    padding: 2rem 0;
}

.divider {
    width: 80px;
    height: 3px;
    background: #1D7A8C;
    margin: 1.5rem auto;
}

.lead-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 2rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.additional-info {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.additional-info p {
    line-height: 1.8;
    color: #444;
    margin-bottom: 2rem;
}

.additional-info h2 {
    text-align: center;
    margin-bottom: 1.5rem;
}

.overview-content {
    margin-top: 2rem;
}

.overview-grid {
    margin-top: 4rem;
    background: #f8f9fa;
    padding: 3rem 0;
    border-radius: 15px;
}

.overview-card {
    background: white;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
}

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

.overview-card i {
    color: #1D7A8C;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    transition: all 0.4s ease;
}

.overview-card h3 {
    color: #F05742;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    position: relative;
    padding-bottom: 10px;
    transition: all 0.3s ease;
}

.overview-card h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: #F05742;
    transition: width 0.4s ease;
}

.overview-card:hover h3::after {
    width: 50px;
}

.overview-card:hover i {
    transform: translateY(-8px) scale(1.1);
    color: #F05742;
}

.overview-card:hover h3 {
    transform: translateY(-3px);
    color: #1D7A8C;
}

.overview-image {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto 3rem;
    text-align: center;
}

.featured-image {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    animation: fadeIn 1.5s ease-out;
    transition: transform 0.6s ease, box-shadow 0.6s ease;
}

.featured-image:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 25px rgba(29, 122, 140, 0.2);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.overview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin: 3rem auto;
    max-width: 1400px;
    padding: 0 2%;
}

.value-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    max-width: 400px;
    margin: 0 auto;
}

.overview-card:hover {
    transform: translateY(-10px);
}

.overview-card i {
    font-size: 2.5rem;
    color: #1D7A8C;
    margin-bottom: 1rem;
}

.overview-card:hover i {
    transform: translateY(-10px);
    color: #F05742;
}

.team-showcase {
    padding: 4rem 8%;
    background: #f8f9fa;
    margin-top: 2rem;
}

.team-showcase .container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.team-showcase .team-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    object-position: center 25%;
    display: block;
    margin: 0 auto;
    transition: transform 0.5s ease;
}

.team-showcase .container:hover .team-image {
    transform: scale(1.05);
}

.team-section {
    padding: 6rem 8%;
    background: #fff;
}

.team-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.team-intro h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1D7A8C;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.team-member {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(29, 122, 140, 0.2);
}

.member-info {
    padding: 2rem;
    text-align: center;
}

.member-info h3 {
    color: #F05742;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.member-info h3:hover {
    color: #1D7A8C;
}

.member-info .position {
    color: #F05742;
    font-weight: 500;
    margin-bottom: 1rem;
}

.member-info .bio {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.member-info .social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.member-info .social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(29, 122, 140, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1D7A8C;
    transition: all 0.3s ease;
}

.member-info .social-links a:hover {
    background: #1D7A8C;
    color: white;
    transform: translateY(-3px);
}

.team-values {
    padding: 4rem 8%;
    background: #f8f9fa;
    text-align: center;
}

.team-values h2 {
    color: #1D7A8C;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.value-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.value-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: linear-gradient(to top, rgba(29, 122, 140, 0.05), transparent);
    transition: height 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
    border-radius: 15px;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(29, 122, 140, 0.2);
}

.value-card:hover::after {
    height: 100%;
}

.value-card i {
    font-size: 2.5rem;
    color: #1D7A8C;
    margin-bottom: 1.5rem;
    transition: all 0.4s ease;
}

.value-card:hover i {
    transform: translateY(-8px) scale(1.1);
    color: #F05742;
}

.value-card h3 {
    color: #F05742;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    transition: all 0.3s ease;
}

.value-card:hover h3 {
    transform: scale(1.05);
    color: #1D7A8C;
}

.value-card p {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
    margin: 0;
}

@media (max-width: 768px) {
    .team-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 3rem auto;
    }

    .values-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 3rem auto;
    }
}

.additional-info p a {
    color: #1D7A8C;
    text-decoration: none;
    transition: color 0.3s ease;
}

.additional-info p a:hover {
    color: #F05742;
    text-decoration: underline;
}

.team-showcase {
    padding: 4rem 8%;
    background: #f8f9fa;
    margin-top: 2rem;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 4rem 8%;
}

.industry-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.industry-card:hover {
    transform: translateY(-10px);
}

.industry-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.industry-card h3 {
    padding: 1.5rem 1.5rem 1rem;
    color: #F05742;
}

.industry-card h3:hover {
    color: #1D7A8C;
}

.industry-card p {
    padding: 0 1.5rem;
    color: #666;
}

.industry-card ul {
    list-style: none;
    padding: 0 1.5rem;
    margin: 1rem 0;
}

.industry-card ul li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.industry-card ul li::before {
    content: '›';
    position: absolute;
    left: 0;
    color: #1D7A8C;
}

/* Brochure Download Module Styles */
.brochure-download {
    padding: 4rem 8%;
    background: #f8f9fa;
}

.brochure-container {
    max-width: 1200px;
    margin: 0 auto;
    background: rgba(29, 122, 140, 0.05);
    border-radius: 15px;
    padding: 3rem;
    display: flex;
    gap: 3rem;
    align-items: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(29, 122, 140, 0.1);
}

.brochure-icon {
    font-size: 4rem;
    color: #1D7A8C;
    flex-shrink: 0;
}

.brochure-content {
    flex: 1;
}

.brochure-content h3 {
    color: #1D7A8C;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.brochure-content p {
    color: #666;
    margin-bottom: 2rem;
}

.brochure-form {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 1rem;
}

.brochure-form input {
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
}

.btn-download {
    grid-column: 1 / -1;
    background: #1D7A8C;
    color: white;
    border: none;
    padding: 1rem;
    border-radius: 8px;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.btn-download:hover {
    background: #F05742;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(240, 87, 66, 0.2);
}

@media (max-width: 768px) {
    .brochure-container {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
    }

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

/* Engineering & Construction Page Styles */
.challenges-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.challenge-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.challenge-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(29, 122, 140, 0.2);
}

.challenge-card:hover i {
    transform: scale(1.2);
    color: #F05742;
}

.challenge-card:hover h3 {
    color: #1D7A8C;
}

.challenge-card i {
    font-size: 2rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.challenge-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: linear-gradient(to top, rgba(29, 122, 140, 0.05), transparent);
    transition: height 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
    border-radius: 10px;
}

.challenge-card:hover::after {
    height: 100%;
}

/* Project Lifecycle Section */
.project-lifecycle {
    padding: 6rem 8%;
    background: #f8f9fa;
    text-align: center;
}

.project-lifecycle h2 {
    color: #1D7A8C;
    font-size: 2.5rem;
    margin-bottom: 4rem;
    position: relative;
}

.project-lifecycle h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: #1D7A8C;
}

.project-lifecycle {
    padding: 6rem 8%;
    background: #f8f9fa;
    text-align: center;
}

.project-lifecycle h2 {
    color: #1D7A8C;
    font-size: 2.5rem;
    margin-bottom: 4rem;
    position: relative;
}

.horizontal-timeline {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    padding: 3rem 0;
}

.horizontal-timeline::before {
    content: '';
    position: absolute;
    top: 100px;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, #1D7A8C, #00FF9D);
    border-radius: 2px;
}

.timeline-item {
    flex: 1;
    position: relative;
    padding: 0 20px;
    transition: transform 0.3s ease;
}

.timeline-item:hover {
    transform: translateY(-10px);
}

.timeline-item::after {
    content: '→';
    position: absolute;
    right: -10px;
    top: 90px;
    color: #1D7A8C;
    font-size: 24px;
    z-index: 1;
    transition: transform 0.3s ease;
}

.timeline-item:hover::after {
    transform: translateX(5px);
    color: #00FF9D;
}

.timeline-item:last-child::after {
    display: none;
}

.step-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.step-number {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #1D7A8C, #00FF9D);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    margin: 0 auto 1.5rem;
    position: relative;
    z-index: 2;
    box-shadow: 0 4px 10px rgba(29, 122, 140, 0.2);
    transition: all 0.3s ease;
}

.timeline-item:hover .step-number {
    transform: scale(1.1);
    box-shadow: 0 6px 15px rgba(29, 122, 140, 0.3);
}

.timeline-content {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-align: left;
    border: 1px solid rgba(29, 122, 140, 0.1);
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(29, 122, 140, 0.2);
}

.timeline-icon {
    width: 60px;
    height: 60px;
    background: rgba(29, 122, 140, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.timeline-icon i {
    font-size: 1.5rem;
    color: #1D7A8C;
    transition: all 0.3s ease;
}

.timeline-content:hover .timeline-icon {
    background: #1D7A8C;
}

.timeline-content:hover .timeline-icon i {
    color: white;
}

.timeline-content h3 {
    color: #1D7A8C;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    transition: color 0.3s ease;
}

.timeline-content:hover h3 {
    color: #F05742;
}

.timeline-details ul {
    list-style: none;
    padding: 0;
}

.timeline-details li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #666;
}

.timeline-details li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #1D7A8C;
    transition: all 0.3s ease;
}

.timeline-content:hover .timeline-details li::before {
    color: #F05742;
    transform: translateX(3px);
}

@media (max-width: 768px) {
    .vertical-timeline::before {
        left: 30px;
    }

    .timeline-item {
        width: 100%;
        padding-left: 80px;
        padding-right: 0;
    }

    .timeline-item:nth-child(even) {
        padding-left: 80px;
    }

    .timeline-dot {
        left: 10px;
        right: auto;
    }

    .timeline-item:nth-child(even) .timeline-dot {
        left: 10px;
    }
}

@media (max-width: 768px) {
    .lifecycle-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 1.5rem;
    }

    .lifecycle-content {
        text-align: center;
    }

    .lifecycle-features li {
        text-align: left;
    }

    .project-lifecycle h2 {
        font-size: 2rem;
    }
}

.comparison-table {
    overflow-x: auto;
    margin: 2rem 0;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.animate-table {
    animation: tableAppear 0.6s ease-out forwards;
}

@keyframes tableAppear {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.comparison-table tr {
    transition: all 0.3s ease;
}

.comparison-table tr:hover {
    background: rgba(29, 122, 140, 0.05);
    transform: scale(1.01);
}

.comparison-table td,
.comparison-table th {
    transition: all 0.3s ease;
}

.comparison-table tr:hover td {
    color: #1D7A8C;
    transform: scale(1.01);
    background: rgba(29, 122, 140, 0.05);
    transition: all 0.3s ease;
}

.comparison-table td,
.comparison-table th {
    transition: all 0.3s ease;
}

.comparison-table i.fa-check {
    transition: all 0.3s ease;
}

.comparison-table tr:hover i.fa-check {
    transform: scale(1.2);
    color: #F05742;
}

.comparison-table:hover {
    box-shadow: 0 15px 30px rgba(29, 122, 140, 0.2);
    transform: translateY(-5px);
}

.comparison-table i.fa-check {
    transition: all 0.3s ease;
}

.comparison-table tr:hover i.fa-check {
    transform: scale(1.2);
    color: #F05742;
}

.comparison-table:hover {
    box-shadow: 0 15px 30px rgba(29, 122, 140, 0.2);
    transform: translateY(-5px);
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
    background: white;
}

.comparison-table th,
.comparison-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #eee;
    transition: all 0.3s ease;
}

.comparison-table th {
    background: #1D7A8C;
    color: white;
    position: relative;
    overflow: hidden;
}

.comparison-table th::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: shine 3s infinite;
}

.comparison-table tr:hover td {
    background: rgba(240, 87, 66, 0.05);
    color: #F05742;
}

.comparison-table i.fa-check {
    color: #1D7A8C;
    transform: scale(1);
    transition: transform 0.3s ease;
}

.comparison-table tr:hover i.fa-check {
    transform: scale(1.2);
    color: #F05742;
}

@keyframes shine {
    to {
        left: 200%;
    }
}

.success-story {
    background: white;
    padding: 3rem;
    border-radius: 10px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.metric h4 {
    color: #1D7A8C;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.compliance-badges {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    text-align: center;
}

.badge {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.badge:hover {
    transform: translateY(-5px);
}

.integration-partners {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.partner {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.partner:hover {
    transform: translateY(-5px);
}

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

    .timeline::before {
        height: 100%;
        width: 2px;
        left: 50%;
        top: 0;
        transform: translateX(-50%);
    }

    .timeline-item {
        width: 100%;
        margin: 1rem 0;
    }
}

@media (max-width: 1024px) {

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

@media (max-width: 768px) {

    .overview-grid,
    .team-grid {
        grid-template-columns: 1fr;
    }

    .page-hero h1 {
        font-size: 2.5rem;
    }
}


.partner-link {
    color: #F05742;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.partner-link:hover {
    color: #1D7A8C;
}

/* SAP Modules Section */
.sap-modules {
    padding: 6rem 8%;
    background: #f8f9fa;
    text-align: center;
}

.sap-modules h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1D7A8C;
}

.modules-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.module-card {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    z-index: 1;
}

.module-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: linear-gradient(to top, rgba(29, 122, 140, 0.05), transparent);
    transition: height 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
    border-radius: 10px;
}

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

.module-card:hover::after {
    height: 100%;
}

.module-card:hover i {
    transform: scale(1.1) translateY(-5px);
    color: #1D7A8C;
}

.module-card:hover h3 {
    transform: scale(1.05);
    color: #1D7A8C;
}

.module-card i {
    font-size: 2rem;
    color: #F05742;
    margin-bottom: 1rem;
}

.module-card h3 {
    font-size: 1rem;
    color: #444;
}

/* Services Offered Section */
.services-offered {
    padding: 4rem 8%;
    background: white;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.service-item {
    text-align: center;
    padding: 2rem;
    border-radius: 10px;
    background: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.service-item:hover {
    transform: translateY(-5px);
}

.service-item i {
    font-size: 2.5rem;
    color: #1D7A8C;
    margin-bottom: 1.5rem;
}

.service-item h3 {
    color: #F05742;
    margin-bottom: 1rem;
}

.service-item h3:hover {
    color: #1D7A8C;
}

.explore-link {
    color: #1D7A8C;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    display: inline-block;
    margin-top: 1rem;
}

.explore-link:hover {
    color: #F05742;
}

/* Additional Services Section */
.additional-services {
    padding: 4rem 8%;
    background: #f8f9fa;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.get-in-touch-banner {
    padding: 2rem 8%;
    text-align: center;
    background: white;
}

.btn-get-in-touch {
    background: #00FF9D;
    color: #1B2F66;
    border: none;
    padding: 1rem 3rem;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-get-in-touch:hover {
    background: #F05742;
    color: white;
}

/* ERP Challenges Section */
.erp-challenges {
    padding: 6rem 8%;
    text-align: center;
    background: #f8f9fa;
    position: relative;
    overflow: hidden;
}

.erp-challenges h2 {
    color: #1D7A8C;
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
    animation: fadeInUp 1s ease-out;
}

.erp-challenges p {
    max-width: 800px;
    margin: 0 auto 2rem;
    color: #444;
    line-height: 1.6;
    animation: fadeInUp 1.2s ease-out;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.challenge-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
}

.feature {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
    padding: 2rem;
}

.feature::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: linear-gradient(to top, rgba(29, 122, 140, 0.05), transparent);
    transition: height 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
    border-radius: 10px;
}

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

.feature:hover::after {
    height: 100%;
}

.feature:hover .service-icon {
    transform: translateY(-10px);
    color: #00FF9D;
}

.feature:hover h3 {
    transform: scale(1.05);
}

.feature:hover .service-icon {
    transform: scale(1.2) rotate(10deg);
    color: #F05742;
}

.service-icon {
    font-size: 2.5rem;
    color: #1D7A8C;
    margin-bottom: 1rem;
}

.feature h3 {
    font-size: 1.3rem;
    color: #F05742;
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

.feature:hover h3 {
    color: #1D7A8C;
}

.feature p {
    font-size: 0.9rem;
    margin: 0 0 1rem 0;
    color: #666;
    line-height: 1.6;
}

.explore-link {
    display: inline-block;
    color: #1D7A8C;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding-bottom: 2px;
}

.explore-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #F05742;
    transition: width 0.3s ease;
}

.explore-link:hover {
    color: #F05742;
}

.explore-link:hover::after {
    width: 100%;
}

.get-in-touch-banner {
    margin-top: 4rem;
    text-align: center;
}

.btn-get-in-touch {
    background: #1D7A8C;
    color: white;
    border: none;
    padding: 1rem 3rem;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateY(20px);
    opacity: 0;
    text-decoration: none;
}

.btn-get-in-touch.animate-on-scroll {
    animation: fadeInUp 0.6s ease-out forwards;
}

.btn-get-in-touch:hover {
    background: #F05742;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(240, 87, 66, 0.2);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 1200px) {
    .features {
        grid-template-columns: repeat(3, 1fr);
    }
}

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

@media (max-width: 576px) {
    .features {
        grid-template-columns: 1fr;
    }
}

/* Why SAP Section */
.why-sap {
    padding: 6rem 8%;
    background: #1D2F66;
    color: white;
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
}

.why-sap h2 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.why-sap p {
    line-height: 1.6;
    margin-bottom: 2rem;
}

.features-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin: 2rem 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.feature-item i {
    color: #1D7A8C;
    font-size: 1.2rem;
}

.stats-overlay {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    gap: 2rem;
}

.stat {
    text-align: center;
}

.stat span {
    font-size: 1.8rem;
    font-weight: bold;
    color: #00FF9D;
    display: block;
}

.stat p {
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.8;
}

.btn-explore {
    background: #00FF9D;
    color: #1B2F66;
    border: none;
    padding: 1rem 2rem;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.stat-item span {
    font-size: 2rem;
    font-weight: bold;
    color: #00FF9D;
}

.overview-card .service-list {
    list-style: none;
    padding: 0.5rem 1.2rem;
    margin: 0.8rem 0;
    text-align: left;
    max-width: 100%;
}

.overview-card .service-list li {
    position: relative;
    padding-left: 22px;
    margin-bottom: 1rem;
    color: #444;
    line-height: 1.5;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.overview-card .service-list li:hover {
    color: #1D7A8C;
    transform: translateX(5px);
}

.overview-card .service-list li::before {
    content: '›';
    position: absolute;
    left: 0;
    color: #1D7A8C;
    font-size: 1.3rem;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.3s ease;
}

.overview-card .service-list li:hover::before {
    color: #F05742;
    transform: translateY(-50%) scale(1.2);
}


/* Responsive Design Updates */
@media (max-width: 1024px) {

    .transform-section,
    .markets-content,
    .partners-grid,
    .modules-grid,
    .services-offered,
    .additional-services,
    .why-sap {
        grid-template-columns: 1fr;
    }

    .modules-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .transform-section {
        padding: 3rem 5%;
    }

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

    .markets-content {
        gap: 2rem;
    }

    .markets-text {
        max-width: 100%;
    }

    .markets-image {
        width: 100%;
        min-height: 300px;
    }
}

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

@media (max-width: 480px) {

    .transform-buttons,
    .stats {
        flex-direction: column;
    }

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

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

.floating-chat {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

#chatButton {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #1D7A8C;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

#chatButton i {
    font-size: 24px;
    color: white;
}

#chatButton:hover {
    background: #F05742;
    transform: scale(1.1);
}

/* Updated markets section styling and text alignment */
.markets-text {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 3rem;
}

.markets-text p {
    line-height: 1.8;
    margin-bottom: 2rem;
    text-align: center;
    max-width: 100%;
}

.markets-text h3 {
    margin-bottom: 2.5rem;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 4rem auto;
    max-width: 1400px;
    padding: 0 2rem;
}

.about-card {
    background: white;
    padding: 1.8rem;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    max-width: 350px;
    margin: 0 auto;
}

.about-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(29, 122, 140, 0.2);
}

.card-icon {
    font-size: 2.2rem;
    color: #1D7A8C;
    margin-bottom: 1.2rem;
    transition: all 0.3s ease;
}

.about-card:hover .card-icon {
    transform: scale(1.1);
    color: #F05742;
}

.about-card h3 {
    color: #1D7A8C;
    margin-bottom: 1.2rem;
    font-size: 1.3rem;
}

.about-card p {
    color: #666;
    line-height: 1.6;
    font-size: 1rem;
}

.about-image-section {
    margin: 4rem auto;
    max-width: 1200px;
    padding: 0 2rem;
}

.image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.featured-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    object-position: center 25%;
    transition: transform 0.5s ease;
}

.image-container:hover .featured-image {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(29, 122, 140, 0.9), transparent);
    padding: 2rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.image-container:hover .image-overlay {
    transform: translateY(0);
}

.overlay-text {
    color: white;
    font-size: 1.5rem;
    text-align: center;
    margin: 0;
}

@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: repeat(2, 1fr);
        padding: 0 1.5rem;
    }
}

@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 2rem auto;
    }

    .about-image-section {
        padding: 0 1rem;
    }

    .featured-image {
        height: 300px;
    }
}

.mission-vision-section {
    margin: 6rem auto;
    padding: 4rem 0;
    background: #f8f9fa;
}

.mission-vision-content {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    gap: 4rem;
    align-items: center;
    padding: 0 6rem;
}

.text-content {
    flex: 1;
}

.image-content {
    flex: 1;
}

.image-content img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.image-content img:hover {
    transform: translateY(-10px);
}

.mission-block,
.vision-block {
    margin: 2rem 0;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.mission-block:hover,
.vision-block:hover {
    transform: translateY(-5px);
}

.overview-content {
    display: flex;
    align-items: center;
    gap: 4rem;
    margin: 3rem auto;
    max-width: 1200px;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.text-section {
    flex: 1;
}

.image-section {
    flex: 1;
}

.overview-image {
    width: 100%;
    max-height: 300px;
    object-fit: contain;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.overview-image:hover {
    transform: scale(1.05);
}

@media (max-width: 1024px) {

    .mission-vision-content,
    .overview-content {
        flex-direction: column;
        padding: 0 2rem;
    }

    .story-container {
        padding: 2rem;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .story-container {
        flex-direction: column;
    }

    .mission-vision-content {
        padding: 0 1rem;
    }
}

.story-content {
    flex: 0 0 55%;
    text-align: left;
    padding-right: 2rem;
}

.story-content p {
    margin-bottom: 2rem;
    line-height: 1.9;
    color: #333;
    text-align: left;
    font-size: 1.1rem;
    position: relative;
    padding-left: 1.5rem;
    max-width: 600px;
}

.story-content p::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 4px;
    height: calc(100% - 1rem);
    background: #1D7A8C;
    border-radius: 2px;
}

.story-image {
    flex: 0 0 45%;
    position: relative;
    height: 100%;
}

.story-image::after {
    content: '';
    position: absolute;
    top: 20px;
    right: -20px;
    width: 100%;
    height: 100%;
    background: rgba(29, 122, 140, 0.1);
    border-radius: 12px;
    z-index: -1;
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.4s ease;
    position: absolute;
    top: 0;
    left: 0;
}

.story-image img:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(29, 122, 140, 0.2);
}

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

// Add JavaScript to handle the scrolling behavior
document.addEventListener('DOMContentLoaded', function () {
        let lastScrollTop=0;
        const topBar=document.querySelector('.top-bar');
        const nav=document.querySelector('nav');

        window.addEventListener('scroll', function() {
                let scrollTop=window.pageYOffset || document.documentElement.scrollTop;

                if (scrollTop > lastScrollTop) {
                    // if the current position is further than the last
                    topBar.style.transform='translateY(-100%)';
                    nav.style.transform='translateY(-100%)';
                }

                else {
                    topBar.style.transform='translateY(0)';
                    nav.style.transform='translateY(0)';
                }

                lastScrollTop=scrollTop; //New position is stored to be compared on the next scroll
            });
    });

/* New styles for manufacturing page */
/* Hero Section */
.manufacturing-hero {
    padding: 10rem 8% 4rem;
    background: linear-gradient(45deg, rgba(27, 47, 102, 0.9) 0%, rgba(0, 122, 135, 0.85) 100%), url('attached_assets/manufacturing_hero.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    position: relative;
    color: white;
}

.manufacturing-hero h1 {
    font-size: 4rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.manufacturing-hero p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Common Manufacturing Challenges Section */
.manufacturing-challenges {
    padding: 6rem 8%;
    background: #f8f9fa;
    text-align: center;
}

.manufacturing-challenges h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1D7A8C;
}

.challenges-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.challenge-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
}

.challenge-card:hover {
    transform: translateY(-10px);
}

.challenge-card i {
    font-size: 2.5rem;
    color: #1D7A8C;
    margin-bottom: 1rem;
}

.challenge-card h3 {
    color: #F05742;
    margin-bottom: 1rem;
}

.challenge-card h3:hover {
    color: #1D7A8C;
}

.challenge-card p {
    color: #666;
    line-height: 1.6;
}

/* Manufacturing Solutions Section */
.manufacturing-solutions {
    padding: 6rem 8%;
    background: white;
    text-align: center;
}

.manufacturing-solutions h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1D7A8C;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

/* Responsive Design */
@media (max-width: 768px) {

    .solutions-grid,
    .challenges-grid {
        grid-template-columns: 1fr;
    }

    .manufacturing-hero {
        padding: 8rem 5% 4rem;
        text-align: center;
    }

    .manufacturing-hero h1 {
        font-size: 2.5rem;
    }
}

/* Contact Page Styles */
.contact-hero {
    background-image: url('../attached_assets/_M7A7231 copy.jpg');
}

.quick-contact {
    padding: 4rem 8%;
    background: #f8f9fa;
    margin-top: -2rem;
    position: relative;
    z-index: 2;
}

.quick-contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(29, 122, 140, 0.1);
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(29, 122, 140, 0.2);
    border-color: #1D7A8C;
}

.contact-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #1D7A8C, #00FF9D);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.contact-card:hover .contact-icon {
    background: linear-gradient(135deg, #F05742, #1D7A8C);
    transform: scale(1.1);
}

.contact-icon i {
    font-size: 1.8rem;
    color: white;
}

.contact-card h3 {
    color: #1D7A8C;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    transition: color 0.3s ease;
}

.contact-card:hover h3 {
    color: #F05742;
}

.contact-card p {
    color: #666;
    margin-bottom: 1rem;
}

.contact-details a {
    color: #1D7A8C;
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: #F05742;
}

/* Main Contact Section */
.main-contact {
    padding: 6rem 8%;
    background: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
}

.contact-form-section {
    background: #f8f9fa;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-header {
    margin-bottom: 2.5rem;
    text-align: center;
}

.form-header h2 {
    color: #1D7A8C;
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.form-header p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
}

.contact-form {
    max-width: 100%;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #1D7A8C;
    font-weight: 500;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1D7A8C;
    box-shadow: 0 0 0 3px rgba(29, 122, 140, 0.1);
}

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

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    cursor: pointer;
    font-size: 0.95rem;
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid #1D7A8C;
    border-radius: 4px;
    position: relative;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.checkbox-label input[type="checkbox"]:checked+.checkmark {
    background: #1D7A8C;
}

.checkbox-label input[type="checkbox"]:checked+.checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 12px;
    font-weight: bold;
}

.checkbox-label a {
    color: #1D7A8C;
    text-decoration: none;
}

.checkbox-label a:hover {
    color: #F05742;
}

.btn-submit {
    width: 100%;
    background: linear-gradient(135deg, #1D7A8C, #00FF9D);
    color: white;
    border: none;
    padding: 1.2rem 2rem;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    margin-top: 1rem;
}

.btn-submit:hover {
    background: linear-gradient(135deg, #F05742, #1D7A8C);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(240, 87, 66, 0.3);
}

.btn-submit i {
    font-size: 1rem;
}

/* Contact Info Section */
.contact-info-section {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-info-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(29, 122, 140, 0.1);
    transition: all 0.3s ease;
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(29, 122, 140, 0.2);
}

.contact-info-card h3 {
    color: #1D7A8C;
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
    position: relative;
    padding-bottom: 10px;
}

.contact-info-card h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: #F05742;
    border-radius: 2px;
}

.benefit-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.benefit-item i {
    width: 40px;
    height: 40px;
    background: rgba(29, 122, 140, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1D7A8C;
    font-size: 1.2rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.contact-info-card:hover .benefit-item i {
    background: #1D7A8C;
    color: white;
}

.benefit-item h4 {
    color: #1D7A8C;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.benefit-item p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

.office-location {
    margin-bottom: 1.5rem;
}

.location-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.location-header i {
    width: 40px;
    height: 40px;
    background: rgba(29, 122, 140, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1D7A8C;
    font-size: 1.2rem;
}

.location-header h4 {
    color: #1D7A8C;
    margin: 0;
    font-size: 1.2rem;
}

.location-details p {
    margin-bottom: 1rem;
    color: #666;
    line-height: 1.6;
}

.location-details strong {
    color: #1D7A8C;
}

.social-media-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(29, 122, 140, 0.05);
    border-radius: 10px;
    text-decoration: none;
    color: #1D7A8C;
    transition: all 0.3s ease;
    border: 1px solid rgba(29, 122, 140, 0.1);
}

.social-link:hover {
    background: #1D7A8C;
    color: white;
    transform: translateX(5px);
}

.social-link i {
    font-size: 1.3rem;
    width: 25px;
    text-align: center;
}

/* FAQ Section */
.faq-section {
    padding: 6rem 8%;
    background: #f8f9fa;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    color: #1D7A8C;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-header p {
    color: #666;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.faq-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 10px 25px rgba(29, 122, 140, 0.15);
}

.faq-question {
    padding: 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(29, 122, 140, 0.05);
}

.faq-question h4 {
    color: #1D7A8C;
    margin: 0;
    font-size: 1.2rem;
    flex: 1;
}

.faq-question i {
    width: 30px;
    height: 30px;
    background: rgba(29, 122, 140, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1D7A8C;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-question i {
    background: #1D7A8C;
    color: white;
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 2rem 2rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding-top: 0;
}

.faq-answer p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Contact CTA Section */
.contact-cta {
    padding: 6rem 8%;
    background: linear-gradient(135deg, #1D7A8C, #00FF9D);
    color: white;
    text-align: center;
}

.cta-content {
    margin-bottom: 4rem;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    padding: 1rem 2rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary {
    background: white;
    color: #1D7A8C;
    border: 2px solid white;
}

.btn-primary:hover {
    background: #F05742;
    color: white;
    border-color: #F05742;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #1D7A8C;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.cta-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

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

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    background: linear-gradient(45deg, white, rgba(255, 255, 255, 0.8));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    display: block;
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

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

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

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

    .contact-form-section {
        padding: 2rem;
    }

    .contact-info-card {
        padding: 1.5rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .cta-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {

    .quick-contact,
    .main-contact,
    .faq-section,
    .contact-cta {
        padding: 3rem 5%;
    }

    .form-header h2 {
        font-size: 1.8rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .cta-content h2 {
        font-size: 2rem;
    }
}

/* Ensure this style rule is present to control the solution card appearance */
.solution-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
}

.solution-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: linear-gradient(to top, rgba(29, 122, 140, 0.05), transparent);
    transition: height 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.solution-card:hover::after {
    height: 100%;
}

.solution-card i {
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.solution-card:hover i {
    transform: translateY(-10px);
    color: #00FF9D;
}

.solution-card h3 {
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.solution-card:hover h3 {
    transform: scale(1.05);
}

.solution-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    object-position: center;
}

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

.solution-card h3 {
    color: #1D7A8C;
    padding: 1.5rem 1.5rem 1rem;
    font-size: 1.3rem;
}

.solution-card ul {
    list-style: none;
    padding: 0 1.5rem;
    margin-bottom: 1.5rem;
}

.solution-card ul li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 0.8rem;
    color: #444;
}

.solution-card ul li::before {
    content: '›';
    position: absolute;
    left: 0;
    color: #1D7A8C;
}

.solution-card .learn-more {
    display: block;
    padding: 0 1.5rem 1.5rem;
    color: #1D7A8C;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.solution-card .learn-more:hover {
    color: #F05742;
}

.solution-card:hover ul li::before {
    color: #F05742;
    transform: translateX(3px);
}

.solutions-section {
    background: #f8f9fa;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

/* Core Features Section Styles */
.core-features {
    padding: 4rem 8%;
    background: white;
}

.core-features h2 {
    text-align: center;
    color: #1D7A8C;
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(29, 122, 140, 0.2);
}

.feature-icon {
    background: rgba(29, 122, 140, 0.1);
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.feature-icon i {
    font-size: 1.8rem;
    color: #1D7A8C;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    background: #F05742;
    transform: rotate(10deg);
}

.feature-card:hover .feature-icon i {
    color: white;
    transform: scale(1.1);
}

.feature-content {
    flex: 1;
}

.feature-content h3 {
    color: #1D7A8C;
    margin-bottom: 0.8rem;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.feature-content p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.feature-card:hover .feature-content h3 {
    color: #F05742;
}

@media (max-width: 768px) {
    .feature-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 1.5rem;
    }

    .feature-icon {
        margin-bottom: 1rem;
    }
}

/* Page-specific Hero Sections */
.page-hero {
    padding: 10rem 8% 4rem;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(240, 87, 66, 0.92) 0%, rgba(0, 122, 135, 0.88) 100%);
}

.page-hero .hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.page-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.page-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Industry-specific hero backgrounds */
.manufacturing-hero {
    background-image: url('../attached_assets/manu.jpg');
}

.engineering-hero {
    background-image: url('../attached_assets/cons.jpg');
}

.retail-hero {
    background-image: url('../attached_assets/retail.jpg');
}

.oil-gas-hero {
    background-image: url('../attached_assets/oil.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.healthcare-hero {
    background-image: url('../attached_assets/health.jpg');
}

.logistics-hero {
    background-image: url('../attached_assets/retail.jpg');
}

.real-estate-hero {
    background-image: url('../attached_assets/real.jpg');
}

.automotive-hero {
    background-image: url('../attached_assets/auto.jpg');
}

.about-hero {
    background-image: url('../attached_assets/_M7A7231 copy.jpg');
}

.contact-hero {
    background-image: url('../attached_assets/_M7A7231 copy.jpg');
}

.services-hero {
    background-image: url('../attached_assets/_M7A7231 copy.jpg');
}

.solutions-hero {
    background-image: url('../attached_assets/_M7A7231 copy.jpg');
}