/********** KK Construction - Custom Website Styles **********/
:root {
    --primary: #ea580c;
    --primary-dark: #c2410c;
    --primary-light: #fb923c;
    --secondary: #f59e0b;
    --secondary-dark: #d97706;
    --accent: #fbbf24;
    --light: #f8fafc;
    --light-gray: #e5e7eb;
    --dark: #1f2937;
    --dark-gray: #374151;
    --text: #4b5563;
    --white: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', 'Roboto', sans-serif;
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
}

/* Custom Spacing */
.section-padding {
    padding: 80px 0;
}

.section-padding-lg {
    padding: 100px 0;
}

/* Topbar Redesign */
.topbar {
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-gray) 100%);
    padding: 3px 0;
    border-bottom: 2px solid var(--primary);
}

.topbar-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.topbar-item i {
    color: var(--primary);
    font-size: 1.2rem;
}

.topbar-item h6 {
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 600;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.topbar-item span {
    color: var(--light-gray);
    font-size: 0.9rem;
}

/* Navbar Redesign */
.navbar-custom {
    background: var(--white) !important;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    padding: 4px 0;
    transition: all 0.3s ease;
}

.navbar-custom.scrolled {
    padding: 4px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.navbar-brand-custom {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.navbar-brand-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 12px;
}

.navbar-brand-custom .brand-name {
    font-size: 1.6rem;
    font-weight: 800;
    margin: 0;
    letter-spacing: 1.2px;
    line-height: 1.3;
    white-space: nowrap;
    font-family: 'Roboto', 'Open Sans', sans-serif;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    display: inline-block;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 25%, var(--dark) 75%, var(--dark-gray) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
}

.navbar-brand-custom .brand-name::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--primary-light) 50%, var(--primary) 100%);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
    box-shadow: 0 2px 8px rgba(234, 88, 12, 0.3);
}

.navbar-brand-custom:hover .brand-name {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 35%, var(--primary-dark) 65%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transform: translateY(-2px);
    letter-spacing: 1.5px;
    filter: brightness(1.1);
}

.navbar-brand-custom:hover .brand-name::after {
    width: 100%;
}

.navbar-brand-custom h1 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--dark);
    margin: 0;
    letter-spacing: 1px;
}

.navbar-brand-custom .tagline {
    font-size: 0.65rem;
}

/* Logo Styling - Professional and Standardized */
.logo-img,
.navbar-brand img,
.navbar-brand-custom img {
    height: 70px;
    width: auto;
    max-width: 250px;
    object-fit: contain;
    transition: all 0.3s ease;
    display: block;
    filter: brightness(1.1);
}

.logo-img:hover,
.navbar-brand img:hover,
.navbar-brand-custom img:hover {
    transform: scale(1.05);
    filter: brightness(1.1);
}

/* Logo in dark navbar (for pages with dark background) */
.bg-dark .logo-img,
.bg-dark .navbar-brand img,
.bg-dark .navbar-brand-custom img,
.navbar-dark .logo-img,
.navbar-dark .navbar-brand img {
    filter: brightness(1.2) contrast(1.1);
}

/* Logo in footer */
.footer .logo-img,
.footer .navbar-brand img,
.footer-custom .logo-img,
.footer-custom .navbar-brand img {
    height: 70px;
    width: auto;
    max-width: 220px;
    margin-bottom: 15px;
    filter: brightness(1.2);
}

/* Responsive logo sizing */
@media (max-width: 768px) {
    .logo-img,
    .navbar-brand img,
    .navbar-brand-custom img {
        height: 50px;
        max-width: 150px;
    }
    
    .navbar-brand-custom .brand-name {
        font-size: 1.25rem;
        letter-spacing: 1px;
    }
    
    .footer .logo-img,
    .footer .navbar-brand img,
    .footer-custom .logo-img,
    .footer-custom .navbar-brand img {
        height: 55px;
        max-width: 180px;
    }
}

@media (max-width: 576px) {
    .logo-img,
    .navbar-brand img,
    .navbar-brand-custom img {
        height: 45px;
        max-width: 130px;
    }
    
    .navbar-brand-custom {
        gap: 10px;
    }
    
    .navbar-brand-custom .brand-name {
        font-size: 1.1rem;
        letter-spacing: 0.8px;
    }
    
    .footer .logo-img,
    .footer .navbar-brand img,
    .footer-custom .logo-img,
    .footer-custom .navbar-brand img {
        height: 50px;
        max-width: 150px;
    }
}
    color: var(--primary);
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 2px;
}

.navbar-nav-custom .nav-link {
    color: var(--dark) !important;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 8px 20px !important;
    margin: 0 5px;
    position: relative;
    text-transform: none;
    transition: all 0.3s ease;
}

.navbar-nav-custom .nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.navbar-nav-custom .nav-link:hover::before,
.navbar-nav-custom .nav-link.active::before {
    width: 80%;
}

.navbar-nav-custom .nav-link:hover,
.navbar-nav-custom .nav-link.active {
    color: var(--primary) !important;
}

.btn-quote {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white) !important;
    padding: 10px 25px !important;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    text-transform: none;
}

