:root {

    --primary: #E6E6E6;
    --dark: #222;
    --light: #f8f8f8;
    --text: #555;

}

body {
    color: var(--text);
    font-family: Lexend, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: Lexend, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.section-padding {
    padding: 80px 0;
}

.section-gallery {
    background-color: var(--primary);
}

.section-title {
    font-size: 34px;
    color: var(--dark);
    margin-bottom: 10px;
}

.btn-main {
    background: var(--primary);
    color: var(--dark);
    display: inline-block;
    padding: 12px 52px;
    text-decoration: none;
    font-size: 13px;
    letter-spacing: 4px;
}

.hero {
    height: 100vh;
    background: url('../image/banner.jpg') center/cover;
    display: flex;
    align-items: center;
    color: white;
}

.icon-img img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}


.gallerySwiper img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.service-box {
    background: white;
    padding: 30px;
    border-radius: 6px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.testimonial {
    background: var(--light);
    padding: 25px;
    border-radius: 5px;
}

.reels video {
    width: 100%;
    height: 450px;
    object-fit: cover;
}


.vc-section-title {
    font-weight: 700;
}


.vc-hover-card {
    background: #fff;
    border-radius: 14px;
    border: 1px solid #f0f0f0;
    transition: all .35s ease;
}

.vc-hover-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, .12);
}


/* icon circle */

.vc-icon-circle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px auto;
    background: linear-gradient(135deg, #f5f5f5, #e6e6e6);
}

.vc-icon-circle i {
    font-size: 26px;
    color: #333;
}


/* heading */

.vc-hover-card h5 {
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 10px;
}


/* paragraph */

.vc-hover-card p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}


/* icon hover animation */

.vc-hover-card:hover .vc-icon-circle {
    background: linear-gradient(135deg, #e6e6e6, #dcdcdc);
}

.error {
    font-size: 13px;
}

label.error {
    color: red;
    font-size: 14px;
    margin-top: 5px;
    display: block;
}