@import url(../css/clash-display.css);

:root {
    --c-dark: #212529;
    --c-brand: #4e57d4;
    --c-service: rgb(98, 87, 87);

    --c-brand-light: #6970dd;
    --c-brand-rgb: #727272;
    --font-base: "ClashDisplay", sans-serif;
    --box-shadow: 0px 15px 25px rgba(0, 0, 0, 0.08);
    --transition: all 0.5s ease;
}

body {
    font-family: var(--font-base);
    line-height: 1.7;
    color: var(--c-body);
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
    font-weight: 600;

}


a {
    text-decoration: none;
    color: var(--c-brand);
    transition: var(--transition);

}

a:hover {
    color: var(--c-brand-light);
}

img {
    max-width: 100%;
    height: auto;
}

.section-padding {
    padding-top: 140px;
    padding-bottom: 140px;
    padding-left: 100px;
}

.theme-shadow {
    box-shadow: var(--box-shadow);
}

/* portfolio image zoom*/
.image-zoom {
    position: relative;
    overflow: hidden;

}

.image-zoom-wrapper {
    overflow: hidden;
    position: relative;

}

.image-zoom-wrapper img {
    transition: var(--transition);

}

.image-zoom:hover .image-zoom-wrapper img {
    transform: scale(1.1);
}



/* navbar */
.navbar {
    box-shadow: var(--box-shadow);
}

.navbar-nav .nav-link {
    font-weight: 500;
    color: var(--c-dark);
}

.navbar-nav .nav-link-active {
    color: var(--c-brand);
}

/* button */
.btn {
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    border-radius: 0;
    padding: 10px 24px;

}

.btn-brand {
    background-color: var(--c-brand);
    color: white;
}

.logo {
    width: 100px;
    height: auto;
}



/* hero */
#hero {
    background: linear-gradient(#00000084, #0000007e), url(../img/pixelcut-export.png);
    background-position: center;
    background-size: cover;
}

#hero1 {
    background: linear-gradient(#00000084, #0000007e), url(../img/carousel-2.jpg);
    background-position: center;
    background-size: cover;
    height: 300px;
}


#hero2 {
    background: linear-gradient(#00000084, #0000007e), url(../img/about_us.png);
    background-position: center;
    background-size: cover;
    height: 300px;
}

#hero3 {
    background: linear-gradient(#00000084, #0000007e), url(../img/contact_us.jpg);
    background-position: center;
    background-size: cover;
    height: 300px;
}

#hero4 {
    background: linear-gradient(#00000084, #0000007e), url(../img/service.jpeg);
    background-position: center;
    background-size: cover;
    height: 300px;
}

#hero5 {
    background: linear-gradient(#00000084, #0000007e), url(../img/render3.png);
    background-position: center;
    background-size: cover;
    height: 400px;
}

/* section title */
.section-title {
    margin-bottom: 40px;
}

.section-title .line {
    width: 60px;
    height: 4px;
    background-color: var(--c-brand);
    margin: 16px auto 24px auto;
}

.iconbox {
    width: 70px;
    height: 70px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(var(--c-brand-rgb), 0.1);
    color: black;
    font-size: 34px;
    flex: none;


}

.iconbox1 {
    width: 70px;
    height: 70px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(var(--c-brand-rgb), 0.1);
    color: white;
    font-size: 34px;
    flex: none;


}

/* service */
.service {
    position: relative;
    overflow: hidden;
    z-index: 2;
}

.service::after {
    content: "";
    width: 40px;
    height: 40px;
    background: rgba(var(--c-brand-rgb), 0.2);
    position: absolute;
    bottom: 0;
    right: 0;
    transition: var(--transition);

}

.service:hover::after {
    width: 100%;
    height: 100%;
    background: var(--c-service);
    z-index: -1;

}

.service:hover h5,
.service:hover p {
    color: white;

}

/* counter */
/* for adding the margin between the boxes */
.row.justify-content-center [class^="col-"] {
    margin-right: 15px;
    /* Adjust the space between boxes */
}


/* portfolio */
.portfolio-item .iconbox {
    background-color: var(--c-brand);
    color: white;
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
}

.portfolio-item:hover .iconbox {
    opacity: 1;
    top: 50%;

}


/* Footer */
footer {
    padding-top: 100px;
}

.footer-top {
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom {
    padding-top: 40px;
    padding-bottom: 40px;
}


footer li,
footer p,
footer a {
    color: rgba(255, 255, 255, 0.7);

}

footer ul {
    list-style: none;
    padding: 0;
}

footer .line {
    width: 40px;
    height: 4px;
    background-color: var(--c-brand);
    margin-top: 12px;
    margin-bottom: 12px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 100px;
}


/* form button */
.button-1 {
    margin-top: 20px;

}

#contact-card {
    position: relative;
    margin-top: -200px;
    /* Adjust this value to overlap the card */
    z-index: 2;
}

.contact-card {
    max-width: 600px;
    /* Increase the width of the card */
    height: 300px;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin: 0 auto;
    background: #ffffff;
    overflow: hidden;
    display: flex;
    /* Use flexbox for layout */
    align-items: center;
    padding: 15px;
    box-shadow: inset 0 0 0 2px #ddd;
    gap: 20px;
    /* Add padding around the card */
}

.contact-card img.contact-img {
    width: 150px;
    /* Adjust image size */
    height: 150px;
    /* Keep the image square */
    object-fit: cover;
    border-radius: 50%;
    margin-right: 20px;
    /* Add spacing between image and text */
}

.contact-card .divider-line {
    width: 2px;
    /* Thickness of the divider */
    height: 80%;
    /* Height of the divider line */
    background: #ddd;
    /* Color of the divider */
    margin-right: 20px;
    /* Add spacing between divider and content */
}

.contact-card .card-body {
    flex: 1;
    /* Allow the text section to take up remaining space */
}

.contact-card h5 {
    font-size: 24px;
    /* Increase font size for the name */
    margin-bottom: 10px;
}

.contact-card p {
    margin: 5px 0;
    color: #555;
    font-size: 16px;
    /* Slightly larger text */
}

.contact-card .btn {
    margin-top: 10px;
}