.btn-quote:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(234, 88, 12, 0.4);
    color: var(--white) !important;
}

/* Hero Section Redesign */
.hero-section {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(31, 41, 55, 0.85) 0%, rgba(55, 65, 81, 0.75) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    padding: 60px 0;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    text-transform: none;
}

.hero-content .lead {
    font-size: 1.3rem;
    margin-bottom: 25px;
    color: var(--light-gray);
}

.hero-tagline {
    font-size: 1.1rem;
    color: var(--secondary);
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.btn-hero {
    background: var(--primary);
    color: var(--white);
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 5px;
    border: none;
    transition: all 0.3s ease;
    text-transform: none;
    display: inline-block;
    text-decoration: none;
}

.btn-hero:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(234, 88, 12, 0.4);
    color: var(--white);
}

.btn-hero-outline {
    background: transparent;
    color: var(--white);
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 5px;
    border: 2px solid var(--white);
    transition: all 0.3s ease;
    text-transform: none;
    display: inline-block;
    text-decoration: none;
    margin-left: 15px;
}

.btn-hero-outline:hover {
    background: var(--white);
    color: var(--dark);
    transform: translateY(-3px);
}

/* Section Headings */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 15px;
    text-transform: none;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text);
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-title span {
    color: var(--primary);
    position: relative;
}

.section-title span::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 2px;
}

/* About Section Redesign */
.about-section {
    background: var(--white);
}

.about-image-wrapper {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.about-image-wrapper::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 200px;
    height: 200px;
    background: var(--primary);
    opacity: 0.1;
    border-radius: 50%;
    z-index: -1;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    padding: 12px 0;
    display: flex;
    align-items: center;
    gap: 15px;
}

.feature-list li i {
    color: var(--primary);
    font-size: 1.2rem;
    width: 25px;
}

/* Services Section Redesign */
.services-section {
    background: linear-gradient(180deg, var(--light) 0%, var(--white) 100%);
}

.service-card {
    background: var(--white);
    border-radius: 10px;
    padding: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    height: 100%;
    display: flex;
    flex-direction: column;
    cursor: pointer;
}

a .service-card {
    text-decoration: none;
    color: inherit;
}

a:hover .service-card {
    text-decoration: none;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.service-card-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.service-card:hover .service-card-image {
    transform: scale(1.1);
}

.service-icon-wrapper {
    position: relative;
    margin-top: -50px;
    margin-bottom: 20px;
    z-index: 2;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-shadow: 0 5px 20px rgba(234, 88, 12, 0.3);
    transition: all 0.4s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-icon i {
    color: var(--white);
    font-size: 2rem;
}

.service-card-body {
    padding: 0 30px 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.service-card-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 15px;
    text-transform: none;
}

.service-card-text {
    color: var(--text);
    margin-bottom: 20px;
    flex-grow: 1;
}

.service-card-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
}

a:hover .service-card-link {
    color: var(--primary-dark);
    gap: 12px;
}

/* Portfolio Section Redesign */
.portfolio-section {
    background: var(--white);
}

.portfolio-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 50px;
}

.filter-btn {
    background: var(--white);
    color: var(--dark);
    border: 2px solid var(--light-gray);
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    transform: translateY(-2px);
}

.portfolio-item-custom {
    margin-bottom: 30px;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
}

.portfolio-item-custom:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.portfolio-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.portfolio-item-custom:hover .portfolio-image {
    transform: scale(1.1);
}

/* Portfolio Gallery - Clickable Images */
.portfolio-box a[data-lightbox] {
    position: relative;
    display: block;
    overflow: hidden;
    transition: all 0.3s ease;
}

.portfolio-box a[data-lightbox]:hover {
    opacity: 0.9;
}

.portfolio-box a[data-lightbox] img {
    transition: transform 0.3s ease, opacity 0.3s ease;
    width: 100%;
    height: auto;
}

.portfolio-box a[data-lightbox]:hover img {
    transform: scale(1.05);
    opacity: 0.9;
}

/* Ensure plus button is still visible and clickable */
.portfolio-box .portfolio-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 45px;
    height: 45px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    z-index: 10;
    transition: all 0.3s ease;
    opacity: 0;
}

.portfolio-box:hover .portfolio-btn {
    opacity: 1;
}

.portfolio-box .portfolio-btn:hover {
    background: var(--primary-dark);
    transform: scale(1.1);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(234, 88, 12, 0.9) 0%, rgba(217, 119, 6, 0.9) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.portfolio-item-custom:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-overlay-content {
    text-align: center;
    color: var(--white);
    padding: 20px;
}

.portfolio-overlay-content h4 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.portfolio-overlay-content p {
    margin: 0;
    font-size: 0.9rem;
}

/* Team Section Redesign */
.team-section {
    background: var(--light);
}

.team-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    text-align: center;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.team-image {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.team-info {
    padding: 25px;
}

.team-name {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 5px;
}

.team-role {
    color: var(--primary);
    font-size: 0.95rem;
    font-weight: 500;
}

/* Testimonial Section Redesign */
.testimonial-section {
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-gray) 100%);
    color: var(--white);
}

