/* ====================================
   Congineer Group - Bootstrap Custom Styles
   ==================================== */

/* Import Raleway Font */
@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@300;400;500;700&display=swap');

/* Root Variables */
:root {
    --congineer-blue: #004964;
    --congineer-green: #648225;
    --congineer-orange: #eb902e;
    --congineer-orange-border: #e77d0b;
    --congineer-light-blue: #4a90e2;
    --congineer-dark: #1a1a1a;
}

/* Global Overrides */
body {
    font-family: 'Raleway', sans-serif;
    font-weight: 400;
    font-size: 18px;
    background: linear-gradient(to right, var(--congineer-green) 0%, var(--congineer-blue) 15%);
    color: #fff;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Raleway', sans-serif;
}

p {
    font-size: 1rem;
    line-height: 1.722;
}

.section-title,
.section-title-dark {
    font-weight: 700;
    font-size: 2.78rem;
    text-transform: uppercase;
    line-height: 1;
    margin-bottom: 1.94rem;
    position: relative;
    padding-left: 10px;
    margin-left: 5px;
}

.section-title::before,
.section-title-dark::before {
    content: '';
    position: absolute;
    left: -3px;
    top: 0.1em;
    bottom: 0.15em;
    border-left: .27rem solid #FFF;
}

.section-title-dark {
    color: #333;
}

.section-title-dark::before {
    border-color: var(--congineer-orange);
}

.section-title .detail,
.section-title-dark .detail {
    font-weight: 500;
    font-size: 1rem;
    color: var(--congineer-orange);
    text-transform: none;
    vertical-align: middle;
}

/* Navigation */
.custom-navbar {
    background: linear-gradient(to right, var(--congineer-green) 0%, var(--congineer-blue) 15%);
    min-height: 135px;
    padding-top: 20px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--congineer-orange-border);
    transition: all 0.3s ease;
}

.custom-navbar .container {
    max-width: 1170px;
}

.custom-navbar.navbar-scrolled {
    min-height: 80px;
    padding-top: 10px;
    padding-bottom: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.nav-logo {
    height: 70px;
    width: auto;
    transition: height 0.3s ease, opacity 0.3s ease;
}

.nav-logo-large {
    display: block;
}

.nav-logo-small {
    display: none;
}

.navbar-scrolled .nav-logo {
    height: 50px;
}

.navbar-scrolled .nav-logo-large {
    display: none;
}

.navbar-scrolled .nav-logo-small {
    display: block;
}

.navbar-scrolled .navbar-collapse {
    margin-top: 12px;
}

.navbar-nav {
    align-items: flex-end;
    height: 100%;
    padding-bottom: 0px;
    margin-left: 0 !important;
    margin-bottom: 0px;
}

.navbar-collapse {
    justify-content: flex-start !important;
    margin-left: 30px;
    margin-top: 45px;
    height: 100%;
    display: flex;
    align-items: flex-end;
}

.navbar-nav .nav-link {
    color: #fff !important;
    font-weight: 500;
    font-size: 0.9rem;
    padding: 8px 25px !important;
    transition: color 0.3s;
    position: relative;
    padding-left: 35px !important;
    margin: 0 10px;
}

.navbar-nav .nav-link::before {
    content: '| ';
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #FFF;
    font-weight: 500;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus {
    color: var(--congineer-orange) !important;
}

.navbar-nav .nav-link:hover::before,
.navbar-nav .nav-link:focus::before {
    color: var(--congineer-orange) !important;
}

.navbar-nav .nav-link.active {
    color: var(--congineer-orange) !important;
}

.navbar-nav .nav-link.active::before {
    color: var(--congineer-orange) !important;
}

.custom-toggler {
    border: none;
    background: transparent;
}

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

/* Hero Section */
.hero-section {
    margin-top: 135px;
    min-height: 80vh;
    position: relative;
    background: url('../images/black_bg.jpg') center center/cover no-repeat;
    background-attachment: fixed;
}

.hero-section .container {
    max-width: 1170px;
}

#heroCarousel {
    height: 80vh;
}

.carousel-inner,
.carousel-item {
    height: 100%;
}

.carousel-item > .container {
    height: 100%;
}


.hero-content {
    padding: 40px;
}

.circle-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 480px;
    height: 480px;
    border-radius: 50%;
    background: rgba(0, 73, 100, 0.8);
}

