body {
    background: #000;
    font-family: 'Poppins', sans-serif;
    /* overflow-x: hidden; */
}

.sidebar {
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.sidebar.open {
    transform: translateX(0);
}

.overlay {
    display: none;
}

.overlay.show {
    display: block;
}


.iti {
    width: 100%;
}

.iti__selected-country {
    background: transparent !important;
}

.iti__country-list {
    background: #111 !important;
    border: 1px solid #333 !important;
    color: white !important;
}

.iti__country {
    color: white !important;
}

.iti__country:hover {
    background: #222 !important;
}

.iti__dial-code {
    color: #bbb !important;
}

.iti input {
    width: 100%;
}

.form-field {
    width: 100%;
    background: #fff;
    border: 1px solid #D0D5DD;
    border-radius: 8px;
    padding: 14px 10px;
    outline: none;
}

.form-label {
    display: block;
    color: white;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px;
}

/* CUSTOM CHECKBOX STYLING */
input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    background-color: #ffffff;
    border: 1px solid #D0D5DD;
    border-radius: 6px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    /* Prevents squishing on small viewports */
    position: relative;
    transition: all 0.2s ease;
}

/* Red Checkmark Tick */
input[type="checkbox"]::after {
    content: "";
    width: 6px;
    height: 11px;
    border: solid #FF0000;
    border-width: 0 2.5px 2.5px 0;
    transform: rotate(45deg) translate(-1px, -1px);
    opacity: 0;
    transition: opacity 0.15s ease-in-out;
}

/* Show Checkmark when Checked */
input[type="checkbox"]:checked::after {
    opacity: 1;
}

/* Optional: Subtle focus outline for accessibility */
input[type="checkbox"]:focus-visible {
    outline: 2px solid #FF0000;
    outline-offset: 2px;
}



@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

html {
    scroll-behavior: smooth;
}


.portfolio-filter {
    padding: 14px 24px;
    border: 1.46px solid #fff;
    border-radius: 14px;
    font-weight: 700;
    color: white;
    transition: all .3s ease;
    background: transparent;
}

.portfolio-filter.active {
    background: #FF0000;
    border-color: #FF0000;
}

.portfolio-item img {
    width: 100%;
    height: 339px;
    object-fit: cover;
    transition: transform .4s ease;
}

.portfolio-item:hover img {
    transform: scale(1.05);
}

@media(max-width:768px) {
    .portfolio-item img {
        height: 280px;
    }
}

@media(max-width:480px) {
    .portfolio-item img {
        height: 240px;
    }
}

.portfolio-filter {
    padding: 14px 24px;
    border: 1.46px solid #fff;
    border-radius: 14px;
    font-weight: 700;
    color: white;
    transition: all .3s ease;
    background: transparent;
    cursor: pointer;
}

.portfolio-filter:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #FF0000;
}

.portfolio-filter.active {
    background: #FF0000;
    border-color: #FF0000;
}

.portfolio-item img {
    width: 100%;
    height: 339px;
    object-fit: cover;
    transition: transform .4s ease;
}

.portfolio-item:hover img {
    transform: scale(1.05);
}

@media(max-width:768px) {
    .portfolio-item img {
        height: 280px;
    }
}

@media(max-width:480px) {
    .portfolio-item img {
        height: 240px;
    }
}

@media (max-width: 767px){
    .sgrid{
        width: 100%;
        max-width: 1120px;
    }
}

