/* Table of Content
1. General - General styles and overrides for some Bootstrap classes.
2. Layout
  2.1 Animations
  2.2 Buttons
  2.3 Thumbnails - Override Bootstrap thumbnail and add masked effect
  2.4 Social Icons - Styles for social icons list
3. Sections - Definitions for sections and subsections
  3.1 Services
  3.2 Portfolio
  3.3 About
  3.4 Clients
  3.5 Price Table
  3.6 Newsletter
  3.7 Contact
  3.8 Footer
4. Responsive
5. Teamviewer
6. Logo
*/

/* 1. General */
body {
    font-family: 'Roboto', sans-serif;
    color: #FFF;
    line-height: 1.2em;
    font-size: 17px;
}

a {
    color: #181A1C;
    text-decoration: none;
}

a:hover {
    color: #FFF;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: normal;
}

h1 {
    margin: 10px;
}

p {
    padding: 10px;
    font-weight: 400;
    color: #FFF;
}

.navbar-inner {
    background-color: #000; /* Or any other suitable color */
    z-index: 1050; /* This should be higher than the z-index of other elements */
}

.navbar, .navbar-inner {
    background: #181A1C;
    margin-bottom: 0;
    min-height: 70px;
    border-radius: 0;
    border: none;
    box-shadow: none;
    z-index: 1051; /* Ensuring the button is above the navbar */
}

.navbar-fixed-top {
    min-height: 60px;
    height: 60px;
    padding-top: 0;
}

.navbar .brand img {
    width: 120px;
    height: 40px;
}

.navbar .nav > li > a {
    text-transform: uppercase;
    line-height: auto;
    vertical-align: middle;
    margin: 10px 3px;
    border: 1px solid #181A1C;
    font-size: 15px;
    color: #FFF;
    transition: border-color 1s ease;
}

.navbar .nav > li:hover > a,
.navbar .nav > li.active > a,
.navbar .nav > li.active > a:hover,
.navbar .nav > li.active > a:focus {
    border: 1px solid #FFF;
    background-color: #181A1C;
    transition: border-color 1s ease;
}

.nav-pills {
    border: none; /* Remove any border */
    background: transparent; /* Ensure background is transparent */
    padding: 0; /* Adjust padding if necessary */
    margin: 0; /* Adjust margin if necessary */
}

.nav-pills > li > a {
    background: transparent;
    border-radius: 0;
    margin-right: 5px;
    padding: 0 25px;
    border: 1px solid #181A1C;
}

.nav-pills > li > a:hover,
.nav-pills > .active > a,
.nav-pills > .active > a:hover,
.nav-pills > .active > a:focus {
    background: #181A1C;
    color: #FFF;
}

.btn-navbar {
    display: block;
    background-color: #fff; /* Ensure it has a background color */
    z-index: 1050; /* Higher than other content */
}

.navbar .btn-navbar:hover,
.navbar .btn-navbar {
    border-radius: 0;
    background: #FFF;
    color: #000;
}

/* 2. Layout */
.centered {
    margin: 0 auto;
    text-align: center;
}

.center {
    float: none !important;
    margin: 0 auto !important;
    text-align: center;
}

.highlighted-box {
    background: #F4F8F9;
    padding: 20px 30px;
}

.highlighted-box h1 {
    margin: 0;
}

.large-text {
    line-height: 1.2em;
    font-size: 30px;
    color: #181A1C;
    padding: 20px;
    margin-bottom: 20px;
}

.highlighted-box h1, .highlighted-box p {
    color: #181A1C !important;
}

.circle-border {
    display: inline-block;
    border-radius: 500px;
    border: 3px solid #FFF;
}

.left-align, .right-align {
    text-align: left;
}

.error {
    color: #CF0000;
    display: none;
}

.invisible {
    display: none;
    visibility: visible;
}

.triangle {
    margin: 0 auto;
    text-align: center;
    width: 0;
    height: 0;
    border-top: 30px solid #181A1C;
    border-left: 585px outset transparent;
    border-right: 585px outset transparent;
    position: relative;
}

/* 2.1 Animations */
.zoom-in {
    transform: scale(1, 1);
    transition: all 250ms ease;
}

.zoom-in:hover {
    transform: scale(1.1, 1.1);
}

/* 2.2 Buttons */
.button, .button:visited, .button:focus {
    display: inline-block;
    border: 1px solid #181A1C;
    color: #FFF;
    background-color: #181A1C;
    padding: 15px 30px;
    font-size: 17px;
    transition: background-color 0.3s, color 0.3s;
}

.button:hover, .button:active {
    background-color: #1E90FF;
    color: #FFF;
}

.button-sp, .button-sp:visited, .button-sp:focus {
    border: none;
    background-color: #181A1C;
    color: #FFF;
}

.button-sp:hover, .button-sp:active {
    background-color: #1E90FF;
    color: #FFF;
}

.button-ps, .button-ps:visited, .button-ps:focus {
    border: none;
    background-color: #1E90FF;
    color: #FFF;
}

.button-ps:hover, .button-ps:active {
    background-color: #FFF;
    color: #FFF;
}

/* 2.3 Thumbnails */
.thumbnail {
    width: 200px;  /* Original size width */
    height: 200px; /* Original size height */
    margin: 10px auto; /* Center the thumbnail */
    overflow: hidden;
    position: relative;
    border-radius: 0;
    box-shadow: none;
    text-align: center;
    background: #191A1C;
}

