.auth-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-grow: 1;
    padding: 16px;
}

.auth-card {
    margin-top: 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 40px;
    width: 100%;
    max-width: 600px;
    transition: transform 0.3s ease;
}

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

.auth-header {
    text-align: center;
    margin-bottom: 30px;
}

.auth-title {
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 10px;
}

.auth-subtitle {
    color: #6c757d;
    font-size: 0.9rem;
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--dark-color);
}

.form-control {
    padding: 12px 15px;
    border-radius: 8px;
    border: 1px solid #ddd;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(0, 166, 81, 0.25);
}

.password-toggle {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #6c757d;
}

.password-input-group {
    position: relative;
}

.auth-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.auth-btn {
    width: 200px;
    background-color: #275e03;
}

.form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.forgot-link {
    color: black;
    text-decoration: none;
    transition: color 0.3s ease;
}

.error-msg {
    font-size: 13px;
    color: red;
    margin-top: 4px;
    display: block;
}

.delivery-mode-card {
    max-width: 600px;
    margin: 80px auto;
    padding: 40px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
}

.delivery-mode-card h2 {
    font-weight: 700;
    text-align: center;
    margin-bottom: 10px;
}

.delivery-mode-card p {
    text-align: center;
    color: #666;
    font-size: 14px;
    margin-bottom: 30px;
}

.delivery-mode-btn {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f8f9fa;
    color: #333;
    font-size: 16px;
    font-weight: 600;
    border: 1px solid #ccc;
    border-radius: 8px;
    width: 100%;
    margin-bottom: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 15px 20px;
}

