:root {
    --primary-blue: #1a5f7a;
    --primary-blue-dark: #114456;
    --secondary-blue: #2a9d8f;
    --accent-color: #e76f51;
    --accent-light: #f4a261;
    --light-bg: #f8f9fa;
    --light-bg-2: #f1f7fa;
    --dark-text: #2c3e50;
    --light-text: #6c757d;
    --gradient-primary: linear-gradient(135deg, #1a5f7a 0%, #2a9d8f 100%);
    --gradient-accent: linear-gradient(135deg, #e76f51 0%, #f4a261 100%);
    --shadow-light: 0 10px 40px rgba(0, 0, 0, 0.08);
    --shadow-medium: 0 15px 50px rgba(0, 0, 0, 0.12);
    --shadow-dark: 0 20px 60px rgba(0, 0, 0, 0.15);
    --border-radius: 12px;
    --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--dark-text);
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: var(--dark-text);
}

/* Header & Navigation */
.top-bar {
    background: var(--gradient-primary);
    color: white;
    font-size: 0.9rem;
    padding: 8px 0;
}

.top-bar a {
    color: white;
    text-decoration: none;
    transition: var(--transition);
}

.top-bar a:hover {
    color: rgba(255, 255, 255, 0.8);
}

.navbar {
    padding: 15px 0;
    background: white !important;
    transition: var(--transition);
}

.navbar.scrolled {
    padding: 10px 0;
    box-shadow: var(--shadow-light);
}

.navbar-brand img {
    height: 55px;
    transition: var(--transition);
}

.nav-link {
    font-weight: 600;
    color: var(--dark-text) !important;
    margin: 0 8px;
    padding: 8px 16px !important;
    border-radius: 50px;
    transition: var(--transition);
    font-family: 'Montserrat', sans-serif;
}

.nav-link:hover, .nav-link.active {
    background: rgba(26, 95, 122, 0.1);
    color: var(--primary-blue) !important;
}

.nav-cta {
    background: var(--gradient-accent) !important;
    color: white !important;
    padding: 10px 25px !important;
    border-radius: 50px;
    font-weight: 700;
    margin-left: 15px;
    border: none;
    box-shadow: 0 5px 15px rgba(231, 111, 81, 0.3);
}

.nav-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(231, 111, 81, 0.4);
}

       /* Small mobile devices */
@media (max-width: 576px) {
    .btn-primary, .btn-outline-primary {
        padding: 12px 20px;
        font-size: 1rem;
        margin-bottom: 20px;
    }
} 
/* Footer - Updated Contact Info Section */
footer {
    background: var(--dark-text);
    color: white;
    padding-top: 80px;
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 10px;
    background: var(--gradient-accent);
}

.footer-logo {
    height: 60px;
    margin-bottom: 25px;
}

.footer-about {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 25px;
    line-height: 1.8;
}

.footer-title {
    color: white;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.footer-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background: var(--accent-color);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
    display: flex;
    align-items: center;
}

.footer-links a:hover {
    color: white;
    padding-left: 8px;
}

.footer-links a i {
    margin-right: 10px;
    font-size: 0.9rem;
}

/* Contact Info Styling - Block layout without <br/> */
.contact-info {
    color: rgba(255, 255, 255, 0.7);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-item i {
    color: var(--accent-color);
    margin-right: 15px;
    margin-top: 4px;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-content {
    flex: 1;
    display: block; /* Changed from flex to block for proper stacking */
}

.contact-label {
    display: block; /* Makes heading a block element */
    margin-bottom: 4px; /* Space between heading and detail */
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    font-size: 1rem;
    line-height: 1.3;
}

.contact-detail {
    display: block; /* Makes detail a block element */
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    line-height: 1.4;
    transition: var(--transition);
}

.contact-detail:hover {
    color: white;
    text-decoration: underline;
}

/* For links specifically */
a.contact-detail:hover {
    color: white;
    text-decoration: underline;
}

/* Social Icons */
.social-icons {
    display: flex;
    margin-top: 25px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    margin-right: 12px;
    color: white;
    transition: var(--transition);
}

.social-icons a:hover {
    background: var(--gradient-accent);
    transform: translateY(-5px);
}

.copyright {
    background: rgba(0, 0, 0, 0.2);
    padding: 25px 0;
    margin-top: 60px;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .contact-item {
        margin-bottom: 18px;
    }
    
    .contact-label {
        margin-bottom: 3px;
    }
}