.thumbnail .more {
    display: block;
    z-index: 4;
    position: absolute;
    top: -100px;
    left: 50%;
    margin: 0 auto;
    margin-left: -41px;
    width: 80px;
    height: 80px;
    font-size: 40px;
    color: #FFF;
    text-decoration: none;
    line-height: 70px;
    text-align: center;
}

.thumbnail:hover .more {
    top: 40%;
    margin-top: -40px;
    transition: all 0.3s ease-out;
}

.thumbnail p {
    color: #FFF;
    margin-top: 5px;
    font-size: 14px; /* Adjust font size if needed */
    line-height: 1.2; /* Adjust line height to manage spacing between lines */
    padding: 0 10px; /* Add padding to prevent overlap */
    white-space: normal; /* Ensure text wraps properly */
}

.thumbnail h3 {
    color: #FFF;
    margin-top: 10px;
    font-size: 20px;
    line-height: 1.2em; /* Adjust line height for closer lines */
}

.thumbnail h3 {
    color: #FFF;
    font-size: 16px; /* Adjust the font size */
    margin: 5px 0; /* Adjust margin to control space */
}

.thumbnail h4 {
    color: #FFF;
    margin-top: 10px;
    font-size: 16px;
}

.thumbnail > p {
    padding-bottom: 30px;
}

.thumbnail .mask {
    opacity: 0.85;
    top: 100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: #181A1C;
    position: absolute;
    transition: all 0.2s ease-out;
}

.thumbnail:hover .mask {
    top: 0;
}

/* Responsive text for thumbnails */
.thumbnail-title, .maintenance-text {
    text-align: center;
    margin: 10px 0;
}

.thumbnail-title {
    font-size: 2vw;
}

.maintenance-text {
    font-size: 1.5vw;
    white-space: pre-line;
}

@media (max-width: 1200px) {
    .thumbnail {
        width: 50%; /* Adjust width for screens smaller than 1200px */
    }
}

@media (max-width: 768px) {
    .thumbnail {
        width: 100%; /* Full width for mobile devices */
    }
}

.thumbnail .more {
    margin-left: -21px;
    width: 40px;
    height: 40px;
    border-radius: 30px;
    line-height: 40px;
}

.thumbnail:hover .more {
    margin-top: -20px;
}

/* 2.4 Social Icons */
.social {
    list-style: none;
    float: none;
    position: relative;
    margin: 5px auto;
}

.social li {
    display: inline-block;
    line-height: 32px;
    font-family: 'Porta';
    font-size: 32px;
    padding: 0 5px;
}

.social li a {
    margin: 0;
    padding: 0;
    width: 32px;
    height: 32px;
    color: #FFF;
}

.social li a:hover {
    color: #181A1C;
}

/* Whatsapp */
.button-wrapper {
    margin-top: 20px;
}

.da-link.button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #181A1C;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-size: 18px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.da-link.button:hover {
    background-color: #128c7e;
}

.da-link.button i {
    margin-right: 10px;
}

/* 3. Sections */
.section {
    padding-bottom: 50px;
}

.section .container {
    padding-top: 50px;
}

.section .title {
    text-align: center;
    padding: 10px;
    margin-bottom: 30px;
}

.section .title h1 {
    font-weight: normal;
    margin-bottom: 20px;
    padding: 0;
}

.section .title > p {
    font-size: 20px;
    color: #FFF;
    font-weight: lighter;
}

.primary-section {
    background: #181A1C;
}

.primary-section .triangle {
    border-top: 40px solid #FFF;
}

.primary-section .title {
    border-bottom: 1px solid #FFF;
}

.primary-section, .primary-section .title p, .primary-section h3, .primary-section h1 {
    color: #FFF;
}

.secondary-section {
    background: #FFF;
}

.secondary-section .title {
    border-bottom: 1px solid #181A1C;
}

.secondary-section h1, .secondary-section .title p {
    color: #181A1C;
}

.third-section {
    padding-bottom: 70px;
    background: #FFF url(../images/brand-bg.png) no-repeat center;
    border-top: 6px solid #FFF;
}

.third-section .container {
    padding-top: 20px;
    position: relative;
}

.third-section .title {
    border-bottom: 1px solid #A1AAB7;
    color: #181A1C;
}

.sub-section {
    margin-top: 30px;
}

.sub-section .title {
    padding: 0;
}

