/* Navbar Styles */
.navbar {
    background: linear-gradient(90deg, #FFED00, #FE0000); /* Gradient from yellow to red */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: background 0.3s, box-shadow 0.3s;
}

.navbar .navbar-brand {
    padding: 10px; /* Add padding around the logo */
}

.navbar .nav-link {
    color: white; /* Text color */
    transition: color 0.3s, transform 0.3s; /* Smooth color and transform transition */
    position: relative; /* For pseudo-element positioning */
    padding: 10px; /* Padding for better touch targets */
}

.navbar .nav-link:hover {
    color: #ffd700; /* Change color on hover */
    text-decoration: none; /* Remove underline */
}

/* Add underline effect on hover */
.navbar .nav-link:hover::after {
    content: '';
    display: block;
    height: 2px;
    width: 100%;
    background: #ffd700; /* Color of the underline */
    position: absolute;
    left: 0;
    bottom: 0;
    transition: width 0.3s; /* Smooth width transition */
    width: 100%; /* Full width underline */
}

.navbar-toggler {
    border: none; /* Remove default border */
    background: transparent; /* Transparent background */
}

.navbar-toggler .fa-bars {
    color: white; /* Color for hamburger icon */
    font-size: 24px; /* Larger icon size */
}

/* For Mobile View */
@media (max-width: 992px) {
    .navbar {
        background: rgba(0, 123, 255, 0.9); /* Slightly transparent for mobile */
    }
}

.hero-header-empty {
    position: relative;
    overflow: hidden;
    height: auto; /* Full viewport height */
}
/* Hero Header Styles */
.hero-header {
    position: relative;
    overflow: hidden;
    height: 100vh; /* Full viewport height */
}


.hero-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.hero-header .row {
    height: 100%; /* Full height for row */
    align-items: center; /* Vertically center items */
}

.hero-header h1, .hero-header h2 {
    /* text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);  */
    color: black;
}

.hero-header img {
    border-radius: 15px; /* Rounded corners */
    transition: transform 0.3s; /* Smooth transition */
}

.hero-header img:hover {
    transform: scale(1.05); /* Zoom on hover */
}

/* Button Styles */
.btn-warning {
    background-color: #FFED00; /* Button color */
    color: #FE0000; /* Text color */
    border: none; /* Remove border */
    transition: transform 0.3s;
}

.btn-warning:hover {
    transform: scale(1.05); /* Slightly enlarge on hover */
}

.text-custom {
    color: #FFED00; /* Gold color or choose any color you prefer */
}

.text-custom h1, 
.text-custom h2, 
.text-custom p {
    color: #FEFEFE; /* Light color for better contrast */
}

/* Navbar Styles */
.navbar {
    background:  #FE0000;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.navbar .nav-link {
    color: white;
    transition: color 0.3s, transform 0.3s;
}

.navbar .nav-link:hover {
    color: #ffd700;
}

.navbar .nav-link.active {
    border-bottom: 2px solid #FFD700;
}

/* Hero Header Styles */
.hero-header {
    position: relative;
}

.hero-header::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.hero-header h1, 
.hero-header h2, 
.hero-header p {
    position: relative;
    z-index: 2;
}

/* Button Styles */
.btn-warning {
    transition: background 0.3s, transform 0.3s;
}

.btn-warning:hover {
    background: #FFB700;
    transform: scale(1.05);
}

/* About Section Styles */
#aboutus {
    background: #f9f9f9;
    padding: 2rem 0;
}

#aboutus img {
    border-radius: 50%;
}

.card {
    display: flex;
    flex-direction: column;
    height: 100%; /* Set the height to fill the container */
}

.card-body {
    flex-grow: 1; /* Ensures that card content grows to fill the card */
}

.iframe-container {
    position: relative;
    padding-bottom: 56.25%; /* Aspect ratio for iframe (16:9) */
    height: 0;
    overflow: hidden;
}

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

.card-text.address {
    min-height: 100px; /* Adjust this value based on your content */
}

.card-text.contact {
    min-height: 50px; /* Adjust to ensure consistent spacing */
}
.category-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}