.testimonial-card {
    background: var(--white);
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    color: var(--text);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 30px;
    font-size: 100px;
    color: var(--primary);
    opacity: 0.2;
    font-family: serif;
    line-height: 1;
}

.testimonial-text {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 25px;
    color: var(--text);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary);
}

.testimonial-author-info h5 {
    margin: 0;
    color: var(--dark);
    font-weight: 600;
}

.testimonial-author-info p {
    margin: 0;
    color: var(--text);
    font-size: 0.9rem;
}

/* Footer Redesign */
.footer-custom {
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-gray) 100%);
    color: var(--light-gray);
    padding: 60px 0 20px;
}

.footer-section-title {
    color: var(--white);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-link {
    color: var(--light-gray);
    text-decoration: none;
    display: block;
    padding: 8px 0;
    transition: all 0.3s ease;
}

.footer-link:hover {
    color: var(--primary);
    padding-left: 10px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 40px;
    padding-top: 20px;
    text-align: center;
}

/* CEO Video Styling */
.ceo-video-container {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
    background: #000;
}

.ceo-video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    background: #000;
}

.ceo-video-wrapper video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #000;
}

/* Responsive video sizing */
@media (max-width: 768px) {
    .ceo-video-wrapper {
        padding-bottom: 75%; /* Taller aspect ratio for mobile */
    }
}

/* Buttons */
.btn-primary-custom {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: 600;
    border: none;
    transition: all 0.3s ease;
    text-transform: none;
    text-decoration: none;
    display: inline-block;
}

.btn-primary-custom:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(234, 88, 12, 0.4);
    color: var(--white);
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-5px);
    color: var(--white);
}

/* Navbar Toggler - Mobile Menu Button */
.navbar-custom .navbar-toggler {
    border: 2px solid var(--primary) !important;
    border-radius: 5px;
    padding: 8px 12px;
    background-color: transparent !important;
    transition: all 0.3s ease;
    display: none !important; /* Hidden by default on large screens */
}

.navbar-custom .navbar-toggler:focus {
    box-shadow: 0 0 0 0.2rem rgba(234, 88, 12, 0.25);
    outline: none;
}

.navbar-custom .navbar-toggler:hover {
    background-color: var(--primary) !important;
    border-color: var(--primary-dark) !important;
}

/* Create hamburger icon using CSS - simple and reliable approach */
.navbar-custom .navbar-toggler-icon {
    width: 30px !important;
    height: 3px !important;
    display: inline-block !important;
    position: relative !important;
    background-image: none !important;
    background-color: var(--primary) !important;
    opacity: 1 !important;
    visibility: visible !important;
    border: none !important;
    border-radius: 2px !important;
    margin: 0 !important;
    padding: 0 !important;
    box-shadow: 0 7px 0 var(--primary), 0 -7px 0 var(--primary) !important;
    transition: all 0.3s ease !important;
}

/* Hover effect - change to white when button background is orange */
.navbar-custom .navbar-toggler:hover .navbar-toggler-icon {
    background-color: var(--white) !important;
    box-shadow: 0 7px 0 var(--white), 0 -7px 0 var(--white) !important;
}

/* Mobile Navigation Menu */
.navbar-custom .navbar-collapse {
    background-color: var(--white);
    margin-top: 15px;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.navbar-custom .navbar-nav {
    background-color: transparent;
}

/* Ensure navbar is visible on all screen sizes */
.navbar-custom {
    z-index: 1000;
    position: relative;
}

/* Responsive */
@media (max-width: 991.98px) {
    /* Show hamburger menu on small screens */
    .navbar-custom .navbar-toggler {
        display: block !important;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .navbar-nav-custom .nav-link {
        padding: 12px 0 !important;
        margin: 0 !important;
        border-bottom: 1px solid var(--light-gray);
    }
    
    .navbar-nav-custom .nav-link:last-child {
        border-bottom: none;
    }
    
    .navbar-nav-custom .nav-link:hover,
    .navbar-nav-custom .nav-link.active {
        color: var(--primary) !important;
        padding-left: 10px !important;
    }
    
    .navbar-nav-custom .nav-link::before {
        display: none;
    }
    
    .btn-quote {
        margin-top: 15px;
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 767.98px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .btn-hero-outline {
        margin-left: 0;
        margin-top: 15px;
        display: block;
    }
    
    .section-padding {
        padding: 60px 0;
    }
    
    .section-padding-lg {
        padding: 80px 0;
    }
    
    /* Mobile navbar adjustments */
    .navbar-custom {
        padding: 10px 0;
    }
    
    .navbar-custom .navbar-collapse {
        margin-top: 10px;
        padding: 15px;
    }
    
    .navbar-brand-custom .brand-name {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    /* Small mobile navbar adjustments */
    .navbar-custom .navbar-toggler {
        padding: 6px 10px;
        border-width: 2px;
    }
    
    .navbar-custom .navbar-toggler-icon {
        width: 20px;
        height: 20px;
    }
    
    .navbar-brand-custom {
        gap: 8px;
    }
    
    .navbar-custom .navbar-collapse {
        margin-top: 10px;
        padding: 10px;
    }
}