/* 3.1 Services */
/* General style for the services section */
/* General service container styles */
.service-wrapper {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.service-container {
    display: flex;
    width: max-content;
    animation: scroll-continuous 120s linear infinite;
}

.service-wrapper.expanded .service-container {
    animation: none; /* Stop the animation when expanded */
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
}

/* Continuous scrolling keyframes */
@keyframes scroll-continuous {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Service item styles */
.custom-service {
    flex: 0 0 200px;
    text-align: center;
    margin-right: 50px; /* Increased margin for more space between services */
    transition: transform 0.3s ease; /* Smooth transition for scale effect */
}

.service-wrapper.expanded .custom-service {
    flex: 0 0 calc(25% - 20px);
    margin: 20px;
}

/* Highlight service title in gold */
.service-title {
    color: gold; /* Set the title color to gold */
    font-size: 20px; /* Adjust the font size as needed */
    margin-top: 10px;
    transition: color 0.3s ease; /* Smooth transition for color change */
}

.custom-service:hover .service-title {
    color: gold; /* Change title color to gold on hover */
}

@media (max-width: 1200px) {
    .service-wrapper.expanded .custom-service {
        flex: 0 0 calc(33.33% - 20px);
    }
}

@media (max-width: 768px) {
    .service-wrapper.expanded .custom-service {
        flex: 0 0 calc(50% - 20px);
    }
}

@media (max-width: 480px) {
    .service-wrapper.expanded .custom-service {
        flex: 0 0 100%;
    }
}

/* Hover effects */
.custom-service:hover {
    transform: scale(1.1); /* Scale up slightly on hover */
}

.service-container:hover {
    animation-play-state: paused; /* Pause scrolling on hover */
}


/* Ensuring 'Expand All Services' button is visible and styled */
.expand-all {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #181A1C;
    color: gold;
    text-align: center;
    padding: 10px 20px;
    margin: 20px auto;
    cursor: pointer;
    font-size: 16px;
    border: 1px solid gold;
    transition: all 0.3s ease-in-out;
    position: relative;
    width: fit-content;
    border-radius: 5px;
}

.expand-all:hover {
    background-color: #1E90FF; /* Blue background on hover */
    color: #FFF; /* White text on hover */
    border-color: #1E90FF; /* Blue border on hover */
}

.expand-all span {
    margin-right: 10px;
}

.arrow-container {
    display: flex;
    justify-content: center;
    margin-top: 10px;
    padding: 20px; /* Added more padding */
    width: 100%;
    box-sizing: border-box; /* Ensures padding is included in width calculation */
}

.triple-arrow {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px; /* Adjusted space between arrows */
}

.arrow-line {
    width: 0;
    height: 0;
    border-left: 10px solid transparent; /* Increased arrow size */
    border-right: 10px solid transparent; /* Increased arrow size */
    border-top: 10px solid gold; /* Increased arrow size */
    animation: arrow-bounce 1s infinite;
}

.arrow-line:nth-child(2) {
    animation-delay: 0.2s;
}

.arrow-line:nth-child(3) {
    animation-delay: 0.4s;
}

.arrow-container.collapsed .arrow-line {
    border-top: none;
    border-bottom: 10px solid gold; /* Adjusted arrow size */
}

@keyframes arrow-bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(7px); /* Increased bounce height */
    }
}

/* Expanded thumbnails maintain original size on larger screens */
/* Scroll container and content styles for expanded view */
.scroll-container.expanded {
    display: flex; /* Establishes a flex container */
    flex-wrap: wrap; /* Allows items to wrap to the next line */
    justify-content: space-around; /* Distributes space around items for even spacing */
    align-items: flex-start; /* Aligns items at the start of the container */
    padding: 20px; /* Padding around the container */
    overflow: visible; /* Ensures all thumbnails are visible */
}

.scroll-content.expanded {
    width: 100%; /* Full width to use all available space */
    display: flex; /* Flex display to align children inline */
    flex-wrap: wrap; /* Allows thumbnails to wrap within the container */
    justify-content: center; /* Aligns thumbnails at the center */
    align-items: flex-start; /* Aligns thumbnails at the top */
    gap: 10px; /* Space between thumbnails */
}

.thumbnail.expanded {
    flex-basis: 20%; /* Thumbnails take up 20% of the width */
    margin: 10px; /* Add some space around thumbnails */
}
.thumbnail.expanded img {
    width: 100%;
    height: auto;
}

.thumbnail.expanded h3 {
    color: #FFF;
    font-size: 20px;
    margin-top: 10px;
}

.thumbnail.expanded p {
    color: #FFF;
    font-size: 14px;
    line-height: 1.5;
    margin-top: 10px;
}

/* Expanded container to wrap thumbnails without mixing */
.scroll-container.expanded .scroll-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start; /* Ensures items stay grouped by category */
    width: 100%;
    overflow: visible;
}

.scroll-container {
    overflow-x: visible !important;
    white-space: normal; /* Ensure items wrap properly */
    padding: 10px;
    box-sizing: border-box;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .thumbnail.expanded {
        flex-basis: 33.33%; /* Adjust for smaller screens */
    }
}

@media (max-width: 480px) {
    .thumbnail.expanded {
        flex-basis: 50%; /* Adjust for very small screens */
    }
}

/* Reverse arrow for collapse */
#collapse-arrow .arrow-line {
    border-top: none;
    border-bottom: 10px solid gold;
}

/* Ensure the thumbnails are centered properly */
.scroll-container.expanded .scroll-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
    overflow: visible; /* Ensure all items are visible */
}

/* 3.2 Portfolio */
.single-project {
    margin-bottom: 30px;
    background: #181A1C;
}

.single-project img {
    width: 100%;
}

.project-description {
    padding-right: 20px;
}

.project-description p {
    padding-left: 30px;
}

.project-title {
    margin-top: 15px;
    margin-bottom: 5px;
    border-bottom: 1px solid #FFF;
}

.project-title h3 {
    float: left;
    margin-top: 0;
    padding: 0;
    width: 80%;
}

