html, body {
    margin: 0;
    padding: 0;
}
body {
    font-family: 'Source Sans 3', 'Source Sans Pro', Helvetica, Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
}
header {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    max-width: 1200px;
}
header h1 {
    margin: 0;
    padding: 0;
    height: 75px;
}
nav {
    background-color: rgba(255, 255, 255, 0); 
}
nav ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center; 
}
nav ul li {
    padding: 5px 40px;
}
nav ul li a {
    color: #fff;
    text-decoration: none;
    transition: color 0.5s;
    font-weight: 600;
    font-size: larger;
}
nav ul li a:hover {
    color: #fdf7a6; 
}
main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}
section {
    margin-bottom: 40px;
}
h2 {
    color: #FF8C00;
    border-bottom: 2px solid #FFD700; 
    padding-bottom: 10px;
}
footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 20px;
}
#logo {
    display: block;
    width: auto;
    height: auto;
    max-height: 75px;
    max-width: 100%;
}
#ingnsLogo {
    display: block;
    width: auto;
    height: auto;
    max-height: 75px;
    max-width: 100%;
}
.main-content {
    padding-left: 10%;
    padding-right: 10%;
}
.video-section {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}
.video-background {
    position: relative;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translateX(-50%) translateY(-50%);
    object-fit: cover;
}
.main-content {
    position: relative;
    background-color: #fff;
    z-index: 2;
    min-height: 100vh;
}
.scroll-indicator {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    font-size: 24px;
    cursor: pointer;
}
.sticky-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0); 
    transition: all 0.3s ease-in-out;
}
.sticky-header:hover .top-bar,
.sticky-header.scrolled .top-bar {
    background-color: rgba(255, 255, 255, 0.863); 
    transition: all 0.3s ease-in;
}
.sticky-header .top-bar{
    color: #000000; 
    transition: all 0.4s ease-out;
}
.sticky-header:hover .top-bar,
.sticky-header:hover nav,
.sticky-header.scrolled .top-bar,
.sticky-header.scrolled nav {
    color: #333; 
}
.sticky-header.scrolled nav,
.sticky-header:hover nav {
    background-color: rgb(184, 184, 184);
    transition: background-color 0.3s ease-in;
}
.sticky-header nav {
    background-color: rgba(223, 223, 223, 0);
    transition: background-color 0.3s ease-out;
}
.sticky-header nav ul li a {
    color: #ffffff;
    transition: color 0.3s ease;
}

