/* Custom CSS for Landing Page */

/* Global Font Family */
* {
    font-family: 'Poppins', sans-serif;
}

/* Navbar Styles */
.navbar {
    background: transparent !important;
    backdrop-filter: none;
    transition: all 0.3s ease;
    padding: 15px 0;
    z-index: 1000;
}

.navbar.scrolled {
    background: rgba(75, 74, 239, 0.95) !important;
    backdrop-filter: blur(15px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
    padding: 10px 0;
}

.navbar-brand img {
    transition: all 0.3s ease;
}

.navbar.scrolled .navbar-brand img {
    transform: scale(0.9);
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
}
@media (max-width: 768px) {
  .navbar {
    background: rgba(75, 74, 239, 0.95) !important;
    backdrop-filter: blur(10px); /* opsional, bikin agak mewah */
  }
}

.nav-link {
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #ffc107 !important;
}

/* Dropdown Menu Styling - Simple & Elegant */
.dropdown-menu {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    border: none;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    margin-top: 8px;
    padding: 8px 0;
    min-width: 220px;
    animation: fadeInDown 0.3s ease-out;
    transform-origin: top center;
}

.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 6px solid rgba(255, 255, 255, 0.98);
}

.dropdown-item {
    color: #2c3e50;
    font-weight: 500;
    padding: 12px 20px;
    border-radius: 8px;
    margin: 2px 8px;
    transition: all 0.2s ease;
    position: relative;
    overflow: hidden;
}

.dropdown-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(75, 74, 239, 0.1), transparent);
    transition: left 0.3s ease;
}

.dropdown-item:hover {
    background: linear-gradient(135deg, #4B4AEF, #667eea);
    color: white;
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(75, 74, 239, 0.3);
}

.dropdown-item:hover::before {
    left: 100%;
}

.dropdown-item:focus {
    background: linear-gradient(135deg, #4B4AEF, #667eea);
    color: white;
}

.dropdown-item:active {
    background: linear-gradient(135deg, #3d3bc7, #5a6de8);
}

.dropdown-divider {
    height: 1px;
    margin: 8px 16px;
    background: linear-gradient(90deg, transparent, rgba(75, 74, 239, 0.2), transparent);
    border: none;
}

/* Dropdown Toggle Styling */
.dropdown-toggle::after {
    transition: transform 0.3s ease;
    margin-left: 8px;
}

.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(180deg);
}

/* Animation for dropdown show */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-10px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Responsive dropdown */
@media (max-width: 991px) {
    .dropdown-menu {
        background: rgba(75, 74, 239, 0.95);
        margin-top: 0;
        border-radius: 0;
        box-shadow: none;
        animation: none;
    }

    .dropdown-menu::before {
        display: none;
    }

    .dropdown-item {
        color: white;
        margin: 0;
        border-radius: 0;
    }

    .dropdown-item:hover {
        background: rgba(255, 255, 255, 0.1);
        color: #ffc107;
        transform: none;
        box-shadow: none;
    }

    .dropdown-divider {
        background: rgba(255, 255, 255, 0.2);
        margin: 4px 0;
    }
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    padding-top: 80px;
}

.hero-content h1 {
    animation: fadeInUp 1s ease-out;
    font-weight: 700;
}

.hero-content p {
    animation: fadeInUp 1s ease-out 0.2s both;
    font-weight: 400;
}

.hero-buttons {
    animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-image img {
    animation: fadeInRight 1s ease-out 0.6s both;
    transition: transform 0.3s ease;
}

.hero-image img:hover {
    transform: scale(1.05);
}

/* Feature Cards */
.feature-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 15px;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1) !important;
}

.feature-icon {
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
}

.feature-card .card-title {
    font-weight: 600;
}

.feature-card .card-text {
    font-weight: 400;
}

/* About Section */
.about-image img {
    transition: transform 0.3s ease;
}

.about-image img:hover {
    transform: scale(1.02);
}

.stat-item h3 {
    font-size: 2.5rem;
    font-weight: 700;
}

.about-content h2 {
    font-weight: 700;
}

.about-content p {
    font-weight: 400;
}

/* Contact Form */
.contact-form {
    border-radius: 20px;
}

.form-control {
    border-radius: 10px;
    border: 1px solid #e9ecef;
    padding: 12px 15px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    font-weight: 400;
}

.form-control:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25);
}

.form-label {
    font-weight: 500;
}

