/* Hero Parallax Background */
.custom-hero-bg {
    background-image: url('https://images.unsplash.com/photo-1745270019379-ddd8da719f55?ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxzZWFyY2h8MTUyfHxtZW4lMjBzdWl0c3xlbnwwfDB8MHx8fDI%3D&?auto=format&fit=crop&w=1400&q=80');
    /* replace with your image/video later */
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
    filter: brightness(0.6);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 30%;
    z-index: 1;
}

.custom-hero .overlay {
    background: rgba(0, 0, 0, 0.3);
    z-index: 2;
}

#custom-hero h1,
#custom-hero p {
    color: #fff;
}

#custom-hero .btn-primary {
    background-color: #ffd700;
    border-color: #ffd700;
    color: #111;
    transition: transform 0.3s;
}

#custom-hero .btn-primary:hover {
    transform: scale(1.05);
}




@media (max-width: 575px) {

  /* Heading */
  #custom h1 {
    font-size: 10px !important;
  }

  /* Sub text */
  #custom p {
    font-size: 8px !important;
    margin-bottom: 10px !important;
  }

  /* Button */
  #custom a.btn {
    font-size: 8px !important;
    padding: 6px 14px !important;
  }
}







/* Step Cards Parallax Background */
.custom-order-parallax-bg {
    background-image: url('https://images.unsplash.com/photo-1481238613160-f39d2bd78dea?ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxzZWFyY2h8MTYzfHxtZW4lMjBzdWl0c3xlbnwwfDB8MHx8fDI%3D&?auto=format&fit=crop&w=1400&q=80');
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
    filter: brightness(0.6);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* Form Parallax Background */
.custom-form-parallax-bg {
    background-image: url('https://images.unsplash.com/photo-1524048422800-efeedc940167?ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxzZWFyY2h8MTU5fHxtZW4lMjBzdWl0c3xlbnwwfDB8MHx8fDI%3D&?auto=format&fit=crop&w=1400&q=80');
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
    filter: brightness(0.6);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* Overlay */
.custom-order-cards .overlay,
#custom-order-form-form .overlay {
    background: rgba(0, 0, 0, 0.5);
    z-index: 2;
}

/* Card Hover Effect */
.hover-scale {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-scale:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

/* Form Inputs */
#customOrderForm input,
#customOrderForm textarea,
#customOrderForm select {
    border-radius: 0.5rem;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: black;
    transition: all 0.3s ease;
}

#customOrderForm input:focus,
#customOrderForm textarea:focus,
#customOrderForm select:focus {
    border-color: #ffd700;
    outline: none;
    box-shadow: 0 0 8px rgba(255, 215, 0, 0.6);
}

/* Form Button */
#customOrderForm .btn-primary {
    background-color: #ffd700;
    border-color: #ffd700;
    color: #111;
    transition: transform 0.3s ease;
}

#customOrderForm .btn-primary:hover {
    transform: scale(1.05);
}

/* Responsive */
@media (max-width: 768px) {
    #customOrderForm .row {
        flex-direction: column;
    }
}







/* Quick Connect Floating Icons */
#quick-connect {
    position: fixed;
    bottom: 2rem;
    /* Distance from bottom */
    right: 1rem;
    /* Distance from right */
    transform: none;
    /* Remove middle-centering transform */
    display: flex;
    flex-direction: column;
    gap: 1rem;
    z-index: 9999;
}

/* Icon styling */
#quick-connect .qc-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: transform 0.3s, background 0.3s;
    animation: bounce 2s infinite;
}

/* Individual colors */
#quick-connect .whatsapp {
    background-color: #25D366;
}

#quick-connect .call {
    background-color: #0d6efd;
}

#quick-connect .email {
    background-color: #17a2b8;
}

/* Hover effect */
#quick-connect .qc-icon:hover {
    transform: scale(1.2);
    filter: brightness(1.2);
}

/* Bounce animation */
@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Responsive adjustment */
@media (max-width: 768px) {
    #quick-connect {
        right: 0.5rem;
        gap: 0.7rem;
    }

    #quick-connect .qc-icon {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
}







/* Parallax Background */
.policies-parallax-bg {
    background-image: url('https://images.unsplash.com/photo-1720833122301-40a663994d61?ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxzZWFyY2h8MTU4fHxtZW4lMjBzdWl0c3xlbnwwfDB8MHx8fDI%3D&?auto=format&fit=crop&w=1400&q=80');
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
    filter: brightness(0.5);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* Overlay */
#policies .overlay {
    background: rgba(0, 0, 0, 0.4);
    z-index: 2;
}

/* Card Hover Effect */
#policies .hover-scale {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#policies .hover-scale:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

/* Icons */
#policies i {
    color: #ffd700;
    transition: transform 0.3s ease;
}

#policies .hover-scale:hover i {
    transform: scale(1.2);
}

/* Card text color */
#policies .card {
    color: #fff;
    background-color: rgba(0, 0, 0, 0.6);
    /* semi-transparent for readability */
}