

body {
    margin: 0;
    font-family: Arial, sans-serif;
}

/* Header section background image */
#heads {
    background-image: url('image/robo.jpg');
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
}

/* header text */
.sect{
    /* color:rgba(18, 4, 3, 0.971); */
    font-size: large;
    font-weight: bolder;
}
#sub-text{
    align-items: flex-end;
}
#text{
    color:beige;
}
#sub-text{
    color: beige;
}

/* Overlay effect */
.card-img-overlay {
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.card:hover .card-img-overlay {
    opacity: 1;
}

.card-title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.card-text {
    font-size: 1rem;
}

/* Remove padding and margin from container */
.container {
    padding: 0;
    margin: 0;
}

/* Remove margin and padding from row and columns */
.row, .col-md-4 {
    padding: 0;
    margin: 0;
}

/* Card border-radius */
.card {
    border-radius: 0;
    overflow: hidden;
    margin: 0;
    border: none;
}

/* Card images */
.card-img {
    border-radius: 1;
}

/* Centering overlay text */
.card-img-overlay {
    display: flex;
    align-items: normal;
    justify-content: center;
    text-align: center;
    border-radius: 0;
}
#work{
    background-color: black;
    font-weight: 400;
    color: aliceblue;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}

/* pic */
.emty{
    background-image: url('image/light-trails-buildings.jpg');
    background-size: cover;
    background-position: center;
    height: 40vh;
    background-repeat: no-repeat;
    background-attachment: fixed;
    /* display: flex;
    justify-content: center;*/
    align-items: center; 
    
}

/* team */
.team-section {
    padding: 60px 0;
    background-color: black;
}

.team-section h2 {
    margin-bottom: 50px;
    color: #fff;
}

.team-member {
    position: relative;
    overflow: hidden;
    border: none;
    background-color: transparent;
}

.team-member img {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.team-member:hover img {
    transform: scale(1.1);
}

.team-member-info {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 20px;
    text-align: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.team-member:hover .team-member-info {
    opacity: 1;
}

/* contact  */
#contact{
    background-color: black;
}
.contact-section {
    background-color: #343a40;
    color: #fff;
    padding: 50px 0;
}

.contact-section h2 {
    margin-bottom: 40px;
}

.contact-section p {
    margin-bottom: 10px;
    font-size: 1.2em;
}

.contact-section .social-links a {
    font-size: 1.2em;
    transition: color 0.3s;
}

.contact-section .social-links a:hover {
    color: #007bff;
}

.contact-section .social-links i {
    margin-right: 5px;
}

.contact-section .social-links {
    margin-top: 20px;
}

.contact-section .social-links a {
    color: #fff;
    text-decoration: none;
}

.contact-section .social-links a:hover {
    color: #007bff;
}

/* services */
#services{
    background-color: black;
    color: white;
}
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.services-section {
    padding: 50px;
    background-color: #000;
    color:black;
    text-align: center;
}

.services-section h2 {
    font-size: 36px;
    margin-bottom: 30px;
}

.services-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.service-box {
    /* background-color: #1e1e1e;
    border: 2px solid #444; */
    background-color: #fff;
    border-radius: 10px;
    padding: 20px;
    margin: 10px;
    width: calc(50% - 40px);
    box-sizing: border-box;
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-box h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.service-box p {
    font-size: 16px;
    margin-bottom: 20px;
}

.service-box a {
    display: inline-block;
    padding: 10px 20px;
    background-color: #444;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
}

.service-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .service-box {
        width: calc(100% - 40px);
    }
}

@media (max-width: 480px) {
    .services-section {
        padding: 20px;
    }

    .services-section h2 {
        font-size: 28px;
    }

    .service-box h3 {
        font-size: 20px;
    }

    .service-box p {
        font-size: 14px;
    }
}
