:root {
	--primary-color: #C5A31A; /* Softer Gold */
    --secondary-color: #121212; /* Rich Black */
	--accent-color: #A6801E; /* Deeper Golden */
	--text-color: #bcbcbc;   /* Light Gray for readability */
    --light-color: #FFFFFF;
}

body {
    font-family: 'Roboto', sans-serif;
}

/* Base styles (mobile first) */
.navbar-logo {
    height: 50px;
    width: 50px;
    object-fit: contain;
    transition: all 0.3s ease;
    margin: 5px 0;
}

.navbar-brand {
    font-size: 1.2rem;
    gap: 0.8rem;
}

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

.service-card {
    margin-bottom: 1.5rem;
}

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

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

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.cta-buttons .btn {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 160px;  /* Set a minimum width to make buttons equal size */
    padding: 0.8rem 1.5rem;
}

.team-member {
    margin-bottom: 2rem;
}

/* Media queries for larger screens */
@media (min-width: 768px) {
    .navbar-logo {
        height: 85px;
        width: 85px;
    }

    .navbar-brand {
        font-size: 1.5rem;
        gap: 1.2rem;
    }

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

    .service-card {
        margin-bottom: 0;
    }

    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
        padding: 2rem;
    }

    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
        margin: 4rem 0;
    }

    .cta-buttons {
        flex-direction: row;
        gap: 1rem;
    }

    .cta-buttons .btn {
        width: auto;
    }
}

/* Additional responsive adjustments */
@media (max-width: 767px) {
    .container {
        padding-left: 15px;
        padding-right: 15px;
    }

    .section {
        padding: 50px 0;
    }

    .corner-line {
        display: none; /* Hide decorative lines on mobile */
    }

    .story-box {
        height: auto;
        padding: 1.5rem;
    }

    .feature-pills {
        flex-direction: column;
        align-items: center;
    }

    .feature-pill {
        width: 100%;
        text-align: center;
    }

    .contact-section {
        padding: 2rem 1rem;
    }

    .footer {
        text-align: center;
    }

    .footer-nav {
        padding-left: 0;
        border-left: none;
        margin-top: 2rem;
    }

    .footer-nav li {
        text-align: center;
    }

    .social-link-footer {
        margin: 0 auto 1rem;
    }
}

/* Navbar Styles */
.navbar {
    background-color: var(--secondary-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    padding: 0;
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.5rem;
    transition: color 0.3s ease;
    padding: 0;
}

.navbar-logo {
    height: 85px;
    width: 85px;
    object-fit: contain;
    transition: all 0.3s ease;
    margin: 5px 0;
}

.navbar-brand:hover .navbar-logo {
    transform: scale(1.05);
}

.navbar-brand span {
    color: var(--primary-color);
    transition: color 0.3s ease;
}

.navbar-brand:hover span {
    color: var(--light-color);
}

.nav-link {
    color: var(--light-color) !important;
    margin: 0 1rem;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-color) !important;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.75), rgba(18, 18, 18, 0.15)), 
                url('../img/machine.jpg') no-repeat center center/cover;
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: -1px;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0,0,0,0.7), rgba(0,0,0,0.3));
    z-index: 1;
}

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

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-family: 'Roboto', sans-serif;
    font-weight: bold;
}

.hero h1 .highlight {
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

.hero h1 .regular {
    color: rgba(255, 255, 255, 0.9);
}

.btn-primary {
    background-color: var(--primary-color);
    border: none;
    color: var(--secondary-color);
    padding: 0.8rem 2rem;
    font-weight: bold;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--accent-color);
    transform: translateY(-2px);
}

/* Section Styles */
.section {
    padding: 100px 0;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    margin-bottom: 1rem;
}

.feature-list i {
    color: var(--primary-color);
    margin-right: 1rem;
}

/* Product Image Placeholder */
.product-image-placeholder {
    background: linear-gradient(45deg, var(--secondary-color), var(--accent-color));
    height: 400px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Footer */
.footer {
    background-color: var(--secondary-color);
    color: var(--light-color);
    padding: 60px 0 30px;
}

.footer h4 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.footer .contact-heading,
.footer .partners-heading {
    color: var(--light-color);
}

.social-links a {
    color: var(--light-color);
    margin-right: 1rem;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--primary-color);
}