.project-title .close {
    color: #FFF;
    margin-top: 10px;
}

.project-info span, .project-title h3 {
    color: #FFF;
}

.project-info {
    font-weight: 100;
    padding: 10px 0;
}

.project-info span {
    width: 150px;
    display: inline-block;
}

.project-info div {
    margin-bottom: 5px;
}

.close {
    float: right;
    width: 40px;
    height: 40px;
    text-align: center;
}

#portfolio-grid .mix {
    opacity: 0;
    margin-left: -20px;
    margin-right: -110px;
    padding: 20px;
    display: none;
}

/* 3.3 About */
.team .thumbnail {
    box-sizing: border-box;
    padding: 10px;
    border: 1px solid #FFF;
}

.team .thumbnail:hover .social {
    z-index: 5;
}

.team .thumbnail:hover .social a {
    color: #FFF;
}

.team .thumbnail .mask {
    background: #FFF;
}

.team .thumbnail .mask h2 {
    margin-top: 20%;
}

.team .thumbnail .mask, .team .thumbnail .mask h3, .team .thumbnail .mask p, .team .thumbnail:hover h3, .team .thumbnail:hover .social a:hover {
    color: #181A17;
}

.about-text {
    margin-top: 30px;
}

.about-text p {
    padding: 0;
    font-size: 16px;
}

.image-container {
    background-color: #1d1d1d;
    padding: 10px;
    height: 100%;
}

.project-image {
    width: 100%;
    height: auto;
}

.project-description {
    color: white;
}

.project-title h3 {
    margin-bottom: 15px;
}

.project-info p {
    margin: 5px 0;
}

.button.button-sp {
    background-color: #1d1d1d;
    border: 1px solid #FFF;
    color: white;
    padding: 5px 10px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    margin: 5px 2px;
    cursor: pointer;
    border-radius: 3px;
    font-size: 12px;
}

.button-sp:hover {
    background-color: #1E90FF;
    color: #1d1d1d;
}

.project-info a {
    display: flex;
    align-items: center;
    gap: 5px;
    text-decoration: none;
    color: white;
}

.project-info a i {
    font-size: 24px;
}

.project-info a .button {
    font-size: 12px;
    padding: 5px 10px;
}

/* Skills Bar */
.skills {
    list-style-type: none;
    position: relative;
    margin: 0;
}

.skills li {
    margin-bottom: 30px;
    background: #FFF;
    height: 40px;
    padding: 1px;
}

.skills li h3 {
    position: relative;
    font-size: 13px;
    padding: 0;
    margin: 0;
    left: 10px;
    z-index: 1;
    color: #181A1C;
}

.skills li h4 {
    position: relative;
    font-size: 10px;
    padding: 0;
    margin: 0;
    left: 10px;
    z-index: 1;
    color: #181A1C;
}

.skills li .bar {
    height: 40px;
    position: absolute;
    background-color: #FFD700;
}

/* Hello Message */
#helloMessage {
    display: none;
    margin-top: 20px;
    color: #181A1C;
    background-color: #FFF;
    padding: 10px;
    border-radius: 5px;
    text-align: center;
}

/* 3.4 Clients */
.client-slider img {
    border: 1px solid white;
}

.client-slider img:hover {
    background-color: #FFF;
}

.client-nav {
    list-style: none;
    margin-top: 10px;
}

.client-nav li {
    float: left;
    display: block;
    margin-left: 10px;
}

.client-nav li a {
    display: inherit;
    padding: 5px;
    background: #FFF;
    border-radius: 3px;
    width: 20px;
    height: 20px;
}

.client-nav li a:hover {
    background: #181A1C;
}

.testimonial p {
    color: #181A1C;
    background: #FFF;
    padding: 15px;
    margin: 0;
}

.testimonial .arrow {
    margin-left: 10px;
    width: 0;
    border-top: 10px solid #FFF;
    border-left: 20px outset transparent;
    border-right: 20px outset transparent;
}

.testimonial .whopic {
    display: inline-block;
}

.testimonial .whopic img {
    margin-top: 10px;
    width: 50px;
    height: 50px;
    float: left;
}

.testimonial .whopic strong {
    float: left;
    margin-top: 10px;
    padding-left: 10px;
}

.testimonial .whopic small {
    display: block;
    font-size: 12px;
}

.testimonial-text {
    display: block;
    font-size: 22px;
    text-align: center;
    margin: 0 auto;
    margin-top: 30px;
    width: 70%;
    line-height: 1.3em;
}

/* 3.5 Price Table */
.price-table {
    margin-top: 70px;
    margin-bottom: 20px;
}

.price-column {
    background-color: white;
    border-radius: 10px;
    padding-bottom: 20px;
    margin: 0 auto;
    text-align: center;
}

.price-column h3 {
    background-color: #181A1C;
    text-transform: uppercase;
    text-align: center;
    color: #FFF;
    padding: 40px 0;
    font-size: 36px;
    margin-top: 0;
    border-radius: 10px 10px 0 0;
}

.price-column .list {
    list-style: none;
    margin: 20px 50px;
}

.price-column .list li {
    font-weight: lighter;
    color: #747C89;
    font-size: 20px;
    border-bottom: 1px solid #747C89;
    padding: 25px 0;
}

