/* General Styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.glass-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 20px;
    transition: all 0.3s ease;
}

.glass-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

/* Navbar */
.navbar {
    transition: background-color 0.3s ease;
}

/* Hero Carousel */
.hero-carousel .carousel-item {
    height: 50vh;
    background-size: cover;
    background-position: center;
}

.hero-carousel .carousel-caption {
    background-color: rgba(0, 0, 0, 0.5);
    padding: 20px;
    border-radius: 10px;
}

/* Services Section */
.services-section {
    position: relative;
}



.services-section a {
    color: inherit;
    text-decoration: none;
}

.services-section .fas {
    color: #4c5e6c;
}

.service-tile a {
    color: inherit;
    text-decoration: none;
}

.service-tile .fas {
    color: #4c5e6c;
}

/* Floating Contact Button */
.floating-contact-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25D366; /* WhatsApp Green */
    color: white;
    padding: 15px 25px;
    border-radius: 30px;
    text-decoration: none;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    transition: background-color 0.3s ease;
}

.floating-contact-btn:hover {
    background-color: #1DA851; /* Darker green on hover */
}

.floating-contact-btn i {
    font-size: 1.5em; /* Increase icon size */
    vertical-align: middle;
    margin-right: 5px;
}

.btn-primary {
    background-color: #4c5e6c;
    border-color: #4c5e6c;
}

.btn-primary:hover {
    background-color: #333;
    border-color: #333;
}

/* Map Container */
.map-container {
    overflow:hidden;
    padding-bottom:56.25%;
    position:relative;
    height:0;
}

.map-container iframe{
    left:0;
    top:0;
    height:100%;
    width:100%;
    position:absolute;
}

/* Dropdown active color */
.dropdown-item.active,
.dropdown-item:active {
    background-color: #4c5e6c;
}

/* Project Images */
.project-img {
    width: 100%;
    height: 200px; /* Adjust as needed */
    object-fit: cover;
}

/* Offering Images */
.offering-img {
    width: 100%;
    height: 200px; /* Adjust as needed */
    object-fit: cover;
}

/* Footer Link Color */
.footer-link {
    color: inherit; /* Inherit color from parent, which is white */
    text-decoration: none; /* Remove underline */
}

.footer-link:hover {
    color: #f8f9fa; /* Lighter white on hover, or whatever suits the design */
    text-decoration: underline; /* Add underline on hover for better UX */
}