:root {
    --primary-color: #2c5aa0;
    --secondary-color: #f39c12;
    --dark-color: #1a1a1a;
    --light-color: #f8f9fa;
}

/* Dark theme variables */
[data-theme="dark"] {
    --bs-body-bg: #1a1a2e;
    --bs-body-color: #e6e6e6;
    --bs-light: #16213e;
    --bs-dark: #f8f9fa;
    --bs-primary: #4cc9f0;
    --bs-secondary: #7209b7;
    --primary-color: #4cc9f0;
    --secondary-color: #f39c12;
    --dark-color: #e6e6e6;
    --light-color: #16213e;
}


/* Dark theme styles */
[data-theme="dark"] body {
    background-color: var(--bs-body-bg);
    color: var(--bs-body-color);
}

[data-theme="dark"] .navbar {
    background-color: var(--bs-light) !important;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

[data-theme="dark"] .navbar-brand {
    color: var(--primary-color) !important;
}

[data-theme="dark"] .nav-link {
    color: var(--bs-body-color) !important;
}

[data-theme="dark"] .nav-link:hover {
    color: var(--secondary-color) !important;
}

/* Active navigation link styles */
.navbar .nav-link.active,
.navbar .nav-item.active .nav-link {
    color: var(--primary-color) !important;
    font-weight: 600;
    position: relative;
}

.navbar .nav-link.active::after,
.navbar .nav-item.active .nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background-color: var(--primary-color);
    transform: scaleX(1);
    transition: transform 0.3s ease;
}

[data-theme="dark"] .navbar .nav-link.active,
[data-theme="dark"] .navbar .nav-item.active .nav-link {
    color: var(--primary-color) !important;
}

[data-theme="dark"] .navbar .nav-link.active::after,
[data-theme="dark"] .navbar .nav-item.active .nav-link::after {
    background-color: var(--primary-color);
}

/* Navbar Logo */
.navbar-logo {
    height: 50px; /* Significantly increased size */
    width: auto;
    max-width: 200px; /* Prevents logo from becoming too wide */
    object-fit: contain;
    transition: all 0.3s ease;
}

/* Hover effect */
.navbar-brand:hover .navbar-logo {
    transform: scale(1.05);
}

/* Adjust logo size on smaller screens */
@media (max-width: 991.98px) {
    .navbar-logo {
        height: 45px;
    }
}

/* Ensure navbar has enough height for the logo */
.navbar {
    min-height: 80px; /* Increase navbar height */
}

.navbar-brand {
    padding: 10px 0;
    display: flex;
    align-items: center;
}

/* Adjust navbar toggler position */
.navbar-toggler {
    margin-top: 10px;
    margin-bottom: 10px;
}

[data-theme="dark"] .navbar-toggler {
    border-color: rgba(255, 255, 255, 0.5);
}

[data-theme="dark"] .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%28255, 255, 255, 0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
}

.navbar-brand {
    font-weight: bold;
    font-size: 1.5rem;
    color: var(--primary-color) !important;
}

.navbar-nav .nav-link {
    font-weight: 500;
    margin: 0 10px;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--secondary-color) !important;
}