.price-column .list li.price {
    text-align: center;
    font-size: 31px;
    background-color: white;
    color: #747C89;
    margin-top: 25px;
}

.price-text {
    margin: 30px 0 20px;
    font-size: 20px;
    color: #181A1C;
    font-weight: normal;
}

/* 3.6 Newsletter */
.newsletter, .newsletter h2 {
    color: #181A1C;
}

.newsletter .title h2 {
    text-align: left;
    padding: 0;
    margin: 0;
}

.newsletter form {
    text-align:right;  padding: 6px;
    line-height: 20px;
    height: auto;
}

.newsletter button {
    margin: 0 0 0 20px;
}

.newsletter .button-sp:hover, .newsletter .button-sp:active {
    background-color: #181A1C;
    color: #181A1C;
}

/* 3.7 Contact */
.contact {
    background: #FFF;
}

.contact h1, .contact h2, .contact h3, .contact h4, .contact h5, .contact h6, .contact .section .title > p, .contact .social > li > a {
    color: #181A1C;
}

.contact textarea, .contact input[type="text"], .contact input[type="email"], .contact input[type="phone"] {
    padding: 6px;
    line-height: 20px;
    height: auto;
}

.contact textarea {
    height: 100px;
}

.contacts, .contact .social {
    color: #FFF;
    list-style: none;
    margin-left: 10px;
}

.contacts > li {
    margin-top: 20px;
}

.contacts > li > a {
    color: #181A1C;
}

.contact-info {
    margin: 10px 0;
}

.contact-info p {
    font-weight: normal;
}

.contact-info .icon {
    margin: 10px auto;
    font-size: 30px;
}

.map-wrapper {
    position: relative;
    height: 500px;
}

.map-canvas {
    position: absolute;
    margin-bottom: 20px;
    width: 100%;
    height: 500px;
    color: #29383F;
    left: 0;
    top: 0;
    right: 0;
    pointer-events: none;
}

.contact .SupportTools {
    display: inline-block;
    margin-left: 0;
}

.contact .SupportTools li {
    line-height: 32px;
    padding: 10px 10px;
    font-family: 'Porta';
    font-size: 50px;
    transition: margin 0.4s;
}

.contact .SupportTools li a {
    color: #181A1C;
}

.contact .SupportTools li a:hover {
    color: #181A1C;
}

.contact .social {
    display: inline-block;
    margin-left: 0;
}

.contact .social li {
    line-height: 32px;
    padding: 10px 10px;
    font-family: 'Porta';
    font-size: 50px;
    transition: margin 0.4s;
}

.contact .social li a {
    color: #181A1C;
}

.contact .social li a:hover {
    color: #181A1C;
}

.contact-form, .contact-form2 {
    background: rgba(255, 255, 255, 0.9);
    z-index: 110;
    position: relative;
    padding: 25px;
}

.contact-form {
    margin-top: -45px;
}

.contact-form h3 {
    color: #181A1C;
    padding-bottom: 20px;
}

.contact-form2 h7 {
    color: #838589;
    padding-bottom: 20px;
}

.message-btn {
    border: 1px solid #181A1C;
    color: #181A1C;
    background-color: transparent;
    padding: 15px 30px;
    font-size: 17px;
}

.message-btn:hover {
    background-color: #1E90FF;
}

.contact-info {
    text-align: center;
    font-size: 22px;
}

.info-mail {
    border: 1px solid white;
    width: 60%;
    margin: 0 auto;
    padding: 15px;
    color: #181A1C;
}

.info-address {
    border: 1px solid white;
    width: 100%;
    margin: 0 auto;
    padding: 15px;
    font-size: 17px;
    color: #181A1C;
}

.black {
    color: #181A1C;
}

/* 3.8 Footer */
html, body {
    height: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
}

body {
    display: flex;
    flex-direction: column;
}

.content {
    flex: 1;
}

.footer {
    background: #181A1C;
    text-align: center;
    padding: 10px 0;
    width: 100%;
    position: relative;
    bottom: 0;
}

.footer p {
    color: #FFF;
    margin: 0;
}

.scrollup {
    text-align: center;
    cursor: pointer;
    vertical-align: middle;
    width: 39px;
    height: 39px;
    border-radius: 5px;
    font-size: 20px;
    position: fixed;
    bottom: 30px;
    right: 20px;
    border: 1px solid #FFF;
    display: none;
    background: #FFF;
}

.scrollup > a {
    position: relative;
    top: 7px;
    color: #FFF;
}

/* 4. Responsive */
@media (min-width: 1200px) {
    .thumbnail .more {
        margin-left: -41px;
        width: 80px;
        height: 80px;
        border-radius: 40px;
        line-height: 80px;
    }
}

@media (max-width: 979px) {
    body {
        padding: 0;
    }

    .navbar-fixed-top, .navbar-fixed-bottom {
        position: fixed;
    }

    .navbar .nav > li > a {
        line-height: 20px;
        vertical-align: middle;
    }

    .section {
        padding: 0 20px;
    }

    .navbar-fixed-top, .navbar-fixed-bottom, .navbar-static-top {
        margin: 0;
    }

    .nav-collapse {
        clear: both;
    }

    .nav-collapse .nav {
        float: none;
        margin: 0 0 10px;
    }

    .nav-collapse .nav > li {
        float: none;
    }

    .nav-collapse, .nav-collapse.collapse {
        width: 100%;
        display: inherit;
    }

    .thumbnail .more {
        margin-left: -21px;
        width: 40px;
        height: 40px;
        border-radius: 30px;
        line-height: 40px;
    }

    .thumbnail:hover .more {
        margin-top: -20px;
    }

    .newsletter form {
        text-align: center;
    }
}



