    /* loading web     */ 
   /* Styling untuk loading screen */
#loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #1a1818; /* Warna abu-abu gelap */
    display: flex;
    flex-direction: column; /* Tata letak vertikal */
    justify-content: center; /* Pusatkan secara vertikal */
    align-items: center; /* Pusatkan secara horizontal */
    z-index: 9999; /* Tingkat atas */
}



/* Styling untuk logo */
#loading-logo {
    width: 250px; /* Ukuran logo */
    height: auto;
    animation: glow 2s infinite alternate; /* Animasi bercahaya */
    filter: drop-shadow(0 0 20px rgba(0, 255, 255, 0.8)); /* Efek glow */
}

/* Styling untuk teks loading */
#loading-text {
    margin-top: 15px; /* Jarak antara logo dan teks */
    font-size: 18px; /* Ukuran font */
    color: #ffffff; /* Warna teks putih */
    text-align: center; /* Pusatkan teks */
}

/* Animasi untuk titik-titik */
.dots::after {
    content: ""; /* Awal tanpa titik */
    animation: dots 1.5s infinite; /* Animasi titik berjalan */
}

@keyframes dots {
    0% {
        content: ""; /* Tidak ada titik */
    }
    33% {
        content: ". "; /* Satu titik */
    }
  
    66% {
        content: ".. "; /* Dua titik */
    }
   
    100% {
        content: "..."; /* Tiga titik */
    }
}

/* Animasi glow untuk logo */
@keyframes glow {
    0% {
        filter: drop-shadow(0 0 10px rgba(0, 255, 255, 0.5));
    }
    50% {
        filter: drop-shadow(0 0 20px rgba(234, 255, 0, 0.918));
    }
    100% {
        filter: drop-shadow(0 0 20px rgba(234, 255, 0, 0.918));
    }
}


    
    
/* end loading web     */


.top-banner {
    background-color: #0d6efd;
    color: white;
    padding: 8px 0;
}
.section-navbar{
    position: sticky;
    top: 0;
    z-index: 1030; /* Ensures it stays above other content */
    transition: top 0.3s; 

  }

    .navbar-brand {
        display: flex;
        align-items: center;
        gap: 10px;

    }


    .search-form {
        max-width: 600px;
        width: 100%;
        right: -30px;
    }
    
    .search-form .form-control {
        border-radius: 20px;
        padding-right: 40px;
    }
    
    .search-icon {
        position: absolute;
        right: 15px;
        top: 50%;
        transform: translateY(-50%);
        color: #6c757d;
    }
    
    .category-nav {
        border-top: 1px solid #dee2e6;
        padding: 10px 0;
    }
    
    .category-nav .nav-link {
        color: #010508;
        padding: 10px 30px;
    }
    
    .category-nav .nav-link:hover {
        color: #5160ea;
    }

    .nav-link.active {
        border-bottom: 2px solid #007bff;  /* Garis bawah berwarna biru */
        color: #007bff;  /* Warna teks sesuai dengan garis bawah */
        font-weight: bold; 
    }
    
    /* Aturan tambahan untuk hover (jika diinginkan) */
    .nav-link.active:hover {
        background-color: #0056b3;  /* Warna saat hover */
        color: white;
        border-bottom: 2px solid #0056b3;  /* Garis bawah lebih gelap saat hover */

    }

    
    /* New CSS for centering */
    .category-nav .container {
        display: flex;
        justify-content: center;
    }

    .category-nav {
        border-top: 1px solid #dee2e6;
        padding: 10px 0;
        background-color: #fcfdff;
        position: relative;
    }

    .category-nav .nav-link {
        color: #010508;
        padding: 10px 30px;
        font-weight: bold; /* Membuat teks tebal */
    }

    .category-nav .nav-link:hover {
        color: #5160ea;
    }

    .burger-menu {
        border: none;
        background: none;
        font-size: 24px;
        padding: 5px 15px;
        display: flex;
        align-items: center;
        color: #010508;
        position: fixed; /* atau bisa menggunakan absolute tergantung kebutuhan */
        top: 10px; /* Menempatkan burger menu sedikit di bawah tepi atas */
        left: 10px; /* Menempatkan burger menu di pojok kiri */
    
    }

    .burger-menu:focus {
        outline: none;
    }

    .no-events-container {
        animation: fadeIn 1s ease-in-out;
    }

    .alert-message {
        font-size: 1.5rem;
        color: #555;
        font-weight: bold;
        text-align: center;
        margin-top: 20px;
    }

    @keyframes fadeIn {
        from {
            opacity: 0;
        }
        to {
            opacity: 1;
        }
    }