.hero-section {
    background: linear-gradient(135deg, var(--primary-color), #3d6bb0);
    color: white;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 20"><path d="M0 10 L100 10" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/><path d="M10 0 L10 20" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></svg>') repeat;
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.btn-primary-custom {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-primary-custom:hover {
    background-color: #e67e22;
    border-color: #e67e22;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.btn-secondary-custom {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-secondary-custom:hover {
    background-color: #1e4085;
    border-color: #1e4085;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.section-padding {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.section-title h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.section-title::after {
    content: '';
    width: 60px;
    height: 4px;
    background: var(--secondary-color);
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.service-card {
    background: #fff;
    border-radius: 1rem;
    box-shadow: 0 2px 8px rgba(44,90,160,0.08);
    padding: 1rem 0.75rem;
    margin-bottom: 1.2rem;
    transition: box-shadow 0.3s, transform 0.3s;
    position: relative;
    z-index: 1;
}

.service-card:hover, .service-card.h-100:hover {
    box-shadow: 0 0 24px 4px rgba(44, 90, 160, 0.25), 0 2px 16px rgba(44,90,160,0.18);
    transform: translateY(-4px) scale(1.03);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), #3d6bb0);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.service-icon i {
    font-size: 2rem;
    color: white;
}

.team-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.team-card:hover {
    transform: translateY(-5px);
}

.team-img {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--primary-color), #3d6bb0);
    border-radius: 50%;
    margin: 30px auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-img i {
    font-size: 3rem;
    color: white;
}

.project-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.project-card:hover {
    transform: translateY(-5px);
}

.project-img {
    height: 250px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 4rem;
}

.project-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    padding: 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.project-card:hover .project-overlay {
    transform: translateY(0);
}

/* Page section styles */
.page-section {
    display: none;
}

.page-section.active {
    display: block;
}

/* Error 404 page */
.error-404 {
    text-align: center;
    padding: 100px 0;
}

.error-404 h1 {
    font-size: 8rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

/* Custom utility classes */
.icon-large {
    font-size: 2rem;
}

.icon-extra-large {
    font-size: 4rem;
}

.icon-huge {
    font-size: 10rem;
    opacity: 0.8;
}

.icon-container {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.gradient-bg-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
}

.gradient-bg-secondary {
    background: linear-gradient(135deg, var(--secondary-color), #e67e22);
    color: white;
}

.gradient-bg-success {
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    color: white;
}

.gradient-bg-purple {
    background: linear-gradient(135deg, #8e44ad, #9b59b6);
    color: white;
}

.gradient-bg-danger {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
}

.gradient-bg-warning {
    background: linear-gradient(135deg, #f39c12, #e67e22);
    color: white;
}

.card-icon-container {
    height: 90px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}

.map-container {
    height: 300px;
    background: #f0f0f0;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
}

.testimonial-avatar-container {
    width: 50px;
    height: 50px;
}

/* Custom Slider Styles */
.custom-slider {
    overflow: hidden;
    width: 100%;
    position: relative;
    height: 400px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.slider-track {
    display: flex;
    width: 200%; /* Show 3 slides at once */
    animation: scroll 20s linear infinite;
}

.slide {
    flex: 0 0 25%; /* Each slide takes 25% of container width (show ~3 slides) */
    min-width: 0;
    height: 400px;
    margin-right: 15px; /* Add gap between slides */
}

.gallery-slide {
    height: 100%;
    border-radius: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.6));
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.gallery-slide:hover .gallery-overlay {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.7));
}

@keyframes scroll {
    0% { 
        transform: translateX(0);
    }
    100% { 
        transform: translateX(-100%); /* Move by 100% to show seamless loop */
    }
}

/* Pause animation on hover */
.custom-slider:hover .slider-track {
    animation-play-state: paused;
}

/* Responsive adjustments for custom slider */
@media (max-width: 992px) {
    .slide {
        flex: 0 0 45%; /* Show 2 slides on tablet */
        margin-right: 10px;
    }
}

@media (max-width: 768px) {
    .custom-slider {
        height: 300px;
    }
    
    .slide {
        flex: 0 0 80%; /* Show 1.2 slides on mobile */
        height: 300px;
        margin-right: 10px;
    }
    
    .gallery-slide {
        height: 100%;
    }
    
    .gallery-slide h3 {
        font-size: 1.3rem;
    }
    
    .gallery-slide .lead {
        font-size: 0.9rem;
    }
}

/* Responsive adjustments */
@media (max-width: 575.98px) {
  .action-btn-responsive {
    display: block;
    width: 100%;
    margin-right: 0 !important;
    margin-bottom: 12px;
  }
  .action-btn-responsive:last-child {
    margin-bottom: 0;
  }
}

@media (max-width: 991.98px) {
    .navb[data-theme="dark"] {
            --bs-body-bg: #1a1a2e;
            --bs-body-color: #e6e6e6;
            --bs-light: #16213e;
            --bs-dark: #f8f9fa;
            --bs-primary: #4cc9f0;
            --bs-secondary: #7209b7;
        }
        
        /* Make hamburger menu white in dark mode */
        [data-theme="dark"] .navbar-toggler {
            border-color: rgba(255, 255, 255, 0.5);
        }
        
        [data-theme="dark"] .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%28255, 255, 255, 0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }  
    .navbar-nav .nav-item {
        margin: 5px 0;
    }
    
    .hero-section {
        padding: 80px 0;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
}

@media (max-width: 767.98px) {
    .hero-section {
        padding: 60px 0;
    }
    
    .section-padding {
        padding: 60px 0;
    }
    
    .service-card, .team-card, .project-card {
        margin-bottom: 30px;
    }
}

/* Portfolio card styles */
.card-img-top {
    height: 250px;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

.card:hover .card-img-top {
    transform: scale(1.05);
}

.card {
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: none;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.2) !important;
}

.card-body {
    padding: 25px;
}

.card-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.card-text {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Dark theme support for portfolio cards */
[data-theme="dark"] .card {
    background-color: var(--bs-light) !important;
    border-color: rgba(255,255,255,0.1);
}

[data-theme="dark"] .card-title {
    color: var(--bs-body-color) !important;
}

[data-theme="dark"] .card-text {
    color: rgba(230, 230, 230, 0.8) !important;
}

/* Additional utility classes */
.text-primary-custom {
    color: var(--primary-color) !important;
}

.bg-light-custom {
    background-color: var(--light-color);
}

/* Blog post styles */
.blog-post {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-post .card-body {
    flex: 1;
}

/* Footer styles */
.footer {
    background: var(--dark-color);
    color: white;
    padding: 50px 0 20px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--secondary-color);
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    margin: 0 5px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
}

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--secondary-color);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
    z-index: 1000;
}

.back-to-top:hover {
    background: #e67e22;
    transform: translateY(-3px);
    color: white;
}

/* Contact form styles */
.contact-form .form-control {
    border-radius: 8px;
    padding: 12px 15px;
    margin-bottom: 15px;
    border: 1px solid #e0e0e0;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-form .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(44, 90, 160, 0.25);
}

.contact-form textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

.contact-info {
    background: linear-gradient(135deg, var(--primary-color), #3d6bb0);
    padding: 30px;
    border-radius: 15px;
    color: white;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.contact-item i {
    font-size: 1.2rem;
    margin-right: 15px;
    margin-top: 5px;
}

/* Contact page specific styles */
.contact-info-item {
    padding: 15px 0;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), #3d6bb0);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-info-item h6 {
    color: var(--dark-color);
    margin-bottom: 5px;
    font-weight: 600;
}

.contact-info-item a {
    color: var(--primary-color);
    transition: color 0.3s ease;
}

.contact-info-item a:hover {
    color: var(--secondary-color);
}

#contactForm {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

#contactForm .form-label {
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 8px;
}

#contactForm .btn-primary-custom {
    width: 100%;
    padding: 15px;
    font-size: 1.1rem;
}

#formMessage .alert {
    border-radius: 10px;
    padding: 15px 20px;
    margin-bottom: 0;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Testimonial styles */
.testimonial-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin: 15px 0;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-author {
    font-weight: 600;
    margin-bottom: 5px;
}

.testimonial-role {
    color: #777;
    font-size: 0.9rem;
}

/* 404 Error Page */
.error-404 {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 0;
}

.error-404 h1 {
    font-size: 8rem;
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: 20px;
    line-height: 1;
}

.error-404 h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.error-404 p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #666;
}

/* Map container */
.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin-top: 30px;
}

/* Footer styles */
.footer {
    background: var(--dark-color);
    color: white;
    padding: 50px 0 20px;
}

.social-links a {
    color: white;
    font-size: 1.5rem;
    margin-right: 15px;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--secondary-color);
    text-decoration: none;
}