@media (max-width: 767px) {
    .info-mail {
        width: 90%;
        padding: 15px 0;
    }

    .project-description {
        padding-left: 20px;
    }

    .price-column, .testimonial {
        margin-top: 30px;
    }
}

/* 5. Teamviewer */
.teamviewer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.teamviewer-container .SupportTools {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
}

.teamviewer-container .SupportTools li {
    margin: 0;
    flex: 1 1 100%;
    max-width: 234px;
}

.teamviewer-container .SupportTools li a {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
}

.teamviewer-container .SupportTools li a img {
    max-width: 100%;
}

@media (max-width: 768px) {
    .teamviewer-container {
        flex-direction: column;
        align-items: center;
    }

    .teamviewer-container .SupportTools {
        flex-direction: column;
    }

    .teamviewer-container .SupportTools li {
        flex: 1 1 auto;
        width: 100%;
        max-width: none;
    }
}

/* 6. Logo */
.logotv-resize {
    max-width: 100%;
    width: 250px;
    height: auto;
}

.logoagl-resize {
    max-width: 100%;
    width: 400px;
    height: auto;
}

.logoadobecs-resize {
    max-width: 100%;
    width: 350px;
    height: auto;
}

/* Updated Styles */
.da-arrows {
    position: absolute;
    width: 100%;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    pointer-events: none;
}

.da-arrows-prev, .da-arrows-next {
    background-color: rgba(0, 0, 0, 0.5);
    color: #181A1C;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: auto;
    cursor: pointer;
    font-size: 50px;
    padding: 0px;
}

.da-arrows-prev {
    left: 10px;
}

.da-arrows-next {
    right: 10px;
}

.scrollup {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: none;
    width: 60px;
    height: 60px;
    background-color: #181A1C;
    color: #FFF;
    text-align: center;
    border-radius: 0;
    z-index: 1000;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.scrollup a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
    text-decoration: none;
}

.scrollup i {
    font-size: 18px;
    line-height: 0;
}

.scrollup span {
    font-size: 18px;
    margin-top: -8px;
    color: #FFF;
}

/* CSS for continuous scrolling */
.scroll-container {
    width: 100%;
    overflow-x: auto; /* Enable horizontal scrolling */
    white-space: nowrap; /* Prevent wrapping of items */
    padding: 10px;
    box-sizing: border-box;
}

.scroll-content {
    display: inline-block; /* Display items in a single line */
    animation: scroll 30s linear infinite; /* Continuous scrolling animation */
}

.item {
    display: inline-block; /* Items in a row */
    width: 300px; /* Set a fixed width for items */
    margin-right: 15px; /* Space between items */
    text-align: center;
    vertical-align: top;
}

.item h3 {
    color: gold; /* Set the title color to gold */
    transition: color 0.3s ease; /* Smooth transition for color change */
}

.item:hover {
    transform: scale(1.1); /* Scale up slightly on hover */
}

@keyframes scroll-portfolios {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); } /* Adjust as needed for smooth scroll */
}

.scroll-content:hover {
    animation-play-state: paused; /* Pause the animation when hovered */
}


@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); } /* Scroll left to right */
}

.expand-thumbnails {
    text-align: center;
    margin-top: 20px;
}

.expand-all {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #181A1C;
    color: gold;
    text-align: center;
    padding: 10px 20px;
    margin: 20px auto;
    cursor: pointer;
    font-size: 16px;
    border: 1px solid gold;
    transition: all 0.3s ease-in-out;
    position: relative;
    width: fit-content;
    border-radius: 5px;
}

.expand-all span {
    margin-right: 10px;
}

.arrow-container {
    display: flex;
    justify-content: center;
    margin-top: 10px;
    padding: 20px; /* Added more padding */
    width: 100%;
    box-sizing: border-box; /* Ensures padding is included in width calculation */
}

.triple-arrow {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px; /* Adjusted space between arrows */
}

.arrow-line {
    width: 0;
    height: 0;
    border-left: 10px solid transparent; /* Increased arrow size */
    border-right: 10px solid transparent; /* Increased arrow size */
    border-top: 10px solid gold; /* Increased arrow size */
    animation: arrow-bounce 1s infinite;
}

.arrow-line:nth-child(2) {
    animation-delay: 0.2s;
}

.arrow-line:nth-child(3) {
    animation-delay: 0.4s;
}

.arrow-container.collapsed .arrow-line {
    border-top: none;
    border-bottom: 10px solid gold; /* Adjusted arrow size */
    
}

@keyframes arrow-bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(7px); /* Increased bounce height */
    }
}

/* Adjusting arrow container to prevent it from being chopped off */
/* Expand and Collapse button design */
.expand-button-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.expand-thumbnails-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    background-color: #000; /* Black background */
    color: #FFF; /* White text */
    font-size: 16px;
    padding: 10px 20px;
    position: relative;
    border: 1px solid #000; /* Black border */
    border-radius: 5px;
    transition: all 0.3s ease-in-out; /* Smooth transition for hover effect */
}

