/*  Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins';
}

/* Panner section starts here */
.hero-section {
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    height: 100vh;
}

@media (max-width: 768px) {
    .hero-section {
        height: 70vh;
    }
    .hero-image img {
        height: 70vh;
    }
}


/* Services we provides */
.services-we-provide {
    background-color: white;
    padding: 50px 20px;
    text-align: center;
}

.services-info-block {
    max-width: 900px;
    margin: auto;
}

/* Section Title */
.services-title {
    font-size: 32px;
    font-weight: bold;
    color: black;
}

.services-title span {
    color: #FFCC00;
}

/* Description Text */
.services-description {
    margin-top: 20px;
    font-size: 18px;
    line-height: 1.6;
    color: #444;
    margin-top: 10px;
}

/* Services Container */
.buit-container {
    display: flex;
    gap: 15px;
    justify-content: center;
    align-items: center;
    max-width: 80%;
    margin: auto;
    padding: 20px;
    background-color: white;
    border-radius: 10px;
}

/* Individual Service Box */
.buit-box {
    position: relative;
    width: 50%; /* Two equal-sized images */
    border-radius: 10px;
    overflow: hidden;
}

/* Images */
.buit-pic {
    width: 100%;
    height: 400px;
    border-radius: 10px;
    transition: transform 0.3s ease-in-out;
}

/* Hover Effect */
.buit-box:hover .buit-pic {
    transform: scale(1.05);
}

/* Service Name (Button) */
.buit-tag {
    position: absolute;
    bottom: 20px;
    left: 10px;
    background: navy;
    color: white;
    padding: 8px 15px;
    border-radius: 5px;
    font-size: 14px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s;
}

.buit-tag:hover {
    background: darkblue;
}

/*  Responsive Design  */
@media (max-width: 768px) {
    .buit-container {
        flex-direction: column; /* Stack images on small screens */
    }
    
    .buit-box {
        width: 100%;
    }
}


/* Container for Row */
.const-row {
    display: flex;
    gap: 15px;
    max-width: 78%;
    margin: auto;
    align-items: center;
}

/* Large Box on the Left */
.const-large {
    flex: 2; /* Takes more space */
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

/* Small Box on the Right */
.const-small {
    flex: 1; /* Takes less space */
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

/* Image Styles */
.const-pic {
    width: 100%;
    height: 500px;
    border-radius: 10px;
    transition: transform 0.3s ease-in-out;
}

/* Hover Effect */
.const-large:hover .const-pic,
.const-small:hover .const-pic {
    transform: scale(1.05);
}

/* Text Button */
.const-tag {
    position: absolute;
    bottom: 20px;
    left: 10px;
    background: navy;
    color: white;
    padding: 8px 15px;
    border-radius: 5px;
    font-size: 14px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s;
}

.const-tag:hover {
    background: darkblue;
}
.image-section{
    margin-bottom: 50px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .const-row {
        flex-direction: column;
    }

    .const-large, .const-small {
        width: 100%;
    }

    .const-large, .const-small img{
        width: 100%;
        height: 400px;
    }
}