.video-slide video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.video-slide .overlay {
  background: rgba(0, 0, 0, 0.3);
}

.video-slide {
  position: relative;
  height: 100%;
  overflow: hidden;
}

.video-slide video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-slide .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4); /* dark overlay for readability */
  z-index: 1;
}

.video-slide .slider-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2; /* ensures text appears above video and overlay */
  color: black;
}

.video-slide h2,
.video-slide h3 {
  color: black;
}

.home-product-button {
    border-radius: 0% !important;
    border: 2px solid #1E2B40 !important; 
    width: 110px !important;
    background-color: #fff !important;
    color: #1E2B40 !important;
}

.home-complete-project {
    border: 3px solid #000000; 
    background-color: rgba(255, 255, 255, 0.2); 
    backdrop-filter: blur(2px); 
    border-radius: 15px;
}

.contact-card {
    background-color: #fff;
    border-radius: 15px;
    padding: 30px;
    text-align: left;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    height: 100%; /* Ensure cards are same height */
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.contact-card .icon-wrapper {
    width: 60px;
    height: 60px;
    background-color: #e6f0e9; /* Light green for icon background */
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.contact-card .icon-wrapper svg {
    color: #4CAF50; /* Green icon color */
    font-size: 24px;
}

.contact-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.contact-card p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 0;
}

.map-responsive {
  position: relative;
  padding-bottom: 75%; /* Adjust height ratio (4:3 aspect) */
  height: 0;
  overflow: hidden;
  border-radius: 20px;
}

.map-responsive iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 20px;
}

.fixed-top {
    transition: 0.5s;
    background: var(--bs-white);
    border: 0;
}
.fixed-top {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1030;
}

