/* ISO Badge */
.iso-badge-container {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 100.35px;
    height: 100.35px;
    z-index: 1000;
}

.iso-badge-container img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Header and Navbar */
.main-header {
    padding: 0 !important;
}

.navbar {
    padding: 0;
    align-items: flex-start !important;
}

.navbar-brand {
    margin: 0;
    padding: 0;
    line-height: 1;
}

/* Header Menu Items */
.navbar-nav .nav-link {
    font-weight: 400 !important;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link.active {
    font-weight: 700 !important;
    color: #ff6b00 !important;
}

.navbar-nav .nav-link:hover {
    color: #ff6b00 !important;
}

/* Header Contact Info */
.navbar .primary-menu-row {
    padding: 8px 0;
}

.navbar .contact-item {
    color: #ffffff !important;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.navbar .contact-item:hover {
    color: #f8f9fa !important;
    text-decoration: none !important;
}

.navbar .contact-icon {
    filter: brightness(0) invert(1);
}

/* Custom Background Colors */
.bg-custom-light {
    background-color: #F5F5F5 !important;
}

/* Clients Carousel Styles */
.clients-section {
    background-color: #EDEBEB;
    padding: 60px 0;
    margin-top: 0;
    margin-bottom: 0;
}

.clientsSwiper {
    overflow: visible;
    position: relative;
    width: 100%;
    padding: 0 15px;
}

.clientsSwiper .swiper-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.clientsSwiper .swiper-slide {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 0 5px;
    box-sizing: border-box;
}

.client-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 25px 40px;
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 120px;
    min-width: 180px;
    margin: 0 15px;
    border: 1px solid #f0f0f0;
}

.client-logo:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    border-color: #FF9900;
}

.client-logo img {
    max-width: 100%;
    max-height: 70px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(30%);
    transition: all 0.3s ease;
}

.client-logo:hover img {
    filter: grayscale(0%);
    transform: scale(1.05);
}

/* Swiper Navigation */
/* Hero Slider Navigation */
.heroSwiper .swiper-button-next,
.heroSwiper .swiper-button-prev,
.clientsSwiper .swiper-button-next,
.clientsSwiper .swiper-button-prev {
    color: #FF9900;
    width: 50px;
    height: 50px;
    background: #ffffff;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    margin-top: -25px;
    opacity: 1 !important;
}

.heroSwiper .swiper-button-next:hover,
.heroSwiper .swiper-button-prev:hover,
.clientsSwiper .swiper-button-next:hover,
.clientsSwiper .swiper-button-prev:hover {
    background: #FF9900;
    color: #ffffff;
    transform: scale(1.1);
}

.heroSwiper .swiper-button-next::after,
.heroSwiper .swiper-button-prev::after,
.clientsSwiper .swiper-button-next::after,
.clientsSwiper .swiper-button-prev::after {
    font-size: 18px;
    font-weight: bold;
}

/* Swiper Pagination */
.clientsSwiper .swiper-pagination {
    position: relative;
    margin-top: 40px;
}

.clientsSwiper .swiper-pagination-bullet {
    background: #ddd;
    opacity: 1;
    width: 12px;
    height: 12px;
    margin: 0 6px;
    transition: all 0.3s ease;
}

.clientsSwiper .swiper-pagination-bullet-active {
    background: #FF9900;
    transform: scale(1.2);
}

