html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}


.hero-carousel {
    height: 60vh;
    object-fit: cover;
    width: 100vw; /* Full viewport width */
}


#heroCarousel {
    margin: 0;
    padding: 0;
    width: 100vw; /* Ensure carousel container is full-width */
    overflow: hidden;
}

.carousel-inner {
    width: 100%;
}
.carousel-item {
    opacity: 0;
    transition: opacity 1s ease-in-out; /* Smooth fade duration */
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

    .carousel-item.active {
        opacity: 1;
        position: relative;
    }

.carousel.carousel-fade .carousel-item {
    opacity: 0;
    transition: opacity 1s ease-in-out;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

    .carousel.carousel-fade .carousel-item.active,
    .carousel.carousel-fade .carousel-item-next.carousel-item-start,
    .carousel.carousel-fade .carousel-item-prev.carousel-item-end {
        opacity: 1;
        position: relative;
        z-index: 1;
    }

.carousel-caption {
    background: rgba(0, 0, 0, 0.6);
    border-radius: 10px;
    padding: 20px;
    max-width: 90%; /* Prevent caption from being too wide on large screens */
    margin: 0 auto;
    bottom: 20px; /* Adjust caption position for better alignment */
}

.carousel-control-prev,
.carousel-control-next {
    width: 5%; /* Smaller controls for aesthetics */
    background: rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
    .carousel-caption {
        padding: 10px;
        bottom: 10px;
    }

        .carousel-caption h1 {
            font-size: 1.5rem; /* Smaller heading on mobile */
        }

        .carousel-caption p {
            font-size: 0.9rem; /* Smaller text on mobile */
        }

        .carousel-caption .btn {
            font-size: 0.8rem;
            padding: 8px 16px;
        }
}

.service-card {
    transition: transform 0.3s;
}

    .service-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    }

.footer {
    background: #1a1a1a;
    color: white;
}

 
.service-card {
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.carousel-item {
    transition: transform 0.6s ease-in-out; /* Smooth left-to-right slide */
}

.carousel-control-prev,
.carousel-control-next {
    width: 5%; /* Smaller controls for better aesthetics */
    background: rgba(0, 0, 0, 0); /* Subtle background for controls */
}

@media (max-width: 768px) {
    .carousel-item .row {
        justify-content: center;
    }

    .carousel-item .col-md-4 {
        max-width: 80%; /* Single card per slide on mobile */
    }
}



.table-professional {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    font-size: 0.95rem;
    border: 1px solid #dee2e6;
    border-radius: 0.5rem;
    overflow: hidden;
}

    .table-professional thead {
        background-color: #f8f9fa;
        font-weight: 600;
    }

        .table-professional thead th {
            padding: 0.75rem;
            border-bottom: 2px solid #dee2e6;
            color: #495057;
        }

    .table-professional tbody tr {
        transition: background-color 0.2s ease;
    }

    .table-professional tbody td {
        padding: 0.75rem;
        border-top: 1px solid #dee2e6;
        color: #343a40;
    }

    .table-professional tbody tr:hover {
        background-color: #e9f3ff;
    }



.info-tile {
    background-color: #e9f4ff;
    border: 1px solid #cfe2ff;
    border-radius: 0.75rem;
    padding: 1rem 1.5rem;
    margin-bottom: 1rem;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s;
    text-align: center;
    min-width: 30%;
}

    .info-tile:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    }

.info-label {
    font-weight: 600;
    color: #6c757d;
    font-size: 0.85rem;
    margin-bottom: 0.25rem;
}

.info-value {
    font-size: 1.1rem;
    font-weight: 500;
    color: #212529;
   
}

 
.blinking {
    animation: blinkingText 1s infinite;
}

@keyframes blinkingText {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

 