





    .navbar {  
    padding: 15px;
}
.navbar-brand img {
    height: 50px; /* Adjust logo size */
}
.navbar-nav {
    margin: auto;
}
@media (max-width: 991px) { /* For tablets and smaller screens */
    .navbar-nav {
        text-align: center;
    }
}
.logo {
    height: 80px;  /* Adjust height as needed */
    width: auto;   /* Maintain aspect ratio */
}

.logo {
    height: 100px;  /* Adjust height */
    width: 250px;   /* Adjust width */
    object-fit: contain; /* Ensures the image fits inside the box */
}

/* Hero Section */
.carousel-item {
    height: 100vh; /* Full screen height */
    background-size: cover;
    background-position: center;
    position: relative;
}

/* Dark overlay */
.carousel-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Black overlay */
}

/* Centered content */
.carousel-caption {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
}

.carousel-caption h1 {
    font-size: 3rem;
    font-weight: bold;
}

.carousel-caption p {
    font-size: 1.2rem;
    margin: 10px 0;
}

.btn-custom {
    background-color: #ff5733;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    transition: 0.3s;
}

.btn-custom:hover {
    background-color:rgba(40, 77, 55, 0.5);
}
 /* Section Padding */
 .services-section {
    padding: 60px 0;
    background-color: #f8f9fa;
}

/* Service Box */
.service-box {
    text-align: center;
    padding: 30px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    transition: 0.3s;
}

.service-box:hover {
    transform: translateY(-5px);
}

/* Icon Styling */
.service-box i {
    font-size: 40px;
    color: rgba(40, 77, 55, 0.5);
    margin-bottom: 15px;
}

/* Button Styling */
.btn-custom {
    background-color: rgba(40, 77, 55, 0.5);
    color: white;
    padding: 8px 20px;
    border-radius: 5px;
    text-decoration: none;
    transition: 0.3s;
}

.btn-custom:hover {
    background-color: rgba(40, 77, 55, 0.5);
}
* General Styles */
        body {
            font-family: Arial, sans-serif;
        }

        .our-projects {
            text-align: center;
            padding: 50px 0;
        }

        .our-projects h2 {
            font-size: 2.5rem;
            font-weight: bold;
            margin-bottom: 30px;
        }

        /* Tabs Styles */
        .nav-tabs {
            justify-content: center;
            border-bottom: none;
        }

        .nav-tabs .nav-link {
            color: #333;
            font-size: 1.2rem;
            font-weight: 600;
            border: none;
            padding: 10px 20px;
            transition: all 0.3s ease;
        }

        .nav-tabs .nav-link.active {
            background-color: #000;
            color: #fff;
            border-radius: 20px;
        }

        /* Project Grid */
        .project-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            margin-top: 30px;
            justify-items: center;
        }

        .project-item {
            position: relative;
            overflow: hidden;
            border-radius: 10px;
            width: 100%;
            max-width: 350px;
        }

        .project-item img {
            width: 100%;
            height: 250px;
            object-fit: cover;
            border-radius: 10px;
            transition: transform 0.3s ease;
        }

        /* Staggered Layout */
        .project-grid .project-item:nth-child(1),
        .project-grid .project-item:nth-child(3) {
            transform: translateY(30px);
        }

        .project-grid .project-item:nth-child(2) {
            transform: translateY(-30px);
        }

        /* Overlay Effect */
        .overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.6);
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s ease;
            border-radius: 10px;
        }

        .project-item:hover .overlay {
            opacity: 1;
        }

        /* Responsive Design */
        @media (max-width: 992px) {
            .project-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .project-grid {
                grid-template-columns: repeat(1, 1fr);
            }

            .project-grid .project-item {
                transform: translateY(0);
            }
        }
        /* Section Styling */
        .contact-section {
            padding: 60px 0;
            background-color: #f8f9fa;
        }

        /* Form Styling */
        .contact-form {
            background: white;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
        }

        /* Contact Info Box */
        .contact-info {
            background: rgba(40, 77, 55);
            color: white;
            padding: 30px;
            border-radius: 10px;
        }

        .contact-info i {
            font-size: 24px;
            margin-right: 10px;
        }

        /* Button Styling */
        .btn-custom {
            background-color: rgba(40, 77, 55);
            color: white;
            padding: 10px 20px;
            border-radius: 5px;
            transition: 0.3s;
        }

        .btn-custom:hover {
            background-color: rgba(40, 77, 55);
        }

        /* Map Styling */
        .map-container {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
        }



        .slider-container {
            overflow: hidden;
            width: 100%;
            max-width: 1200px;         /* Optional: Limit max width for container */
            margin: 0 auto;
            padding: 10px;
        }
        
        .slider {
            display: flex;
            gap: 50px;                /* 🔄 Increased space between images (adjust as needed) */
            animation: scroll 20s linear infinite; /* Smooth automatic scrolling */
        }
        
        .slide img {
            width: 250px;             /* Adjust image size if needed */
            height: auto;
            transition: transform 0.3s;  /* Smooth hover effect */
        }
        
        .slide img:hover {
            transform: scale(1.1);     /* Slight zoom on hover */
        }
        
        @keyframes scroll {
            0% { transform: translateX(0); }
            100% { transform: translateX(-100%); }
        }
                .custom-tab {
            background-color: white; /* Default background */
            color: black; /* Default text color */
            transition: background-color 0.3s ease, color 0.3s ease;
        }
        .custom-tab.active {
            background-color: rgb(40, 77, 55) !important; /* Active tab background */
            color: white !important; /* Active tab text color */
        }