/* Desktop - Show 5 images */
@media (min-width: 1200px) {
    .clientsSwiper .swiper-slide {
        width: calc(20% - 30px);
        max-width: 200px;
    }
    
    /* Hide pagination on desktop */
    .clientsSwiper .swiper-pagination {
        display: none;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .clientsSwiper .swiper-slide {
        width: calc(25% - 30px);
        max-width: 180px;
    }
    
    .client-logo {
        min-width: 160px;
        height: 110px;
        padding: 20px 30px;
    }
}

/* Tablet */
@media (min-width: 768px) and (max-width: 991px) {
    .clientsSwiper {
        width: 100%;
        overflow: hidden;
    }
    
    .clientsSwiper .swiper-slide {
        width: calc(33.333% - 20px);
        max-width: 200px;
        flex-shrink: 0;
    }
    
    .client-logo {
        min-width: 160px;
        width: 100%;
        height: 100px;
        padding: 15px 25px;
        margin: 0 10px;
    }
    
    .client-logo img {
        max-height: 60px;
    }
}

/* Mobile - Show 1 image at a time */
@media (max-width: 767px) {
    .clients-section {
        padding: 40px 0;
        min-height: 200px;
        display: block;
    }
    
    .clients-section h2 {
        font-size: 28px;
        margin-bottom: 30px;
    }
    
    .clients-section .section-subtitle {
        font-size: 16px;
        margin-bottom: 40px;
    }
    
    .swiper-button-next,
    .swiper-button-prev {
        display: flex !important;
        width: 50px;
        height: 50px;
        background: #ffffff;
        border-radius: 50%;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease;
        color: #FF9900;
    }
    
    .swiper-pagination {
        display: block;
    }
    
    .clientsSwiper {
        padding: 15px 0 50px 0;
        width: 100%;
        height: auto;
        min-height: 120px;
        overflow: hidden;
        touch-action: pan-y pinch-zoom;
    }
    
    .clientsSwiper .swiper-wrapper {
        height: auto;
        align-items: center;
        transition-timing-function: ease-out;
    }
    
    .clientsSwiper .swiper-slide {
        width: 280px !important;
        max-width: 280px;
        display: flex !important;
        justify-content: center;
        align-items: center;
        margin: 0;
        flex-shrink: 0;
    }
    
    .clientsSwiper .swiper-slide .client-logo {
        width: 100%;
        max-width: 200px;
        height: auto;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 10px;
    }
    
    .clientsSwiper .swiper-slide .client-logo img {
        max-width: 100%;
        max-height: 80px;
        width: auto;
        height: auto;
        object-fit: contain;
    }
}

@media (max-width: 767px) {
    .clientsSwiper {
        padding: 0 30px;
    }
    
    .clientsSwiper .swiper-slide {
        width: 100% !important;
        max-width: 100%;
        padding: 0 15px;
    }
    
    .client-logo {
        margin: 0 auto;
        min-width: 220px;
        max-width: 100%;
    }
    
    .clientsSwiper .swiper-button-next,
    .clientsSwiper .swiper-button-prev {
        display: none;
    }
    
    .clientsSwiper {
        touch-action: pan-y pinch-zoom;
        -webkit-overflow-scrolling: touch;
    }
    
    .client-logo {
        min-width: 230px;
        height: 80px;
        padding: 10px 15px;
    }
    
    .client-logo img {
        max-height: 45px;
    }
}

/* Header Styles */
.contact-info-header {
    font-size: 0.85rem;
    color: #fff;
}

.contact-info-header i {
    color: #FF9900;
    margin-right: 0.25rem;
}

.contact-info-header span {
    color: #fff;
}

/* ISO Badge Positioning */
.iso-badge-container {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    z-index: 1002;
}

/* Primary and Secondary Menu Styling */
.primary-menu-row {
    font-size: 15px;
    font-weight: 700;
    text-align: right;
    padding-right: 15px;
    width: 60%;
    margin-left: auto;
    margin-right: 8rem;
    margin-top: 10px;
    color: #fff !important;
}

/* Mobile responsive for primary-menu-row */
@media (max-width: 991.98px) {
    .primary-menu-row {
        width: 100%;
        margin-right: 0;
        margin-left: 0;
        padding-right: 0;
        text-align: center;
        justify-content: center !important;
        font-size: 13px;
        margin-top: 5px;
    }
    
    .contact-item {
        margin: 0 10px;
        font-size: 13px;
    }
}

@media (max-width: 767.98px) {
    .primary-menu-row {
        flex-direction: column;
        gap: 8px;
        font-size: 12px;
    }
    
    .contact-item {
        margin: 0;
        justify-content: center;
    }
}

@media (max-width: 575.98px) {
    .primary-menu-row {
        font-size: 11px;
        gap: 5px;
    }
    
    .contact-icon {
        width: 10px;
        height: 10px;
    }
}

.contact-item {
    color: #fff;
    display: flex;
    align-items: center !important;
    line-height: 1;
}

.contact-icon {
    width: 12px;
    height: 12px;
    object-fit: contain;
    margin-right: 8px;
    flex-shrink: 0;
}

.secondary-menu-row {
    justify-content: center !important;
}

/* Force navbar collapse to always show on desktop */
@media (min-width: 992px) {
    .navbar-expand-lg .navbar-collapse {
        display: block !important;
    }

    .main-header .navbar-expand-lg .navbar-collapse {
        display: block !important;
    }

    #navbarNav {
        display: block !important;
    }
}


.main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease-in-out;
    background: transparent;
    width: 100%;
    border-bottom: 2px solid #FFFFFF1A; /* Orange border line for header */
}

.main-header.scrolled {
    background: rgba(0, 0, 0, 0.9) !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    transform: translateZ(0);
}


.navbar {
    padding: 15px 0;
    transition: all 0.3s ease-in-out;
    background-color: transparent !important;
    position: relative;
    z-index: 1001;
    width: 100%;
    margin: 0 auto;
    max-width: 100%;
}

.navbar.scrolled {
    padding: 10px 0;
}

/* Ensure content doesn't hide behind fixed header */
body {
    padding-top: 80px; /* Adjust this value based on your header height */
}