.expand-thumbnails-btn:hover {
    background-color: #1E90FF; /* Blue background on hover */
    color: #FFF; /* Keep the text white on hover */
    border-color: #1E90FF; /* Blue border on hover */
}



/* Ensure the arrows are black */
.thumbnail-triple-arrow .arrow-line {
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid #000; /* Set the arrow color to black */
    margin: 2px 0;
}

/* Ensure the arrow moves in a pushing effect */


.thumbnail-arrow-container {
    display: flex;
    justify-content: center;
    margin-top: 30px; /* Move the arrow container 30px down */
    padding: 20px;
    width: 100%;
    box-sizing: border-box;
}

@keyframes arrow-push {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px); /* Push the arrow upwards */
    }
}
.productarrow-line {
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid #000;
    margin-top: 10px; /* Adjusted margin to shift down */
    animation: arrow-bounce 1s infinite; /* Ensure this is correctly applied */
}
/* Delay for each arrow to create the pushing effect */
.productarrow-line:nth-child(1) {
    animation-delay: 0s;
}
.productarrow-line:nth-child(2) {
    animation-delay: 0.2s;
}
.productarrow-line:nth-child(3) {
    animation-delay: 0.4s;
}

/* Rotation on expand/collapse */
.thumbnail-arrow-container.collapsed .triple-arrow {
    transform: rotate(180deg); /* Rotates the arrow */
}

/* Ensure the arrow container isn't chopped off */
.scroll-container {
    overflow-x: visible !important; /* Prevent horizontal overflow issues */
    white-space: nowrap;
    padding: 10px;
    box-sizing: border-box;
}

.scroll-content {
    display: inline-block;
    animation: scroll 30s linear infinite;
}

/* Make sure all items are visible when expanded */
.scroll-container.expanded .scroll-content {
    overflow: visible !important;
    white-space: normal;
    display: flex;
    flex-wrap: wrap;
}


/* Set the fixed width of the scroll container to fit within the red-highlighted area */
#portfolio-scroll-container {
    max-width: 100%; /* Ensures the container does not exceed the width of the viewport */
    overflow-x: auto; /* Allows horizontal scrolling */
    overflow-y: hidden; /* Hides vertical scroll */
    white-space: nowrap; /* Keeps thumbnails in a single horizontal line */
    display: flex; /* Using flexbox for better control over item alignment */
    align-items: center; /* Aligns items vertically in the center */
    padding: 10px 0; /* Top and bottom padding */
}

/* Ensure each item is sized consistently */
#portfolio-scroll-container .item {
    display: inline-block;
    width: 200px; /* Size each thumbnail appropriately */
    margin-right: 20px; /* Add spacing between thumbnails */
    vertical-align: top; /* Align items to the top */
}

/* Ensure scroll-content does not exceed the container width */
#portfolio-scroll-container .scroll-content {
    display: flex;
    flex-wrap: nowrap; /* This will change dynamically via JS */
    justify-content: center;
    align-items: center;
}

#portfolio-scroll-container .thumbnail.expanded {
    flex: 0 0 20%; /* Adjust the percent as needed to fit more icons in one row */
    margin: 10px;
    box-sizing: border-box;
    transition: transform 0.3s ease;
}

/* Adjust image size if necessary */
#portfolio-scroll-container .thumbnail img {
    max-width: 100%;
    height: auto;
}

/* Ensure the text in the thumbnail title wraps correctly */
#portfolio-scroll-container .thumbnail h3 {
    font-size: 16px; /* Ensures text size is adequate */
    color: #FFC107; /* Gold color for visibility */
    margin: 5px 0; /* Margin to separate title from edges and content below */
    white-space: normal; /* Allows text wrapping */
    overflow: hidden; /* Hides overflow text */
    text-overflow: ellipsis; /* Adds ellipsis if text is too long */
    line-height: 1.2em; /* Line height to improve readability */
}

/* Ensure the text in the thumbnail description wraps correctly */
#portfolio-scroll-container .thumbnail p {
    font-size: 14px; /* Adjusts font size for additional text */
    white-space: normal; /* Wraps text properly */
    overflow: hidden; /* Prevents text overflow */
    text-overflow: ellipsis; /* Ends with ellipsis if text is too long */
    margin: 0; /* Removes margin for alignment */
    padding: 0 5px; /* Horizontal padding for text */
}


/* Set a fixed height for the thumbnail container */
#portfolio-scroll-container .thumbnail {
    height: auto; /* Allows the height to adjust based on content */
    min-height: 350px; /* Sets a minimum height to ensure space for text */
    display: flex; /* Using flex to manage layout */
    flex-direction: column; /* Stacks elements vertically */
    justify-content: space-between; /* Distributes space between image and text */
    padding: 10px; /* Padding inside each thumbnail */
    box-sizing: border-box; /* Includes padding in the height calculation */
}

#portfolio-scroll-container.expanded {
    overflow: hidden; /* Prevent scrolling */
    max-height: 100vh; /* Limit height to the viewport */
    display: flex; /* Use flexbox for layout */
    flex-wrap: wrap; /* Allow thumbnails to wrap */
    justify-content: center; /* Center thumbnails horizontally */
    align-items: flex-start; /* Align thumbnails at the top */
}
/* Responsive settings */
@media (max-width: 768px) {
    #portfolio-scroll-container .thumbnail.expanded {
        flex: 0 0 50%;
    }
}

