/* --- Google Fonts --- */
body {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    color: #666666;
    background-color: #ffffff;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Rajdhani', sans-serif;
    margin: 0;
    font-weight: 700;
}

a {
    text-decoration: none;
    transition: 0.3s ease;
}

.container {
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 15px;
    box-sizing: border-box;
}

.layout_padding {
    padding: 90px 0;
}

/* --- Header Section --- */
.header_section {
    width: 100%;
    background-color: #1a1824; /* Dark bg */
    padding: 15px 0;
    position: relative;
    z-index: 10;
}

.header_container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    color: #ffffff;
    font-size: 24px;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logos {
    max-width: 50px;
}

.menu_text {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-links {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
    gap: 30px;
}

.nav-links a {
    color: #ffffff;
    font-size: 16px;
    text-transform: uppercase;
}

.nav-links a:hover {
    color: #e05306;
}

.menu-toggle-btn {
    cursor: pointer;
    display: flex;
    align-items: center;
}

/* --- Overlay Menu --- */
.overlay {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 99;
    top: 0;
    left: 0;
    background-color: rgba(0,0,0, 0.9);
    overflow-x: hidden;
    transition: 0.5s;
}

.overlay-content {
    position: relative;
    top: 25%;
    width: 100%;
    text-align: center;
    margin-top: 30px;
}

.overlay a {
    padding: 8px;
    text-decoration: none;
    font-size: 36px;
    color: #818181;
    display: block;
    transition: 0.3s;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
}

.overlay a:hover, .overlay a:focus {
    color: #f1f1f1;
}

.overlay .closebtn {
    position: absolute;
    top: 20px;
    right: 45px;
    font-size: 60px;
}

/* --- Banner Carousel --- */
.banner_section {
    background-color: #1a1824;
    overflow: hidden;
    position: relative;
}

.carousel {
    position: relative;
    width: 100%;
}

.carousel-inner {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.carousel-item {
    min-width: 100%;
    box-sizing: border-box;
    display: none; /* hidden by default */
}

.carousel-item.active {
    display: block;
    animation: fadeIn 0.5s;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.carousel-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 50px 0 100px;
}

.slide-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    flex: 0 0 10%;
}

.number_text {
    color: #e05306;
    font-size: 24px;
    font-weight: bold;
    margin: 0;
}

.slide-content {
    flex: 0 0 45%;
    color: #ffffff;
}

.sub_title {
    font-size: 40px;
    color: #ffffff;
    font-weight: bold;
}

.main_title {
    font-size: 70px;
    color: #e05306;
    line-height: 1;
    margin-bottom: 20px;
}

.desc_text {
    font-family: 'Raleway', sans-serif;
    font-size: 16px;
    line-height: 28px;
    color: #cfcfcf;
    margin-bottom: 40px;
}

.contact_bt {
    background-color: #e05306;
    color: #ffffff;
    padding: 15px 40px;
    font-size: 18px;
    font-weight: 500;
    border-radius: 5px;
    display: inline-block;
}

.contact_bt:hover {
    background-color: #ffffff;
    color: #1a1824;
}

.slide-image {
    flex: 0 0 45%;
    text-align: right;
}

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

.carousel-control-prev, .carousel-control-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    color: #fff;
    border: none;
    font-size: 40px;
    cursor: pointer;
    z-index: 5;
    padding: 20px;
}

.carousel-control-prev { left: 10px; }
.carousel-control-next { right: 10px; }

/* --- About Section --- */
.about_section {
    background-color: #ffffff;
    padding: 80px 0;
}

.about-container {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.about-text-col {
    flex: 1;
    padding: 0 20px;
    min-width: 300px;
}

.about_text {
    color: #1a1824;
    font-size: 40px;
    font-weight: bold;
    margin-bottom: 20px;
}

.long_text {
    color: #666666;
    font-size: 16px;
    line-height: 28px;
    margin-bottom: 30px;
    font-family: 'Raleway', sans-serif;
}

.about_bt a {
    background-color: #1a1824;
    color: #ffffff;
    padding: 15px 40px;
    font-size: 18px;
    font-weight: 500;
    border-radius: 5px;
    display: inline-block;
}

.about_bt a:hover {
    background-color: #e05306;
}

.about-img-col {
    flex: 1;
    min-width: 300px;
}

.about-img-col img {
    width: 100%;
    height: auto;
    display: block;
}

/* --- Project Summary --- */
.project_section {
    background-color: #f7f7f7;
    text-align: center;
}

.partner_text {
    font-size: 45px;
    color: #1a1824;
    margin-bottom: 20px;
}

.lorem_ipsum_text {
    font-size: 16px;
    color: #666666;
    line-height: 30px;
    max-width: 800px;
    margin: 0 auto;
}

/* --- Our Services --- */
.our_section {
    background-color: #ffffff;
}

.text-center {
    text-align: center;
}

.our_text {
    font-size: 45px;
    color: #1a1824;
    margin-bottom: 10px;
}

.client_long_text {
    font-size: 16px;
    color: #666;
    margin-bottom: 40px;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.service-box {
    flex: 0 0 calc(50% - 15px);
    overflow: hidden;
    position: relative;
    border-radius: 10px;
    background-color: #000;
    text-align: center;
    color: #fff;
    cursor: pointer;
    box-sizing: border-box;
    display: block;
}

.service-box img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    opacity: 0.7;
    transition: 0.5s;
    display: block;
}

.service-box:hover img {
    opacity: 0.4;
    transform: scale(1.1);
}

.design_text {
    position: absolute;
    bottom: 30px;
    left: 0;
    right: 0;
    color: #e05306;
    font-size: 28px;
    font-weight: bold;
    z-index: 2;
    transition: 0.3s;
}

.service-box:hover .design_text {
    color: #ffffff;
}

.bt_main {
    margin-top: 50px;
}

.seemore_bt a {
    background-color: #1a1824;
    color: #ffffff;
    padding: 15px 50px;
    font-size: 18px;
    font-weight: bold;
    border-radius: 5px;
}

.seemore_bt a:hover {
    background-color: #e05306;
}

/* --- Footer --- */
.footer_section {
    background-color: #1a1824;
    color: #e05306;
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.contact-info h2 {
    color: #e05306;
    font-size: 24px;
    margin-bottom: 10px;
}

.contact-info p {
    color: #cfcfcf;
    font-size: 16px;
    line-height: 24px;
}

.map-container {
    width: 100%;
}

/* --- Responsive Layout --- */
@media (max-width: 991px) {
    .nav-links {
        display: none; /* Only show hamburger menu on mobile */
    }
    
    .carousel-grid {
        flex-direction: column;
        text-align: center;
    }
    
    .slide-indicator {
        flex-direction: row;
        margin-bottom: 30px;
    }
    
    .slide-image {
        margin-top: 30px;
    }

    .service-box {
        flex: 0 0 100%;
    }
}