/* Responsive Styles */
@media (max-width: 991.98px) {

.burger-menu-pro{
    position: absolute;
    top: 100px;
    right: 0;
    z-index: 1000; /* Pastikan memiliki z-index lebih tinggi dari elemen lain */
}

.burger-menu {
position: absolute;
top: -60px;
right: 0;
z-index: 1000; /* Pastikan memiliki z-index lebih tinggi dari elemen lain */
}


.section-navbar{
    position: static;
    top: 0;
    z-index: 1030; /* Ensures it stays above other content */
 
  }

.navbar-brand {
        display: flex;
        margin-left: 120px;
 }

 .ico-brand {
    margin-left: 30px;
}

#categoryMenu {
    position: absolute;
    top: -30px;
    left: -250px; /* Start position off-screen */
    width: 250px;
    height: 100vh;
    background: white;
    z-index:1001;
    box-shadow: 2px 0 5px rgba(0,0,0,0.1);
    transition: left 0.3s ease-in-out;
    padding: 60px 0 20px 0; /* Added top padding for burger menu */
    margin-top: 40px; /* Space for burger button */
}

#categoryMenu.show {
    left: 0; /* End position on-screen */
}

.category-nav .nav-link {
    padding: 8px 20px;
    
}

.nav-item {
    border-bottom: 1px solid #eee;
}

.nav-item:last-child {
    border-bottom: none;
}
}
/* Carousel Styling */
/* .carousel-item {
    height: 450px;

} */


.carousel-item {
    height: 480px;

}

.carousel-image {
    width: 100%;  
    height: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    }

    /* .carousel-image {
        width: 100%;  
        height: auto; 
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0 20px;
      
        } */



.carousel-caption {
    background: rgba(0, 0, 0, 0.5);
    padding: 20px;
    border-radius: 10px;
    max-width: 600px;
    margin: 0 auto;
    bottom: 17%; /* Mengangkat caption ke atas */
}


.carousel-control-prev,
.carousel-control-next {
    width: 5%;
}

.carousel-indicators button {
    background-color: black !important; /* Mengubah warna ke hitam */
    border: none; /* Menghilangkan border */
    width: 10px; /* Ukuran bulatan */
    height: 10px;
    border-radius: 50%; /* Membuatnya bulat */
    opacity: 0.5; /* Transparansi saat tidak aktif */
    margin-bottom:50px;
}

.carousel-indicators .active {
    background-color: rgb(80, 7, 253) !important; /* Warna saat aktif */
    opacity: 1; /* Buat lebih jelas */
}


/* endcarosel */

.kategori-section{
margin-top: -50px;
}
.product-slider {
    position: relative;
    padding: 2rem 0;
   
}

.product-container {
    overflow: hidden;
    padding: 20px;
    margin-top: -40px;     
    
}

.product-wrapper {
    display: flex;
    transition: transform 0.3s ease-in-out;
    gap: 1rem;
}

.product-card {
    min-width: 100px;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 1rem;
    text-align: center;
    display: flex;
    flex-direction: column; /* Atur elemen menjadi kolom */
    align-items: center; /* Pusatkan secara horizontal */
    justify-content: center; /* Pusatkan secara vertikal */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.product-image {
    width: 100%;
    height: 200px;
    object-fit: contain;
    margin-bottom: 1rem;
}

.nav-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #007bff;
    color: white;
    border: none;
    cursor: pointer;
    z-index: 10;
}

.prev-button {
    left: 0;
}

.next-button {
    right: 0;
}

.product-slider {
    position: relative;
    padding: 2rem 0;
    max-width: 1200px;
    margin: 0 auto;
}

.product-container {
    overflow: hidden;
    padding: 1rem 0;

}

.product-wrapper {
    display: flex;
    transition: transform 0.3s ease-in-out;
    gap: 1rem;
}

.product-card {
    flex: 0 0 auto;
    width:calc(25% - 1rem); /* Desktop default */
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 0.5rem;
    background: white;
}

.product-image {
    width: 100%;
    height: 150px;
    object-fit: contain;
    margin-bottom: 0.5rem;
}

.nav-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #007bff;
    color: white;
    border: none;
    cursor: pointer;
    z-index: 10;
    font-size: 14px;
}

.prev-button {
    left: -25px;
    width: 40px;
    height: 40px;
}

.next-button {
    right: -25px;
    width: 40px;
    height: 40px;
}