.copyright {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    margin-top: 30px;
    text-align: center;
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
}

/* Dark theme support for cards and components */
[data-theme="dark"] .service-card,
[data-theme="dark"] .team-card,
[data-theme="dark"] .project-card,
[data-theme="dark"] .testimonial-card {
    background: var(--bs-light);
    border-color: rgba(255,255,255,0.1);
    color: var(--bs-body-color);
}

[data-theme="dark"] #contactForm {
    background: var(--bs-light);
    color: var(--bs-body-color);
}

[data-theme="dark"] .contact-info-item h6 {
    color: var(--bs-body-color);
}

[data-theme="dark"] .section-title h2 {
    color: var(--bs-body-color);
}

[data-theme="dark"] .form-control {
    background-color: rgba(255,255,255,0.05);
    border-color: rgba(255,255,255,0.15);
    color: var(--bs-body-color);
}

[data-theme="dark"] .form-control:focus {
    background-color: rgba(255,255,255,0.08);
    border-color: var(--primary-color);
    color: var(--bs-body-color);
    box-shadow: 0 0 0 0.2rem rgba(76, 201, 240, 0.25);
}

[data-theme="dark"] .form-control::placeholder {
    color: rgba(255,255,255,0.5);
}

[data-theme="dark"] .form-label {
    color: var(--bs-body-color);
}

