/* Custom styling */
.product-card {
    margin-bottom: 20px;
}

.product-card img {
    width: 100%;
    height: auto;
}

.product-title {
    text-align: center;
    margin-top: 10px;
}

.product-category {
    text-align: center;
    font-size: 0.9rem;
    color: #666;
}

.container {
    margin-top: 30px;
}

.sticky-header {
    position: sticky;
    top: 0;
    z-index: 999;
    background-color: #fff;
}

.black-panel {
    background-color: #000;
    height: 30px;
    width: 100%;
}

header {
    background-color: #fff;
    padding: 10px 0;
}

header .nav-link {
    font-family: Arimo, sans-serif;
    font-weight: bold;
    text-transform: uppercase;
    color: #000;
    font-size: 21px;
    letter-spacing: 0.03em;
    font-size: 13px;
}

header .nav-link:hover {
    text-decoration: underline;
    color: #000;
}

header .nav-link.active {
    text-decoration: underline;
    color: #000;
}

header .nav-item {
    margin-left: 20px;
}

.hero-section {
    background: #fff;
    padding: 60px 0;
}

.hero-section h1 {
    color: #000;
    font-size: 2.5rem;
    text-align: left;
}

.service-section-header {
    background: #f3f3f3;
    padding: 60px 0;
    height: 78px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.service-section-header .container {
    display: flex;
    justify-content: space-between;
    width: 100%;
    /* max-width: 1288px; */
}

.service-section-header div {
    color: #555;
}

.service-section-header div a {
    color: #555;
}

footer {
    background-color: #000;
    color: #fff;
    padding: 40px 0;
    font-size: 14px;
    position: relative;
}

footer .container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

footer .footer-logo img {
    background-color: #fff;
    height: 90px;
}

footer .social-icons a {
    margin-right: 20px;
    color: #fff;
    text-decoration: none;
    font-size: 25px;
}

footer .social-icons a:hover {
    color: #ffeb3b;
}

footer .footer-contact ul,
footer .footer-links ul {
    list-style: none;
    padding: 0;
    color: #fff;
}

footer .footer-contact li,
footer .footer-links li {
    margin-bottom: 10px;
}

footer .footer-contact a,
footer .footer-links a {
    color: #fff;
    text-decoration: none;
}

footer .footer-contact a:hover,
footer .footer-links a:hover {
    text-decoration: underline;
}

footer .footer-location {
    font-size: 16px;
    color: #fff;
}

footer .footer-right {
    color: #888;
    font-size: 14px;
    text-align: center;
    width: 100%;
}

.footer-line {
    width: 100%;
    height: 1px;
    background-color: #888;
    margin: 20px 0;
}

.btn-yellow {
    background-color: #ffeb3b;
    color: #000;
    font-weight: bold;
    padding: 10px 25px;
    border: none;
    text-transform: uppercase;
    transition: all 0.3s ease;
    cursor: pointer;
    margin-top: 30px;
}

.btn-yellow:hover {
    background-color: #000;
    color: #fff;
}

.footer-image img {
    width: 100%;
    height: auto;
    display: block;
}

.top-header-line img {
    width: 100%;
    height: auto;
    display: block;
}

.header-top-arrow {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #ffeb3b;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    z-index: 100;
}

.header-top-arrow::before {
    content: "\2191";
    /* Unicode for upward arrow */
    font-size: 20px;
    color: #000;
}

.header-top-arrow:hover {
    background-color: #fdd835;
}

.menu-section {
    border-right: 1px solid #ddd;
    padding-right: 20px;
    padding-left: 30px;
    /* <-- Add left space */
    min-width: 300px;
    /* Optional: fix menu width */
}

.menu-section ul {
    list-style-type: none;
    padding-left: 0;
}

.menu-section ul li {
    margin-bottom: 15px;
    font-size: 16px;
    color: #000;
}

.menu-section ul li a {
    text-decoration: none;
    color: #000;
    font-weight: bold;
}

.menu-section ul li a:hover {
    color: #ffeb3b;
}

.product-list-section {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.product-card-container {
    width: calc(33.333% - 20px);
    /* 3 items per row with 20px gap */
}

.card {
    border: none;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.card img {
    object-fit: cover;
    height: 200px;
}

.product-card {
    background-color: transparent;
    position: relative;
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: scale(1.03);
}

.product-card .image-wrapper {
    position: relative;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    /* Remove default background */
    overflow: hidden;
}

.product-card img {
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

/* Button Styling */
.product-card .hover-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #ffeb3b;
    color: #000;
    font-weight: bold;
    padding: 10px 25px;
    border: none;
    opacity: 0;
    text-transform: uppercase;
    transition: all 0.3s ease;
    z-index: 3;
    white-space: nowrap;
}

/* Show on hover */
.product-card:hover .hover-btn {
    opacity: 1;
}

/* Hover effect */
.product-card .hover-btn:hover {
    background-color: #000;
    color: #fff;
}

/* Text Area Styling */
.product-card .p-3 {
    padding: 15px 0 0 0;
}

.product-card h6,
.product-card p {
    margin: 0;
    text-align: left;
}

.product-card h6 {
    font-weight: bold;
    color: #000;
    margin-bottom: 5px;
}

.product-card p {
    color: #999;
    font-size: 14px;
}

/* Hover Button Styling */
.product-card .hover-btn {
    position: absolute;
    top: 92%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #ffeb3b;
    color: #000;
    font-weight: bold;
    padding: 10px 25px;
    border: none;
    opacity: 0;
    text-transform: uppercase;
    transition: all 0.3s ease;
    z-index: 3;
    white-space: nowrap;
}

/* Show on hover */
.product-card:hover .hover-btn {
    opacity: 1;
}

.product-text {
    padding: 15px 0 0 0;
    /* remove left padding */

    margin-right: auto;
    width: 100%;
    max-width: calc(100% - 30px);
    /* Align with image assuming 15px spacing on each side */
}

.services {
    /* border-right: 1px solid #ddd; */
    padding-right: 20px;
    /* padding-left: 30px; <-- Add left space */
    min-width: 300px;
    /* Optional: fix menu width */
}

.services h5 {
    margin: 0 0 20px;
    text-transform: uppercase;
    font-family: Arimo, sans-serif;
    font-weight: 700;
    word-wrap: break-word;
    color: #000;
    font-size: 21px;
    line-height: 1.095em;
    letter-spacing: 0.03em;
}

.services ul {
    list-style-type: none;
    padding-left: 0;
}

.services ul li {
    margin-bottom: 15px;
    margin: 9px 0 !important;
    color: #a3a3a3;
    font-family: Arimo, sans-serif;
    font-size: 15px;
    -webkit-font-smoothing: antialiased;
    font-weight: 400;
    text-transform: uppercase;
}

.services ul li a {
    text-decoration: none;
    font-family: Arimo, sans-serif;
    font-size: 15px;
    line-height: 1.8em;
    font-weight: 400;
    color: #a3a3a3;
    cursor: pointer;
}

.services ul li a:hover {
    color: #000;
}

.service-title-section {
    font-family: Arimo, sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    color: #000;
    font-size: 21px;
    line-height: 1.095em;
    letter-spacing: 0.03em;
    margin: 0;
}

.service-title-section-2 {
    font-family: Arimo, sans-serif;
    font-size: 14px;
    line-height: 1;
    color: #a3a3a3;
}

.service-section-header {
    background: #f3f3f3;
    padding: 30px 0;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.service-title-section {
    font-family: Arimo, sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    color: #000;
    font-size: 21px;
    line-height: 1.095em;
    letter-spacing: 0.03em;
    margin: 0;
}

.service-title-section-2 {
    font-family: Arimo, sans-serif;
    font-size: 14px;
    line-height: 1;
    color: #a3a3a3;
}

/* Dropdown styles */
.nav-item.dropdown {
    position: relative;
}

.nav-item.dropdown .dropdown-menu {
    display: none;
    position: absolute;
    background-color: #000;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    min-width: 160px;
    z-index: 9999;
    /* top: 150%; Add space below the nav link */
    left: 0;
    border-radius: 0;
    /* Make dropdown corners sharp */
    transition: all 0.2s ease-in-out;
}

.nav-item.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-item {
    padding: 10px 20px;
    font-size: 14px;
    color: #fff;
    text-decoration: none;
}

.dropdown-item:hover {
    text-decoration: underline;
    background-color: #000;
    color: #fff;
    /* color: #fff; */
}

header {
    background-color: #fff;
    padding: 10px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar-toggler {
    position: relative;
}

.nav-link {
    text-transform: uppercase;
    font-weight: bold;
    color: #000;
    font-size: 13px;
    letter-spacing: 0.03em;
}

/* Dropdown menu styling */
/* Adjust toggle menu to show dropdown with black background and white text */
.navbar-toggler {
    display: none;
}

/* For Desktop View */
.navbar-nav {
    display: flex;
    /* gap: 15px; */
}

.nav-link {
    text-transform: uppercase;
    font-weight: bold;
    color: #000;
    font-size: 13px;
    letter-spacing: 0.03em;
}

/* Language select displayed side-by-side on desktop */
.desktop-lang-selector {
    margin-left: 20px;
}

/* Dropdown styling for mobile */
.language-select {
    display: none;
}

section {
    background-color: #fff;
}

.about-hero {
    /* background-image: url("{{ asset('assets/img/h1-top-header-line-img-1.jpg') }}");  */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 390px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-hero h1 {
    color: #000;
    font-size: 48px;
}

.about-1 {
    font-family: "Roboto", Sans-serif;
    font-weight: 600;
    line-height: 39px;
    color: #5430ff;
    margin: 0;
    font-size: 35px;
    word-wrap: break-word;
    padding: 0;
}

.about-2 {
    font-family: "Roboto", Sans-serif;
    font-weight: 600;
    line-height: 39px;
    color: #40273e;
    margin: 0;
    font-size: 35px;
    word-wrap: break-word;
    padding: 0;
}

/* Language Switcher Styles */
.lang-switcher {
    display: flex !important;
    align-items: center;
    gap: 5px;
    /* spacing between EN | FR */
}

.lang-switcher .nav-link {
    font-size: 13px;
    text-transform: uppercase;
    padding: 0;
    color: #000;
    font-weight: bold;
}

.lang-switcher .nav-link.active {
    text-decoration: underline;
    color: #000;
}

.lang-divider {
    color: #000;
    font-weight: bold;
}

.contact-header {
    background-image: url("https://utech-africa.com/storage/18/ezgif.com-png-to-webp-converter-42.webp");
    background-size: cover;
    background-position: center;
    padding: 220px 0;
    /* color: white; */
    text-align: center;
}

.contact-header h2 {
    font-size: 36px;
    font-weight: bold;
}

.contact-section {
    margin-top: 50px;
    margin-bottom: 60px;
}

.contact-header {
    background-image: url("https://utech-africa.com/storage/18/ezgif.com-png-to-webp-converter-42.webp");
    background-size: cover;
    background-position: center;
    padding: 220px 0;
    text-align: center;
}

.contact-header h1 {
    font-size: 50px;
    font-weight: bold;
    color: #000;
    text-transform: uppercase;
}

.contact-h2 {
    font-family: Arimo, sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    color: #000;
    font-size: 45px;
    line-height: 1.044em;
    letter-spacing: 0.02em;
}

.sub-title {
    color: #303030;
    font-size: 18px;
    line-height: 28px;
    padding-top: 7px;
}

.sub-next-title {
    margin-top: 14px;
    text-align: justify;
    /* Justify the paragraph text */
}

.contact-form input,
.contact-form textarea {
    border: none;
    border-bottom: 1px solid #000;
    border-radius: 0;
    box-shadow: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-bottom: 2px solid #000;
    box-shadow: none;
}

.contact-form textarea {
    border: 1px solid #000;
    padding: 20px;
    resize: vertical;
}

.submit-btn {
    background-color: #ffeb3b;
    /* background-color: #000; */
    color: #000;
    padding: 10px 25px;
    border: none;
    text-transform: uppercase;
    font-weight: bold;
    margin-top: 20px;
}

.submit-btn:hover {
    background-color: #000;
    color: #fff;
}

/* Align text and form side by side */
.contact-section .row {
    display: flex;
    align-items: flex-start;
}

.contact-section .col-md-6 {
    margin-bottom: 20px;
}

/* Add some spacing between the columns */
.contact-section .col-md-6:nth-child(1) {
    padding-right: 30px;
}

.contact-section .col-md-6:nth-child(2) {
    padding-left: 30px;
}

.contact-image {
    width: 100%;
    max-height: 350px;
    object-fit: contain;
}

.sub-title {
    color: #303030;
    font-size: 18px;
    line-height: 28px;
    padding-top: 7px;
}

.sub-next-title {
    margin: 14px 0 0;
}

.list-title {
    margin: 10px 0;
    line-height: 1.8em;
}

.list-unstyled {
    margin: 10px 0;
    line-height: 1.8em;
}

.list-unstyled li {
    color: #212529;
}

.contact-h2 {
    font-family: Arimo, sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    color: #000;
    font-size: 45px;
    line-height: 1.044em;
    letter-spacing: 0.02em;
}

.contact-form label {
    color: grey;
    font-weight: bold;
}

/* Style textarea like a full input box */
.contact-form textarea {
    border: 1px solid #000 !important;
    /* border-radius: 5px; */
    padding: 35px;
    resize: vertical;
}

/* Spacing below submit button */
.contact-form .submit-btn {
    margin-top: 20px;
    margin-bottom: 40px;
}

/* Add space between contact section and footer */
.contact-section {
    margin-bottom: 60px;
}

.service-section-header {
    background: #f3f3f3;
    padding: 60px 0;
    height: 78px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.service-section-header div {
    color: #555;
}

.catalogue-section {
    background-color: #fff;
    padding: 60px 0;
}

.container-fluid {
    padding: 60px 0;
}

.service-content-container {
    display: flex;
    justify-content: center;
    align-items: center;
    /* padding: 60px 0; */
}

.service-content-container img {
    width: 100%;
    max-width: 400px;
    object-fit: cover;
    margin-right: 30px;
    /* Add space between image and content */
}

.service-content-container h3 {
    font-size: 28px;
    font-weight: bold;
}

.service-content-container p {
    font-size: 16px;
    color: #6f6f6f;
    line-height: 1.8em;
    margin-top: 14px;
}

.service-content-container .content {
    /* width: 100%; */
    text-align: left;
    padding: 40px 0px;
}

.hero-section-title {
    font-family: "Roboto", Sans-serif;
    font-size: 16px;
    color: #7a7a7a;
    --display: flex;
}

.hero-section p {
    font-family: "Roboto", Sans-serif;
    font-size: 16px;
    color: #7a7a7a;
    --display: flex;
}

.title-after-hero {
    text-transform: uppercase;
    font-family: "Roboto", Sans-serif;
    font-weight: 600;
    color: #000000;
    font-size: 28px;
    line-height: 1;
    letter-spacing: 0.03em;
}

.service-content-title {
    font-family: Arimo, sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    color: #000;
    font-size: 28px;
    line-height: 1.071em;
    letter-spacing: 0.03em;
}

.service-content-container p {
    margin: 14px 0 0;
    line-height: 1.8em;
    --width: 50%;
    font-family: Arimo, sans-serif;
    font-size: 15px;
    line-height: 1.8em;
    font-weight: 400;
    color: #6f6f6f;
}

.service-title-section {
    font-family: Arimo, sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    color: #000;
    font-size: 21px;
    line-height: 1.095em;
    letter-spacing: 0.03em;
    margin: 0;
}

.service-title-section-2 {
    font-family: Arimo, sans-serif;
    font-size: 14px;
    line-height: 1;
    color: #a3a3a3;
}

.slick-carousel img {
    width: 50%;
    height: auto;
}

.slick-prev,
.slick-next {
    color: black;
}

.carousel-section {
    margin-bottom: 50px;
}

/* Styling for the arrow button */
.scroll-arrow {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #000;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    border-radius: 50%;
    color: #fff;
    font-size: 30px;
    z-index: 100;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.scroll-arrow:hover {
    background-color: #444;
}

.scroll-arrow i {
    color: black;
}

.product-carousel-section {
    position: relative;
}

.product-carousel .product-item {
    text-align: center;
    padding: 20px;
    border-radius: 6px;
}

.product-carousel .product-item img {
    width: 200px;
    height: 200px;
    display: block;
    margin: 0 auto 10px;
}

.product-carousel .product-item p {
    text-transform: uppercase;
    font-family: "Arimo", sans-serif;
    font-weight: 600;
    font-size: 14px;
    color: #000;
}

.slick-prev,
.slick-next {
    position: absolute;
    top: 43%;
    transform: translateY(-50%);
    background: black !important;
    /* Remove the black background */
    border: none !important;
    color: white !important;
    width: 30px;
    height: 30px;
    /* font-size: 28px; */
    /* color: #000; */
    z-index: 10;
    /* Ensure the arrows are above the images */
}

.slick-prev:before,
.slick-next:before {
    font-family: "Font Awesome 5 Free";
    /* Optional: change icon style */
    font-weight: 900;
    font-size: 24px;
    color: white !important;
    /* Set arrow color */
}

.slick-prev:before {
    content: "\f104";
    /* FontAwesome left arrow */
}

.slick-next:before {
    content: "\f105";
    /* FontAwesome right arrow */
}

.slick-prev {
    left: 27px;
    /* Position on the left edge of the carousel */
}

.slick-next {
    right: 27px;
    /* Position on the right edge of the carousel */
}

.slick-slide {
    margin: 0;
    /* Remove any space between slides */
}

.product-carousel .slick-track {
    display: flex;
    /* Ensure items are displayed in a row */
}

.section-header {
    text-align: center;
    margin-top: 50px;
    font-size: 32px;
}

.card-body {
    padding: 30px;
    text-align: center;
}

.service-card {
    border: 0;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.card-image img {
    width: 100%;
    border-radius: 10px;
}

.hero-section-service {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* Center content vertically */
    /* margin-top: 80px; */
    padding: 40px;
    gap: 30px;
    /* Space between content and image */
}

.hero-section-service .text-container {
    flex: 1;
    padding-right: 30px;
    text-align: left;
    /* Left-align text */
}

.hero-section-service .image-container {
    flex: 1;
    max-width: 50%;
    display: flex;
    justify-content: flex-end;
    /* Align image to the right */
}

.hero-section-service p {
    font-size: 16px;
    color: #555;
    margin-bottom: 30px;
    text-align: justify;
    /* Justify text */
}

/* Button Styling */
.btn-black-border {
    border: 2px solid #000;
    color: #000;
    padding: 10px 20px;
    text-transform: uppercase;

    text-decoration: none;
    font-family: Arimo, sans-serif;
    font-size: 13px;
    line-height: 2em;
    font-weight: 700;
    letter-spacing: 0.03em;
    cursor: pointer;
    /* border-radius: 5px; */
    transition: all 0.3s ease;
}

.btn-black-border:hover {
    background-color: #000;
    color: #fff;
}

/* Image Border */
.bordered-image {
    border: 1px solid #778dd8;
    /* Blue border for image */
}

.service-content {
    font-family: Arimo, sans-serif;
    margin: 14px 0 0;
    line-height: 1.8em;
    font-size: 15px;
    font-weight: 400;
    color: #6f6f6f;
}

.service-title {
    font-family: Arimo, sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    color: #000;
    font-size: 45px;
    line-height: 1.044em;
    letter-spacing: 0.02em;
}

.menu-section {
    border-right: 1px solid #ddd;
    padding-right: 20px;
    padding-left: 30px;
    /* <-- Add left space */
    min-width: 300px;
    /* Optional: fix menu width */
}

.menu-section ul {
    list-style-type: none;
    padding-left: 0;
}

.menu-section ul li {
    margin-bottom: 15px;
    font-size: 16px;
    color: #000;
}

.menu-section ul li a {
    text-decoration: none;
    color: #000;
    font-weight: bold;
}

.menu-section ul li a:hover {
    color: #ffeb3b;
}

.product-image {
    width: 100%;
    height: auto;
}

.product-description {
    margin-top: 10px;
}

.related-products img {
    width: 100%;
    height: auto;
}

.pro-title {
    font-size: 18px;
    font-family: Arimo, sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    color: #000;

    line-height: 1.044em;
    letter-spacing: 0.02em;
}

.pro-desc {
    font-family: Arimo, sans-serif;
    font-size: 15px;
    -webkit-font-smoothing: antialiased;
    margin: 10px 0;
    line-height: 1.8em;
    font-weight: 400;
    color: #6f6f6f;
}

.category {
    flex-shrink: 0;
    margin-right: 18px;
    font-family: Arimo, sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    color: #000;
    font-size: 15px;

    letter-spacing: 0.03em;
    line-height: inherit !important;
}

.category-value {
    cursor: pointer;
    font-size: 14px;
    font-family: Arimo, sans-serif;
    color: #a3a3a3;
    line-height: 1.8em;
    font-weight: 400;
    text-transform: uppercase;
}

.category-value:hover {
    color: #000;
}

.related-products-title {
    font-family: Arimo, sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    color: #000;
    font-size: 28px;
    line-height: 1.071em;
    letter-spacing: 0.03em;
    margin: 0 0 35px;
}

.related-product-text {
    font-size: 18px;
    font-family: Arimo, sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    color: #000;
    margin: 25px 0 0 0;
    line-height: 1.133em;
    letter-spacing: 0.03em;
}

.related-product-sub-text {
    position: relative;
    display: inline-block;
    vertical-align: top;
    font-size: 14px;
    line-height: inherit;
    color: #a3a3a3;
    z-index: 3;
    text-transform: uppercase;
}

.related-product-sub-text:hover {
    color: #000;
}

header .navbar-brand {
    margin-left: auto;
    /* Align logo to the right */
}

.mobile-content {
    display: none;
}

.desktop-content {
    display: block;
}

.footer-sections {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
}

/* Let each section take its natural width unless told otherwise */
.footer-sections > div {
    flex: 1 1 200px;
    text-align: left;
}

.service-content-container h3 {
    font-weight: 700;
}

.service-content-container p {
    color: #555;
    line-height: 1.6;
}

.iti {
    width: 100% !important;
    display: block !important;
    position: relative;
}

/* Make the inner phone input exactly like .form-control */
.iti input.form-control {
    width: 100% !important;
    border: none !important;
    border-bottom: 1px solid #000 !important;
    /* Bootstrap input border */
    border-radius: 0 !important;
    padding-left: 52px !important;
    /* room for flag */
    height: calc(2.25rem + 2px) !important;
    line-height: 1.5 !important;
    box-shadow: none !important;
}

/* Focus state to match Bootstrap inputs */
.iti input.form-control:focus {
    border-color: #86b7fe !important;
    outline: 0 !important;
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25) !important;
}

/* Ensure flag container doesn’t add extra spacing */

/* Make sure dropdown doesn’t break layout */

@media (max-width: 1366px) {
    .nav-link {
        font-size: 12px !important;
    }
}

@media (max-width: 1280px) {
    .nav-link {
        font-size: 12px !important;
    }
}

@media (max-width: 1024px) {
    header .navbar-brand {
        margin-left: 0%;
        /* Align logo to the right */
    }

    .desktop-content {
        display: none;
    }

    .mobile-content {
        display: block;
        margin-top: 0px !important;
    }

    .navbar-toggler {
        display: block;
        border: none;
    }

    .nav-link {
        font-size: 12px;
    }
    .contact-header h1 {
        font-size: 36px;
    }
}

/* Fix for mobile menu text color staying white */
@media (max-width: 991.98px) {
    .navbar-toggler:focus {
        box-shadow: none;
    }
    .navbar-light .navbar-nav .nav-link {
        color: #fff !important;
        text-transform: uppercase;
        font-weight: 600;
        font-size: 16px !important;
        padding: 10px 0;
        display: inline-block; /* ensures background fits text width */
        position: relative;
        transition: background-color 0.3s ease;
    }

    /* Active (clicked) link */
    .navbar-light .navbar-nav .nav-link.active-text {
        background-color: #333; /* gray background only behind text */
        padding: 10px 8px; /* small padding around text */
        border-radius: 3px;
    }

    /* Optional hover effect (light gray behind text) */
    .navbar-light .navbar-nav .nav-link:hover {
        background-color: #222;
        padding: 10px 8px;
        border-radius: 3px;
    }

    /* .navbar-light .navbar-toggler-icon {
        filter: invert(1); */
    /* make hamburger icon white */
    /* } */

    .navbar-light .navbar-collapse {
        background-color: #000 !important;
    }
}

@media (max-width: 912px) {
    header .navbar-brand {
        margin-left: 0%;
        /* Align logo to the right */
    }

    .desktop-content {
        display: none;
    }

    .mobile-content {
        display: block;
        margin-top: 0px !important;
    }

    .language-select {
        display: block;
        margin: 20px 0;
    }

    .navbar-toggler {
        display: block;
        border: none;
    }

    .accordion-button {
        background-color: #f9f9f9;
        color: #000;
        font-weight: bold;
        text-transform: uppercase;
    }

    .accordion-button:not(.collapsed) {
        background-color: #ffeb3b;
        color: #000;
    }

    .accordion-body ul li a {
        color: #a3a3a3;
        text-decoration: none;
    }

    .accordion-body ul li a:hover {
        color: #000;
    }

    .contact-header h1 {
        font-size: 17px;
    }

    .about-header {
        font-size: 14px !important;
    }
}

@media (max-width: 900px) {
    .desktop-content {
        display: none;
    }

    .mobile-content {
        display: block;
        margin-top: 0px !important;
    }

    header .navbar-brand {
        margin-left: 0%;
        /* Align logo to the right */
    }

    /* Mobile View - Hide Desktop Menu and Display Toggle Button */
    .nav-item .dropdown .service {
        display: none;
    }

    .navbar-toggler {
        display: block;

        border: none;
    }

    .navbar-nav {
        display: flex;
        flex-direction: column;
        align-items: center;
        /* Center items */
        text-align: center;
        width: 100%;
    }

    .desktop-lang-selector {
        display: none;
    }

    .navbar-collapse {
        position: fixed;
        /* Make it fixed to the top of the screen */
        top: 100px;
        /* Align it at the top */
        left: 0;
        /* Align it to the left edge */
        width: 100%;
        /* Make it full width */
        max-height: 80vh;
        overflow-y: auto;
        /* Set height to medium (50% of the screen height) */
        background-color: #000;
        /* Black background */
        padding: 30px 0;
        /* Add padding */
        z-index: 9999;
        /* Ensure it stays on top */
        display: none;
        /* Initially hidden */
        flex-direction: column;
        align-items: center;
        /* Center the links */
        justify-content: flex-start;
        /* Align items from the top */
    }

    .navbar-collapse.show {
        display: flex;
        /* Show the dropdown when active */
    }

    .navbar-nav {
        width: 100%;
        /* Make the navigation full width */
        text-align: center;
    }

    .nav-item {
        width: 100%;
    }

    .nav-item a {
        padding: 15px 0;
        /* Increase padding for better touch experience */
        font-size: 16px;
        color: #fff;
        /* White text */
        text-decoration: none;
    }

    .nav-item a:hover {
        background-color: #222;
        /* Dark background on hover */
    }

    /* For the language selector */
    .language-select {
        display: block;
        margin: 20px 0;
    }

    /* Active link color */
    header .nav-link.active {
        color: #fff !important;
        text-decoration: underline;
    }

    .slick-prev {
        left: 13px;
    }

    .slick-next {
        right: 9px;
    }

    .hero-section h1 {
        font-size: 1.8rem;
    }

    .hero-section-title {
        font-size: 14px;
        text-align: left;
    }

    .title-after-hero {
        font-size: 22px;
    }

    .service-content-container .content {
        width: 100%;
        padding: 20px 0;
    }

    .service-content-title {
        font-size: 24px;
    }

    .service-content-container {
        flex-direction: column;
        text-align: center;
        padding: 30px 0;
    }

    .service-content-container img {
        margin: 0 auto 20px auto;
        max-width: 100%;
    }

    .footer-sections {
        flex-direction: column;
    }

    /* Reorder items using flexbox order */
    .footer-location {
        order: 1;
    }

    .footer-links {
        order: 2;
    }

    .footer-contact {
        order: 3;
    }

    .footer-logo {
        order: 4;
    }

    /* Ensure full width and left alignment */
    .footer-sections > div {
        flex: 1 1 100%;
        width: 100%;
        text-align: left;
        align-items: flex-start;
    }

    .footer-logo img {
        height: 70px;
    }

    .top-header-line img,
    .footer-image img {
        max-width: 100%;
        height: auto;
    }

    .header-top-arrow {
        width: 40px;
        height: 40px;
    }

    .dropdown-subservices {
        display: flex;
        flex-direction: column;
        background-color: #000;
        width: 100%;
    }

    .sub-service-link {
        color: #fff;
        padding: 12px 0;
        text-decoration: none;
        font-size: 14px;
    }

    .sub-service-link:hover {
        background-color: #222;
    }

    .sub-service-wrapper {
        width: 100%;
        text-align: center;
    }

    .service-dropdown-toggle a::after {
        font-size: 12px;
    }

    .iti input.iti__tel-input,
    .iti input.iti__tel-input[type="text"],
    .iti input.iti__tel-input[type="tel"] {
        width: 200%;
    }
}

@media (max-width: 820px) {
    .slick-prev {
        left: 13px;
    }

    .slick-next {
        right: 9px;
    }

    .lang-switcher {
        display: none !important;
    }
}

@media (max-width: 768px) {
    .lang-switcher {
        display: none !important;
    }

    /* Mobile View - Hide Desktop Menu and Display Toggle Button */
    .nav-item .dropdown .service .show .dropdown-menu {
        display: block !important;
    }

    .dropdown-menu {
        background-color: #000;
    }

    .navbar-toggler {
        display: block;
    }

    .navbar-nav {
        display: flex;
        flex-direction: column;
        align-items: center;
        /* Center items */
        text-align: center;
        width: 100%;
    }

    .desktop-lang-selector {
        display: none;
    }

    .navbar-nav {
        width: 100%;
        /* Make the navigation full width */
        text-align: center;
    }

    .nav-item {
        width: 100%;
    }

    .nav-item a {
        padding: 15px 0;
        /* Increase padding for better touch experience */
        font-size: 16px;
        color: #fff;
        /* White text */
        text-decoration: none;
    }

    .nav-item a:hover {
        background-color: #222;
        /* Dark background on hover */
    }

    /* For the language selector */
    .language-select {
        display: block;
        margin: 20px 0;
    }

    /* Active link color */
    header .nav-link.active {
        color: #fff !important;
        text-decoration: underline;
    }

    .slick-prev {
        left: 13px;
    }

    .slick-next {
        right: 9px;
    }

    .hero-section-service .text-container,
    .hero-section-service .image-container {
        flex: 1 1 50%;
    }

    .contact-header {
        padding: 80px 0;
    }

    .service-title {
        font-size: 28px;
        text-align: center;
    }

    .service-content {
        text-align: justify;
    }

    .btn-black-border {
        display: block;
        margin: 20px auto 0;
    }

    .img-fluid {
        max-width: 100%;
        height: auto;
    }

    .service-content-container {
        text-align: center;
    }

    .pro-title {
        margin-top: 10px;
    }
}

@media (max-width: 576px) {
    .title-after-hero {
        font-size: 20px;
    }

    .service-content-container h3 {
        font-size: 20px;
    }

    .service-content-container p {
        font-size: 14px;
    }

    footer .social-icons a {
        font-size: 20px;
        margin: 0 10px;
    }

    .btn-yellow {
        padding: 8px 20px;
        font-size: 13px;
    }

    .navbar-collapse {
        max-height: 90vh;
    }
}

@media (max-width: 575.98px) {
    .navbar-collapse {
        max-height: 90vh;
    }
}

@media (max-width: 480px) {
    .slick-prev {
        left: 13px;
    }

    .slick-next {
        right: 9px;
    }
}

@media (max-width: 414px) {
    .slick-prev {
        left: 13px;
    }

    .slick-next {
        right: 9px;
    }
    .contact-header h1 {
        font-size: 12px;
    }
    .about-header {
        font-size: 12px !important;
    }
}
@media (max-width: 411px) {
    .slick-prev {
        left: 13px;
    }

    .slick-next {
        right: 9px;
    }
    .contact-header h1 {
        font-size: 12px;
    }
    .about-header {
        font-size: 12px !important;
    }
}
@media (max-width: 400px) {
    .slick-prev {
        left: 13px;
    }

    .slick-next {
        right: 9px;
    }
    .contact-header h1 {
        font-size: 12px;
    }
    .about-header {
        font-size: 12px !important;
    }
}

@media (max-width: 320px) {
    .slick-prev {
        left: 13px;
    }

    .slick-next {
        right: 9px;
    }
    .about-header {
        font-size: 12px !important;
    }
}
