:root {
    --primary-color: #2D5035;
    --accent-color: #9E4B25;
    --secondary-color: #4C7B5D;
    --text-color: #2F3E2C;
    --white-color: #FAF7EC;
}

html,
body {
    overflow-x: hidden;
}


.section-headinggg {
    font-size: 2.3rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--secondary-color);
    position: relative;
    display: inline-block;
    padding-bottom: 0.5rem;
    margin-bottom: 2rem;
    /* letter-spacing: 1px; */
    font-family: 'Poppins', sans-serif;
}

.section-headinggg::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    height: 4px;
    width: 80px;
    background: var(--primary);
    border-radius: 2px;
}

@media(max-width-600px) {
    .section-headinggg {
        font-size: 1.5rem !important;
        font-weight: 500;
        font-family: 'Poppins', sans-serif;
    }

}

/* BUTTON */
.btn-theme {
    display: inline-block;
    padding: 14px 32px;
    background-color: var(--primary);
    color: var(--white);
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    border-radius: 0;
    /* Cube shape */
    transition: all 0.3s ease-in-out;
    box-shadow: 0 8px 20px rgba(0, 59, 115, 0.15);
    font-family: 'Poppins', sans-serif;
}

.btn-theme:hover {
    background-color: var(--black);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
}



.btn-for-nav {
    background-color: var(--primary);
    color: var(--white);
    /* padding: 5px; */
}



/* BUTTON */


/* Paragraphs and content */
body,
p,
span,
a,
li {
    font-family: 'Lora', serif;
}

/* icons */
/* whtsapp icon */
/* ✅ WhatsApp Floating Button */
.whatsapp-btn {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 28px;
    text-decoration: none;
    z-index: 9999;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
    animation: blink 1.2s infinite ease-in-out;
}

@keyframes blink {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 0 0px rgba(37, 211, 102, 0.5);
    }

    50% {
        transform: scale(1.1);
        box-shadow: 0 0 15px rgba(37, 211, 102, 0.7);
    }
}

/* icons */

.who-we-are {
    background-color: var(--white);
    color: var(--black);
}

.who-we-are h2 {
    color: var(--secondary-color);
    font-size: 2.5rem;
}

.image-grid {
    justify-content: center;
}

.grid-img {
    width: 48%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    object-fit: cover;
    height: 200px;
}

.grid-img:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}



/* why choose alurac */
.product-section h2 {
    color: var(--secondary-color);
    font-size: 2.5rem;
}

.alurac-card {
    position: relative;
    background-color: var(--white);
    border-radius: 20px;
    padding: 2rem;
    overflow: hidden;
    transition: transform 0.4s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    z-index: 1;
    height: 100%;
}

.alurac-card:hover {
    transform: translateY(-10px);
}

.alurac-icon i {
    font-size: 2.5rem;
    color: var(--secondary-color);
}

.alurac-card h5 {
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--black);
}

.alurac-card p {
    color: var(--accent-color);
    font-size: 0.95rem;
}

.alurac-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0%;
    background: var(--secondary-color);
    border-radius: 20px;
    z-index: 0;
    transition: height 0.4s ease;
}

.alurac-card:hover .alurac-overlay {
    height: 100%;
}

.alurac-card:hover h5,
.alurac-card:hover p,
.alurac-card:hover .alurac-icon i {
    color: #fff;
    position: relative;
    z-index: 2;
    transition: color 0.3s ease;
}





/* who we are */
.about-section {
    height: 100vh;
    background: url('../images/about-us/who-we-bg.png') no-repeat center center/cover;
    display: flex;
    justify-content: flex-start;
    /* Align to the left */
    align-items: center;
    /* Vertically center */
    padding-left: 5%;
    /* Add some spacing from left */
    position: relative;
    z-index: 1;
}

.about-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.6), rgba(255, 255, 255, 0));
    z-index: 0;
}

.glass-box {
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
    padding: 40px;
    max-width: 500px;
    color: #fff;
}

.glass-box h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: bold;
}

.glass-box p {
    font-size: 1.1rem;
    line-height: 1.6;
}


/* our mision and vision */
.mission-vision {
    background: var(--hover-bg);
}

.mission-box,
.vision-box {
    border-radius: 20px;
    background: var(--white);
    transition: transform 0.3s ease;
}

.mission-box:hover,
.vision-box:hover {
    transform: translateY(-8px);
}

.counter-box {
    background: var(--white);
    border-color: var(--secondary-color) !important;
    border-radius: 15px;
}

/* why choose */
.mission-section {
    background: linear-gradient(to bottom, #5d5d5de8, #292828);
    padding: 60px 20px;
    text-align: center;
    color: #fff;
}

.title {
    font-size: 32px;
    font-weight: 700;
}

.subtitle {
    margin-top: 10px;
    font-size: 18px;
    color: #cbe0ff;
    margin-bottom: 40px;
}

.card-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
}

.card {
    background: transparent;
    width: 220px;
    height: 280px;
    perspective: 1000px;
}

.card-inner {
    width: 100%;
    height: 100%;
    transition: transform 0.8s ease;
    transform-style: preserve-3d;
    position: relative;
}

.card:hover .card-inner {
    transform: rotateY(180deg);
}

.card-front,
.card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: white;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    backface-visibility: hidden;
    padding: 20px;
}

.card-front img {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
}

.card-front h3 {
    font-size: 18px;
    font-weight: 600;
}

.card-back {
    transform: rotateY(180deg);
    font-size: 15px;
    line-height: 1.4;
}

/* Responsive */
@media (max-width: 768px) {
    .card {
        width: 80%;
    }
}

/* why choose */