.sticky-header:hover nav ul li a,
.sticky-header.scrolled nav ul li a {
    color: #333;
}
.nav-menu ul li a:hover {
    color: #f5b97d; 
    text-shadow: #f7750a, 1px 1px 1px;
}
.sticky-header .nav-menu ul li a:hover {
    color: #E67300;
    text-shadow: #f7750a, 1px 1px 1px   ;
}
.sticky-header.scrolled .nav-menu ul li a:hover {
    color: #E67300;
    text-shadow: #f7750a, 1px 1px 1px;
}
.sticky-header:hover .email-block a,
.sticky-header.scrolled .email-block a{
    text-decoration: none;
    color: #000000;
    font-weight: bold;   
}
.top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    background-color: rgba(255, 255, 255, 0);        
}
.top-bar-section {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    font-family: 'Source Sans 3', 'Source Sans Pro', Helvetica, Arial, sans-serif;
    font-weight: 800;
    font-size: larger; 
}
.email-block a{
    text-decoration: none ;
    color: #000000;
    font-size: 1.2em;
    font-weight: bold;
}
.top-bar-section:last-child {
    align-items: center; 
    font-size: larger;
}
.phoneNumber-block {
    position: relative;
    display: flex; 
    align-items: center; 
    cursor: pointer;
}
.phone-numbers {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%);
    background: white;
    padding: 15px;
    border-radius: 4px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    min-width: 140px;
    text-align: center;
    padding-bottom: 0;
}
.phone-numbers::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid rgb(204, 204, 204);
}
.phone-link {
    display: block;
    padding: 8px 12px;
    color: #333;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    user-select: all; 
}
.phone-link:hover {
    background-color: #f5f5f5;
    color: #FF8C00;
}
.phone-link:not(:last-child) {
    border-bottom: 1px solid #8d8d8d;
}
.email-block:not(:last-child) {
    border-bottom: 1px solid #8d8d8d;
}
.sticky-header:hover .header-icon,
.sticky-header.scrolled .header-icon {
    content: url('../Ikone/callGray.png');
}
.header-icon {
    content: url('../Ikone/CallWhite.png');
    transition: content 0.3s ease;
    width: 32px;
    height: 32px;
}
.location-icon {
    margin-left: 10px; 
    width: 24px; 
    height: 24px;
    cursor: pointer;
    transition: content 0.3s ease;
}
.sticky-header:hover .location-icon,
.sticky-header.scrolled .location-icon {
    content: url('../Ikone/locationGray.png');
}
.location-block {
    position: relative;
    display: flex;
    align-items: center;
    cursor: pointer;
}
.address-block {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%);
    background: white;
    padding: 15px;
    border-radius: 4px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    z-index: 1000;
    min-width: 200px; 
    text-align: center;
    white-space: nowrap;
    font-weight: bold;
}
.address-block::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid rgb(204, 204, 204);
}
.icons-section {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.icons-container {
    display: flex;
    align-items: center;
    gap: 20px;
}
.phoneNumber-block, 
.location-block {
    position: relative;
    cursor: pointer;
}
.address-block span {
    display: block;
}
.ingns-small-logo {
    display: flex;
    align-items: center;
}
.sticky-header:hover .ingns-small-logo img,
.sticky-header.scrolled .ingns-small-logo img{
    content: url('../images/ingns-logo-900.png');
}
.small-logo {
    height: 32px;
    width: auto;
    margin-left: 20px;
}
.icons-container {
    display: flex;
    align-items: center;
    gap: 20px;
}
.location-icon {
    margin-left: 0;
}
.header-icon,
.location-icon {
    width: 32px;
    height: 32px;
    transition: content 0.3s ease, transform 0.25s ease-in-out;
}
.header-icon:hover,
.location-icon:hover {
    transform: scale(1.2);
}
.aboutUs {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 20px;
}
.aboutUs_img {
    width: 30%;
    display: flex;
    justify-content: center;
    align-items: center;
}
#logo1 {
    width: 100%;
    height: auto;
    max-width: 100px;
}
.product-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    padding: 20px;    
}
.category-group {
    background: #fff;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3); 
    margin-bottom: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.category-group h3 {
    color: #FF8C00;
    font-size: 1.4em;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #f0f0f0;
    text-decoration: none;
}
.category-group h3 a {
    text-decoration: none;
    color: #a35c05;
}
.subcategory {
    margin-bottom: 1.5rem;
}
.subcategory h4 {
    color: #444;
    font-size: 1.1em;
    margin-bottom: 0.75rem;
}
.subcategory h4 a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}
.subcategory h4 a:hover {
    color: #FF8C00;
}
.subcategory ul {
    list-style: none;
    padding-left: 1rem;
    position: relative;
}
.subcategory ul::before {
    content: '';
    position: absolute;
    top: 0.5rem;
    bottom: 0.5rem;
    width: 1px;
    background-color: #FF8C00;
    z-index: 0;
}
.subcategory ul li {
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem; 
}
.subcategory ul li::before {
    position: absolute;
    left: 0;  
    top: 50%;
    width: 8px;
    height: 1px;
    background-color: #FF8C00;
    z-index: 1;
    margin-left: -0.5rem;
}
.subcategory ul li a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
    display: inline-block;
    text-indent: -0.5rem;
    padding-left: 0.5rem;
}
.subcategory ul li a:hover {
    color: #FF8C00;
}
.category-industry {
    background: #fff;
    padding: 0.5rem;
    margin-bottom: 0.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 8px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
    text-align: center;   
    cursor: pointer;
}
.category-industry:hover{
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
}
.category-industry h3 {
    color: #FF8C00;
    font-size: 1.4em;
    padding-bottom: 0.5rem;
    text-decoration: none;
}
.category-industry h3 a {
    text-decoration: none;
    color: #291700;
    display: block;
    width: 100%;
    height: 100%;
}
.category-industry:hover h3 a {
    color: #FF8C00;
}
.customer-slider {
    width: 100%;
    margin: 0 auto;
    background-color: #ffffff;
    overflow: hidden;
}
.customer-slider div {
    margin: 0 10px;
    transition: opacity 0.3s ease;
}
.customer-slider img {
    width: 256px;
    height: 256px;
    object-fit: contain;
}
.sensortool-section {
    padding: 2% 0;
    background-color: #ffffff;
    margin-bottom: 0;

}
.sensortool-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.sensortool-content {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    background-color: #f0f0f0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    z-index: 2;
}