/* Buttons */
.btn {
    border-radius: 25px;
    padding: 12px 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-warning:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 193, 7, 0.4);
}

.btn-outline-light:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
}

.display-4 {
    font-weight: 800;
}

.lead {
    font-weight: 400;
}


.hero-image {
    background-image: url('../assets/img/hero-img.png');
    background-size: cover;
    background-position: center;
    height: 800px;
    margin-top: -75px;
}





html {
  scroll-behavior: smooth;
}


.main-content .container {
    margin-top: 200px;
}


.main-content .btn-menu {
    background: linear-gradient(135deg, #FDC021, #ee8450);
    position: relative;
    overflow: hidden;
    color: white;
    border: none;
    border-radius: 30px;
    padding: 12px 28px;
    box-shadow: 0 8px 15px rgba(255, 136, 0, 0.3);
    font-weight: 600;
    transition: all 0.3s ease
}

.main-content .btn-menu:hover {
    background: linear-gradient(135deg, #703f08, #944f1c);
    color: white;
    transform: scale(1.05);
    box-shadow: 0 12px 20px rgba(0,0,0,0.2);
}

.main-content .btn-menu .wave {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.15);
    transform: skewX(-20deg);
    transition: left 0.5s
}

.main-content .btn-menu:hover .wave {
  left: 100%;
}

.main-content h1 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    margin-bottom: 30px;
}

.main-content h1 span {
    color: #fd8421;
}

.main-content p {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    margin-bottom: 20px;
}


