body {
  font-family: 'Roboto', sans-serif;
}
h1 {
  font-family: 'Roboto', sans-serif;
  font-weight: 700; /* Bold */
}

.navbar-nav .nav-link {
    transition: color 0.3s ease, transform 0.2s ease;
    position: relative;
}

/* Underline animation on hover */
/* .navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    width: 0%;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #ffc107;
    /* Bootstrap's warning color */
/* transition: width 0.3s ease; */
/* } */

.navbar-nav .nav-link:hover::after {
    width: 100%;
}

/* Link hover effect */
.navbar-nav .nav-link:hover {
    color: #ffc107 !important;
    transform: translateY(-2px);
}

/* Button hover effect */
.navbar-nav .btn-warning {
    transition: all 0.3s ease;
    box-shadow: none;
}

.navbar-nav .btn-warning:hover {
    background-color: #e0a800;
    /* Slightly darker yellow */
    color: white;
    transform: scale(1.05);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}


/* Hover effect on nav links */
.hover-bg:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transition: 0.3s;
}

/* Optional: Backdrop blur support if not using Tailwind or utility framework */
.backdrop-blur {
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}





.text-justify {
    text-align: justify !important;
}

.hover-card {
    background-color: #1e1e1e;
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.4s ease;
    transform-style: preserve-3d;
    perspective: 1000px;
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.05);
    /* subtle glow */
}

.hover-card:hover {
    transform: translateY(-10px) scale(1.03) rotateX(3deg) rotateY(-3deg);
    box-shadow: 0 20px 50px rgba(255, 255, 255, 0.15);
    /* brighter on hover */
}

.hover-icon {
    transition: transform 0.3s ease;
}

.hover-card:hover .hover-icon {
    transform: scale(1.2) rotate(5deg);
}

.hover-card h5,
.hover-card p {
    color: #f8f9fa;
}


/* service */

.service-card {
    border: 1px solid #e2e2e2;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    background-color: #fff;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-card img {
    height: 220px;
    object-fit: cover;
    width: 100%;
    transition: transform 0.4s ease;
}

.service-card:hover img {
    transform: scale(1.05);
}

.service-card .card-body {
    padding: 1.5rem;
}

.service-card .card-title {
    font-size: 1.2rem;
}

.service-card .btn {
    font-size: 0.9rem;
    padding: 6px 16px;
}


.btn-custom-yellow {
    background-color: #ffc107;
    color: #212529;
    border: none;
    border-radius: 30px;
    padding: 10px 24px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

.btn-custom-yellow:hover {
    background-color: #e0a800;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}




/* about us */



.section-title {
    font-weight: 700;
    border-left: 5px solid #ffc107;
    padding-left: 10px;
}

.about-img {
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

.highlight {
    color: #ffc107;
    font-weight: 600;
}

.hover-bg:hover {
    background-color: rgba(255, 193, 7, 0.2) !important;
}