.sensortool-content h4 {
    color: #000000;
    font-size: 1.2rem;
}
.sensortool-content p {
    margin-bottom: 1.5rem;
    color: #424242;
    line-height: 1.6;
}
.sensortool-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.3s ease;
}
.email-block1,
.addressBlock1,
.phone_numbers1{
    display: flex;
    flex-direction: column;
    text-align: center; 
    padding: 2%;
}
.email-block1 h4,
.addressBlock1 h4,
.phone_numbers1 h4{
    padding-left: 2%;
    margin: 0;
    font-weight: normal;
}
.phone_numbers1 {
    border-bottom: none;
    padding-bottom: 30px;
}
.email-block1 a,
.addressBlock1 a,
.phone_numbers1 a{
    padding-left: 2%;
    text-emphasis: none;
    text-decoration: none;
    color: #000000;
    font-size: 1.2em;
    font-weight:bold;
}
.phone-link1 {
    display: block;
    padding: 8px 12px;
    color: #333;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    user-select: all;
}
.phone-link1:hover {
    background-color: #f5f5f5;
    color: #FF8C00;
}
.contact_h2{
    padding-left: 10%;
    padding-right: 10%;
    margin: 0;
    padding-bottom: 0;
}
#langSwitch {
    margin-top: 10px;
    padding: 5px 10px;
    background-color: #FF8C00;
    color: #fff;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
    font-weight: 600;
}
#langSwitch:hover {
    background-color: #E67300;
}
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
.seo-intro {
    padding: 2rem 0;
}
.seo-intro-content {
    display: flex;
    gap: 2rem;
    align-items: stretch;
}
.seo-intro-text {
    flex: 2;
}
.seo-intro-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 1rem;
    text-align: justify;
    hyphens: auto;
    -webkit-hyphens: auto;
    word-break: break-word;
}
.seo-intro-logos {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    padding-top: 0;
}
.seo-intro-logos img {
    width: 100%;
    max-width: 220px;
    height: auto;
    object-fit: contain;
}
.ingns-main-logo {
    width: 100%;
    max-width: 240px;
    height: auto;
    object-fit: contain;
}
.seo-intro-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.5rem;
}
.seo-intro-links a {
    display: inline-block;
    padding: 0.5rem 1.2rem;
    background-color: #FF8C00;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: background-color 0.3s ease, transform 0.2s ease;
}
.seo-intro-links a:hover {
    background-color: #E67300;
    transform: translateY(-2px);
}
.footer-nav {
    margin-top: 0.5rem;
    font-size: 0.9rem;
}
.footer-nav a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}
.footer-nav a:hover {
    color: #FF8C00;
}
.landing-logo {
    max-height: 60px !important;
    width: auto !important;
}
.scrolled-always .top-bar {
    background-color: rgba(255, 255, 255, 0.96) !important;
    color: #333 !important;
}
.scrolled-always nav {
    background-color: rgb(184, 184, 184) !important;
    color: #333 !important;
}
.scrolled-always nav ul li a {
    color: #333 !important;
}
.scrolled-always .header-icon {
    content: url('../Ikone/callGray.png');
}
.scrolled-always .location-icon {
    content: url('../Ikone/locationGray.png');
}
.scrolled-always .ingns-small-logo img {
    content: url('../images/ingns-logo-900.png');
}
.scrolled-always .email-block a {
    text-decoration: none;
    color: #000000;
}
.nav-visible {
    display: block !important;
}
.nav-visible ul li a.active {
    color: #FF8C00 !important;
    font-weight: 700;
}
.landing-content {
    max-width: 1200px;
    margin: 120px auto 0;
    padding: 20px 5%;
    background-color: #fff;
}
.breadcrumb {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 1.5rem;
    padding: 0.5rem 0;
}
.breadcrumb a {
    color: #FF8C00;
    text-decoration: none;
}
.breadcrumb a:hover {
    text-decoration: underline;
}
.landing-hero {
    margin-bottom: 2rem;
}
.landing-hero h2 {
    font-size: 2rem;
    color: #FF8C00;
    margin-bottom: 1rem;
}
.landing-subtitle {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #444;
    max-width: 900px;
    text-align: justify;
    hyphens: auto;
    -webkit-hyphens: auto;
    word-break: break-word;
}
.landing-section {
    margin-bottom: 3rem;
}
.landing-section h2 {
    font-size: 1.6rem;
    color: #FF8C00;
    border-bottom: 2px solid #FFD700;
    padding-bottom: 0.5rem;
    margin-bottom: 1rem;
}
.landing-section > p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #444;
    margin-bottom: 1.5rem;
    text-align: justify;
    hyphens: auto;
    -webkit-hyphens: auto;
    word-break: break-word;
}
.landing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}
.landing-card {
    background: #fff;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.landing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}
.landing-card h3 {
    color: #333;
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
}
.landing-card h3 a {
    color: #a35c05;
    text-decoration: none;
    transition: color 0.3s;
}
.landing-card h3 a:hover {
    color: #FF8C00;
}
.landing-card p {
    color: #555;
    line-height: 1.6;
    font-size: 0.95rem;
    text-align: justify;
    hyphens: auto;
    -webkit-hyphens: auto;
    word-break: break-word;
}
.landing-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}
.feature-item {
    padding: 1.5rem;
    background: linear-gradient(135deg, #fff8f0, #ffffff);
    border-left: 4px solid #FF8C00;
    border-radius: 4px;
}
.feature-item h3 {
    color: #333;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}
.feature-item p {
    color: #555;
    line-height: 1.6;
    font-size: 0.95rem;
}
.landing-cta {
    background: linear-gradient(135deg, #FF8C00, #E67300);
    color: #fff;
    padding: 2.5rem;
    border-radius: 8px;
    text-align: center;
    margin: 3rem 0;
}
.landing-cta h2 {
    color: #fff;
    border: none;
    font-size: 1.6rem;
    margin-bottom: 0.75rem;
}
.landing-cta p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    opacity: 0.95;
}
.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}
.cta-primary {
    display: inline-block;
    padding: 0.75rem 2rem;
    background-color: #fff;
    color: #FF8C00;
    text-decoration: none;
    border: 2px solid #fff;
    border-radius: 4px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}
.cta-primary:hover {
    background-color: #333;
    color: #fff;
}
.cta-secondary {
    display: inline-block;
    padding: 0.75rem 2rem;
    background-color: transparent;
    color: #fff;
    text-decoration: none;
    border: 2px solid #fff;
    border-radius: 4px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}
.cta-secondary:hover {
    background-color: rgba(255, 255, 255, 0.15);
}
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}
.contact-card {
    background: #f9f9f9;
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    font-size: 1.15rem;
    line-height: 1.8;
}
.contact-card h3 {
    color: #FF8C00;
    margin-bottom: 0.75rem;
    font-size: 1.3rem;
}
.contact-card p {
    font-size: 1.15rem;
}
.contact-card a {
    color: #333;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.15rem;
    transition: color 0.3s;
}
.contact-card a:hover {
    color: #FF8C00;
}
.about-content {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #444;
    text-align: justify;
    hyphens: auto;
    -webkit-hyphens: auto;
    word-break: break-word;
}
.about-content h3 {
    color: #333;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}
.services-list {
    list-style: none;
    padding-left: 0;
}
.services-list li {
    padding: 0.5rem 0 0.5rem 1.5rem;
    text-align: justify;
    hyphens: auto;
    -webkit-hyphens: auto;
    word-break: break-word;
    position: relative;
    border-bottom: 1px solid #f0f0f0;
}
.services-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #FF8C00;
    font-weight: 700;
    font-size: 1.3em;
    line-height: 1.2;
}
.services-list a {
    color: #a35c05;
    text-decoration: none;
    font-weight: 600;
}
.services-list a:hover {
    color: #FF8C00;
}
.partner-section {
    display: flex;
    align-items: center;
    gap: 2rem;
}
.partner-logo {
    max-width: 150px;
    height: auto;
}
.partner-section p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #444;
}
.map-container {
    margin: 1rem 0;
}
@media (max-width: 600px) {
    .landing-content {
        margin-top: 100px;
        padding: 15px 4%;
    }
    .landing-hero h2 {
        font-size: 1.4rem;
    }
    .landing-grid {
        grid-template-columns: 1fr;
    }
    .landing-features {
        grid-template-columns: 1fr;
    }
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .seo-intro-content {
        flex-direction: column;
    }
    .seo-intro-logos {
        flex-direction: row;
        justify-content: center;
        align-items: center;
        gap: 0.8rem;
        width: 100%;
        padding: 1rem 0;
    }
    .seo-intro-logos img,
    .seo-intro-logos a {
        flex: 1;
        max-width: 50%;
    }
    .seo-intro-logos img {
        width: 100%;
    }
    .ingns-main-logo {
        max-width: 100%;
        width: 100%;
    }
    .seo-intro-text p {
        font-size: 0.95rem;
        line-height: 1.7;
    }
    .partner-section {
        flex-direction: column;
        text-align: center;
    }
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    .cta-buttons .cta-primary,
    .cta-buttons .cta-secondary {
        width: 100%;
        max-width: 300px;
        text-align: center;
        box-sizing: border-box;
    }
}