.layanan-section {
    width: 95%;
    min-height: 600px;
    padding: 80px 0;
    text-align: center;
    background-color: #BEBEFF;
    border-top-right-radius: 300px;
    position: relative;
    overflow: hidden;
}
.card-project {
    padding: 18px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
.card-body-project {
      text-align: left;
}
.fitur-utama li {
    margin-bottom: 6px; /* tambah jarak antar item */
}

.card-project img{
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
}
.dot {
        display: inline-block;
        width: 8px;
        height: 8px;
        background-color: #ffc107;
        border-radius: 50%;
        margin-right: 8px;
    }

    .btn-live-demo {
        min-width: 270px;
    }
   .tech-stack .badge {
        font-size: 0.85rem;
        font-weight: 500;
        padding: 0.5em 0.75em;
        background-color: #f8f9fa;
        color: #6c757d;
        border-radius: 0.5rem;
        border: 1px solid #dee2e6;
    }

    .tech-stack .badge {
        font-size: 0.85rem;
        font-weight: 500;
        padding: 0.5em 0.75em;
        background-color: #f8f9fa;
        color: #6c757d;
        border-radius: 0.5rem;
        border: 1px solid #dee2e6;
    }

    /* Bullet Kuning */
    .dot {
        display: inline-block;
        width: 8px;
        height: 8px;
        background-color: #ffc107;
        border-radius: 50%;
        margin-right: 8px;
    }

.layanan-section h1 {
    color: white;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.layanan-section h3 {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
}

.layanan-section .card {
    background: white;
    border: none;
    border-radius: 20px;
    padding: 30px 25px;
    height: 100%;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.layanan-section .card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.layanan-section .card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.layanan-section .card:hover::before {
    left: 100%;
}

.layanan-section .card .mb-3 {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #f8f9ff, #e8ecff);
    border-radius: 20px;
    margin: 0 auto 25px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.layanan-section .card .mb-3::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: #4B4AEF;
    border-radius: 50%;
    transition: all 0.4s ease;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.layanan-section .card .mb-3 i {
    color: #4B4AEF !important;
    font-size: 2rem !important;
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}

.layanan-section .card:hover .mb-3 {
    transform: scale(1.1) rotate(5deg);
}

.layanan-section .card:hover .mb-3::before {
    width: 120%;
    height: 120%;
}

.layanan-section .card:hover .mb-3 i {
    color: white !important;
}

.layanan-section .card-title {
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
    font-size: 1.3rem;
    transition: color 0.3s ease;
}

.layanan-section .card:hover .card-title {
    color: #4B4AEF;
}

.layanan-section .card-text {
    color: #6c757d;
    line-height: 1.7;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.layanan-section .card:hover .card-text {
    color: #495057;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .layanan-section {
        width: 100%;
        border-top-right-radius: 600px;
    }
}

@media (max-width: 992px) {
    .layanan-section {
        border-top-right-radius: 400px;
        padding: 60px 0;
    }

    .layanan-section h1 {
        font-size: 2rem;
    }

    .layanan-section h3 {
        font-size: 1.1rem;
        margin-bottom: 40px;
    }

    .layanan-section .card {
        margin-bottom: 30px;
        padding: 25px 20px;
    }

    .layanan-section .card .mb-3 {
        width: 70px;
        height: 70px;
        margin-bottom: 20px;
    }

    .layanan-section .card .mb-3 i {
        font-size: 1.7rem !important;
    }
}

@media (max-width: 768px) {
    .layanan-section {
        border-top-right-radius: 200px;
        padding: 50px 0;
        width: 100%;
    }

    .layanan-section h1 {
        font-size: 1.8rem;
        margin-bottom: 10px;
    }

    .layanan-section h3 {
        font-size: 1rem;
        margin-bottom: 30px;
    }

    .layanan-section .card {
        padding: 20px 15px;
        margin-bottom: 25px;
    }

    .layanan-section .card .mb-3 {
        width: 60px;
        height: 60px;
        margin-bottom: 15px;
    }

    .layanan-section .card .mb-3 i {
        font-size: 1.5rem !important;
    }

    .layanan-section .card-title {
        font-size: 1.1rem;
        margin-bottom: 10px;
    }

    .layanan-section .card-text {
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .layanan-section {
        border-top-right-radius: 100px;
        padding: 40px 0;
    }

    .layanan-section h1 {
        font-size: 1.5rem;
    }

    .layanan-section h3 {
        font-size: 0.9rem;
    }

    .layanan-section .card {
        padding: 15px 10px;
    }

    .layanan-section .card .mb-3 {
        width: 50px;
        height: 50px;
    }

    .layanan-section .card .mb-3 i {
        font-size: 1.3rem !important;
    }
}





#teams {
    background-color: #f8f9fa;
    position: relative;
    overflow: hidden;
}

#teams::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 193, 7, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

#teams h2 {
    color: #2c3e50;
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
    font-weight: 700;
}

#teams h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: #667eea;
    margin: 20px auto 0;
    border-radius: 2px;
}

.carousel-inner {
    padding: 40px 0;
    position: relative;
    z-index: 2;
}

.team-member {
    text-align: center;
    padding: 20px;
    transition: all 0.3s ease;
}

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

.team-img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid white;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    margin-bottom: 20px;
}

.team-member:hover .team-img {
    transform: scale(1.05);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    border-color: #667eea;
}

.team-member h6 {
    color: #333;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.team-member p {
    color: #667eea;
    font-weight: 500;
    font-size: 0.9rem;
    margin: 0;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 40px;
    height: 40px;
    background-color: #667eea;
    border-radius: 50%;
    border: 2px solid white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.carousel-control-prev:hover .carousel-control-prev-icon,
.carousel-control-next:hover .carousel-control-next-icon {
    background-color: #764ba2;
    transform: scale(1.1);
}

.bg-temas {
    background-color: #fd3b00;
}


/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .layanan-section {
        width: 100%;
        border-top-right-radius: 600px;
    }

    .main-content .container {
        margin-top: 150px;
    }
}

@media (max-width: 992px) {
    .layanan-section {
        border-top-right-radius: 400px;
        padding: 60px 0;
    }

    .layanan-section .card {
        margin-bottom: 30px;
    }

    /* Teams carousel for tablets */
    #teams .d-flex {
        flex-wrap: wrap;
        gap: 20px !important;
    }

    .team-member {
        flex: 0 0 calc(50% - 10px);
        max-width: calc(50% - 10px);
    }
}

@media (max-width: 768px) {
    .hero-section {
        text-align: center;
        padding-top: 100px;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-buttons {
        margin-top: 2rem;
    }

    .hero-buttons .btn {
        display: block;
        width: 100%;
        margin-bottom: 10px;
    }

    .stat-item h3 {
        font-size: 2rem;
    }

    /* Navbar responsive */
    .navbar-brand img {
        width: 150px;
    }

    .navbar.scrolled .navbar-brand img {
        width: 130px;
    }

    /* Main content responsive */
    .main-content h1 {
        font-size: 2.2rem;
        line-height: 1.2;
    }

    .main-content .container {
        margin-top: 120px;
    }

    .main-content .row {
        flex-direction: column-reverse;
    }

    .main-content .col:last-child {
        text-align: center;
        margin-bottom: 30px;
    }

    .main-content .col:last-child img {
        width: 100%;
        max-width: 400px;
        height: auto;
    }

    /* Layanan section responsive */
    .layanan-section {
        width: 100%;
        border-top-right-radius: 200px;
        padding: 50px 20px;
        min-height: auto;
    }

    .layanan-section h1 {
        font-size: 2rem;
    }

    .layanan-section h3 {
        font-size: 1.2rem;
    }

    /* Teams responsive */
    #teams .d-flex {
        flex-direction: column;
        align-items: center;
        gap: 30px !important;
    }

    .team-member {
        flex: none;
        max-width: 300px;
        width: 100%;
    }

    .carousel-control-prev,
    .carousel-control-next {
        display: none;
    }
}