/* For mobile menu */
.navbar-toggler {
    z-index: 1002;
    border: none;
    padding: 0.5rem;
}

/* Make sure the navbar is properly positioned */
.navbar > .container {
    max-width: 1140px;
    padding: 0 1rem;
    margin: 0 auto;
    width: 100%;
}

/* Ensure logo and navigation items are properly aligned */
.navbar-brand {
    padding: 0;
    margin-right: 2rem;
}

/* Make sure the navigation links have proper spacing */
.navbar-nav {
    align-items: center;
}

.nav-link {
    padding: 0.5rem 1rem;
    font-weight: 500;
    transition: color 0.2s ease;
}

/* Contact button styles */
.nav-link.btn {
    padding: 0.5rem 1.5rem;
    margin-left: 0.5rem;
    border-radius: 4px;
}

/* Mobile menu styles */
.navbar-collapse {
    background-color: rgba(0, 0, 0, 0.95);
    padding: 1rem;
    margin: 0 -1rem;
    border-radius: 0 0 8px 8px;
}

@media (min-width: 992px) {
    .navbar-collapse {
        background-color: transparent;
        padding: 0;
        margin: 0;
    }
}

/* Gallery Styles */

.gallery-card-btn {
    position: absolute;
    top: 18px;
    left: 18px;
    z-index: 2;
    background: rgba(40, 40, 40, 0.35);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 0.95rem;
    font-weight: 400;
    padding: 7px 18px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.13);
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    outline: none;
    opacity: 0.98;
    text-transform: uppercase;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    letter-spacing: 0.06em;
}

.gallery-card-btn:hover, .gallery-card-btn:focus {
    background: rgba(40, 40, 40, 0.55);
    color: #fff;
    opacity: 1;
    border: none;
}

.gallery-img-container {
    position: relative;
}

.gallery-tabs {
    margin: 0 auto 30px;
    padding: 10px 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    max-width: 800px;
}

.gallery-tabs .btn {
    margin: 0 10px;
    padding: 8px 12px;
    font-size: 1rem;
    color: #666;
    background: none;
    border: none;
    border-radius: 0;
    position: relative;
    transition: color 0.3s ease;
}

/* Add separator after each button except the last one */
.gallery-tabs .btn:not(:last-child)::after {
    content: '/';
    position: absolute;
    right: -12px;
    color: #999;
    font-weight: 300;
    pointer-events: none;
}

.gallery-tabs .btn.active,
.gallery-tabs .btn:hover {
    color: #FF9900;
    background: none;
}

/* Remove default focus and active states */
.gallery-tabs .btn:focus,
.gallery-tabs .btn:active,
.gallery-tabs .btn:focus:active {
    outline: none !important;
    box-shadow: none !important;
    -webkit-tap-highlight-color: transparent;
    background: none !important;
    border: none !important;
}

/* Social Icons */
.social-links {
    display: flex;
    gap: 10px;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.social-icon:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    background: white;
}

.social-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.social-icon:hover .social-img {
    filter: brightness(0) invert(1);
}

/* For WebKit browsers */
.gallery-tabs .btn {
    -webkit-tap-highlight-color: transparent;
}