.product-title {
    font-size: 0.9rem;
    margin: 0.5rem 0;
    text-align: center;
    height: 2.7em;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.btn-detail {
    margin-top: 5px;
    padding: 6px 20px;
    font-size: 14px;
    border-radius: 5px;
    background-color: #28a745;
    color: #fff;
    border: none;
    cursor: pointer;
}

.btn-detail:hover {
    background-color: #218838;
}

.price {
    font-weight: bold;
    color: #333;
    text-align: center;
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.original-price {
    text-decoration: line-through;
    color: #999;
    font-size: 0.8rem;
}

.discount {
    color: #dc3545;
    margin-left: 0.5rem;
    font-size: 0.8rem;
}

.pagination {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 0.5rem;
}

.pagination-dot {
    width: 6px;
    height: 6px;
    border-radius: 20%;
    background: #ccc;
    cursor: pointer;
}

.pagination-dot.active {
    background: #007bff;
}

    .custom-img {
    width: 500px;
    height: 250px;
    margin-left: 20px;
    
}


@media (min-width: 1920px) {
    .carousel-item {
        height: 680px !important;
    }
}


@media (min-width: 1440px) {
    .carousel-item {
        height: 550px;
    
    }  

}

/* Tablet Styles */
@media screen and (max-width: 991px) {
    .product-card {
        width: calc(50% - 1rem); /* 2 cards on tablet */
    }
    
    .product-image {
        height: 130px;
    }
    
    .nav-button {
        width: 28px;
        height: 28px;
        font-size: 12px;
    }
}

/* Mobile Styles */
@media screen and (max-width: 720px) {

    .custom-img {
    width: 500px;
    height: 250px;
    margin-left: 0px;
    
}
    .product-card {
        width: calc(100% - 3rem); /* 1 card on mobile */
        margin: 0 1rem;
    }
    
    .product-image {
        height: 120px;
    }
    
    .nav-button {
        width: 24px;
        height: 24px;
        font-size: 10px;
    }

    .prev-button {
        left: -16px;
        width: 40px;
        height: 40px;
    }
    
    .next-button {
        right: -16px;
        width: 40px;
        height: 40px;
    }

  
}

/* Gaya untuk perangkat dengan lebar maksimum 576px */
@media screen and (max-width: 430px) {
    .carousel-item {
        height: 230px;
    
    }
  }
  



 /* new produk */
 .new-products {
padding: 20px;
background-color:white;
}

.new-products h2 {

margin-bottom: 20px;
}

.product-list {
display: flex;
gap: 15px;
overflow-x: auto; /* Memungkinkan scroll horizontal */
scroll-snap-type: x mandatory; /* Membuat elemen berhenti pada posisi produk */
padding-bottom: 10px;
}

.product-item {
flex: 0 0 auto; /* Membuat item tidak mengecil */
width: 200px; /* Atur lebar item */
background-color: #fff;
padding: 15px;
border: 1px solid #ddd;
border-radius: 8px;
text-align: center;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
scroll-snap-align: start; /* Produk berhenti di awal elemen */
margin-left: auto;
}


.price {
display: block;
margin-top: 10px;
font-weight: bold;
color: #27ae60;
}

.blinking-text {
animation: blink 1s infinite; /* Durasi 1 detik dan berulang tanpa batas */
}

@keyframes blink {
0%, 100% {
color: red;
}
50% {
color: blue;
}
}


/* end new produk */

.garis-hr {
border: black;
height: 2px;
background-color: #7f7d7d; /* Pastikan garis utama tetap hitam */
margin: 20px 0;
position: relative;
overflow: hidden;
}

.garis-hr::before {
content: '';
position: absolute;
top: 0;
left: -100%; /* Memulai animasi di luar layar */
width: 100%;
height: 100%;
background-color: #1f0280; /* Warna biru */
animation: slide 2s linear infinite; /* Animasi bergerak */
}

@keyframes slide {
0% {
left: -100%; /* Memulai dari luar layar */
}
100% {
left: 100%; /* Bergerak melintasi elemen ke kanan */
}
}

/* client */
#clients {
background-color: #f8f9fa;
}

.marquee-container {
overflow: hidden;
position: relative;
}

.marquee {
display: flex;
animation: marquee 20s linear infinite;
}

.client-logo {
width: 120px; /* Ukuran logo */
height: auto;
}

@keyframes marquee {
0% {
transform: translateX(100%);
}
100% {
transform: translateX(-100%);
}
}

/* end client */

/* event */
.event-section {
    padding: 60px 0;
    background-color: white;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 15px;
}

.section-title p {
    color: #666;
    font-size: 1.1rem;
}

.event-nav {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}

.event-nav .nav-link {
    padding: 10px 25px;
    margin: 0 10px;
    border-radius: 25px;
    color: #666;
    font-weight: 500;
    transition: all 0.3s ease;
}

.event-nav .nav-link.active {
    background-color: #0d6efd;
    color: white;
}

.event-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-bottom: 30px;
    transition: transform 0.3s ease;
}