@media (max-width: 576px) {
    /* Extra small devices */
    .main-content h1 {
        font-size: 1.8rem;
    }

    .main-content p {
        font-size: 0.95rem;
    }

    .main-content .container {
        margin-top: 100px;
        padding: 0 15px;
    }

    .layanan-section {
        border-top-right-radius: 100px;
        padding: 40px 15px;
    }

    .layanan-section h1 {
        font-size: 1.7rem;
    }

    .layanan-section h3 {
        font-size: 1rem;
    }

    .navbar-brand img {
        width: 120px;
    }

    #teams h2 {
        font-size: 1.8rem;
    }

    .team-img {
        width: 120px;
        height: 120px;
    }
}

@media (max-width: 400px) {
    /* Very small devices */
    .main-content h1 {
        font-size: 1.5rem;
    }

    .layanan-section {
        border-top-right-radius: 50px;
    }

    .navbar-brand img {
        width: 100px;
    }
}

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

/* Section Padding */
section {
    padding: 80px 0;
}

/* Background Patterns */
.bg-light {
    background: linear-gradient(45deg, #f8f9fa 25%, transparent 25%),
                linear-gradient(-45deg, #f8f9fa 25%, transparent 25%),
                linear-gradient(45deg, transparent 75%, #f8f9fa 75%),
                linear-gradient(-45deg, transparent 75%, #f8f9fa 75%);
    background-size: 20px 20px;
    background-position: 0 0, 0 10px, 10px -10px, -10px 0px;
}
/* Container Responsive */
.container {
    padding-left: 15px;
    padding-right: 15px;
}

@media (max-width: 768px) {
    .container {
        padding-left: 20px;
        padding-right: 20px;
    }
}

/* Card Grid Responsive */
.row.g-4 {
    margin: 0 -15px;
}

@media (max-width: 768px) {
    .row.g-4 {
        margin: 0;
    }

    .row.g-4 .col-md-4 {
        padding: 0 0 30px 0;
    }
}
/* ==============================================
   PROJECT SECTION - MODERN REDESIGN
   ============================================== */

.project-section {
    background: #f8fafc;
    position: relative;
    overflow: hidden;
}

.project-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(180deg, transparent 0%, rgba(248, 250, 252, 0.8) 100%);
    z-index: 1;
}

/* Section Header */
.section-header {
    position: relative;
    z-index: 2;
    opacity: 0;
    transform: translateY(50px);
    animation: fadeInUp 0.8s ease forwards;
}

.section-title {
    color: #1e293b;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
}

.title-divider {
    width: 80px;
    height: 4px;
    background: #3b82f6;
    margin: 0 auto 1.5rem;
    border-radius: 2px;
    position: relative;
    overflow: hidden;
}

.title-divider::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
    animation: shimmer 2s infinite;
}

.section-subtitle {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}

/* Project Cards */
.project-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    opacity: 0;
    transform: translateY(50px) scale(0.95);
    animation: cardFadeIn 0.6s ease forwards;
    border: 1px solid rgba(226, 232, 240, 0.5);
}

.project-card:nth-child(1) { animation-delay: 0.1s; }
.project-card:nth-child(2) { animation-delay: 0.2s; }
.project-card:nth-child(3) { animation-delay: 0.3s; }
.project-card:nth-child(4) { animation-delay: 0.4s; }
.project-card:nth-child(5) { animation-delay: 0.5s; }
.project-card:nth-child(6) { animation-delay: 0.6s; }

.project-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: #3b82f6;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.project-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
    border-color: rgba(59, 130, 246, 0.3);
}

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