.gallery-item {
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.gallery-img-container {
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
   
}

.gallery-img-container img {
    transition: transform 0.5s ease;
    width: 100%;
    height: 400px;
    object-fit: cover;
}

/* Responsive adjustments */
@media (max-width: 1399.98px) {
    .gallery-img-container img {
        height: 380px;
    }
}

@media (max-width: 1199.98px) {
    .gallery-img-container img {
        height: 350px;
    }
}

@media (max-width: 991.98px) {
    .gallery-img-container img {
        height: 320px;
    }
}

@media (max-width: 767.98px) {
    .gallery-img-container img {
        height: 400px;
    }
}

@media (max-width: 575.98px) {
    .gallery-img-container img {
        height: 300px;
    }
}

.gallery-overlay {
    padding: 20px 10px 0;
    color: #333;
    text-align: center;
    background: none;
    position: static;
    transform: none;
}

.gallery-overlay h5 {
    margin: 15px 0 0;
    padding: 0;
    font-size: 1.2rem;
    font-weight: 500;
    color: #333;
    background: none;
    line-height: 1.5;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* Hide all gallery items initially */
.gallery-item {
    display: none;
}

/* Services Section - Accordion Styles */
.services-accordion {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.service-item {
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    background: transparent;
    box-shadow: none;
    margin-bottom: 10px;
    transform: translateZ(0);
    backface-visibility: hidden;
    perspective: 1000px;
}

.service-item.active {
    background: #FF9900;
    border-color: #FF9900;
    box-shadow: 0 4px 15px rgba(255, 153, 0, 0.2);
    border-radius: 35px;
}

.service-header {
    display: flex;
    align-items: center;
    padding: 10px 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    margin: 0;
    line-height: 1.2;
}

.service-item.active .service-header {
    background-color: transparent;
    color: white;
    padding-bottom: 10px;
}

.service-number {
    font-size: 34px;
    font-weight: 700;
    color: #FF9900;
    margin-right: 20px;
    min-width: 30px;
    transition: all 0.3s ease;
    opacity: 0.8;
}

.service-item.active .service-number {
    color: white;
    opacity: 1;
}

.service-title {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    flex-grow: 1;
    transition: all 0.3s ease;
    color: #333;
}

.service-item.active .service-title {
    color: white;
}

.service-icon {
    display: none;
}

.service-item.active .service-icon {
    transform: rotate(45deg);
    color: white;
}

.service-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 20px;
    background: none;
    color: white;
    will-change: max-height, padding;
    transform: translateZ(0);
    backface-visibility: hidden;
    perspective: 1000px;
}

.service-item.active .service-content {
    max-height: 200px;
    padding: 0 20px 20px 60px;
    margin-top: -5px;
}

.service-content p {
    margin: 0;
    color: white;
    line-height: 1.4;
    font-size: 0.95rem;
    opacity: 0.9;
    padding: 0;
}

/* Hover effects */
.service-item:not(.active):hover .service-title {
    color: #FF9900;
}


/* Responsive adjustments */
@media (max-width: 991.98px) {
    #faqAccordion .accordion-button {
        font-size: 1rem;
        padding: 1rem 1.25rem;
    }
}

/* Show items that match the active filter */
.gallery-item.show {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body,
button,
input,
select,
textarea,
h1, h2, h3, h4, h5, h6,
p,
span,
a,
li,
label,
.explore-btn,
.btn {
    font-family: 'Manrope', sans-serif;
}

/* Reset default margins and paddings */
html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden;
}

body {
    line-height: 1.6;
    color: #333;
    padding-top: 0;
    margin-top: 0;
}

/* Disable transitions on initial paint */
.main-header.no-transition, .navbar.no-transition {
    transition: none !important;
}

/* Header Styles */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    background: transparent;
   
    margin: 0;
}

/* Header scroll effects */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease-in-out;
    background-color: transparent;
}

