html, body {
    /* font-family: Arial, sans-serif; */
    /* font-family:'Roboto', sans-serif; */
    /* font-family: "Segoe UI", Arial, sans-serif; */
    font-family: "Poppins", sans-serif;
    margin: 0;
    padding: 0;
}

/* -------------- */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(rgb(255, 210, 200), rgb(255, 211, 223));
    z-index: -2;
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('Base_Logo_01.png');
    background-size: 40%; /* CONTROL: adjust size (20%, 50%, 80%, etc.) */
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.15; /* CONTROL: adjust dimming (0.1 to 1) */
    z-index: -1;
    pointer-events: none;

    border-radius: 50%; /* CONTROL: 50% = circle, 20px = rounded corners */
    width: 600px; /* match background-size */
    height: 600px; /* match background-size */
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background-size: contain;

    background-size: 100%; /* CONTROL: zoom level (100%=normal, 200%=2x zoom) */
    background-position: 50% 30%; /* CONTROL: X% Y% to focus different areas */
}
/* -------------- */

header {
    background-color: radial-gradient(rgb(255, 210, 200), rgb(255, 211, 223));
    padding: 20px 20%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header img.logo {
    height: 100px;
    border-radius: 100%;
}

nav ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

nav li {
    display: inline;
}

nav a {
    text-decoration: none;
    color: #fff;
}

.content {
    padding: 10px 22% 40px 22%;
    min-height: calc(100vh - 100px);

    margin-bottom: 100px;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.product {
    background-color: transparent;
    border: none;
    padding: 0;
    text-align: center;
    width: 100%;
    max-width: 330px;
    height: 295px;
    margin: 0 auto;
    perspective: 1000px;
}

.product-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.6s;
    transform-style: preserve-3d;
}

.product:hover .product-inner {
    transform: rotateY(180deg);
}

.product-front, .product-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    background-color: whitesmoke;
    border: 1px solid #ddd;
    padding: 10px;
    box-shadow: 0 8px 12px 2px rgba(0, 0, 0, 0.1);
    border-radius: 25px;
    box-sizing: border-box;
}

.product-front {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.product-front img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 15px;
    flex-shrink: 0;
}

.product-back {
    transform: rotateY(180deg);
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    position: relative;
}

.product-back::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgb(255, 210, 200);
    border-radius: 25px;
    z-index: 0; 
}

.product-back p {
    position: relative;
    z-index: 1;
    padding: 20px;
    color:#b34a5c;
    font-weight: 600;
}

.product-back ul {
    position: relative;
    z-index: 2;
    text-align: left;
    padding-left: 20px;
    color: #000;
    list-style-type: disc;
}

.product-back ul li {
    position: relative;
     color: #b34a5c;;
    z-index: 1;
}

footer {
    background-color: #b34a5c;

    padding: 25px 10px 10px 10px;
    text-align: center;
    color: #fff;

    position: fixed;
    bottom: 0;
    width: 100%;
}

footer .decorative-bar {
    width: 50%; /* CONTROL: bar width */
    height: 2px; /* CONTROL: bar thickness */
    background: #fff;/* matches body gradient */
    margin: 0 auto 10px auto;
    border-radius: 2px; /* CONTROL: roundness */
}

.product a, .product a p {
    text-decoration: none;
    color: inherit;
}

.product-link {
    text-decoration: none;
    color: inherit;
    display: block;
    cursor: pointer;
}

.product-link .product p {
    text-decoration: none;
    color: #b34a5c
}

.about {
    padding: 15px 20% 50px 20%; 
    line-height: 1.8;
}

.hover-scale {
    transition: font-size 0.4s ease, font-weight 0.4s ease;
    color: #b34a5c
}

.hover-scale:hover {
    font-size: 1.2em;
    font-weight: bold;
}

.frame {
    width: 150px;   /* final size you want */
    height: 150px;  /* final size you want */
    overflow: hidden;
    position: relative;
    border-radius: 50%;
}

.frame img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* keeps filling the frame */
    transform: scale(1.20); /* zoom level */
    transform-origin: 48% 40%; /* where the zoom focuses */
}



.info-form {
    max-width: 600px;
    margin: 40px auto;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    box-sizing: border-box;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group textarea {
    resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #4a90a4;
    box-shadow: 0 5px 12px rgba(74, 144, 164, 0.2);
}

.submit-btn {
    background-color: #4a90a4;
    color: white;
    padding: 12px 40px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-btn:hover {
    background-color: #3a7080;
}

.alert {
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 8px;
    font-weight: 500;
}

.alert-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.g-recaptcha {
    margin: 20px 0;
}








h1 {
    margin-top: -30px;
    text-align: center;
}




table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    border-radius: 8px;
    overflow: hidden;
}

th, td {
    padding: 12px 8px;
    text-align: left;
    border-bottom: 1px solid #000000;
}

th {
    position: sticky;
    top: 0;
    z-index: 10;
    font-size: 15px;
}

td {
    font-size: 13px;
}

.request-row {
    cursor: pointer;
}

.short-cell {
    max-width: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