/* Project Image */
.project-image {
    position: relative;
    overflow: hidden;
    height: 250px;
    background: #f1f5f9;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.project-card:hover .project-image img {
    transform: scale(1.08);
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.view-project-btn {
    background: white;
    color: #1e293b;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    transform: translateY(20px);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.project-card:hover .view-project-btn {
    transform: translateY(0);
}

.view-project-btn:hover {
    background: #3b82f6;
    color: white;
    transform: scale(1.05);
}

/* Project Content */
.project-content {
    padding: 24px;
}

.project-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 8px;
    line-height: 1.3;
}

.project-description {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 16px;
    font-size: 0.95rem;
}

.project-features {
    margin-bottom: 20px;
}

.project-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.project-features li {
    color: #475569;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    font-size: 0.9rem;
}

.project-features .dot {
    width: 6px;
    height: 6px;
    background: #3b82f6;
    border-radius: 50%;
    margin-right: 10px;
    flex-shrink: 0;
}

.tech-stack {
    margin-bottom: 20px;
}

.tech-badge {
    display: inline-block;
    background: #f1f5f9;
    color: #475569;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
    margin: 2px 4px 2px 0;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.tech-badge:hover {
    background: #3b82f6;
    color: white;
    transform: translateY(-1px);
}

.project-actions {
    display: flex;
    gap: 10px;
}

.btn-demo, .btn-code {
    flex: 1;
    padding: 10px 16px;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px; /* jarak icon dan teks */
}

/* Tombol Live Demo */
.btn-demo {
    background: #2563eb;
    color: white;
    border: 2px solid #2563eb;
}

.btn-demo:hover {
    background: #2563eb;
    border-color: #2563eb;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.btn-code {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    font-weight: 500;
    color: #000;
    background-color: #fff;
    border: 2px solid #000;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-code:hover {
    background-color: #ff771d; /* jadi hitam */
    color: #fff; /* teks putih */
    border: 2px solid #ff771d;
}



/* Pagination */
.pagination-wrapper {
    margin-top: 60px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.8s;
}

.pagination-modern {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.pagination-modern .page-item {
    list-style: none;
}

.pagination-modern .page-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    color: #64748b;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    background: white;
    position: relative;
    overflow: hidden;
}

.pagination-modern .page-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #3b82f6;
    transition: left 0.3s ease;
    z-index: -1;
}

.pagination-modern .page-link:hover {
    color: white;
    border-color: #3b82f6;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.pagination-modern .page-link:hover::before {
    left: 0;
}

.pagination-modern .page-item.active .page-link {
    background: #3b82f6;
    color: white;
    border-color: #3b82f6;
    transform: scale(1.1);
}

.pagination-modern .page-item.disabled .page-link {
    color: #cbd5e1;
    border-color: #f1f5f9;
    cursor: not-allowed;
}

.pagination-modern .page-item.disabled .page-link:hover {
    transform: none;
    box-shadow: none;
    background: white;
}

/* Project Stats */
.project-stats {
    border-top: 1px solid #e2e8f0;
    background: white;
    padding: 40px 0;
    margin-top: 80px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    opacity: 0;
    transform: translateY(50px);
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 1s;
}

.stat-item {
    padding: 20px;
    text-align: center;
    position: relative;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: #3b82f6;
    display: block;
    margin-bottom: 8px;
    position: relative;
}

.stat-number::after {
    content: '+';
    position: absolute;
    right: -15px;
    top: 0;
    font-size: 1.5rem;
    color: #64748b;
}