@media (max-width: 480px) {
    #portfolio-scroll-container .thumbnail.expanded {
        flex: 0 0 100%;
    }
}

/* Hover effect to enlarge thumbnails */
#portfolio-scroll-container .thumbnail:hover {
    transform: scale(1.1); /* Enlarges the thumbnail */
}


/* Ensure the images fit within the thumbnail without stretching */
#portfolio-scroll-container .thumbnail img {
    width: 100%; /* Ensures image spans the full width of the thumbnail */
    height: 70%; /* Adjusts height to leave room for text */
    object-fit: cover; /* Ensures the image covers the designated area without distortion */
}

/* Adjust the title and description to fit within the remaining space */
#portfolio-scroll-container .thumbnail h3, 
#portfolio-scroll-container .thumbnail p {
    margin: 5px 0; /* Adjust margin for better spacing */
    text-align: center; /* Center align the text */
}

/* News Bulletin Section */
.news-bulletin-section {
    background-color: #1e2a38;
    padding: calc(30px + 2vw) 0;
    overflow: hidden;
    border-bottom: 2px solid #000;
    display: flex;
    align-items: center;
    box-sizing: border-box;
}

.news-container {
    display: flex;
    white-space: nowrap;
    animation: scrollLeftRight 30s linear infinite;
    align-items: flex-start;
}

.news-item {
    display: inline-block;
    margin-right: 50px;
    font-family: 'Roboto', sans-serif;
    color: #fff;
    text-align: left;
    white-space: normal;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3; /* Limit to 3 lines */
    -webkit-box-orient: vertical;
    line-height: 1.2em;
    max-height: calc(1.2em * 3); /* Ensure the max-height matches the line-clamp */
}

.news-title {
    font-size: clamp(1rem, 2.5vw, 2rem);
    line-height: 1.2;
    display: inline-block;
    margin-right: 10px;
}

.news-value {
    font-size: clamp(0.8rem, 2vw, 1.5rem);
    line-height: 1.2;
}

.expand-icon {
    color: #fff;
    transition: color 0.3s ease;
}

.expand-icon:hover {
    color: #1e90ff;
}

@keyframes scrollLeftRight {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}

.news-container:hover {
    animation-play-state: paused;
}

/* Reset scroll when the mouse leaves */
.news-container {
    animation-play-state: running;
    animation-timing-function: linear;
}


/* General Styles */
.news-article {
    background-color: #f8f9fa; /* Light background for readability */
    padding: 20px; /* Padding for spacing */
    margin: 20px auto; /* Center the article with margin */
    max-width: 800px; /* Limit width for better readability */
    box-shadow: 0 2px 5px rgba(0,0,0,0.1); /* Soft shadow for depth */
}

/* Title Styles */
.news-article .title h1 {
    color: #333; /* Dark text for readability */
    font-size: 28px; /* Larger font for emphasis */
    margin-bottom: 10px; /* Space below the title */
}

/* Article Date Styles */
.article-date {
    font-size: 12px; /* Smaller font for date */
    color: #888; /* Subtle gray color */
    margin-bottom: 20px; /* Space below the date */
}

/* Content Styles */
.news-article .content p {
    font-size: 16px; /* Comfortable reading size */
    color: #555; /* Medium gray for content text */
    line-height: 1.6; /* Increased line height for readability */
    margin-bottom: 15px; /* Space between paragraphs */
}

/* Heading Styles */
.news-article .content h2 {
    color: #333; /* Dark text for headings */
    font-size: 22px; /* Slightly larger than body text */
    margin-top: 20px; /* Space above headings */
    margin-bottom: 10px; /* Space below headings */
}

/* List Styles */
.news-article .content ul {
    margin-left: 20px; /* Indent list */
    color: #555; /* Medium gray for list items */
}

.news-article .content ul li {
    margin-bottom: 10px; /* Space between list items */
}

/* Table Styles */
.news-article table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

.news-article th, .news-article td {
    padding: 8px;
    text-align: left;
    font-size: 16px;
    color: #333; /* Ensure text is not white */
    border: none; /* Remove borders */
}

.news-article th {
    background-color: #e9ecef;
    font-weight: bold;
}

.news-article tr:nth-child(even) {
    background-color: #f8f9fa; /* Light background for even rows */
}

.news-article tr:hover {
    background-color: #f1f1f1; /* Highlight row on hover */
}

/* Styles for the article date */
.article-date {
    font-size: 11px;  /* Set the font size */
    color: #888;      /* Set the font color to a subtle gray */
    margin-top: 5px;  /* Space above the date */
    margin-bottom: 20px; /* Space below the date */
}

/* Table Styles */
table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

th, td {
    border: 1px solid #dee2e6;
    padding: 8px;
    text-align: left;
    font-size: 16px;
    color: #333; /* Ensure text is not white */
}

th {
    background-color: #e9ecef;
    font-weight: bold;
}

tr:nth-child(even) {
    background-color: #f8f9fa; /* Light background for even rows */
}

tr:hover {
    background-color: #f1f1f1; /* Highlight row on hover */
}