/* Team Section */
.team-section {
    background-color: #f8f9fa;
}

.section-title {
    color: var(--secondary-color);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-subtitle {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.team-member {
    background: var(--light-color);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
    margin-bottom: 30px;
}

.team-member:hover {
    transform: translateY(-10px);
}

.member-img {
    position: relative;
    overflow: hidden;
}

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

.social-overlay {
    position: absolute;
    bottom: -60px;
    left: 0;
    right: 0;
    background: rgba(18, 18, 18, 0.85);
    padding: 15px;
    transition: bottom 0.3s ease;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.team-member:hover .social-overlay {
    bottom: 0;
}

.social-link {
    color: var(--primary-color);
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: var(--accent-color);
}

.member-info {
    padding: 25px 20px;
    text-align: center;
}

.member-info h3 {
    color: var(--secondary-color);
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.member-info span {
    color: #666;
    font-size: 1rem;
}

.footer .eu-logo,
.footer .partner-logo {
    margin: 0;
    flex: 1;
    max-width: 200px;
}

.footer .eu-logo img,
.footer .partner-logo img {
    width: 100%;
    height: auto;
}

.footer-nav {
    list-style: none;
    padding-left: 2rem;
    margin: 0;
    border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-nav li {
    margin-bottom: 10px;
    text-align: left;
}

.footer-nav a {
    color: #fff;  /* Assuming footer has dark background */
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: #ccc;  /* Lighter color on hover */
}

.footer-logo {
    width: 100px;
    height: auto;
    margin: 15px 0;
    filter: brightness(0) invert(1); /* Makes the logo white */
}

.partner-logos-container {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 15px;
}

.about-card {
    padding: 2rem;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0,0,0,0.05);
    margin-bottom: 2rem;
    transition: transform 0.3s ease;
}

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

.about-card h3 {
    color: #333;
    font-weight: 600;
}

.about-card .fas {
    color: var(--primary-color);
}

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

.about-card p:last-child {
    margin-bottom: 0;
}

/* Story Section */
.story-section {
    position: relative;
    background-color: #fff;
    padding-top: 1rem; /* Reduce from 100px */
}

#services {
    margin-bottom: -10rem;
}

.video-container {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

.featured-video {
    width: 100%;
    display: block;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.play-button-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    cursor: pointer;
}

.play-button-overlay i {
    font-size: 4rem;
    color: var(--primary-color);
    opacity: 0.9;
    transition: all 0.3s ease;
}

.partner-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
}

.partner-logo {
    height: 40px;
    width: auto;
    filter: grayscale(100%) brightness(1.2);
    transition: filter 0.3s ease;
}

.partner-logo:hover {
    filter: grayscale(0) brightness(1);
}

.story-section h2 {
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
}

.story-section .lead {
    color: var(--secondary-color);
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

.story-section p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
}

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

.social-link {
    color: var(--primary-color);
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: var(--secondary-color);
}

#changing-word {
    transition: opacity 0.5s ease-in-out;
    display: block;
    color: var(--primary-color);
    text-align: left;
    margin-bottom: -1.5em;
}

.static-word {
    display: block;
    color: var(--text-color);
}

/* Services Section Styles */
.service-card {
    background: var(--light-color);
    border-radius: 15px;
    padding: 2rem;
    height: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

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

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary-color);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card i {
    font-size: 4rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    transition: color 0.3s ease, transform 0.3s ease;
}

.service-card:hover i {
    color: var(--primary-color);
    transform: scale(1.1);
}


.service-card .service-icon {
    width: 70px;
    height: 70px;
    object-fit: contain;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
    filter: brightness(0) saturate(100%) invert(65%) sepia(75%) saturate(434%) hue-rotate(358deg) brightness(89%) contrast(84%);
}

.service-card h4 {
    color: var(--secondary-color);
    font-size: 1.25rem;
    margin-bottom: 1.2rem;
    font-weight: 600;
    position: relative;
    padding-bottom: 1rem;
    margin-top: 0;
}

.service-card h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background: var(--primary-color);
}

.service-content {
    margin-top: 1rem;
}

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

#services {
    background: linear-gradient(to bottom, #f8f9fa, #fff);
    position: relative;
}

#services .section-title {
    margin-bottom: 0.5rem;
}