.circle-badge.blue {
    background: rgba(0, 73, 100, 0.8);
}

.circle-badge.green {
    background: rgba(100, 130, 37, 0.8);
}

.hero-title {
    font-weight: 700;
    font-size: 2.5rem;
    text-transform: uppercase;
    line-height: 1.1;
    color: #fff;
    margin: 0;
    position: relative;
    padding-left: 15px;
}

.hero-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.1em;
    bottom: 0.15em;
    border-left: .27rem solid #FFF;
}

.hero-title .detail {
    font-weight: 500;
    font-size: 1rem;
    color: var(--congineer-orange);
    text-transform: none;
}

.hero-image {
    max-height: 700px;
    width: auto;
}

.contact-badge {
    bottom: 40px;
    right: 140px;
    background: rgba(235, 144, 46, 0.9);
    width: 300px;
    height: 300px;
    padding: 0;
    border-radius: 50%;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-badge h2 {
    font-size: 1.3rem;
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.2;
    margin: 0;
    position: relative;
    padding-left: 15px;
}

.contact-badge h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.1em;
    bottom: 0.15em;
    border-left: .27rem solid #FFF;
}

.contact-badge .detail {
    color: #fff;
    font-size: 0.9rem;
    text-transform: none;
}

/* Section Backgrounds */
.section-blue {
    width: 100%;
    background-color: #4c6e7d;
    filter: progid:DXImageTransform.Microsoft.gradient(GradientType=1,startColorstr=#4c6e7d, endColorstr=#004964);
    background-image: -moz-linear-gradient(left bottom, #4c6e7d 2%, #004964 30%);
    background-image: -webkit-linear-gradient(left bottom, #4c6e7d 2%, #004964 30%);
    background-image: -ms-linear-gradient(left bottom, #4c6e7d 2%, #004964 30%);
    background-image: linear-gradient(to right top, #4c6e7d 2%, #004964 30%);
    background-image: -o-linear-gradient(left bottom, #4c6e7d 2%, #004964 30%);
    background-image: -webkit-gradient(linear, left bottom, right top, color-stop(2%, #4c6e7d), color-stop(30%, #004964));
    position: relative;
}

/* Subtle shimmer effect in top left area */
.section-blue::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 60%;
    height: 60%;
    background: radial-gradient(ellipse at top left, rgba(76, 110, 125, 0.4) 0%, rgba(76, 110, 125, 0.2) 30%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}

/* Ensure content is above the shimmer */
.section-blue .container {
    position: relative;
    z-index: 2;
}



.section-green {
    background-color: #98ab6d;
    filter: progid:DXImageTransform.Microsoft.gradient(GradientType=1,startColorstr=#98ab6d, endColorstr=#668225);
    background-image: -moz-linear-gradient(left top, #98ab6d 0%, #668225 20%);
    background-image: -webkit-linear-gradient(left top, #98ab6d 0%, #668225 20%);
    background-image: -ms-linear-gradient(left top, #98ab6d 0%, #668225 20%);
    background-image: linear-gradient(to right bottom, #98ab6d 0%, #668225 20%);
    background-image: -o-linear-gradient(left top, #98ab6d 0%, #668225 20%);
    background-image: -webkit-gradient(linear, left top, right bottom, color-stop(0%, #98ab6d), color-stop(20%, #668225));
}

.section-black {
    background: url('../images/black_bg.jpg') center center/cover no-repeat;
    background-color: var(--congineer-dark);
    padding-top: 60px;
    padding-bottom: 60px;
}

.section-light-blue {
    background-color: #c8d3d7;
    filter: progid:DXImageTransform.Microsoft.gradient(GradientType=1,startColorstr=#c8d3d7, endColorstr=#6a797f);
    background-image: -moz-linear-gradient(left top, #c8d3d7 0%, #6a797f 50%);
    background-image: -webkit-linear-gradient(left top, #c8d3d7 0%, #6a797f 50%);
    background-image: -ms-linear-gradient(left top, #c8d3d7 0%, #6a797f 50%);
    background-image: linear-gradient(to right bottom, #c8d3d7 0%, #6a797f 50%);
    background-image: -o-linear-gradient(left top, #c8d3d7 0%, #6a797f 50%);
    /* background-image: -webkit-gradient(linear, left top, right bottom, color-stop(0%, #c8d3d7), color-stop(50%, #6a797f)); */
}

.section-white {
    background: #fff;
    color: #333;
}

/* Services List - Original Keyword Cloud CSS */
.services-list {
    list-style: none;
    margin: 0;
    padding: 0;
    border: 0;
    vertical-align: baseline;
    outline: 0;
}

.services-list > li {
    text-transform: uppercase;
    line-height: .9;
    color: #d1d1d1;
    white-space: nowrap;
}

.services-list > li:nth-of-type(1) { /* SCHALTSCHRANKBAU */
    font-size: 1.7em;
    text-align: center;
    display: block;
    width: 100%;
}

.services-list > li:nth-of-type(2) { /* BAUGRUPPENMONTAGE */
    font-size: 3.2em;
    margin-left: 7%;
}

.services-list > li:nth-of-type(3) { /* CONTAINERLÖSUNGEN */
    font-size: 1.6em;
    display: inline-block;
}

.services-list > li:nth-of-type(4) { /* KABELKONFEKTIONIERUNG */
    font-size: 3.2em;
    font-weight: 700;
    display: inline-block;
    margin-left: 10.5%;
}

.services-list > li:nth-of-type(5) { /* ELEKTROKONSTRUKTION */
    font-size: 2.6em;
    margin-left: 13.1%;
}

.services-list > li:nth-of-type(6) { /* STEUERUNGSSYSTEME */
    font-size: 3.2em;
    font-weight: 700;
    text-align: right;
}

.services-list > li:nth-of-type(7) { /* TECHNOLOGIEPROJEKTE */
    font-size: 1.6em;
}

.services-list > li:nth-of-type(8) { /* EMBEDDED SYSTEMS */
    font-size: 2.3em;
    text-align: right;
    margin-right: 2.5em;
}

.services-list > li:nth-of-type(9) { /* INDIVIDUELLE INNOVATION */
    font-size: 4.1em;
    font-weight: 700;
}

.services-list > li:nth-of-type(10) { /* MOBILE AUTOMATION */
    font-size: 3.2em;
    margin-left: 8%;
    font-weight: 700;
}

.services-list > li:nth-of-type(11) { /* MISCHPROZESSE */
    font-size: 2.0em;
    margin-right: 7%;
    text-align: right;
}

.services-list > li:nth-of-type(12) { /* PROZESSLEITTECHNIK */
    font-size: 3.1em;
    margin-left: 21%;
}

.services-list > li:nth-of-type(13) { /* CHARGENPRODUKTION */
    font-size: 3.2em;
    margin-left: 3.8%;
    font-weight: 700;
}

.services-list > li:nth-of-type(14) { /* INDUSTRIE 4.0 */
    font-size: 1.5em;
    margin-left: 28.5%;
    display: inline-block;
    vertical-align: top;
}

.services-list > li:nth-of-type(15) { /* SYSTEMTECHNIK */
    font-size: 2.3em;
    margin-left: 11%;
    display: inline-block;
}

.services-list > li:nth-of-type(16) { /* EMS ELECTRONIC MANUFACTURING SERVICES */
    font-size: 1.6em;
}

/* Benefits List */
.benefit-list {
    font-size: 1.00rem;
    line-height: 2;
}

.benefit-list li {
    margin-bottom: -7px;
}

/* Partner Cards */
.partner-card {
    padding: 30px;
    background: #fff;
    height: 100%;
}

.partner-logo {
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.partner-logo img {
    max-height: 100%;
    width: auto;
}

.partner-content h4 {
    color: #333;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.partner-content p {
    color: #666;
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Stats Content */
.stats-content {
    margin-top: 40px;
}

.contenttable {
    border: none;
    border-collapse: collapse;
    color: white;
    font-size: 1.1rem;
}

.contenttable td {
    padding-right: .5rem;
    border: none;
    vertical-align: top;
}

.contenttable td:nth-child(2) {
    width: 20px;
}

.contenttable b {
    font-weight: bold;
}

/* Map Section */
.map-section {
    padding: 60px 0 !important;
    margin: 0 !important;
    margin-bottom: 0 !important;
    width: 100%;
    min-height: 60vh;
    background: url('../images/black_bg.jpg') center center/cover no-repeat;
    background-color: var(--congineer-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    box-shadow: none;
}

/* Remove spacing between map and following section */
.map-section + .section-green {
    padding-top: 0 !important;
    margin-top: 0 !important;
}

.map-container {
    width: 100%;
    max-width: 1170px;
    padding: 0 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Map Section */
.map-container {
    position: relative;
    display: inline-block;
}

.item-image {
    position: relative;
    z-index: 1;
}

.map-image {
    max-width: 100%;
    max-height: 80vh;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}

/* Responsive clickable areas */
.map-container > div:not(.item-image) {
    position: absolute;
    z-index: 2;
}

.map-container > div:not(.item-image) a {
    color: transparent;
    text-decoration: none;
    display: block;
    width: 100%;
    height: 100%;
}

/* Debug mode - uncomment to see clickable areas */
/*
.map-container > div:not(.item-image) {
    background-color: rgba(255, 0, 0, 0.3);
    border: 2px solid red;
}
*/

/* Betron Control Systems - top left area */
.betron-control {
    top: 0%;
    left: 11%;
    width: 25%;
    height: 12%;
}

/* WAGO Solutions - top center/right area */
.wago-solutions {
    top: 15%;
    left: 6%;
    width: 31%;
    height: 11%;
}

/* RAUTEC - middle left area */
.rautec {
    top: 28%;
    left: 3%;
    width: 24%;
    height: 19%;
}

/* Betron Electronic Systems - bottom left area */
.betron-electronic {
    top: 56%;
    left: 5%;
    width: 26%;
    height: 12%;
}

/* Impressum */
.impressum-content h3 {
    color: #333;
    font-weight: 700;
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.impressum-content h4 {
    color: #333;
    font-weight: 600;
    font-size: 1.2rem;
    margin-top: 30px;
    margin-bottom: 10px;
}

.impressum-content p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
}

/* Datenschutz */
.datenschutz-content h3 {
    color: #333;
    font-weight: 700;
    font-size: 1.8rem;
    margin-bottom: 20px;
    margin-top: 40px;
}

.datenschutz-content h4 {
    color: #333;
    font-weight: 600;
    font-size: 1.2rem;
    margin-top: 30px;
    margin-bottom: 10px;
}

.datenschutz-content h5 {
    color: #333;
    font-weight: 500;
    font-size: 1.1rem;
    margin-top: 25px;
    margin-bottom: 10px;
}

.datenschutz-content p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 15px;
}

.datenschutz-content ul,
.datenschutz-content ol {
    color: #666;
    line-height: 1.7;
    margin-bottom: 15px;
}

.datenschutz-content li {
    margin-bottom: 5px;
}

/* Footer */
.footer-blue {
    background: linear-gradient(135deg, #4a5a6b 0%, #3a4a5a 100%);
    color: white;
}

#footer {
    border-top: 2px solid #e77d0b;
}

.footer-main-text {
    font-size: 1.1rem;
    line-height: 1.4;
}

.footer-contact {
    font-size: 0.95rem;
    line-height: 1.5;
}

.footer-contact a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: var(--congineer-orange);
    text-decoration: none;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-link {
    color: white;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--congineer-orange);
    text-decoration: none;
}

/* Carousel Controls */
.carousel-control-prev,
.carousel-control-next {
    width: 5%;
    opacity: 0.7;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    opacity: 1;
}

/* Carousel Indicators */
.carousel-indicators {
    margin-bottom: 2rem;
}

.carousel-indicators [data-bs-target] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    border: none;
    margin: 0 6px;
    opacity: 1;
    transition: background-color 0.3s ease;
}

.carousel-indicators .active {
    background-color: var(--congineer-green);
    opacity: 1;
}

/* Container Max Width */
.container {
    max-width: 1170px;
}

/* Responsive Adjustments */
/* Tablet specific styles (md breakpoint and larger tablets) */
@media (max-width: 991px) and (min-width: 769px) {
    .custom-navbar {
        min-height: 80px;
        padding-top: 15px;
        padding-bottom: 15px;
    }
    
    .navbar-collapse {
        align-items: flex-start;
        margin-top: 10px;
    }
    
    .navbar-nav {
        align-items: flex-start;
        padding-bottom: 0;
    }
    
    .navbar-nav .nav-link {
        margin: 5px 0;
        padding: 8px 15px !important;
        padding-left: 25px !important;
    }
    
    .navbar-nav .nav-link::before {
        left: 10px;
    }
    
    .hero-section {
        margin-top: 80px;
        min-height: 80vh;
    }
    
    #heroCarousel {
        height: 80vh;
    }
    
    .nav-logo {
        height: 45px;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .circle-badge {
        width: 320px;
        height: 320px;
    }
    
    .hero-image {
        max-height: 350px;
        width: auto;
    }
    
    .carousel-item .row {
        align-items: center;
    }
    
    .carousel-item .col-lg-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }
    
    /* Orange Kontakt-Badge auf Tablets ausblenden */
    .contact-badge {
        display: none !important;
    }
}

/* Mobile and small tablet styles */
@media (max-width: 991px) {
    .custom-navbar {
        min-height: 80px;
        padding-top: 15px;
        padding-bottom: 15px;
    }
    
    .navbar-collapse {
        align-items: flex-start;
        margin-top: 10px;
    }
    
    .navbar-nav {
        align-items: flex-start;
        padding-bottom: 0;
    }
    
    .navbar-nav .nav-link {
        margin: 5px 0;
        padding: 8px 15px !important;
        padding-left: 25px !important;
    }
    
    .navbar-nav .nav-link::before {
        left: 10px;
    }
    
    .hero-section {
        margin-top: 80px;
        min-height: 80vh;
    }
    
    #heroCarousel {
        height: 80vh;
    }
    
    .nav-logo {
        height: 45px;
    }
    
    /* Orange Kontakt-Badge auf Tablets ausblenden */
    .contact-badge {
        display: none !important;
    }
}

@media (max-width: 768px) {
    .hero-section {
        min-height: 70vh;
    }
    
    #heroCarousel {
        height: 70vh;
    }
    
    .carousel-item .row {
        flex-direction: column;
        text-align: center;
    }
    
    .carousel-item .col-lg-6 {
        flex: none;
        max-width: 100%;
    }
    
    .section-title,
    .section-title-dark {
        font-size: 2rem;
        margin-left: 15px;
    }
    
    .hero-title {
        font-size: 1.5rem;
    }
    
    .circle-badge {
        width: 300px;
        height: 300px;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        margin: 0 auto 20px auto;
    }
    
    .hero-content {
        padding: 20px;
        display: flex;
        justify-content: center;
    }
    
    .hero-image {
        max-height: 300px;
        margin: 0 auto;
        display: block;
    }
    
    /* Services Cloud - kleinere Schriften für Mobile, aber Layout beibehalten */
    .services-list > li:nth-of-type(1) { 
        font-size: 1.0em; 
        display: block;
        width: 100%;
        text-align: center;
    }
    .services-list > li:nth-of-type(2) { font-size: 1.9em; }
    .services-list > li:nth-of-type(3) { font-size: 0.9em; }
    .services-list > li:nth-of-type(4) { font-size: 1.9em; }
    .services-list > li:nth-of-type(5) { font-size: 1.5em; }
    .services-list > li:nth-of-type(6) { font-size: 1.9em; }
    .services-list > li:nth-of-type(7) { font-size: 0.9em; }
    .services-list > li:nth-of-type(8) { font-size: 1.3em; }
    .services-list > li:nth-of-type(9) { font-size: 2.4em; }
    .services-list > li:nth-of-type(10) { font-size: 1.9em; }
    .services-list > li:nth-of-type(11) { font-size: 1.2em; }
    .services-list > li:nth-of-type(12) { font-size: 1.9em; }
    .services-list > li:nth-of-type(13) { font-size: 1.9em; }
    .services-list > li:nth-of-type(14) { font-size: 0.9em; }
    .services-list > li:nth-of-type(15) { font-size: 1.3em; }
    .services-list > li:nth-of-type(16) { font-size: 0.9em; }
    
    /* Orange Kontakt-Badge auf mobilen Geräten ausblenden */
    .contact-badge {
        display: none !important;
    }
    

    
    .partner-card {
        margin-bottom: 20px;
    }
    
    .contenttable {
        font-size: 0.95rem;
    }
    
    .contenttable td {
        padding: 3px 0;
    }
    
    /* Footer Mobile */
    .footer-blue .col-lg-4 {
        text-align: left !important;
        margin-top: 20px;
    }
    
    .footer-links {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 15px;
    }
}

@media (max-width: 576px) {
    .custom-navbar {
        min-height: 70px;
    }
    
    .hero-section {
        min-height: 60vh;
        margin-top: 70px;
    }
    
    #heroCarousel {
        height: 60vh;
    }
    
    .nav-logo {
        height: 35px;
    }
    
    .section-title,
    .section-title-dark {
        font-size: 1.5rem;
        margin-left: 20px;
    }
    
    .hero-title {
        font-size: 1.2rem;
    }
    
    .circle-badge {
        width: 240px;
        height: 240px;
    }
    
    .hero-image {
        max-height: 240px;
    }
    
    /* Services Cloud - noch kleinere Schriften für sehr kleine Bildschirme */
    .services-list > li:nth-of-type(1) { 
        font-size: 0.7em; 
        display: block;
        width: 100%;
        text-align: center;
    }
    .services-list > li:nth-of-type(2) { font-size: 1.3em; }
    .services-list > li:nth-of-type(3) { font-size: 0.6em; }
    .services-list > li:nth-of-type(4) { font-size: 1.3em; }
    .services-list > li:nth-of-type(5) { font-size: 1.0em; }
    .services-list > li:nth-of-type(6) { font-size: 1.3em; }
    .services-list > li:nth-of-type(7) { font-size: 0.6em; }
    .services-list > li:nth-of-type(8) { font-size: 1.0em; }
    .services-list > li:nth-of-type(9) { font-size: 1.7em; }
    .services-list > li:nth-of-type(10) { font-size: 1.3em; }
    .services-list > li:nth-of-type(11) { font-size: 0.8em; }
    .services-list > li:nth-of-type(12) { font-size: 1.3em; }
    .services-list > li:nth-of-type(13) { font-size: 1.3em; }
    .services-list > li:nth-of-type(14) { font-size: 0.6em; }
    .services-list > li:nth-of-type(15) { font-size: 1.0em; }
    .services-list > li:nth-of-type(16) { font-size: 0.6em; }
    
    .contact-badge {
        width: 200px;
        height: 200px;
    }
    
    .contact-badge h2 {
        font-size: 1rem;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: #333;
}

::-webkit-scrollbar-thumb {
    background: var(--congineer-green);
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background: #537d1f;
}