.stat-label {
    color: #64748b;
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Loading Animation */
.project-loading {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 200px;
}

.loading-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #f1f5f9;
    border-top: 4px solid #3b82f6;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes cardFadeIn {
    from {
        opacity: 0;
        transform: translateY(50px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

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

/* Responsive Design */
@media (max-width: 992px) {
    .section-title {
        font-size: 2rem;
    }

    .project-image {
        height: 220px;
    }

    .project-content {
        padding: 20px;
    }

    .stat-number {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 1.8rem;
    }

    .project-card {
        margin-bottom: 30px;
    }

    .project-image {
        height: 200px;
    }

    .project-actions {
        flex-direction: column;
    }

    .btn-demo, .btn-code {
        flex: none;
    }

    .pagination-modern .page-link {
        width: 40px;
        height: 40px;
    }

    .stat-number {
        font-size: 2rem;
    }

    .project-stats {
        margin-top: 50px;
        padding: 30px 0;
    }
}

@media (max-width: 576px) {
    .project-content {
        padding: 16px;
    }

    .pagination-modern {
        gap: 4px;
    }

    .pagination-modern .page-link {
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
    }
}

#pageNumbers {
    gap: 8px; /* jarak antar nomor halaman */
    margin: 0 8px; /* jarak dari tombol prev & next */
}

.pagination .page-item .page-link {
    border-radius: 8px;
    padding: 8px 14px;
}

.pagination .page-item.active .page-link {
    background-color: #2563eb; /* biru seperti contoh */
    border-color: #2563eb;
    color: white;
}


 .footer {
            background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
            color: white;
            position: relative;
            overflow: hidden;
        }

        .footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
        }

        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 60px 20px 0;
        }

        .footer-main {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 50px;
            margin-bottom: 50px;
        }

        .footer-brand {
            max-width: 300px;
        }

        .logo {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
            text-decoration: none;
            color: white;
        }

        .logo-icon {
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, #667eea, #764ba2);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 12px;
            font-size: 18px;
            font-weight: bold;
            position: relative;
            overflow: hidden;
        }

        .logo-icon::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
            transform: rotate(45deg);
            animation: shine 3s infinite;
        }

        @keyframes shine {
            0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
            100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
        }

        .logo-text {
            font-size: 24px;
            font-weight: 700;
            background: linear-gradient(135deg, #ffffff, #e2e8f0);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .footer-description {
            color: #94a3b8;
            line-height: 1.6;
            margin-bottom: 25px;
            font-size: 14px;
        }

        .social-links {
            display: flex;
            gap: 12px;
        }

        .social-link {
            width: 44px;
            height: 44px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #94a3b8;
            text-decoration: none;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
        }

        .social-link:hover {
            background: rgba(255, 255, 255, 0.1);
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
        }

        .footer-section h3 {
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 20px;
            color: white;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            color: #94a3b8;
            text-decoration: none;
            font-size: 14px;
            transition: all 0.3s ease;
            position: relative;
        }

        .footer-links a::before {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, #667eea, #764ba2);
            transition: width 0.3s ease;
        }

        .footer-links a:hover {
            color: white;
            transform: translateX(4px);
        }

        .footer-links a:hover::before {
            width: 100%;
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding: 30px 0;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
        }

        .copyright {
            color: #64748b;
            font-size: 14px;
        }

        .footer-bottom-links {
            display: flex;
            gap: 30px;
        }

        .footer-bottom-links a {
            color: #64748b;
            text-decoration: none;
            font-size: 14px;
            transition: color 0.3s ease;
        }

        .footer-bottom-links a:hover {
            color: white;
        }

        /* Newsletter Section */
        .newsletter {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 16px;
            padding: 25px;
            backdrop-filter: blur(10px);
        }

        .newsletter h3 {
            margin-bottom: 15px;
        }

        .newsletter p {
            color: #94a3b8;
            font-size: 14px;
            margin-bottom: 20px;
            line-height: 1.5;
        }

        .newsletter-form {
            display: flex;
            gap: 8px;
        }

        .newsletter-input {
            flex: 1;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 10px;
            padding: 12px 16px;
            color: white;
            font-size: 14px;
            outline: none;
            transition: all 0.3s ease;
        }

        .newsletter-input::placeholder {
            color: #64748b;
        }

        .newsletter-input:focus {
            border-color: #667eea;
            box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
        }

        .newsletter-btn {
            background: linear-gradient(135deg, #667eea, #764ba2);
            border: none;
            border-radius: 10px;
            padding: 12px 20px;
            color: white;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .newsletter-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .footer-main {
                grid-template-columns: 1fr;
                gap: 40px;
                text-align: center;
            }

            .footer-brand {
                max-width: none;
            }

            .social-links {
                justify-content: center;
            }

            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }

            .newsletter-form {
                flex-direction: column;
            }

            .newsletter-btn {
                align-self: stretch;
            }
        }

        @media (max-width: 640px) {
            .footer-container {
                padding: 40px 15px 0;
            }

            .footer-main {
                gap: 30px;
            }

            .footer-bottom-links {
                flex-direction: column;
                gap: 15px;
            }
        }

        .portfolio-section {
            width: 100%;
            padding: 60px 0;
            position: relative;
            overflow: hidden;
            height: 500px;

        }
        .portfolio-slider {
            position: relative;
            height: 400px;
            overflow: hidden;
            mask: linear-gradient(90deg, transparent, black 20%, black 80%, transparent);
            -webkit-mask: linear-gradient(90deg, transparent, black 20%, black 80%, transparent);
        }

     .portfolio-track {
        display: flex;
        gap: 30px;
        animation: scroll-horizontal 20s linear infinite;
        will-change: transform;
        }

        .portfolio-track:hover {
            animation-play-state: paused;
        }

        @keyframes scroll-horizontal {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(-50%);
            }
        }

        .portfolio-item {
            flex-shrink: 0;
            width: 420px;
            height: 400px;
            position: relative;
            border-radius: 24px;
            overflow: hidden;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }



       .portfolio-image img {
            width: 100%;
            height: 400px;
            object-fit: cover;
            display: block;
        }

        @keyframes fade-in-out {
            0%, 100% { opacity: 0; }
            50% { opacity: 1; }
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .section-title {
                font-size: 36px;
            }

            .section-subtitle {
                font-size: 16px;
                padding: 0 20px;
            }

            .portfolio-slider {
                height: 350px;
            }

            .portfolio-item {
                width: 280px;
                height: 350px;
            }

            .portfolio-image {
                height: 200px;
                font-size: 36px;
            }

            .speed-controls {
                position: static;
                justify-content: center;
                margin-top: 20px;
            }
        }

        @media (max-width: 480px) {
            .portfolio-item {
                width: 250px;
                height: 320px;
            }

            .portfolio-image {
                height: 180px;
                font-size: 32px;
            }

            .portfolio-content {
                padding: 20px;
                height: 140px;
            }
        }



        .hero-section {
            padding: 60px 0 40px;
        }

       .badge-custom {
            background-color: #667eea;
            color: white;
            padding: 5px 10px;
            border-radius: 20px;
            font-weight: 500;
            font-size: 0.9rem;
        }

        .hero-title {
            color: white;
            font-weight: 700;
            font-size: 2.5rem;
            margin-bottom: 15px;
        }

        .hero-subtitle {
            color: rgba(255, 255, 255, 0.9);
            font-size: 1.2rem;
            font-weight: 400;
        }

        .pricing-card {
            border: none;
            border-radius: 20px;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            margin-bottom: 30px;
        }

        .pricing-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
        }

        .card-popular {
            position: relative;
            border: 3px solid #667eea !important;
            z-index: 10;
            overflow: visible; /* biar badge nggak terpotong */
        }


        .popular-badge {
            position: absolute;
            top: -30px;
            left: 50%;
            transform: translateX(-50%);
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 10px 25px;
            border-radius: 25px;
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 1px;
            z-index: 20;
            white-space: nowrap;
            box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
        }

        /* Desktop: Card popular sedikit lebih besar */
        @media (min-width: 992px) {
            .card-popular {
                transform: scale(1.05);
                margin-top: 0px;
                margin-bottom: 20px;
            }
        }

        .discount-badge {
            position: absolute;
            top: 20px;
            right: 20px;
            background: #dc3545;
            color: white;
            padding: 8px 15px;
            border-radius: 25px;
            font-size: 12px;
            font-weight: 600;
            z-index: 15;

        }

        .package-title {
            font-size: 1.5rem;
            font-weight: 700;
            color: #2c3e50;
            margin-bottom: 10px;
        }

        .package-desc {
            color: #6c757d;
            font-size: 0.95rem;
            margin-bottom: 25px;
        }

        .price-display {
            font-size: 2.2rem;
            font-weight: 700;
            color: #2c3e50;
        }

        .price-currency {
            font-size: 1rem;
            color: #6c757d;
            font-weight: 600;
        }

        .price-bonus {
            color: #667eea;
            font-size: 0.9rem;
            font-weight: 600;
            margin-top: 8px;
        }

        .btn-select {
            border-radius: 12px;
            padding: 12px 30px;
            font-weight: 600;
            font-size: 1rem;
            transition: all 0.3s ease;
            border: 2px solid #667eea;
            color: #667eea;
            background: transparent;
        }

        .btn-select:hover {
            background: #667eea;
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
        }

        .btn-select-popular {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            border: none;
            color: white;
        }

        .btn-select-popular:hover {
            background: linear-gradient(135deg, #5a67d8 0%, #6b46c1 100%);
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(102, 126, 234, 0.4);
        }

        .feature-item {
            display: flex;
            align-items: center;
            margin-bottom: 12px;
            font-size: 0.95rem;
            color: #495057;
        }

        .feature-icon {
            width: 20px;
            height: 20px;
            margin-right: 12px;
            color: #667eea;
        }

        .camera-count {
            color: #667eea;
            font-weight: 700;
        }

        .bonus-section {
            border-top: 1px solid #e9ecef;
            padding-top: 20px;
            margin-top: 25px;
        }

        .bonus-title {
            font-size: 1.1rem;
            font-weight: 600;
            color: #2c3e50;
            margin-bottom: 15px;
        }

        .bonus-item {
            display: flex;
            align-items: center;
            margin-bottom: 10px;
            font-size: 0.9rem;
            color: #495057;
        }

        .bonus-icon {
            width: 16px;
            height: 16px;
            margin-right: 10px;
            color: #28a745;
        }

        .highlight-free {
            color: #dc3545;
            font-weight: 600;
        }

        .highlight-warranty {
            color: #28a745;
            font-weight: 600;
        }

        @media (max-width: 991.98px) {
            .hero-title {
                font-size: 2rem;
            }
            .hero-subtitle {
                font-size: 1.1rem;
            }
            .card-popular {
                transform: none;
                margin-top: 0;
                margin-bottom: 30px;
            }
            .popular-badge {
                top: -15px;
                font-size: 11px;
                padding: 8px 20px;
            }
            .discount-badge {
                top: 15px;
                right: 15px;
                font-size: 11px;
                padding: 6px 12px;
            }
        }

        @media (max-width: 576px) {
            .hero-section {
                padding: 40px 0 30px;
            }
            .hero-title {
                font-size: 1.8rem;
            }
            .hero-subtitle {
                font-size: 1rem;
            }
            .price-display {
                font-size: 1.8rem;
            }
            .package-title {
                font-size: 1.3rem;
            }
            .pricing-card {
                margin-bottom: 25px;
            }
            .popular-badge {
                font-size: 10px;
                padding: 6px 15px;
                top: -12px;
            }
            .discount-badge {
                top: 12px;
                right: 12px;
                font-size: 10px;
                padding: 5px 10px;
            }
        }


        /* Modal Styles */
        .modal-content {
            border: none;
            border-radius: 15px;
            overflow: hidden;
        }

        .modal-header {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            border-bottom: none;
            padding: 20px 30px;
        }

        .modal-title {
            font-weight: 600;
            font-size: 1.25rem;
        }

        .btn-close {
            filter: brightness(0) invert(1);
            opacity: 0.8;
        }

        .btn-close:hover {
            opacity: 1;
        }

        .modal-body {
            background: #000;
        }

        .modal-footer {
            background: #f8f9fa;
            border-top: 1px solid #dee2e6;
            padding: 15px 30px;
        }

        /* Video Styles */
        #demoVideo {
            background: #000;
            outline: none;
        }

        #demoVideo::-webkit-media-controls-panel {
            background-color: rgba(0, 0, 0, 0.8);
        }

        /* Button States */
        .btn-demo.disabled {
            opacity: 0.6;
            cursor: not-allowed;
            pointer-events: none;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .modal-dialog {
                margin: 10px;
            }

            .modal-header,
            .modal-footer {
                padding: 15px 20px;
            }

            .modal-title {
                font-size: 1.1rem;
            }
        }

        /* Loading Animation */
        .video-loading {
            position: relative;
        }

        .video-loading::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 40px;
            height: 40px;
            border: 4px solid #f3f3f3;
            border-top: 4px solid #667eea;
            border-radius: 50%;
            animation: spin 1s linear infinite;
            z-index: 10;
        }

        @keyframes spin {
            0% {
                transform: translate(-50%, -50%) rotate(0deg);
            }

            100% {
                transform: translate(-50%, -50%) rotate(360deg);
            }
        }

 .btn-outline-white {
        color: #fff;
        border: 2px solid #fff;
        border-radius: 50px;
        padding: 0.75rem 1.5rem; /* samain dengan Hubungi Kami */
        font-size: 16px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 8px; /* jarak ikon & teks */
        height: 100%; /* biar tinggi ikut tombol lain */
        transition: all 0.3s ease;
    }

    .btn-outline-white:hover {
        background-color: #dc3545; /* merah */
        border-color: #dc3545;
        color: #fff;
    }

    .btn-outline-white:active {
        background-color: #bb2d3b;
        border-color: #bb2d3b;
        color: #fff;
    }
