/* Color Variables */
:root {
    --primary-color: #1472a6;
    --secondary-color: #6c757d;
    --dark-color: #343a40;
    --light-color: #f8f9fa;
    --white-color: #ffffff;
    --menu-bg-color: #2c3e50;
    --menu-text-color: #ffffff;
    --menu-hover-color: #3498db;
}

/* General Styles */
body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
}

/* Top Bar */
.top-bar {
    font-size: 0.9rem;
}

/* Header */
header {
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: relative;
}

.navbar-nav .nav-link {
    padding: 0.5rem 1rem;
    color: var(--dark-color);
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-color);
}

/* Mobile Menu Styles */
.navbar-toggler {
    padding: 0.25rem;
    font-size: 1.5rem;
    color: var(--dark-color);
    margin-left: auto;
}

.navbar-toggler:focus {
    box-shadow: none;
}

@media (max-width: 991.98px) {
    header .container {
        position: relative;
    }

    .navbar-collapse {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        width: 280px;
        background: var(--menu-bg-color);
        padding: 1rem;
        box-shadow: -2px 0 5px rgba(0,0,0,0.1);
        z-index: 1000;
        transform: translateX(100%);
        transition: transform 0.3s ease-in-out;
    }

    .navbar-collapse.show {
        transform: translateX(0);
    }

    .navbar-nav {
        padding: 0.5rem 0;
        margin-top: 2rem;
    }

    .navbar-nav .nav-item {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .navbar-nav .nav-item:last-child {
        border-bottom: none;
    }

    .navbar-nav .nav-link {
        padding: 0.75rem 0;
        color: var(--menu-text-color);
        font-weight: 500;
    }

    .navbar-nav .nav-link:hover {
        color: var(--menu-hover-color);
    }

    .navbar-nav .nav-link i {
        margin-right: 0.5rem;
        width: 20px;
        text-align: center;
    }

    /* Logo and Menu Icon Alignment */
    header .row {
        align-items: center;
    }

    header .col-6 {
        display: flex;
        align-items: center;
    }

    header .col-6:first-child {
        justify-content: flex-start;
    }

    header .col-6:last-child {
        justify-content: flex-end;
    }

    /* Add overlay when menu is open */
    .navbar-collapse::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0,0,0,0.5);
        z-index: -1;
        opacity: 0;
        transition: opacity 0.3s ease-in-out;
    }

    .navbar-collapse.show::before {
        opacity: 1;
    }
}

/* Mid Bar */
.mid-bar {
    border-bottom: 1px solid #dee2e6;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: ">";
}

/* Cards */
.card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 1.5rem;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.card-img-top {
    height: 200px;
    object-fit: cover;
}

/* Footer */
footer {
    background-color: var(--dark-color);
}

.bg-darker {
    background-color: #1a1a1a;
}

.social-links a {
    font-size: 1.2rem;
    transition: opacity 0.3s ease;
}

.social-links a:hover {
    opacity: 0.8;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .top-bar .text-end {
        text-align: left !important;
        margin-top: 0.5rem;
    }
    
    .card-img-top {
        height: 180px;
    }
}

/* Service Icons */
.service-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.ic {
    color: var(--primary-color);
}

/* Custom Button Styles */
.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background-color: #0056b3;
    border-color: #0056b3;
}

/* Animation Classes */
.fade-in {
    animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
} 