.event-card:hover {
    transform: translateY(-10px);
}

.event-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.event-status {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 5px 15px;
    border-radius: 20px;
    color: white;
    font-size: 0.9rem;
    font-weight: 500;
}

.status-ongoing {
    background-color: #28a745;
}

.status-upcoming {
    background-color: #ffc107;
}

.status-past {
    background-color: #6c757d;
}

.event-content {
    padding: 20px;
}

.event-date {
    color: #0d6efd;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.event-title {
    font-size: 1.25rem;
    color: #333;
    margin-bottom: 10px;
}

.event-location {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.event-description {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 20px;
    line-height: 1.6;
}

.event-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background-color: #f8f9fa;
}

.booth-info {
    color: #666;
    font-size: 0.9rem;
}

.event-action .btn {
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
}

.live-indicator {
    display: inline-flex;
    align-items: center;
    color: #28a745;
    font-size: 0.9rem;
    margin-right: 15px;
}

.live-indicator .dot {
    width: 8px;
    height: 8px;
    background-color: #28a745;
    border-radius: 50%;
    margin-right: 5px;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(0.95);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.1);
        opacity: 1;
    }
    100% {
        transform: scale(0.95);
        opacity: 0.5;
    }
}

.countdown-timer {
    display: flex;
    justify-content: center;
    margin: 15px 0;
    gap: 15px;
}

.time-block {
    text-align: center;
    background: #f8f9fa;
    padding: 8px 12px;
    border-radius: 8px;
}

.time-number {
    font-size: 1.2rem;
    font-weight: bold;
    color: #333;
}

.time-label {
    font-size: 0.8rem;
    color: #666;
}
/* endevent */

/* contacts */
#contact{
    background: #f3f4f6;
}
/* endcontact */

/* pages produk */


#product-header .container {
    z-index: 1;
   
}

#product-header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
   
    z-index: 0;
}

.text-white {
    color: #fff;
}

.sidebar {
    margin-top: 30px;
    background-color: white;
    border: 2px solid rgb(0, 5, 9);
    padding: 20px;
    border-radius: 8px; /* Menambahkan lengkungan pada sudut */
}

     .sidebar.open {
    left: 0; /* Sidebar terlihat saat terbuka */
}
        .burger-menu-pro {
            border: none;
            background: none;
            font-size: 24px;
            padding: 5px 15px;
            display: flex;
            align-items: center;
            color: #010508;
            position: absolute; /* atau bisa menggunakan absolute tergantung kebutuhan */
            top: 290px; /* Menempatkan burger menu sedikit di bawah tepi atas */
            left: 10px; /* Menempatkan burger menu di pojok kiri */
            z-index: 1000;
            }
        .category-item {
            color: #666;
            padding: 8px 0;
            cursor: pointer;
            transition: color 0.3s;
        }
        
        .category-list {
            display: flex;
            flex-direction: column; /* Susunan vertikal */
            gap: 10px; /* Spasi antar item */
            width: 100%; /* Pastikan memenuhi lebar sidebar */
        }
        
        .category-item {
            position: relative; /* Dibutuhkan untuk efek garis */
            padding: 10px 0;
            color: #212529; /* Warna teks awal */
            text-decoration: none; /* Hilangkan garis bawah */
            font-size: 16px;
            transition: color 0.3s ease; /* Animasi perubahan warna */
        }
        
        .category-item::after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: #1d58b1; /* Warna garis */
            transition: width 0.3s ease; /* Animasi garis */
        }
        
        .category-item:hover {
            color: #1d58b1; /* Ubah warna teks saat hover */
        }
        
        .category-item:hover::after {
            width: 100%; /* Panjang garis menjadi penuh */
        }
        
        /* Efek garis bawah pada kategori yang aktif */
        .category-item.active {
            color: #1d58b1; /* Warna teks aktif */
        }
        
        .category-item.active::after {
            width: 100%; /* Garis penuh ketika aktif */
        }
        
        
        .card {
            padding: 20px; /* Tambahkan padding untuk memberikan ruang */
            display: flex;
            flex-direction: column; /* Susunan vertikal */
            align-items: center; /* Teks dan tombol di tengah */
            justify-content: space-between; /* Jarak antar elemen */
            text-align: center; /* Pusatkan teks */
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Tambahkan efek shadow */
            border-radius: 10px; /* Buat sudut kartu lebih melengkung */
            margin-bottom: 5px;
            margin-top: 5px;
        }
        
        /* Gambar produk */
        .product-images {
            width: 100%; /* Gambar menyesuaikan ukuran card */
            height: 200px;
            margin-bottom: 15px; /* Beri jarak dengan teks */
            max-width: 200px; /* Batasi ukuran maksimum */
        }

        .btn {
            margin-top: 10px;
            padding: 5px 15px; /* Sesuaikan ukuran padding */
            font-size: 14px; /* Ukuran font lebih kecil */
            border-radius: 5px; /* Tambahkan sudut melengkung */
        }
        
        .btn-outline-secondary:hover {
            background-color: #f8f9fa; /* Warna latar belakang saat hover */
            color: #6c757d; /* Ubah warna teks */
        }
        
        .breadcrumb {
            margin: 20px 0;
            background-color: transparent;
        }
        
        .product-title {
            color: #333;
            font-size: 1rem;
            margin: 10px 0;
        }
        
        .product-model {
            color: #666;
            font-size: 0.9rem;
        }
        
        .category-header {
            font-size: 1.2rem;
            margin-bottom: 15px;
            color: #333;
        } 
        
        .industry-section {
            margin-top: 30px;
        }
        
        .sorting-section {
            margin-top: 30px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
        }
        
        .showing-info {
            color: #666;
        }
