     :root {
        --primary-color: #1a5276;
        --secondary-color: #2e86c1;
        --accent-color: #f39c12;
        --light-color: #ecf0f1;
        --dark-color: #2c3e50;
    }
    
    body {
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        color: #333;
        line-height: 1.6;
        display: flex;
        flex-direction: column;
        min-height: 100vh;
    }
    
    .navbar {
        background-color: white;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        padding: 15px 0;
    }
    
    .navbar-brand {
        font-weight: 700;
        color: var(--primary-color);
        font-size: 1.5rem;
    }
    
    .nav-link {
        color: var(--dark-color);
        font-weight: 500;
        margin: 0 10px;
        transition: color 0.3s;
    }
    
    .nav-link:hover {
        color: var(--secondary-color);
    }
    /* Dropdown menu on hover */
    
    .dropdown:hover .dropdown-menu {
        display: block;
        margin-top: 0;
    }
    
    .dropdown-menu {
        border: none;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        border-radius: 8px;
        padding: 10px 0;
    }
    
    .dropdown-item {
        padding: 10px 20px;
        transition: all 0.3s;
    }
    
    .dropdown-item:hover {
        background-color: var(--light-color);
        color: var(--primary-color);
    }
    
    .hero-section {
        background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?ixlib=rb-4.0.3&auto=format&fit=crop&w=1500&q=80');
        background-size: cover;
        background-position: center;
        color: white;
        padding: 120px 0;
        text-align: center;
    }
    
    .btn-primary {
        background-color: var(--accent-color);
        border: none;
        padding: 12px 30px;
        font-weight: 600;
        transition: all 0.3s;
    }
    
    .btn-primary:hover {
        background-color: #e67e22;
        transform: translateY(-2px);
    }
    
    .section-title {
        position: relative;
        margin-bottom: 40px;
        font-weight: 700;
        color: var(--primary-color);
    }
    
    .section-title:after {
        content: '';
        display: block;
        width: 60px;
        height: 3px;
        background: var(--accent-color);
        margin: 15px auto;
    }
    
    .service-card {
        border: none;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s, box-shadow 0.3s;
        height: 100%;
    }
    
    .service-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    }
    
    .service-icon {
        font-size: 3rem;
        color: var(--secondary-color);
        margin-bottom: 20px;
    }
    
    .why-us-section {
        background-color: var(--light-color);
        padding: 80px 0;
    }
    
    .feature-box {
        text-align: center;
        padding: 30px;
        background: white;
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        transition: transform 0.3s;
    }
    
    .feature-box:hover {
        transform: translateY(-5px);
    }
    
    .feature-icon {
        font-size: 2.5rem;
        color: var(--secondary-color);
        margin-bottom: 20px;
    }
    
    footer {
        background-color: var(--dark-color);
        color: white;
        padding: 60px 0 30px;
        margin-top: auto;
    }
    
    .footer-links h5 {
        color: var(--accent-color);
        margin-bottom: 20px;
        font-weight: 600;
    }
    
    .footer-links ul {
        list-style: none;
        padding: 0;
    }
    
    .footer-links li {
        margin-bottom: 10px;
    }
    
    .footer-links a {
        color: #bdc3c7;
        text-decoration: none;
        transition: color 0.3s;
    }
    
    .footer-links a:hover {
        color: white;
    }
    
    .copyright {
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        padding-top: 20px;
        margin-top: 30px;
    }
    /* Page specific styles */
    
    .page-content {
        padding: 80px 0;
    }
    
    .blog-card {
        border: none;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s;
        margin-bottom: 30px;
    }
    
    .blog-card:hover {
        transform: translateY(-5px);
    }
    
    .contact-form {
        background: white;
        padding: 30px;
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }
    
    .form-control {
        padding: 15px;
        border: 1px solid #ddd;
        border-radius: 8px;
        margin-bottom: 20px;
    }
    
    .team-member {
        text-align: center;
        margin-bottom: 40px;
    }
    
    .team-img {
        width: 180px;
        height: 180px;
        border-radius: 50%;
        object-fit: cover;
        margin-bottom: 20px;
        border: 5px solid var(--light-color);
    }
    /* Style the dropdown arrow */
    /* Remove default Bootstrap arrow */
    
    .nav-link.dropdown-toggle::after {
        display: none !important;
    }
    /* Custom arrow styling and rotation */
    
    .dropdown-arrow {
        display: inline-block;
        transition: transform 0.25s ease;
        margin-left: 6px;
    }
    
    .nav-item.dropdown.show .dropdown-arrow,
    .dropdown-arrow.rotated {
        transform: rotate(180deg);
    }
    /* Login form styles */
    
    .card {
        border: none;
        border-radius: 15px;
    }
    
    .card-title {
        color: var(--primary-color);
        font-weight: 700;
    }
    
    .form-control {
        border: 1px solid #ddd;
        border-radius: 8px;
        padding: 12px 15px;
        transition: all 0.3s;
    }
    
    .form-control:focus {
        border-color: var(--secondary-color);
        box-shadow: 0 0 0 0.2rem rgba(46, 134, 193, 0.25);
    }
    
    .btn-social {
        padding: 10px 15px;
        border-radius: 8px;
    }
    /* Mobile menu fixes */
    
    @media (max-width: 991.98px) {
        .navbar-collapse {
            background-color: white;
            padding: 1rem;
            border-radius: 0.5rem;
            box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
            margin-top: 0.5rem;
            max-height: 80vh;
            overflow-y: auto;
        }
        .navbar-nav .dropdown-menu {
            position: static;
            float: none;
            width: 100%;
            margin: 0.25rem 0 0.5rem 0;
            border: none;
            box-shadow: none;
            background-color: rgba(0, 0, 0, 0.03);
            padding: 0;
        }
        .dropdown-item {
            padding: 0.75rem 1.5rem 0.75rem 2.5rem;
            border-left: 3px solid transparent;
            transition: all 0.2s;
            color: #495057;
            font-weight: 500;
        }
        .dropdown-item:hover {
            background-color: transparent;
            border-left: 3px solid var(--primary-color);
            padding-left: 3rem;
            color: var(--primary-color);
        }
        .dropdown-toggle::after {
            display: inline-block;
            margin-left: 0.5em;
            vertical-align: 0.255em;
            content: "";
            border-top: 0.3em solid;
            border-right: 0.3em solid transparent;
            border-bottom: 0;
            border-left: 0.3em solid transparent;
            transition: transform 0.3s;
        }
        .dropdown:hover .dropdown-menu {
            display: none;
        }
        .nav-item {
            margin-bottom: 0.5rem;
        }
        .nav-link {
            padding: 0.75rem 1rem;
            border-radius: 0.375rem;
            transition: all 0.2s;
        }
        .nav-link:hover {
            background-color: rgba(0, 0, 0, 0.05);
        }
        /* Hide dropdown menu by default on mobile */
        .navbar-nav .dropdown-menu {
            display: none;
        }
        /* Show dropdown menu when active */
        .navbar-nav .dropdown-menu.show {
            display: block;
        }
    }
    /* Ensure proper navbar styling */
    
    .navbar-toggler {
        border: none;
        padding: 0.25rem 0.5rem;
    }
    
    .navbar-toggler:focus {
        box-shadow: none;
        outline: none;
    }
    
    .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(0, 0, 0, 0.55)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    }
    /* Card height fixes */
    
    .service-card {
        display: flex;
        flex-direction: column;
        min-height: 380px;
    }
    
    .service-card .card-body {
        flex: 1;
        display: flex;
        flex-direction: column;
    }
    
    .service-card .card-body ul {
        margin-top: auto;
    }
    /* Button positioning fixes */
    
    .text-center.mt-5 {
        position: relative;
        z-index: 10;
        margin-top: 2rem !important;
    }