:root {
    --primary: #5D5D5D;
    --white: #fff;
    --black: #1A1A18;
    --hover-bg: #f2f2f2;
}

body {
    margin: 0;
    font-family: "Segoe UI", sans-serif;
}

/* Heading style */
h1,
h2,
h3,
h4,
.heading {
    font-family: 'Montserrat', sans-serif;
}


.section-headinggg {
    font-size: 2.3rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--primary);
    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(--primary);
    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(--black);
    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(--primary);
}

.alurac-card h5 {
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--black);
}

.alurac-card p {
    color: var(--primary);
    font-size: 0.95rem;
}

.alurac-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0%;
    background: var(--primary);
    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: var(--white);
    position: relative;
    z-index: 2;
    transition: color 0.3s ease;
}




/* who we are */
.about-section {
    height: 100vh;
    background: url('https://alurac.in/assets/image/about-us/why-choose-alurac.webp') 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(--primary) !important;
    border-radius: 15px;
}