/* endpagesproduk */


/* about us */
 /* Custom Colors and Variables */
 :root {
    --primary-blue: #0066cc;
    --light-gray: #ffe2ad;
    --border-gray: #e9ecef;
}

/* Global Styles */
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: #333;
    line-height: 1.6;
}

/* Header and Text Styles */
.judul {
    font-weight: 700;
    color: #1a1a1a;
}

.section-title {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    position: relative;
    text-align: center;
}

/* Steps Section Styles */
.steps-container {
    position: relative;
}

.step-item {
    text-align: center;
    padding: 1rem;
    position: relative;
}

.step-number {
    width: 40px;
    height: 40px;
    background: var(--primary-blue);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-weight: bold;
}

.step-divider {
    position: absolute;
    top: 20px;
    right: -50%;
    width: 100%;
    height: 2px;
    background: var(--border-gray);
    z-index: -1;
}

/* Benefits Card Styles */
.benefit-card {
    padding: 1.5rem;
    text-align: center;
    transition: transform 0.3s ease;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.benefit-card:hover {
    transform: translateY(-5px);
}

.benefit-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 1rem;
}

/* Service Price Box Styles */
.service-box {
    border: 1px solid var(--border-gray);
    border-radius: 8px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.service-box:hover {
    border-color: var(--primary-blue);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.price-tag {
    color: var(--primary-blue);
    font-size: 1.2rem;
    font-weight: bold;
    margin: 0.5rem 0;
}

/* Button Styles */
.btn-custom-primary {
    background: var(--primary-blue);
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 25px;
    border: 2px solid var(--primary-blue);
    transition: all 0.3s ease;
}

.btn-custom-primary:hover {
    background: white;
    color: var(--primary-blue);
}

.btn-custom-outline {
    background: white;
    color: var(--primary-blue);
    padding: 0.8rem 2rem;
    border-radius: 25px;
    border: 2px solid var(--primary-blue);
    transition: all 0.3s ease;
}

.btn-custom-outline:hover {
    background: var(--primary-blue);
    color: white;
}

/* Hero Section Styles */
/* .hero-section {
    padding: 4rem 0;
    background: var(--light-gray);
    margin-bottom: 4rem;
} */

.content-hero{
    top: 10px;
}

.hero-image {
    max-width: 400px;
    margin: 0 auto;
}

/* Service Section Styles */
.service-section {
    background: white;
    padding: 4rem 0;
}

.service-image {
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* CTA Section Styles */
.cta-section {
    background: var(--light-gray);
    padding: 4rem 0;
    margin-top: 4rem;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .step-divider {
        display: none;
    }
    
    .benefit-card {
        margin-bottom: 1rem;
    }

    .service-box {
        margin-bottom: 1rem;
    }
}
/* end about us */


