

/* Optional custom styles to tweak Bootstrap and add specific touches */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f8f9fa; /* Optional subtle background */
    overflow-x: hidden;
}

/* Ensure images in cards maintain aspect ratio */
.card-img-top {
    height: 200px;
    object-fit: cover; /* Cover ensures the image fills the area, cropping if necessary */
}

.gallery-img {
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease-in-out;
}

.gallery-img:hover {
    transform: scale(1.05);
}


/* Style for the top contact bar */
.bg-primary {
    background-color: #062a4e !important; /* Ensure Bootstrap primary color */
}
.btn-primary{
    background-color: #062a4e !important; 
}


/* Style for footer */
footer a {
    text-decoration: none; /* Remove underline from footer links */
    transition: color 0.2s;
}
footer a:hover {
    text-decoration: underline;
    color: #ffc107 !important; /* Change color on hover */
}

/* Highlight active nav link (Bootstrap usually handles this, but can be customized) */
.navbar-nav .nav-link.active {
    font-weight: bold;
    color: #062a4e !important; /* Example color */
}

/* Carousel Caption */
.carousel-caption {
    bottom: 20px; /* Adjust if needed */
    background-color: rgba(0, 0, 0, 0.6); /* Darker semi-transparent background */
    border-radius: 10px;
}

/* Card Shadows */
.card {
    transition: box-shadow 0.3s ease-in-out;
}
.card:hover {
    box-shadow: 0 8px 16px rgba(0,0,0,0.2) !important;
}

/* Navbar Brand Animation Fix */
.navbar-brand img {
    animation-duration: 2s; /* Slow down the heartbeat */
}
.navbar-brand span {
    animation-delay: 0.5s;
}

/* AOS animation delays for smoother flow */
[data-aos] {
    /* transition property can be overridden here if needed */
}
/* --- Desktop Navbar Styles --- */

.navbar {
    background-color: #ffffff !important; /* Light background */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Subtle shadow */
}

.navbar-brand img {
    max-height: 50px; /* Ensure logo doesn't overflow */
}

.navbar-brand span {
    font-size: 1rem; /* Larger brand text */
    font-weight: bold;
}

.navbar-toggler {
    border: none; /* Remove default border */
    background-color: transparent; /* Make background transparent */
    /* padding: 5px 10px;  */
    border-radius: 5px; /* Rounded corners */
    transition: background-color 0.2s ease;
}

.navbar-toggler:hover {
    background-color: rgba(0, 0, 0, 0.05); /* Very subtle hover effect */
}

.navbar-nav .nav-link {
    color: #333 !important; /* Dark text color */
    padding: 12px 15px; /* Increase padding for touch targets */
    border-radius: 5px;
    transition: background-color 0.2s ease;
    font-size: 1rem; /* Standard text size */
}

.navbar-nav .nav-link.active {
    color: #062a4e; 
   
    font-weight: bold;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus {
    background-color: rgba(0, 0, 0, 0.1); /* Light highlight on hover/focus */
}


/* --- Right Side Mobile Menu Styles --- */

/* The container for the mobile menu - initially hidden off-screen */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -1000px; /* Start off-screen to the right. Adjust width as needed */
    width: 320px; /* Adjust width as needed */
    height: 100dvh;
    background-color: #343a40; /* Dark background, similar to navbar */
    color: white;
    z-index: 1050; /* Should be higher than navbar if navbar is fixed */
    overflow-y: auto;
    transition: right 0.3s ease-in-out; /* Smooth slide transition */
    box-shadow: -5px 0 15px rgba(0,0,0,0.5); /* Subtle shadow on the left */
}

/* When the menu is active, slide it in */
.mobile-menu.active {
    right: 0;
}

/* Content inside the menu */
.mobile-menu-content {
    padding: 20px;
    padding-top: 10px; /* Less padding at the top */
}

/* Style links inside the mobile menu */
.mobile-menu .navbar-nav .nav-link {
    color: white !important; /* Ensure text is white */
    padding: 12px 15px; /* Increase padding for touch targets */
    border-radius: 5px;
    transition: background-color 0.2s ease;
    font-size: 1.1rem; /* Slightly larger text */
}

.mobile-menu .navbar-nav .nav-link:hover,
.mobile-menu .navbar-nav .nav-link:focus {
    background-color: rgba(255, 255, 255, 0.1); /* Light highlight on hover/focus */
}

.mobile-menu .navbar-nav .nav-link.active {
   color: #062a4e; /* Highlight active link */
    font-weight: bold;
}

/* Hide the standard Bootstrap collapse element if it exists */
.navbar-collapse {
    display: none !important; /* Override Bootstrap's display utilities */
}

/* Style the toggle button */
#mobileMenuToggle {
    border: none; /* Remove default border */
    background-color: transparent; /* Make background transparent */
    padding: 5px 10px; /* Add some padding for easier clicking */
    border-radius: 5px; /* Rounded corners */
    transition: background-color 0.2s ease;
}

#mobileMenuToggle:hover {
    background-color: rgba(0, 0, 0, 0.05); /* Very subtle hover effect */
}

/* --- End of Right Side Mobile Menu Styles --- */


/* Optional: Body overlay when menu is open (adds a dark tint to background) */
/* .mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.2); 
    z-index: 1040; 
    display: none; 
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.mobile-menu-overlay.active {
    display: block;
    opacity: 1;
} */