.main-header.scrolled {
    background-color: rgba(0, 0, 0, 0.9) !important;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

/* Navbar styles */
.navbar {
    padding: 15px 0;
    transition: all 0.3s ease-in-out;
    background: transparent !important;
}

.navbar-dark .navbar-nav .nav-link {
    color: #fff;
    font-weight: 500;
    font-size: 15px;
    transition: all 0.3s ease;
}

.navbar-dark .navbar-nav .nav-link.active {
    color: #FF9900 !important;
    font-weight: 600;
}

.navbar-dark .navbar-nav .nav-link:hover {
    color: #FF9900 !important;
    background-color: transparent !important;
}

/* Image stack styles */
.image-stack {
    position: relative;
    width: 100%;
    margin: 0 auto;
    max-width: 500px;
}

.image-stack__item {
    position: absolute;
    transition: all 0.3s ease;
}

.image-stack__item--bottom {
    position: relative;
    z-index: 1;
    transform: translateX(-10%);
}

.image-stack__item--top {
    position: absolute;
    top: 130px;
    right: 0;
    z-index: 2;
    transform: translateX(10%);
    
   
}

.image-stack {
    padding-bottom: 10px; /* Add space for the overlap */
}

/* Feature Cards */
.feature-card {
    background: transparent;
    border-radius: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    overflow: hidden;
    text-align: left;
    padding: 25px 25px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* Apply background to cards 2 and 3 */
.row > div:nth-child(2) .feature-card,
.row > div:nth-child(3) .feature-card {
    background: rgba(255, 255, 255, 0.05);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.feature-icon {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon img {
    max-width: 30px;
    max-height: 30px;
}

.feature-card .card-title {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
}

.feature-card .card-body {
    padding: 0;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.feature-card .card-text {
    color: #fff !important;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 0;
    opacity: 0.8;
}

/* Two Column Section */
.two-column-section {
    width: 100%;
    overflow: visible;
    position: relative;
}

.two-column-section .circle-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    opacity: 1;
    width: 100px;
    height: 100px;
    pointer-events: none;
    mix-blend-mode: normal;
}

.circle-bg img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.two-column-section .dark-bg {
    background-color: #222222;
    min-height: 500px;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1;
}

.two-column-section .content-wrapper {
    max-width: 80%;
    margin: 0 auto;
}

.two-column-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.two-column-section .section-title {
    color: #FF9900;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    display: block;
}

.two-column-section .explore-btn.light-btn {
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
}

.two-column-section .explore-btn.light-btn:hover {
    background: #fff;
    color: #222222;
}

.two-column-section img {
    object-fit: cover;
    height: 100%;
}

/* Background Image Section */
.dark-bg-column {
    min-height: 100%;
    position: relative;
    overflow: hidden; /* Prevents image from overflowing on small screens */
}

.bg-image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    max-width: 500px;
    height: 50vw;
    max-height: 500px;
    background-image: url('../img/2.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: bottom left;
    opacity: 0.1;
    z-index: 0;
}

.section-content {
    position: relative;
    z-index: 1;
    padding: 20px; /* Ensures content doesn't touch edges on small screens */
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
    .bg-image-overlay {
        height: 45vw;
    }
}

@media (max-width: 992px) {
    .bg-image-overlay {
        height: 40vw;
        max-width: 400px;
    }
}

@media (max-width: 768px) {
    .bg-image-overlay {
        height: 50vw;
        max-width: 350px;
    }
}

@media (max-width: 576px) {
    .bg-image-overlay {
        height: 60vw;
        max-width: 300px;
        opacity: 0.15; /* Slightly more visible on small screens */
    }
    
    .section-content {
        padding: 15px;
    }
}

/* Experience Badge */
.experience-badge {
    position: absolute;
    right: 0px;
    top: 20px;  
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 10px;
}

.experience-badge span {
    font-size: 3.5rem;
    font-weight: 700;
    color: #FF9900;
    line-height: 1;
}

.experience-badge small {
    font-size: 1rem;
    color: #333;
}

/* Section 2: Bottom-left variant of experience badge */
/* ================================
   Base Styles (apply to all devices)
=================================== */
.experience-badge.section2-bl {
    position: absolute;
    right: clamp(10px, 62vw, 498px);
    top: clamp(20px, 47vw, 387px);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transform: translate(2%, -50%);
    gap: 5px;
}

/* Counter text scales responsively */
.experience-badge.section2-bl .counter {
    font-size: clamp(1.5rem, 4vw, 3.5rem);
    font-weight: 700;
    line-height: 1;
    color: #FF9900;
}

/* Small text inside badge scales responsively */
.experience-badge.section2-bl small {
    display: block;
    font-size: clamp(0.8rem, 2.2vw, 1rem);
    color: #333;
    line-height: 1.2;
    white-space: nowrap;
}

/* ================================
   Device-Specific Adjustments
=================================== */

/* Large desktops (≥1200px) */
@media (min-width: 1200px) {
  .experience-badge.section2-bl {
    right: 29vw;
    top: 22vw;
    transform: translate(13%, -50%) scale(1.2);
  }
}

/* Medium desktops (992px–1199.98px) */
@media (min-width: 992px) and (max-width: 1199.98px) {
  .experience-badge.section2-bl {
    right: 22vw;
    top: 30vw;
    transform: translate(-96%, -50%);
  }
}

/* Small tablets (768px–991px) */
@media (min-width: 768px) and (max-width: 991.98px) {
  .experience-badge.section2-bl {
    right: 35vw;
    top: 29vw;
    transform: translateX(-50%);
    bottom: 16px;
  }
}

/* Mobile styles */
@media (max-width: 768px) {
    .experience-badge span {
        font-size: 1.5rem;
    }
    
    .experience-badge small {
        font-size: 0.875rem;
    }
    
    .about-section {
        padding-top: 4rem !important;
        padding-bottom: 4rem !important;
    }
    
    /* Image stack styles for mobile */
    .about-section .col-lg-6:first-child {
        min-height: 260px;
    }
    
    /* For screens 426px to 768px */
    @media (min-width: 426px) and (max-width: 768px) {
        .about-section .col-lg-6:first-child {
            min-height: 400px;
        }
    }
    
    .image-stack {
        height: 100%;
    }
    
    .image-stack__item {
        height: 100%;
        position: absolute;
        width: 100%;
    }
    
    .image-stack__item--bottom {
        position: relative;
        z-index: 1;
        left: 10%;
        width: 70%;
    }
    
    .image-stack__item--top {
        position: absolute;
        top: 60%;
        left: 20%;
        z-index: 2;
        width: 80%;
        height: 100%;
    }
    
    .image-stack__item img {
        height: 100%;
        object-fit: contain;
        width: 80%;
    }
}

/* Desktop styles */
@media (min-width: 769px) and (max-width: 2140px) {
    .about-section {
        padding-top: 6rem !important;
        padding-bottom: 6rem !important;
    }
}

/* Icon list styles */
.icon-list {
    margin-top: 2rem;
}

.icon-list-item {
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
    padding: 10px;
    border-radius: 8px;
}

/* Hover effect removed from icon list items */
.icon-list-item {
    background-color: transparent !important;
}

.icon-list-item img {
    width: 24px;
    height: 24px;
    object-fit: contain;
    margin-right: 12px;
    flex-shrink: 0;
}

.icon-list-item h6 {
    margin-bottom: 0.2rem;
    font-weight: 600;
    color: #333;
    font-size: 16px;
}

.icon-list-item small {
    color: #6c757d;
    font-size: 0.85rem;
}

/* Logo styles */
.navbar-brand {
    padding: 0 15px !important;
    margin: 0 !important;
    display: block;
    line-height: 1;
    background: transparent;
    z-index: 1001;
}

.navbar-brand img {
    height: 100px !important;
    width: auto;
    transition: all 0.3s ease;
    display: block;
}

.navbar.scrolled .navbar-brand img {
    height: 100px !important;
}

/* Main logo styles */
.main-logo {
    height: 100px !important;
    width: auto;
    max-width: 180px;
    transition: all 0.3s ease;
    object-fit: contain;
}

/* Justified Text */
.text-justify {
    text-align: justify;
    text-justify: inter-word;
}

/* Navigation Links */
.navbar-nav {
    align-items: center;
    padding: 10px 0;
}

.nav-link {
    font-weight: 400;
    padding: 13px 12px !important;
    transition: all 0.3s ease;
    position: relative;
    color: #fff !important;
}

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

.nav-link:hover:after,
.nav-link.active:after,
.contact-nav-link:hover:after {
    width: calc(100% - 30px);
}

/* Contact navigation link */
.contact-nav-link {
    position: relative;
    color: #fff !important;
    font-weight: 500;
    padding: 13px 12px !important;
    transition: all 0.3s ease;
}

.contact-nav-link:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 8px;
    left: 15px;
    background-color: #FF9900;
    transition: width 0.3s ease;
}

.contact-nav-link:hover {
    color: #FF9900 !important;
    background-color: transparent !important;
}

/* Mobile Menu Button */
.navbar-toggler {
    border: none;
    padding: 0.5rem;
    margin-right: 10px;
    background-color: white;
    border-radius: 4px;
}

.navbar-toggler:focus {
    box-shadow: none;
    outline: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
    width: 1.5em;
    height: 1.5em;
}

/* Mobile Menu */
@media (max-width: 991.98px) {
    .navbar {
        background: rgba(44, 62, 80, 0.95);
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }
    
    .iso-badge-container {
        display: none;
    }
    
    .navbar-collapse {
        background: rgba(44, 62, 80, 0.98);
        padding: 15px;
        margin-top: 10px;
        border-radius: 8px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }
    
    .nav-item {
        margin: 5px 0;
    }
    
    .nav-link {
        padding: 12px 15px !important;
        border-radius: 6px;
    }
    
    .nav-link:hover {
        background: rgba(255, 255, 255, 0.1);
    }
    
    .main-logo {
        height: 100px !important;
    }
    
    .navbar-brand {
        padding: 0 10px 10px !important;
    }
    
    .btn-primary {
        width: 100%;
        margin: 10px 0 !important;
    }
}

/* Extra small devices */
@media (max-width: 575.98px) {
    .main-logo {
        height: 100px !important;
    }
    
    .navbar-brand {
        padding: 0 5px 5px !important;
    }
}

/* Header and logo spacing */
.navbar {
    padding: 0 !important;
    margin: 0 !important;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1030;
    transition: all 0.3s ease;
    background: transparent !important;
    box-shadow: none;
    backdrop-filter: blur(0);
    min-height: 0;
    display: block;
    line-height: 1;
}

/* About Section - Desktop Styles */
@media (min-width: 1024px) {
    .about-section {
        padding-top: 6rem !important;
        padding-bottom: 6rem !important;
    }
}

/* Ensure no background is applied by Bootstrap */
.navbar-dark {
    background-color: transparent !important;
}

/* Navbar scroll effects */
.navbar.scrolled {
    padding: 8px 0;
}

.navbar.scrolled .navbar-brand img {
    height: 50px;
    transition: height 0.3s ease;
}

/* Add space below the header to account for the fixed position */
main {
    padding-top: 0;
    margin-top: 0;
}

/* First section should have padding to account for fixed header */
main > section:first-child {
    padding-top: 100px;
}

/* Adjust padding for smaller screens */
@media (max-width: 991.98px) {
    main > section:first-child {
        padding-top: 80px;
    }
}

/* Adjust container to prevent content overlap */
.navbar > .container {
    position: relative;
    z-index: 1000;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo-container .logo {
    height: 50px;
    width: auto;
}

/* Navigation */
.main-nav {
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-item {
    margin-left: 20px;
    position: relative;
}

.nav-link {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    padding: 10px 15px;
    border-radius: 4px;
    transition: all 0.3s ease;
    display: block;
}

.nav-link:hover {
    color: #FF9900 !important;
    background-color: transparent !important;
}

.contact-btn {
    background-color: #0066cc;
    color: white !important;
    padding: 10px 20px !important;
    border-radius: 4px;
}

.contact-btn:hover {
    background-color: #0052a3;
}

/* Content Section */
.content-section {
    padding: 80px 0;
    background-color: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.content-section h2 {
    color: #0066cc;
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.content-section p {
    color: #333;
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 800px;
}

/* Active State */
.nav-link.active {
    color: #0066cc;
    font-weight: 600;
}

/* Mobile Menu */
.hamburger {
    display: none;
    cursor: pointer;
    padding: 10px;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: #333;
    transition: all 0.3s ease-in-out;
}

/* Hero Slider */
.hero-slider {
    width: 100%;
    height: 100vh;
    min-height: 100vh;
    background-color: #000;
    position: relative;
    overflow: hidden;
    touch-action: pan-y;
    -ms-touch-action: pan-y;
    pointer-events: none;
    margin: 0;
    padding: 0;
}

.hero-slider .swiper,
.hero-slider .swiper-wrapper,
.hero-slider .swiper-slide {
    pointer-events: none;
}

.hero-slider .swiper-slide > *,
.hero-slider .banner-content,
.hero-slider a,
.hero-slider button {
    pointer-events: auto;
}

.hero-slider .swiper {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
}

.hero-slider .swiper-slide {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    color: #fff;
    z-index: 1;
    margin: 0;
    padding: 0;
}

/* Hide pagination */
.hero-slider .swiper-pagination {
    display: none;
}

/* Banner Styles */
.banner-content {
    padding: 40px 0;
    animation: fadeInUp 1s ease-out;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
}

.banner-content h1 {
    font-family: 'Manrope', sans-serif;
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 700;
    text-shadow: none;
}

.banner-content p {
    font-family: 'Manrope', sans-serif;
    font-size: 1.2rem;
    margin-bottom: 30px;
    line-height: 1.6;
    text-shadow: none;
}

/* Explore Button Styles */
.explore-btn {
    background-color: #FF9900;
    color: #000000;
    border: none;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 400;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    text-decoration: none;
    box-shadow: none;
    border: 3px solid #FF9900;
    margin-top: 20px;
    position: relative;
    overflow: hidden;
}

.explore-btn .button-text {
    background-color: white;
    color: #000000;
    padding: 8px 12px;
    border-radius: 5px;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    text-shadow: none;
    margin-left: 0;
    margin-right: auto;
    display: inline-block;
    position: relative;
    left: 0;
}

.explore-btn .button-icon {
    background-color: #FF9900;
    padding: 8px 10px;
    border-radius: 0 4px 4px 0;
    display: flex;
    align-items: center;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.explore-btn:hover {
    background-color: white;
    border-color: #FF9900;
}

.explore-btn:hover .button-text {
    background-color: white;
    color: #000000;
    left: 50%;
    transform: translateX(-50%);
    margin-left: 0;
    margin-right: 0;
    text-align: center;
}

.explore-btn:hover .button-icon {
    opacity: 0;
    transform: translateX(40px) scale(0.7);
}


.button-text {
    background-color: white;
    color: #000000;
    padding: 8px 12px;
    border-radius: 5px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    text-shadow: none;
}

.button-icon {
    background-color: #FF9900;
    padding: 8px 10px;
    border-radius: 0 4px 4px 0;
    display: flex;
    align-items: center;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    opacity: 1;
    visibility: visible;
}

.explore-btn:hover {
    background-color: white;
    border-color: #FF9900;
   
}

.explore-btn:hover .button-icon {
    background-color: white;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.explore-btn:hover .button-text {
    background-color: white;
    color: #000000;
}

.arrow-icon {
    width: 14px;
    height: 14px;
    stroke: white;
    stroke-width: 2;
    fill: none;
}

/* Button Styles */
.btn-outline-light {
    border: 2px solid #fff;
    color: #fff;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 0.9rem;
    padding: 10px 30px !important;
}

.btn-outline-light:hover {
    background-color: #fff;
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-outline-light:active {
    transform: translateY(0);
}

.banner-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 700;
    
}

.banner-content p {
    font-size: 1.2rem;
    color: #fff;
   
    max-width: 800px;
    margin: 0 auto 30px;
}

.cta-button {
    display: inline-block;
    background-color: #0066cc;
    color: #fff;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: 2px solid #0066cc;
}

.cta-button:hover {
    background-color: transparent;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .banner-content h1 {
        font-size: 3rem;
    }
    
    .banner-content p {
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    .hero-banner {
        min-height: 100vh;
        padding: 100px 15px 60px;
    }
    
    .banner-content h1 {
        font-size: 2.5rem;
    }
    
    .banner-content p {
        font-size: 1.1rem;
    }
    
    .cta-button {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .hero-banner {
        min-height: 100vh;
        padding: 80px 10px 40px;
    }
    
    .banner-content h1 {
        font-size: 2rem;
    }
    
    .banner-content p {
        font-size: 1rem;
        margin-bottom: 20px;
    }
}

@media (max-width: 992px) {
    .hamburger {
        display: block;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background-color: #fff;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
        padding: 20px 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-item {
        margin: 10px 0;
    }

    .nav-link {
        padding: 15px;
        display: block;
    }
}

/* Footer Styles */
.site-footer {
    background: #222222 url('../img/footer.png') left top/contain no-repeat;
    color: #ffffff;
    padding: 80px 0 0;
    position: relative;
    min-height: 500px; /* Adjust based on your needs */
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.9) 30%, rgba(0,0,0,0.9) 100%);
    z-index: 1;
}

.si.two-column-section .col-md-6:last-child {
    position: relative;
    z-index: 1;
}

.site-footer > .container {
    position: relative;
    z-index: 2;
}

.footer-logo {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.footer-logo img {
    transition: all 0.3s ease;
}

.footer-logo img:hover {
    transform: scale(1.05);
}

.footer-title {
    color: #ffffff;
    font-size: 1.5rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-title:after {
    content: none;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background-color: #FF9900;
}

.footer-about {
    color: #bbbbbb;
    line-height: 1.8;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #ffffff;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: #FF9900;
    color: #ffffff;
    transform: translateY(-3px);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #bbbbbb;
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
}

.footer-links a:hover {
    color: #FF9900;
    padding-left: 5px;
}

.contact-item {
    display: flex;
    margin-bottom: 15px;
    color: #bbbbbb;
}

.contact-item i {
    color: #FF9900;
    margin-right: 15px;
    margin-top: 5px;
}

.footer-form .form-control {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border-radius: 4px;
    padding: 10px 15px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.footer-form .form-control:focus {
    background: rgba(255, 255, 255, 0.1);
    border-color: #FF9900;
    box-shadow: none;
    color: #ffffff;
}

.footer-form .btn-primary {
    background-color: #FF9900;
    border: none;
    padding: 10px 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.footer-form .btn-primary:hover {
    background-color: #e68a00;
    transform: translateY(-2px);
}

.footer-bottom {
    color: #888888;
    font-size: 0.9rem;
    padding-top: 20px;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .footer-widget {
        margin-bottom: 40px;
    }
    
    .footer-title {
        font-size: 1.3rem;
    }
}

/* Contact Icons */
.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.contact-icon {
    width: 18px;
    height: 18px;
    margin-right: 12px;
    margin-top: 4px;
    object-fit: contain;
    flex-shrink: 0;
}

.contact-item p {
    margin: 0 0 5px 0;
    line-height: 1.4;
}

@media (max-width: 767px) {
    .site-footer {
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .contact-item {
        justify-content: center;
        text-align: left;
        padding: 0 20px;
    }
    
}

/* Show circle background by default */
/* Footer Styles */
/* Ensure all footer content is left-aligned by default */
.footer-widget,
.footer-about, 
.footer-links,
.contact-item,
.contact-item p,
.contact-item div,
.address p,
.footer-bottom,
.footer-widget h3,
.footer-widget ul {
    text-align: left !important;
}

/* Align footer logo and social icons to the left */
.footer-logo,
.social-links {
    justify-content: flex-start !important;
}

/* Add spacing for footer titles */
.footer-title {
    margin-top: 20px;
    margin-bottom: 15px;
    text-align: left !important;
}

/* Ensure contact items align properly */
.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 10px;
    justify-content: flex-start !important;
    text-align: left !important;
    padding: 0 !important;
}

.contact-item img.contact-icon {
    margin-right: 10px;
    margin-top: 3px;
    flex-shrink: 0;
}

/* Address section specific styles */
.address p {
    margin: 0 0 5px 0;
    line-height: 1.5;
    text-align: left !important;
}

/* Clients Section */
.clients-section {
    background-color: #f8f9fa;
    padding: 60px 0;
}

.clients-section .section-title {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
    color: #333;
}

.clients-section .client-logo {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.clients-section .client-logo:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.clients-section .client-logo img {
    max-width: 120%;
    max-height: 100px;
    width: auto;
    height: auto;
    object-fit: contain;
}

/* Swiper Pagination */
.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: rgba(0, 0, 0, 0.3);
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background: #007bff;
}

.circle-bg {
    display: block;
}

@media (max-width: 768px) {
    .circle-bg {
        display: none;
    }
    
    .col-md-6.dark-bg.p-5.d-flex.flex-column.dark-bg-column {
        padding: 1rem !important;
        width: 100%;
        margin-bottom: 1.5rem;
    }
    .footer-title:after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .contact-icon {
        margin-right: 10px;
    }
}