.delivery-mode-btn i {
    font-size: 18px;
    background-color: #222;
    color: #fff;
    padding: 10px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.delivery-mode-btn:hover {
    background: var(--primary-color, #00a651);
    color: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.delivery-mode-btn:hover i {
    background-color: #fff;
    color: var(--primary-color);
}

.selected {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
}

.selected i {
    background-color: #fff;
    color: var(--primary-color);
}

.continue-btn {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    margin-top: 20px;
    width: 100%;
    transition: all 0.3s ease;
}

.continue-btn:hover {
    background-color: #008740;
    transform: translateY(-2px);
}

.continue-btn:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}

.address-card {
    background-color: #fff;
    color: #000000;
    border-radius: 12px;
    padding: 15px 20px;
    min-width: 220px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s;
    border: 1px solid #ddd;
}

.address-card.active {
    background-color: #2e6d1f;
    color: #fff;
}

.address-card .address-info {
    font-size: 14px;
}

.address-card .address-info strong {
    font-size: 16px;
}

.service-image-wrapper {
    width: 100%;
    max-width: 800px;
    /* Maximum width of image */
    margin: 0 auto;
    /* Center image */
}

.service-image {
    width: 100%;
    height: auto;
    /* Maintain aspect ratio */
    object-fit: cover;
    /* Crop image if needed */
    max-height: 500px;
    /* Optional: limit height */
}

/* Optional: adjust for smaller screens */
@media (max-width: 768px) {
    .service-image {
        max-height: 300px;
    }

    .dropdown-menu-end[data-bs-popper] {
        right: 0;
        left: 10px !important;
    }

    /* .navbar-custom .nav-link {
        text-align: end;
    } */
    .about-us {
        padding: 10px 0 !important;
    }

    .currency-table {
        padding: 10px 0 !important;
    }

}

#loaderOverlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

#loaderOverlay .loader-wrapper img {
    width: 80px;
}



.navbar-custom {
    background-color: var(--dark-color);
    padding: 15px 0;
    transition: all 0.3s ease;
}

.navbar-custom .navbar-brand {
    color: var(--light-color);
    font-weight: 700;
    font-style: italic;
}

.navbar-brand:hover {
    color: #fff !important;
    transform: scale(1.05);
}

.navbar-custom .nav-link {
    color: var(--light-color);
    font-weight: 500;
    margin: 0 10px;
    transition: color 0.3s ease;
}

.navbar-custom .nav-link:hover {
    color: var(--primary-color);
}

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

.btn-success {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    transition: all 0.3s ease;
}

.btn-success:hover {
    background-color: #008740;
    border-color: #008740;
    transform: translateY(-2px);
}

.currency-heading {
    font-weight: 800;
    font-style: Black;
    font-size: 50px;
    line-height: 54.1px;
    letter-spacing: 0%;
    vertical-align: middle;

}

.hero-content {
    max-width: 700px;
}

.hero-buttons .btn {
    margin-right: 15px;
    padding: 12px 30px;
    font-weight: 600;
    width: 100%;
    transition: all 0.3s ease;
}

.btn-light {
    background-color: var(--light-color);
    border-color: var(--light-color);
}

.btn-outline-light:hover {
    background-color: var(--light-color);
    color: var(--dark-color);
    transform: translateY(-2px);
}

/* Currency Icons Circle */
.currency-circle {
    position: absolute;
    right: 50px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    animation: float 6s ease-in-out infinite;
}

.currency-icon {
    background: white;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    font-weight: bold;
    font-size: 18px;
    color: var(--dark-color);
    transition: all 0.3s ease;
}

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

/* Service Section */
.services {
    background: url('../images/Grid\ 1.png') no-repeat center center/cover;
    padding: 60px 0;
}

.our-services {
    height: 200px;
    width: 100%;
    max-width: 100%;
}


/* Currency Table */
.currency-table {
    background: url('../images/Grid\ 1.png') no-repeat center center/cover;
    padding: 60px 0;
}

.table {
    --bs-table-bg: transparent;
    background-color: transparent !important;
}

.currency-exchange {
    height: 250px;
    width: 100%;
    max-width: 100%;
}

.currency-table .table {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.currency-table thead {
    color: white;
}

.currency-table th {
    padding: 15px;
    font-weight: 600;
}

.currency-table td {
    padding: 15px;
    vertical-align: middle;
    transition: background-color 0.3s ease;
}

.currency-table tr:hover td {
    background-color: rgba(0, 166, 81, 0.05);
}

button.btn.btn-buy {
    background-color: #000000;
    color: white;
    border: none;
    padding: 5px 20px;
    border-radius: 4px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.location-card img {
    filter: brightness(60%);
    transition: 0.3s;
    min-height: 315px;
}

button.btn.btn-buy:hover {
    background-color: var(--primary-color);
    transform: scale(1.05);
}

.positive-change {
    color: #28a745;
    font-weight: 500;
}

/* about-us */
.about-us {
    margin-bottom: 20px;
    margin-top: 10px;
    padding: 30px 0;
}

.about-us a {
    color: #6181de;
    font-size: 16px;
    text-decoration: none;
    font-weight: 500;
}

/* Footer */
footer {
    color: black;
    padding: 60px 0 30px;
    background: #f3f3f3;
}

.footer-heading {
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 1.2rem;
    text-align: justify;
}

.footer-links {
    list-style: none;
    padding: 0;
    text-align: start;
}

.footer-links li {
    margin-bottom: 10px;
    transition: transform 0.3s ease;
}

.footer-links li:hover {
    transform: translateX(5px);
}

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

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

.copyright {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #444;
    text-align: center;
    color: #ccc;
}

/* about us */
button.btn.btn-view-more.rounded-pill {
    background-color: #000000;
    color: white;
    border: none;
    padding: 8px 40px;
    font-weight: 500;
    transition: all 0.3s ease;
}

a.btn.btn-view-more.rounded-pill {
    background-color: #000000;
    color: white;
    border: none;
    padding: 8px 40px;
    font-weight: 500;
    transition: all 0.3s ease;
}


button.btn.btn-view-more.rounded-pill:hover {
    background-color: var(--primary-color);
    transform: translateY(-2px);
}

a.btn.btn-services {
    background-color: #000000;
    color: white;
    border: none;
    padding: 8px 40px;
    border-radius: 4px;
    font-weight: 500;
    width: 100%;
    transition: all 0.3s ease;
}

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

/* Animations */
@keyframes float {
    0% {
        transform: translateY(-50%) translateY(0px);
    }

    50% {
        transform: translateY(-50%) translateY(-15px);
    }

    100% {
        transform: translateY(-50%) translateY(0px);
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition:
        opacity 0.6s ease,
        transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.form-select-sm {
    max-width: 150px;
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
    .currency-heading {
        font-size: 50px;
        line-height: 50px;
    }
}

@media (max-width: 992px) {
    .currency-circle {
        display: none;
    }

    .hero {
        text-align: center;
        height: auto;
        padding: 80px 0;
    }

    .hero-content {
        margin: 0 auto;
    }

    .currency-heading {
        font-size: 50px;
        line-height: 50px;
    }

    /* Stack columns on mobile */
    .about-us .row {
        flex-direction: column;
    }

    .about-us .col {
        width: 100%;
        margin-bottom: 30px;
    }

    /* Adjust footer columns */
    footer .row {
        text-align: center;
    }

    /* Adjust table for mobile */
    .currency-table .table-responsive {
        overflow-x: auto;
    }
}

@media (max-width: 768px) {
    .currency-heading {
        font-size: 40px;
        line-height: 40px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .hero-buttons .btn {
        margin-right: 0;
        width: 100%;
        max-width: 300px;
    }

    .our-services,
    .currency-exchange {
        height: auto;
        max-width: 90%;
    }

    /* Adjust footer copyright */
    .copyright {
        flex-direction: column;
        text-align: center;
    }

    .copyright .d-flex {
        margin-top: 15px;
        justify-content: center;
        flex-wrap: wrap;
    }

    .copyright .me-3 {
        margin: 5px;
    }
}

.--bs-table-bg {
    background-color: none;
}

.navbar-toggler {
    padding: var(--bs-navbar-toggler-padding-y) var(--bs-navbar-toggler-padding-x);
    font-size: var(--bs-navbar-toggler-font-size);
    line-height: 1.3 !important;
    color: var(--bs-navbar-color);
    background-color: transparent;
    border: var(--bs-border-width) solid #fff !important;
    border-radius: var(--bs-navbar-toggler-border-radius);
    transition: var(--bs-navbar-toggler-transition);
}

@media (max-width: 576px) {
    .navbar-brand {
        font-size: 12px !important;
    }

    .form-select-sm {
        max-width: 100px;
    }

    .currency-heading {
        font-size: 32px;
        line-height: 32px;
    }

    .hero-buttons .btn {
        padding: 10px 20px;
    }


    .currency-table th,
    .currency-table td {
        padding: 10px;
        font-size: 0.9rem;
    }

    button.btn.btn-buy {
        padding: 2px 20px;
    }

    .footer-heading {
        font-size: 1rem;
    }
}

.main-sections {
    padding: 60px 0;
    background: url('../images/Grid\ 1.png') no-repeat center center/cover;
}

.aboutus-heading {
    font-weight: 900;
    font-style: Black;
    font-size: 50px;
    line-height: 50px;
    letter-spacing: 0%;
    vertical-align: middle;
}

@media (max-width: 767px) {
    .aboutus-heading {
        font-weight: 800;
        font-style: normal;
        font-size: 25px;
        line-height: 35px;
        letter-spacing: 0;
        vertical-align: middle;
    }
}

.hero {
    position: relative;
    background: url('../images/aboutuspage.png') no-repeat center center/cover;
    height: 50vh;
    color: white;
    display: flex;
    align-items: center;
}


.navbar-nav .nav-item.active>a.nav-link {
    color: #28a745 !important;
    font-weight: bold;
}




.profile-avatar img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #ddd;
}

.profile-heading {
    font-weight: 900;
    font-size: 50px;
    line-height: 50px;
    letter-spacing: 0%;
    vertical-align: middle;
}

/* Profile Section */
.profile-section {
    background: url('../images/Grid\ 1.png') no-repeat center center/cover;
    padding: 60px 0;
    min-height: 60vh;
}

/* Profile Card */
.profile-card {
    background-color: white;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Profile Header */
.profile-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.profile-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    /* background-color: var(--primary-color); */
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 30px;
    font-weight: bold;
    margin: 0 auto 15px;
}

@media (max-width:768px) {
    .profile-avatar {
        margin: 0px 40px 24px;
    }
}

.profile-greeting {
    font-size: 18px;
    color: #666;
    margin-bottom: 5px;
}

.profile-name {
    font-size: 28px;
    font-weight: 700;
    color: var(--dark-color);
    margin: 0;
}

/* Profile Details */
.profile-details {
    margin-bottom: 30px;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid #f0f0f0;
}

.detail-row:last-child {
    border-bottom: none;
}

.detail-label {
    font-weight: 600;
    color: var(--dark-color);
    width: 40%;
}

.detail-value {
    color: #555;
    width: 60%;
    text-align: right;
}

/* Action Buttons */
.profile-actions {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

.btn-edit {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 10px 25px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-edit:hover {
    background-color: #1a4502;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(39, 94, 3, 0.3);
}

.btn-change-password {
    background-color: #6c757d;
    color: white;
    border: none;
    padding: 10px 25px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-change-password:hover {
    background-color: #5a6268;
    transform: translateY(-2px);
}


/* Responsive Adjustments */
@media (max-width: 992px) {
    .profile-heading {
        font-size: 40px;
        line-height: 40px;
    }

    .profile-card {
        padding: 25px 20px;
    }
}

@media (max-width: 768px) {
    .profile-heading {
        font-size: 32px;
        line-height: 32px;
    }

    .hero {
        height: 60vh;
    }

    .profile-header {
        flex-direction: column;
        text-align: center;
    }

    .profile-avatar {
        margin-right: 0;
        margin-bottom: 15px;
    }
}

@media (max-width: 576px) {
    .profile-heading {
        font-size: 28px;
        line-height: 28px;
    }

    .hero {
        height: 48vh;
    }

    .profile-card {
        padding: 20px 15px;
    }
}


.billingaddress-card {
    background-color: #fff;
    color: #000000;
    border-radius: 12px;
    padding: 15px 20px;
    min-width: 220px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s;
    border: 1px solid #ddd;
}

.billingaddress-card.active {
    background-color: #2e6d1f;
    color: #fff;
}

.billingaddress-card .address-info {
    font-size: 14px;
}

.billingaddress-card .address-info strong {
    font-size: 16px;
}

.profile-info h3 {
    margin: 0;
    font-weight: 700;
    color: var(--dark-color);
}

.profile-info p {
    margin: 5px 0 0;
    color: #666;
    font-size: 14px;
}

/* Form Styles */
.form-group {
    margin-bottom: 20px;
}

.form-label {
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--dark-color);
    display: block;
}

.form-control {
    padding: 12px 15px;
    border-radius: 8px;
    border: 1px solid #ddd;
    transition: all 0.3s ease;
    width: 100%;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(0, 166, 81, 0.25);
}

.select-control {
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 0.5rem center;
    background-repeat: no-repeat;
    background-size: 1.5em 1.5em;
    padding-right: 2.5rem;
}

.password-input-group {
    position: relative;
}

.password-toggle {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #6c757d;
}

.password-requirements {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 20px;
    font-size: 14px;
}

.password-requirements h6 {
    margin-bottom: 10px;
    color: var(--dark-color);
}

.requirement {
    display: flex;
    align-items: center;
    margin-bottom: 5px;
}

.requirement i {
    margin-right: 8px;
    font-size: 12px;
}

.requirement.valid {
    color: var(--primary-color);
}

.requirement.invalid {
    color: #6c757d;
}

/* Button Styles */


.btn-reset {
    background-color: #6c757d;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-right: 10px;
}

.btn-reset:hover {
    background-color: #5a6268;
    transform: translateY(-2px);
}

.forgot-link {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.forgot-link:hover {
    text-decoration: underline;
}

.section-title {
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-color);
    display: inline-block;
}

.profile-avatar-wrapper {
    position: relative;
    display: inline-block;
    width: 100%;
    max-width: 160px;
}

.profile-avatar-wrapper img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 50%;
}

span.edit-icon {
    position: absolute;
    bottom: 30%;
    right: 20%;
    color: white;
    background: grey;
    border-radius: 50%;
    width: 20%;
    height: 30%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #000;
    cursor: pointer;
    font-size: 0.8rem;
    transition: background 0.3s;
    padding: 5px;
}

span.edit-icon:hover {
    background: #000;
}









    .locations-section {
        background: #f4f6fb;
    }

    .locations-section h2 {
      font-size: 48px;
    }

    .location-card {
        background: #ffffff;
        border-radius: 14px;
        overflow: hidden;
        box-shadow: 0 15px 40px rgba(0, 0, 0, .08);
        transition: .4s ease;
        border: none;
    }

    .location-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 25px 60px rgba(0, 0, 0, .12);
    }

    .location-card img {
        height: 240px;
        width: 100%;
        object-fit: cover;
        transition: .5s ease;
    }

    .location-card:hover img {
        transform: scale(1.05);
    }

    /* Content */
    .location-content {
        padding: 28px 22px;
        text-align: center;
    }

    /* City */
    .location-content h4 {
        font-family: "Playfair Display", serif;
        font-size: 24px;
        font-weight: 600;
        color: #535b58;
        margin-bottom: 6px;
    }

    /* Mall name */
    .location-content p {
        font-size: 16px;
        letter-spacing: .5px;
        text-transform: uppercase;
        color: #666;
        margin-bottom: 22px;
    }

    /* Button */
    .location-btn {
        display: inline-block;
        padding: 12px 34px;
        background: linear-gradient(135deg, #2b2b2a, #6e6b5f);
        color: #fff;
        font-weight: 700;
        font-size: 13px;
        letter-spacing: 1px;
        border-radius: 50px;
        border: none;
        text-decoration: none;
        transition: .4s ease;
    }

    .location-btn:hover {
        background: linear-gradient(135deg, #313130, #000);
        color: #fff;
        box-shadow: 0 10px 25px rgba(0, 0, 0, .15);
    }




    /* ================================
   SERVICE CARDS
================================ */
    .services-cards {
        padding: 100px 0;
        background: #f2f2f2;
    }

    .services-cards a {
        text-decoration: none !important;
    }

      .services-grid {
        margin-top: 50px;
    }

    /* Full card clickable */
    .service-card-link {
        text-decoration: none;
        display: block;
        height: 100%;
    }

    /* Card */
    .service-card {
        height: 100%;
        background: #3e423f;
        border-radius: 16px;
        overflow: hidden;
        transition: 0.4s ease;
        border: 1px solid #3e423f;
    }

    /* Image */
    .service-card-img {
        height: 150px;
        overflow: hidden;
    }

    .service-card-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: 0.6s ease;
    }

    /* Body */
    .service-card-body {
        padding: 25px 25px 30px;
        color: #fff;
    }

    .service-card-body h4 {
        font-size: 20px;
        font-weight: 600;
        margin-bottom: 12px;
    }

    .service-card-body p {
        font-size: 15px;
        line-height: 1.7;
        color: #bcbcbc;
    }

    /* Hover */
    .service-card-link:hover .service-card {
        transform: translateY(-8px);
        box-shadow: 0 30px 50px rgba(0, 0, 0, 0.6);
    }

    .service-card-link:hover img {
        transform: scale(1.1);
    }

    /* Mobile */
    @media (max-width: 768px) {
        .service-card-img {
            height: 180px;
        }
    }