#services .section-subtitle {
    color: #666;
    margin-bottom: 3rem;
}

#services .row {
    margin-top: 2rem;
}

@media (max-width: 768px) {
    .service-card {
        margin-bottom: 2rem;
    }
    
    #services .col-sm-6:last-child .service-card {
        margin-bottom: 0;
    }
}

/* Add these new styles */
.hero-text {
    opacity: 0;
    transform: translateY(20px);
}

.fade-in {
    animation: fadeInUp 1.3s ease forwards;
    animation-delay: 0.5s;
}

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

/* Diagonal Separators */
.diagonal-separator {
    position: relative;
    height: 100px;
    margin: 2rem 0;
    overflow: hidden;
}

/* Bottom-left diagonal line */
.diagonal-separator::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 150px;
    height: 2px;
    background: var(--primary-color);
    transform: rotate(45deg);
    transform-origin: bottom left;
}

/* Top-right diagonal line */
.diagonal-separator::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 2px;
    background: var(--primary-color);
    transform: rotate(45deg);
    transform-origin: top right;
}

/* Feature Box Styles */
.feature-box {
    position: relative;
    height: 400px;
    background: var(--secondary-color);
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon {
    position: relative;
    z-index: 2;
}

.feature-icon i {
    font-size: 4rem;
    color: var(--primary-color);
    opacity: 0.8;
}

/* Corner Lines */
.corner-line {
    position: absolute;
    width: 150px;
    height: 150px;
}

.bottom-left {
    left: -10px;
    bottom: -20px;
    border-left: 2px solid var(--primary-color);
    border-bottom: 2px solid var(--primary-color);
}

.top-right {
    right: -10px;
    top: -20px;
    border-right: 2px solid var(--primary-color);
    border-top: 2px solid var(--primary-color);
}

/* Partner Logos */
.partner-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    align-items: center;
}

.partner-logo {
    height: 40px;
    width: auto;
    filter: grayscale(100%) brightness(1.2);
    transition: filter 0.3s ease;
}

.partner-logo:hover {
    filter: grayscale(0%) brightness(1);
}

/* Spacer */
.spacer {
    height: 50px;
}

/* Content Container */
.col-lg-6 {
    position: relative;
}

/* Story Box styles */
.story-box {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 350px;
    border-radius: 20px;
    background: linear-gradient(135deg, #444, #666);
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    padding: 2rem;
    margin: 1rem;
}

.story-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../img/pattern.avif') no-repeat;
    opacity: 0.;
    z-index: -1;
}

.story-box .company-logo,
.story-box .company-name,
.story-box .established {
    position: relative;
    z-index: 2;
}

.story-box .company-name {
    color: #fff;
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
}

.story-box .established {
    color: #C5A31A;
    font-size: 1.1rem;
    font-weight: 500;
    margin-top: 1rem;
}

.story-box .company-logo {
    width: 180px;
    height: auto;
    object-fit: contain;
    position: relative;
    z-index: 1;
}

/* Partners Grid (keep existing partners styling) */
.partners-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    padding: 2rem;
}

.partners-grid .partner-logo {
    width: 100%;
    height: auto;
    max-height: 80px;
    object-fit: contain;
    transition: filter 0.3s ease;
}

.partners-grid .partner-logo:hover {
    filter: brightness(1.1);
}

/* Adjust spacing for About section items */
#about .row.mb-5 {
    margin-bottom: 2rem !important; /* Reduce vertical spacing */
}

#about .container {
    max-width: 1400px; /* Increase horizontal space */
    padding: 0 4rem; /* Add more padding on the sides */
}

