@charset "utf-8";

/* Card Styling */
.rr{
	/*background: rgba(115,88,88,0.64);*/
	background-image:url(../../include/image/DSC_3205.JPG); /* your image */
    background-size: cover;        /* full screen cover */
    background-position: center;   /* center image */
    background-repeat: no-repeat;
    background-attachment: fixed;  /* 🔥 fixed on scroll */
    
    position: relative;
}
.rr::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5); /* adjust darkness */
}

.rr .row{
    position: relative;
    z-index: 1;
}
.action-card {
    height: 260px;
    border-radius: 6px;
    text-align: center;
    padding-top: 30px;
    margin: 10px;

    background: rgba(255, 255, 255, 0.2); /* 🔥 transparent */
    backdrop-filter: blur(1px);           /* glass effect */
    -webkit-backdrop-filter: blur(1px);

    border: 1px solid rgba(255,255,255,0.3);
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
	transition: all 0.3s ease;
}
.action-card:hover {
    background: rgba(59,135,127,0.9);
    transform: translateY(-10px) scale(1.03); /* lift + zoom */
    box-shadow: 0 12px 30px rgba(0,0,0,0.5);
}

/* Background colors */
.bg-blue { background: #78aeca; }
.bg-pink { background: #cc7f97; }
.bg-beige { background: #e2c296; }

/* Circle Icon */
.icon-circle {
    width: 150px;
    height: 150px;
    background:#061E6A;
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0 0 35px rgba(209,255,5,1.00);
}

/* Icon size */
.icon-circle i {
    font-size: 70px;
    color: #ffffff;
	
}

/* Button style */
.action-btn {
    background: #062b63;
    color: white;
    font-weight: 600;
    padding: 8px 20px;
    border: none;
    border-radius: 2px;
    text-transform: uppercase;
}

.action-btn:hover {
    background: #041d45;
}