[data-theme="dark"] .alert-info {
    background-color: rgba(76, 201, 240, 0.1);
    border-color: rgba(76, 201, 240, 0.2);
    color: var(--bs-body-color);
}

[data-theme="dark"] .map-container {
    background: var(--bs-light);
}

[data-theme="dark"] .footer {
    background: #0f0f23;
    border-top: 1px solid rgba(255,255,255,0.1);
}

/* Dark theme button adjustments */
[data-theme="dark"] .theme-toggle {
    background: var(--primary-color);
}

[data-theme="dark"] .back-to-top {
    background: var(--secondary-color);
}

/* Dark theme responsive navbar */
@media (max-width: 991.98px) {
    [data-theme="dark"] .navbar-collapse {
        background: var(--bs-light);
        border-radius: 10px;
        margin-top: 10px;
        padding: 15px;
    }
    
    [data-theme="dark"] .theme-toggle {
        top: auto;
        bottom: 100px;
        right: 20px;
        transform: none;
    }
    
    [data-theme="dark"] .theme-toggle:hover {
        transform: scale(1.1);
    }
}

/* Dark theme scrolled navbar */
[data-theme="dark"] .navbar-scrolled {
    background-color: rgba(22, 33, 62, 0.95) !important;
    backdrop-filter: blur(10px);
}

/* Dark theme text and background fixes */
[data-theme="dark"] .bg-light {
    background-color: var(--bs-light) !important;
    color: var(--bs-body-color);
}

[data-theme="dark"] .section-padding {
    background-color: var(--bs-body-bg);
    color: var(--bs-body-color);
}

[data-theme="dark"] .section-padding.bg-light {
    background-color: var(--bs-light) !important;
}

[data-theme="dark"] h1,
[data-theme="dark"] h2,
[data-theme="dark"] h3,
[data-theme="dark"] h4,
[data-theme="dark"] h5,
[data-theme="dark"] h6 {
    color: var(--bs-body-color) !important;
}

[data-theme="dark"] .text-muted {
    color: rgba(230, 230, 230, 0.7) !important;
}

[data-theme="dark"] .lead {
    color: var(--bs-body-color) !important;
}

[data-theme="dark"] p {
    color: var(--bs-body-color);
}

[data-theme="dark"] .card {
    background-color: var(--bs-light) !important;
    border-color: rgba(255,255,255,0.1);
    color: var(--bs-body-color);
}

[data-theme="dark"] .card-title {
    color: var(--bs-body-color) !important;
}

[data-theme="dark"] .card-text {
    color: rgba(230, 230, 230, 0.8) !important;
}

[data-theme="dark"] .list-unstyled li {
    color: var(--bs-body-color);
}

[data-theme="dark"] .text-success {
    color: #28a745 !important;
}

[data-theme="dark"] .text-primary {
    color: var(--primary-color) !important;
}

[data-theme="dark"] small {
    color: rgba(230, 230, 230, 0.7) !important;
}

/* Hero section dark theme */
[data-theme="dark"] .hero-section {
    background: linear-gradient(135deg, #1a1a2e, #16213e) !important;
}

/* Button outlines in dark theme */
[data-theme="dark"] .btn-outline-light {
    color: var(--bs-body-color) !important;
    border-color: rgba(255,255,255,0.3) !important;
}

[data-theme="dark"] .btn-outline-light:hover {
    background-color: rgba(255,255,255,0.1) !important;
    color: var(--bs-body-color) !important;
    border-color: rgba(255,255,255,0.5) !important;
}

[data-theme="dark"] .btn-outline-primary {
    color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
}

[data-theme="dark"] .btn-outline-primary:hover {
    background-color: var(--primary-color) !important;
    color: white !important;
}

/* Smooth theme transitions */
body, .navbar, .service-card, .team-card, .project-card, .testimonial-card, 
#contactForm, .form-control, .footer, .card, .section-padding {
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}