/* Adjust the spacer between Our Story and Our Partners */
#about .spacer.my-5 {
    height: 30px; /* Reduce the spacer height */
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
}

/* Ensure proper column spacing */
#about .col-lg-6 {
    padding: 0 2.5rem; /* Add more padding between columns */
    position: relative; /* Ensure corner lines are positioned correctly */
}

/* Corner Lines */
.corner-line {
    position: absolute;
    width: 150px;
    height: 150px;
}

.bottom-left {
    left: 0px; /* Adjusted for increased horizontal space */
    bottom: -20px;
    border-left: 2px solid var(--primary-color);
    border-bottom: 2px solid var(--primary-color);
}

.top-right {
    right: 0px; /* Adjusted for increased horizontal space */
    top: -20px;
    border-right: 2px solid var(--primary-color);
    border-top: 2px solid var(--primary-color);
}

/* Add these new styles */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 4rem 0;
}

.feature-item {
    background: var(--light-color);
    border-radius: 15px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

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

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--primary-color);
}

.feature-item h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.feature-item p {
    color: #666;
    margin-bottom: 0;
}

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

/* Services Section Separator */
.services-separator {
    margin: 5rem 0;
    position: relative;
    height: 2px;
    background: linear-gradient(
        90deg,
        transparent,
        var(--primary-color) 20%,
        var(--primary-color) 80%,
        transparent
    );
}

.services-separator::before,
.services-separator::after {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    background: var(--primary-color);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
}

.services-separator::before {
    left: 20%;
}

.services-separator::after {
    right: 20%;
}

/* Add these new classes for the shrunk state */
.navbar.shrunk {
    padding: 0;
}

.navbar.shrunk .navbar-logo {
    height: 50px;
    width: 50px;
}

.navbar.shrunk .navbar-brand {
    font-size: 1.2rem;
}

/* RobTrack Section Styles */
.robtrack-showcase {
    background: var(--light-color);
    border-radius: 20px;
    padding: 3rem 1rem;  /* Reduced side padding for mobile */
    overflow: hidden;    /* Prevent image overflow */
    width: 100%;
}

.robtrack-showcase .container {
    max-width: 100%;    /* Ensure container doesn't overflow */
    padding: 0;         /* Remove container padding on mobile */
}

.robtrack-showcase img {
    width: 100%;        /* Make image fill container width */
    height: auto;
    display: block;     /* Remove any inline spacing */
    margin: 0 auto;     /* Center the image */
}

/* Media query for larger screens */
@media (min-width: 768px) {
    .robtrack-showcase {
        padding: 3rem 0;
    }

    .robtrack-showcase .container {
        max-width: 1200px;  /* Or whatever your container max-width is */
        padding: 0 15px;    /* Restore container padding */
    }

    .robtrack-showcase img {
        max-width: 1000px;  /* Maximum width on desktop */
        width: auto;        /* Allow image to be its natural width up to max-width */
    }
}

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