.product-border {
  box-shadow: 0 10px 20px rgba(0,0,0,0.1) !important;
}


 /* This style block is placed here to keep the hover effects within the section's definition */
        .team-card-wrapper {
            position: relative;
            overflow: hidden; /* Important to clip content that slides out/in */
        }
        .team-card-image-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.4); /* Dark overlay */
            opacity: 0;
            transition: opacity 0.3s ease;
            display: flex; /* For centering content */
            justify-content: center;
            align-items: center;
            z-index: 2; /* Above image, below social icons if they are separate */
        }
        .team-card-wrapper:hover .team-card-image-overlay {
            opacity: 1;
        }

        .team-social-icons {
            position: absolute;
            top: 50%;
            right: 0px; /* Start off-screen */
            transform: translateY(-50%);
            z-index: 3;
            opacity: 0; /* Hidden by default */
            transition: right 0.3s ease, opacity 0.3s ease;
            display: flex;
            flex-direction: column;
            gap: 10px;
            padding-right: 15px; /* Space from edge */
        }
        .team-card-wrapper:hover .team-social-icons {
            right: 15px; /* Slide in */
            opacity: 1; /* Fade in */
        }
        .team-social-icon-btn {
            display: flex;
            justify-content: center;
            align-items: center;
            width: 35px;
            height: 35px;
            border-radius: 50%;
            background-color: #fff;
            color: #333;
            font-size: 1.1em;
            text-decoration: none;
            box-shadow: 0 2px 5px rgba(0,0,0,0.2);
            transition: background-color 0.2s, color 0.2s;
        }
        .team-social-icon-btn:hover {
            background-color: #3b5998; /* Example: Facebook blue */
            color: #fff;
        }
        /* Specific social icon colors */
        .team-social-icon-btn.fb:hover { background-color: #3b5998; }
        .team-social-icon-btn.tw:hover { background-color: #00acee; }
        .team-social-icon-btn.ig:hover { background-color: #C13584; }
        .team-social-icon-btn.lin:hover { background-color: #0077B5; }

        /* General styles for the caption block */
        .team-caption-block {
            background-color: #222; /* Dark background */
            color: white;
            padding: 15px 10px;
            text-align: center;
            min-height: 80px; /* Ensure consistent height */
        }
        .team-caption-block h4 {
            color: #fff;
            margin-bottom: 5px;
            font-size: 1.3em;
            font-weight: bold;
        }
        .team-caption-block p {
            color: #bbb;
            font-size: 0.9em;
            margin-bottom: 0;
        }
        /* Specific color for the second card */
        .team-card-alt .team-caption-block {
            background-color: #D2A85B; /* Golden color */
        }
        .team-card-alt .team-caption-block p {
            color: #fff;
        }






        /* Product Card Specific Styles */
.product-card-wrapper {
position: relative;
overflow: hidden;
border-radius: 10px;
box-shadow: 0 10px 20px rgba(0,0,0,0.1);
background-color: #fff;
transition: transform 0.3s ease-in-out;
}
code
Code
.product-card-wrapper:hover {
        transform: translateY(-5px); /* Slight lift effect on hover */
    }

    .product-image-container {
        position: relative;
        overflow: hidden;
    }

    .product-image-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.4); /* Dark overlay */
        opacity: 0;
        transition: opacity 0.3s ease;
        z-index: 2;
        display: flex;
        flex-direction: column; /* To stack buttons */
        justify-content: center;
        align-items: center;
        gap: 10px;
    }

    .product-card-wrapper:hover .product-image-overlay {
        opacity: 1;
    }

    .product-action-btn {
        display: inline-block;
        padding: 10px 20px;
        border-radius: 5px;
        text-decoration: none;
        font-weight: bold;
        transition: background-color 0.2s, color 0.2s;
        opacity: 0; /* Hidden by default */
        transform: translateY(20px); /* Start slightly below */
        transition: opacity 0.3s ease, transform 0.3s ease;
    }

    .product-card-wrapper:hover .product-action-btn {
        opacity: 1;
        transform: translateY(0); /* Slide up into view */
    }
    
    /* Delay for the second button */
    .product-card-wrapper:hover .product-action-btn:nth-child(2) {
        transition-delay: 0.1s;
    }

    .product-action-btn.view-details {
        background-color: #D2A85B;
        color: #fff;
    }

    .product-action-btn.view-details:hover {
        background-color: #c09a50;
    }

    .product-action-btn.add-to-cart {
        background-color: #222;
        color: #fff;
    }

    .product-action-btn.add-to-cart:hover {
        background-color: #000;
    }

    .product-caption-block {
        padding: 20px 15px;
        text-align: center;
        min-height: 120px; /* Ensure consistent height */
        display: flex;
        flex-direction: column;
        justify-content: space-between; /* Pushes price to bottom if space allows */
    }

    .product-caption-block h4 {
        color: #333;
        margin-bottom: 5px;
        font-size: 1.4em;
        font-weight: bold;
    }

    .product-caption-block p.category {
        color: #888;
        font-size: 0.9em;
        margin-bottom: 10px;
    }

    .product-caption-block p.price {
        color: #D2A85B;
        font-size: 1.3em;
        font-weight: bold;
        margin-top: 15px;
    }


    /* Styles for the counter cards */
        .counter-card {
            background-color: #D2A85B; /* Golden color from your design */
            border-radius: 10px;
            padding: 30px 20px;
            text-align: center;
            color: #fff;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
            height: 100%; /* Ensure consistent height */
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .counter-card:hover {
            transform: translateY(-5px); /* Lift effect on hover */
            box-shadow: 0 10px 25px rgba(0,0,0,0.2);
        }

        .counter-card i {
            font-size: 3.5em; /* Icon size */
            margin-bottom: 15px;
            color: rgba(255, 255, 255, 0.9);
        }

        .counter-card .count-number {
            font-size: 3.2em; /* Number size */
            font-weight: bold;
            margin-bottom: 10px;
            line-height: 1;
        }

        .counter-card p {
            font-size: 1.1em; /* Text below number */
            margin-bottom: 0;
            text-transform: uppercase;
            letter-spacing: 1px;
            opacity: 0.9;
        }

        /* Styles for the video player */
        .counter-video-wrapper {
            position: relative;
            padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
            height: 0;
            overflow: hidden;
            border-radius: 10px;
            box-shadow: 0 10px 25px rgba(0,0,0,0.15);
        }

        .counter-video-wrapper img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            border-radius: 10px; /* Match wrapper border-radius */
        }

        /* Responsive adjustments */
        @media (max-width: 767.98px) {
            .counter-card {
                margin-bottom: 20px; /* Add space between cards on small screens */
            }
        }