/* Google Fonts */
body {
    font-family: 'Roboto', sans-serif;
}

/* logo image*/
#logo-img{
    max-height: 4rem;
}

/* Modernized Navbar */
#modern-navbar {
    background: linear-gradient(90deg, #00bcd4, #0277bd);
    padding: 15px 20px;
    font-family: 'Montserrat', sans-serif;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

#modern-navbar .navbar-brand {
    display: flex;
    align-items: center;
    font-size: 1.25rem;
    color: #fff;
    font-weight: bold;
    transition: transform 0.3s;
}

#modern-navbar .navbar-brand:hover {
    transform: scale(1.1);
}

#modern-navbar .brand-name {
    margin-left: 10px;
    font-size: 1.5rem;
}

#modern-navbar .nav-link {
    color: #fff;
    font-size: 1rem;
    font-weight: 500;
    transition: color 0.3s, transform 0.3s;
    margin: 0 10px;
}

#modern-navbar .nav-link:hover {
    color: #ffe082;
    transform: scale(1.1);
}

#modern-navbar .nav-link.active {
    color: #ffe082;
    font-weight: bold;
    border-bottom: 2px solid #ffe082;
}

/* Call Us Button */
#modern-navbar .contact-btn {
    background-color: #ffe082;
    color: #0277bd;
    border-radius: 20px;
    padding: 5px 15px;
    font-size: 1rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    transition: background-color 0.3s, color 0.3s;
}

#modern-navbar .contact-btn:hover {
    background-color: #0277bd;
    color: #ffe082;
}

#modern-navbar .contact-btn .call-icon {
    font-size: 1.2rem;
    margin-right: 8px;
    animation: pulse 1.5s infinite;
}

/* Animation for Call Icon */
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        color: #0277bd;
    }
    50% {
        transform: scale(1.2);
        color: #138f9b;
    }
}

/* Slider Section */
#slider-section {
    padding: 10px 0;
}

/* Modern Carousel */
.carousel-item img {
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
}

.carousel-caption {
    background-color: rgba(0, 0, 0, 0.6);
    padding: 10px 20px;
    border-radius: 10px;
    animation: fadeInUp 1s ease-in-out;
}

.carousel-caption h5 {
    font-family: 'Montserrat', sans-serif;
    font-weight: bold;
    color: #ffe082;
    font-size: 1.75rem;
}

.carousel-caption p {
    color: #ffffff;
    font-size: 1rem;
}

/* Modern Form */
.card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.card-header {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: bold;
    border-bottom: none;
}

.card-body .form-label {
    font-weight: bold;
    color: #053242;
}

.card-body .btn-custom {
    background-color: #00bcd4;
    border-color: #00bcd4;
    font-size: 1rem;
    font-weight: bold;
}

.card-body .btn-custom:hover {
    background-color: #138f9b;
    border-color: #138f9b;
}

/* Animations */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}


/* testimonials */
#testimonials-section {
    background: linear-gradient(90deg, #00bcd4, #0277bd);
    color: white;
    padding: 50px 0;
}

#testimonials-section .testimonial-text {
  font-size: 1.25rem;
  font-style: italic;
  margin-bottom: 20px;
}

#testimonials-section .testimonial-name {
  font-weight: bold;
  color: #fff;
}

#testimonials-section .testimonial-location,
#testimonials-section .testimonial-date {
  font-size: 0.9rem;
}

#testimonials-section .stars {
  color: #fff;
}

/* Our Services Section */
#services-section {
    background-color: #f5fafd;
    padding: 50px 0;
}

#services-section .service-card {
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    padding: 30px 20px;
    transition: transform 0.3s, box-shadow 0.3s;
}

#services-section .service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.15);
}

#services-section .service-icon-wrapper {
    font-size: 50px;
    color: #00bcd4; /* Water blue color */
    margin-bottom: 20px;
    transition: transform 0.3s, color 0.3s;
}

#services-section .service-card:hover .service-icon-wrapper {
    transform: scale(1.2); /* Slightly enlarge icon on hover */
    color: #0277bd; /* Darker blue on hover */
}

#services-section .service-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: #053242;
    margin-bottom: 10px;
}

#services-section .service-description {
    font-size: 1rem;
    color: #6c757d;
}

/* Calculator */
#calculator-section {
    padding: 50px 0;
}

.btn-custom {
    background-color: #00bcd4;
    border-color: #00bcd4;
    color: #fff;
}

.btn-custom:hover {
    background-color: #138f9b;
    border-color: #138f9b;
}

#calculator-section {
    font-family: 'Roboto', sans-serif;
}

#calculator-section h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: bold;
}

#calculator-section .btn-custom {
    background-color: #00bcd4;
    border-color: #00bcd4;
    color: #fff;
}

#calculator-section .btn-custom:hover {
    background-color: #138f9b;
    border-color: #138f9b;
}

#calculator-section .card {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border: none;
    border-radius: 10px;
}

#calculator-section .form-label {
    font-weight: bold;
    color: #053242;
}

/* costModal */
#costModal .modal-content {
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

#costModal .modal-header {
    background-color: #00bcd4;
    color: #fff;
    border-bottom: none;
    border-radius: 10px 10px 0 0;
}

#costModal .modal-title {
    font-family: 'Montserrat', sans-serif;
}

#costModal .btn-close {
    background-color: #fff;
    border: none;
}

#costModal .btn-custom {
    background-color: #00bcd4;
    border-color: #00bcd4;
    color: #fff;
}

#costModal .btn-custom:hover {
    background-color: #138f9b;
    border-color: #138f9b;
}

/* About Us Section */
#about-us-section img {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

#about-us-section h4 {
    color: #053242;
}

/* Careers Section */
#careers-section {
    padding: 50px 0;
    text-align: center;
    background-color: #f9f9f9;
}

#careers-section .btn-custom {
    font-size: 1.2rem;
    padding: 10px 30px;
}

.modal-content {
    border-radius: 10px;
}

.modal-header {
    background-color: #00bcd4;
    color: #fff;
    border-bottom: none;
    border-radius: 10px 10px 0 0;
}

.modal-title {
    font-family: 'Montserrat', sans-serif;
}

.modal-body .form-label {
    font-weight: bold;
}

/* Footer */
#modern-footer {
    background: linear-gradient(90deg, #00bcd4, #0277bd);
    color: #fff;
}

#modern-footer h4, #modern-footer h5 {
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 15px;
}

#modern-footer p {
    font-size: 0.9rem;
    line-height: 1.6;
}

#modern-footer .footer-link {
    text-decoration: none;
    color: #ffe082;
    transition: color 0.3s;
}

#modern-footer .footer-link:hover {
    color: #fff;
}

#modern-footer .social-link {
    font-size: 1.8rem;
    color: #ffe082;
    margin-right: 15px;
    transition: transform 0.3s, color 0.3s;
}

#modern-footer .social-link:hover {
    color: #fff;
    transform: scale(1.2);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    #modern-footer .d-flex {
        justify-content: center;
        margin-top: 15px;
    }

    #modern-footer .social-link {
        margin-right: 10px;
    }
}

/* Request a callback form */
@keyframes pulse {
    0% {
        transform: scale(1);
        color: #0277bd;
    }
    50% {
        transform: scale(1.1);
        color: #00bcd4;
    }
    100% {
        transform: scale(1);
        color: #0277bd;
    }
}

.pulse-animation {
    animation: pulse 1.5s infinite;
    font-weight: bold;
}