.feature-pill {
    background: var(--light-color);
    color: var(--secondary-color);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: 500;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.feature-pill:hover {
    background: var(--primary-color);
    color: var(--light-color);
    transform: translateY(-2px);
}

.cta-card {
    background: var(--light-color);
    border-radius: 15px;
    padding: 1rem;     /* Reduced padding */
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    margin-top: 1rem;  /* Reduced margin */
}

.cta-buttons {
    margin-top: 1.5rem;  /* Reduced margin */
}

.btn-outline-primary {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background: transparent;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-outline-primary:hover {
    background: var(--primary-color);
    color: var(--light-color);
}

@media (max-width: 768px) {
    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .cta-buttons .btn {
        width: 100%;
    }
    
    .feature-pills {
        padding: 0 1rem;
    }
}

/* Partners Carousel Styles */
.partners-carousel {
    position: relative;
    width: 100%;
    padding: 2rem;
}

.partners-slide {
    display: none;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    padding: 1rem;
}

.partners-slide.active {
    display: grid;
}

.carousel-controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

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

.carousel-dot.active {
    background-color: var(--primary-color);
}

/* Keep existing partner-logo styles */
.partner-logo {
    width: 100%;
    height: auto;
    max-height: 80px;
    object-fit: contain;
    transition: filter 0.3s ease;
}

.partner-logo:hover {
    filter: brightness(1.1);
}

/* Social Links in Footer */
.social-link-footer {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--light-color);
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 0.5rem;
    border-radius: 5px;
    width: fit-content;
    margin-bottom: 1rem;
}

.social-link-footer:hover {
    color: var(--primary-color);
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
    text-decoration: none;
}

.social-link-footer i {
    font-size: 1.5rem;
}

.social-link-footer span {
    font-size: 1rem;
}

/* Contact Section Styles */
.contact-section {
    position: relative;
    padding: 4rem 2rem;
    margin: 2rem 0;
    border-left: 3px solid var(--primary-color);
}

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

.contact-section .btn-primary {
    padding: 1rem 3rem;
    font-size: 1.1rem;
    margin-top: 2rem;
}

.contact-section p {
    color: #666666; /* Darker text color */
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

#contact .section-subtitle {
    margin-bottom: 0rem; /* Reduced spacing after subtitle */
}

/* Base styles (mobile first) */
.robtrack-showcase img {
    max-width: 100%;
    height: auto;
    padding: 0 1rem;
}

/* Media query for larger screens */
@media (min-width: 768px) {
    .robtrack-showcase img {
        max-width: 1000px;
        padding: 0;
    }
}

/* Custom Navbar Toggler Icon */
.navbar-toggler {
    border: none;
    padding: 0;
    margin-left: auto;
    flex-shrink: 0;
}

.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(197, 163, 26, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-toggler:focus {
    box-shadow: none;
    outline: none;
}

/* Mobile adjustments */
@media (max-width: 576px) {
    .navbar-brand span {
        font-size: 1rem;
    }
    
    .navbar-logo {
        height: 40px;
        width: 40px;
    }
}

/* RobTrack Features List Styles */
.robtrack-features-list {
    margin-top: 3rem;
    padding: 2rem;
    border-radius: 15px;
}

.features-title {
    color: var(--secondary-color);
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.features-subtitle {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.features-checklist {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.features-checklist li {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
    color: var(--secondary-color);
}

.features-checklist i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .robtrack-features-list {
        padding: 1.5rem;
        margin-top: 2rem;
    }

    .features-title {
        font-size: 1.5rem;
    }

    .features-subtitle {
        font-size: 1rem;
    }

    .features-checklist li {
        font-size: 1rem;
    }
}

.robtrack-content-container {
    border-radius: 15px;
    padding: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.robtrack-content-container img {
    max-width: 450px;
    height: auto;
    margin-bottom: 2rem;
}

.robtrack-text {
    text-align: left;
    padding: 0 1rem;
}

.features-title {
    color: var(--secondary-color);
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.features-subtitle {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.features-checklist {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.features-checklist li {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
    color: var(--secondary-color);
}

.features-checklist i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .robtrack-content-container {
        padding: 1.5rem;
    }

    .features-title {
        font-size: 1.5rem;
    }

    .features-subtitle {
        font-size: 1rem;
    }

    .features-checklist li {
        font-size: 1rem;
    }
}

/* Adjust the container padding for mobile */
@media (max-width: 768px) {
    #about .container {
        padding: 0 15px; /* Match Bootstrap's default container padding */
    }

    #about .col-lg-6 {
        padding: 0 15px; /* Reset the padding for columns on mobile */
    }

    /* Adjust story box margins */
    .story-box {
        margin: 1rem 0; /* Reduce side margins on mobile */
    }

    /* Remove extra padding from partners section */
    .partners-grid {
        padding: 1rem 0; /* Reduce padding on mobile */
    }
}

/* RobTrack CTA Styles */
.robtrack-cta {
    margin-top: 2rem;  /* Reduced from mt-5 (3rem) to 2rem */
}

html {
    scroll-padding-top: 80px; /* Adjust for fixed navbar height */
    scroll-behavior: smooth; /* Optional: adds smooth scrolling */
}

