/* Full page layout */
html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    font-family: 'Arial', sans-serif;
}

/* Main container for page layout */
#page-container {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Content wrapper (flexible area between header and footer) */
#content-wrap {
    flex: 1 0 auto;
	padding-top: 56px;
}

/* Footer (fixed to bottom if content is short) */
.footer {
    flex-shrink: 0;
    padding: 10px 0;
    background-color: #f8f9fa;
    text-align: center;
}

/* Full-width sections */
.hero, .features {
    width: 100%;
    margin: 0;
}

/* Container aligned with logo */
.container {
    padding-left: 15px;
    padding-right: 15px;
}

/* Hero section style */
.hero {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 60px 0;
    text-align: center;
}

/* Custom shadow effect */
.custom-shadow {
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

/* Custom red background */
.bg-myred {
    background-color: #e60000;
}

/* Button hover effect */
.btn-primary {
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: scale(1.05);
}

/* Icon hover effect */
.features i {
    transition: transform 0.3s ease;
}

.features i:hover {
    transform: scale(1.2);
}



/* Ensure navbar font-size remains normal */
.navbar,
.navbar-brand {
    font-size: 1rem !important;

    width: auto;
    background: transparent;


}

/* Responsive design for small screens */
@media (max-width: 768px) {
    .navbar-brand {
        font-size: 1.25rem;
    }
    .hero h1 {
        font-size: 2.5rem;
    }
    .features .col-md-4 {
        margin-bottom: 20px;
    }
}

.navbar {
    background-image: url('../../images/nav_bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}