:root {
    --primary-color: #2c3e50;
    --secondary-color: #3498db;
    --accent-color: #e74c3c;
    --text-color: #2c3e50;
    --light-bg: #f8f9fa;
}

body {
    background-color: var(--light-bg);
    color: var(--text-color);
    min-height: 100vh;
    margin: 0;
    padding-top: 76px; /* Height of navbar */
}

.navbar {
    background-color: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    width: 100%;
    left: 0;
    right: 0;
}

.navbar > .container {
    width: 100%;
    max-width: 100%;
    padding-left: 1rem;
    padding-right: 1rem;
    margin: 0;
}

.navbar-toggler {
    border: 1px solid rgba(44, 62, 80, 0.1);
    padding: 0.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.2rem rgba(52, 152, 219, 0.25);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(44, 62, 80, 0.9)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

.navbar-brand {
    font-family: 'Times New Roman' !important;
    margin-right: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.navbar-brand img {
    height: 45px;
    width: auto;
    object-fit: contain;
}

.navbar-brand .company-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
    font-family: 'Times New Roman' !important;
}

.navbar-brand .tagline {
    font-size: 0.8rem;
    color: var(--secondary-color);
    font-family: 'Times New Roman' !important;
}

.nav-link {
    font-weight: 500;
    color: var(--primary-color) !important;
    padding: 0.5rem 1rem !important;
    margin: 0 0.2rem;
    border-radius: 6px;
    transition: all 0.3s ease;
    font-family: 'Times New Roman' !important;
}

.nav-link:hover {
    background-color: var(--light-bg);
    transform: translateY(-1px);
}

.nav-link.active {
    color: var(--secondary-color) !important;
    background-color: rgba(52, 152, 219, 0.1);
}

/* Animation classes */
.fade-up {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.fade-up.active {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    body {
    padding-top: 60px;
    overflow-x: hidden;
    width: 100%;
    }

    .navbar {
    padding: 0.5rem 0;
    }

    .navbar > .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-left: 1rem;
    padding-right: 1rem;
    }

    .navbar-brand {
    margin-right: 0;
    flex: 1;
    }

    .navbar-brand img {
    height: 35px;
    }

    .navbar-toggler {
    margin-left: 0.5rem;
    padding: 0.375rem;
    border: 1px solid rgba(44, 62, 80, 0.1);
    }

    .navbar-collapse {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    padding: 1rem;
    border-radius: 0 0 12px 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin: 0;
    width: 100%;
    z-index: 1000;
    }

    .navbar-nav {
    gap: 0.25rem;
    padding: 0.5rem 0;
    }

    .nav-link {
    padding: 0.75rem 1rem !important;
    margin: 0.25rem 0;
    width: 100%;
    text-align: left;
    }

    .btn-primary {
    margin-top: 0.5rem;
    width: 100%;
    }
}

/* Extra small devices */
@media (max-width: 576px) {
    .navbar > .container {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
    }

    .navbar-brand {
    gap: 0.5rem;
    }

    .navbar-brand img {
    height: 32px;
    }

    .navbar-toggler {
    margin-left: 0.25rem;
    padding: 0.25rem;
    }

    .navbar-collapse {
    padding: 0.75rem;
    }

    .nav-link {
    padding: 0.625rem 0.875rem !important;
    }
}

/* Fix for container width */
@media (min-width: 768px) {
    .container {
    max-width: 720px;
    }
}

@media (min-width: 992px) {
    .container {
    max-width: 960px;
    }
}

@media (min-width: 1200px) {
    .container {
    max-width: 1140px;
    }
}

@media (min-width: 1400px) {
    .container {
    max-width: 1320px;
    }
}

/* Footer Styles */
.footer {
background-color: var(--primary-color) !important;
margin-top: 3rem;
}

.footer h5 {
font-family: 'Times New Roman' !important;
font-weight: 600;
position: relative;
padding-bottom: 0.5rem;
}

.footer h5::after {
content: '';
position: absolute;
left: 0;
bottom: 0;
width: 50px;
height: 2px;
background-color: var(--secondary-color);
}

.footer .contact-info p {
line-height: 1.6;
}

.footer .footer-links li {
transition: all 0.3s ease;
}

.footer .footer-links li:hover {
transform: translateX(5px);
}

.footer a {
transition: all 0.3s ease;
}

.footer a:hover {
color: var(--secondary-color) !important;
text-decoration: none;
}

.social-links {
display: flex;
gap: 1rem;
}

.social-links a {
transition: all 0.3s ease;
opacity: 0.9;
}

.social-links a:hover {
transform: translateY(-3px);
opacity: 1;
}

@media (max-width: 768px) {
.footer {
    text-align: center;
}

.footer h5::after {
    left: 50%;
    transform: translateX(-50%);
}

.footer .contact-info {
    margin-bottom: 1.5rem;
}

.footer .social-links {
    justify-content: center;
    margin-top: 1rem;
}

.footer .footer-links li:hover {
    transform: none;
}
}