/* ===== ROOT VARIABLES ===== */
:root {
    --primary: #6366f1;
    --primary-dark: #4f46e5;
    --secondary: #06b6d4;
    --success: #10b981;
    --warning: #f59e0b;
    --danger: #ef4444;
    --dark: #1e293b;
    --light: #f8fafc;
    --white: #ffffff;
    --gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --font-primary: 'Plus Jakarta Sans', sans-serif;
    --font-secondary: 'Inter', sans-serif;
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 15px rgba(0,0,0,0.1);
    --shadow-xl: 0 20px 25px rgba(0,0,0,0.1);
    --transition: all 0.3s ease;
}

html, body {
  overflow-x: hidden;  /* stops horizontal scrolling */
}


/* ===== GLOBAL STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-secondary);
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 700;
    line-height: 1.2;
    color: var(--dark);
}

a {
    text-decoration: none;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
}

.section-padding {
    padding: 80px 0;
}

@media (max-width: 768px) {
    .section-padding {
        padding: 60px 0;
    }
}

/* ===== PRELOADER ===== */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loader-wrapper {
    text-align: center;
}

.loader {
    width: 50px;
    height: 50px;
    border: 5px solid var(--light);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

.loader-text {
    color: var(--primary);
    font-weight: 600;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

body.loaded #preloader {
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease;
}

/* ===== NAVIGATION ===== */
#mainNav {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    
}

#mainNav.scrolled {
    padding: 0.5rem 0;
    box-shadow: var(--shadow-md);
}

.navbar-brand {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary) !important;
    display: flex;
    align-items: center;
    gap: 10px;
}

.brand-icon {
    height: 45px;
    width: auto;
    display: inline-block;
    margin-bottom: 1rem;
}


.navbar-dark .navbar-nav .nav-link {
    color: var(--dark) !important;
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: var(--transition);
}

.navbar-dark .navbar-nav .nav-link:hover {
    color: var(--primary) !important;
}

.nav-cta {
    background: var(--gradient);
    color: var(--white) !important;
    padding: 0.5rem 1.5rem !important;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* ===== FLOATING ACTION BUTTONS ===== */
.floating-actions {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.fab-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 24px;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    position: relative;
}

.fab-btn.whatsapp {
    background: linear-gradient(135deg, #25d366, #128c7e);
}

.fab-btn.call {
    background: var(--gradient);
}

.fab-btn:hover {
    transform: scale(1.1);
    color: var(--white);
}

.fab-tooltip {
    position: absolute;
    right: 70px;
    background: var(--dark);
    color: var(--white);
    padding: 8px 15px;
    border-radius: 8px;
    white-space: nowrap;
    font-size: 14px;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
}

.fab-btn:hover .fab-tooltip {
    opacity: 1;
}

/* ===== HERO SECTION ===== */
.hero-section {
    min-height: 100vh;
    position: relative;
    background: var(--gradient);
    overflow: hidden;
    padding-top: 80px;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.hero-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.hero-slider {
    position: relative;
    z-index: 3;
    width: 100%;
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
}

.hero-slide {
    position: absolute;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease, visibility 1s ease;
    display: flex;
    align-items: center;
}

.hero-slide.active {
    position: relative;
    opacity: 1;
    visibility: visible;
}

.hero-content {
    padding: 40px 0;
}

.badge-hero {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.1;
}

.text-gradient {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
}

.stat-item i {
    color: var(--success);
    font-size: 20px;
}

.hero-image {
    position: relative;
    display: inline-block;
    
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(2deg); }
}

.hero-image img {
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    width: 100%;
    height: auto;
    display: block;
    position: static;
}

.floating-badge {
    position: absolute;
    background: var(--white);
    padding: 15px 25px;
    border-radius: 15px;
    box-shadow: var(--shadow-xl);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    animation: float 4s ease-in-out infinite;
    z-index: 10;
}

.badge-1 {
    top: -20px;
    left: -20px;
}

.badge-2 {
    bottom: 30px;
    right: -20px;
    animation-delay: 2s;
}

.price-card {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--white);
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-xl);
    z-index: 10;
}

.price-from {
    display: block;
    color: var(--dark);
    font-size: 14px;
    margin-bottom: 5px;
}

.price-amount {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.feature-checklist {
    margin-bottom: 30px;
}

.check-item {
    display: flex;
    align-items: center;
    gap: 15px;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 15px;
    font-size: 18px;
}

.check-item i {
    color: var(--success);
    font-size: 24px;
}

.counter-wrapper {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.counter-box {
    text-align: center;
}

.counter-box h3 {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 5px;
    font-weight: 700;
}

.counter-box p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

/* Slider Controls */
.slider-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 30px;
    z-index: 10;
    pointer-events: none;
}

.slider-prev,
.slider-next {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    font-size: 20px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: all;
}

.slider-prev:hover,
.slider-next:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

@media (max-width: 768px) {
    .slider-dots {
        display: none;
    }
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    width: 30px;
    border-radius: 6px;
    background: var(--white);
}

.dot:hover {
    background: rgba(255, 255, 255, 0.8);
}

/* ===== SECTION HEADERS ===== */
.section-header {
    margin-bottom: 50px;
}

.section-badge {
    background: var(--gradient);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 15px;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.section-subtitle {
    color: #64748b;
    font-size: 1.1rem;
}

/* ===== SERVICE CARDS ===== */
.service-card {
    background: var(--white);
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: var(--gradient);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    color: var(--white);
}

.service-card h4 {
    margin-bottom: 15px;
}

.service-card p {
    color: #64748b;
    margin-bottom: 20px;
}

.service-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
}

/* ===== WHY CARDS ===== */
.why-card {
    background: var(--white);
    padding: 30px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    transition: var(--transition);
    height: 220px;
}
@media (max-width: 768px) {
  .why-card {
      height: 370px !important;
  }
}
.why-card:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-xl);
}

.why-icon {
    width: 60px;
    margin: 0px auto !important;
    height: 60px;
    background: var(--gradient);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--white);
    flex-shrink: 0;
}

.why-content h4 {
    margin-bottom: 10px;
}

.why-content p {
    color: #64748b;
    margin: 0;
}

/* ===== COMPARISON TABLE ===== */
.comparison-table {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.comparison-table .table {
    margin-bottom: 0;
}

.comparison-table th {
    background: var(--light);
    padding: 15px;
    font-weight: 600;
}

.comparison-table th.highlight {
    background: var(--gradient);
    color: var(--white);
}

.comparison-table td {
    padding: 15px;
    vertical-align: middle;
}

/* ===== PROCESS CARDS ===== */
.process-card {
    text-align: center;
    position: relative;
    padding: 30px;
}

.process-number {
    position: absolute;
    top: 0;
    right: 20px;
    font-size: 3rem;
    font-weight: 800;
    color: rgba(99, 102, 241, 0.1);
}

.process-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--white);
}

.process-card h4 {
    margin-bottom: 10px;
}

.process-card p {
    color: #64748b;
}

/* ===== PORTFOLIO ===== */
.portfolio-item {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    height: 300px;
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.portfolio-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    padding: 30px;
    transform: translateY(100%);
    transition: var(--transition);
}

.portfolio-item:hover img {
    transform: scale(1.1);
}

.portfolio-item:hover .portfolio-overlay {
    transform: translateY(0);
}

.portfolio-overlay h5 {
    color: var(--white);
    margin-bottom: 5px;
}

.portfolio-overlay p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 15px;
}

/* ===== PRICING CARDS ===== */
.pricing-card {
    background: var(--white);
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: var(--shadow-md);
    position: relative;
    transition: var(--transition);
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.pricing-card.featured {
    transform: scale(1.05);
    box-shadow: var(--shadow-xl);
    border: 2px solid var(--primary);
}

.badge-popular {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient);
    color: var(--white);
    padding: 5px 20px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
}

.pricing-header {
    text-align: center;
    
}

.pricing-header h4 {
    margin-bottom: 20px;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 10px;
}

.currency {
    font-size: 1.5rem;
    color: var(--primary);
    margin-right: 5px;
}

.amount {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
}

.period {
    font-size: 1.2rem;
    color: #64748b;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.pricing-features li {
    padding: 12px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.pricing-features i {
    color: var(--success);
    font-size: 18px;
}

/* ===== TESTIMONIALS ===== */
.testimonial-card {
    background: var(--white);
    padding: 30px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    height: 100%;
}

.testimonial-card .stars {
    color: #ffd700;
    margin-bottom: 20px;
}

.testimonial-card p {
    font-style: italic;
    color: #64748b;
    margin-bottom: 20px;
    line-height: 1.8;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.testimonial-author h6 {
    margin-bottom: 0;
}

.testimonial-author small {
    color: #64748b;
}

/* ===== FAQ ===== */
.accordion-item {
    background: var(--white);
    border: none;
    margin-bottom: 15px;
    border-radius: 15px !important;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.accordion-button {
    background: var(--white);
    color: var(--dark);
    font-weight: 600;
    padding: 20px;
    font-size: 1.1rem;
}

.accordion-button:not(.collapsed) {
    background: var(--gradient);
    color: var(--white);
}

.accordion-button:focus {
    box-shadow: none;
}

.accordion-body {
    padding: 20px;
    color: #64748b;
}

/* ===== CONTACT SECTION ===== */
#contact {
    background: var(--gradient);
}

.contact-info h2 {
    color: var(--white);
}

.contact-info .lead {
    color: rgba(255, 255, 255, 0.9);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-item i {
    font-size: 24px;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-item h5 {
    color: var(--white);
    margin-bottom: 5px;
}

.contact-item p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
    margin-bottom: 1.5rem
}

.social-links a:hover {
    background: var(--white);
    color: var(--primary);
}

.contact-form {
    background: rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.contact-form .form-control {
    background: rgba(255, 255, 255, 0.9);
    border: none;
    padding: 15px;
    font-size: 16px;
    border-radius: 10px;
}

.contact-form .form-control:focus {
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--dark);
    color: rgba(255, 255, 255, 0.8);
    padding: 50px 0 20px;
}

.footer h5 {
    color: var(--white);
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
}

.footer-links a:hover {
    color: var(--white);
}

.newsletter-form {
    display: flex;
    gap: 10px;
}

.newsletter-form .form-control {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.newsletter-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

/* ===== BUTTONS ===== */
.btn {
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 50px;
    transition: var(--transition);
}

.btn-primary {
    background: var(--gradient);
    border: none;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-outline-primary {
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-outline-primary:hover {
    background: var(--gradient);
    border-color: transparent;
    color: var(--white);
}

.btn-outline-light {
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: var(--white);
}

.btn-outline-light:hover {
    background: var(--white);
    color: var(--primary);
    border-color: var(--white);
}

.btn-light {
    background: var(--white);
    color: var(--primary);
}

.btn-light:hover {
    background: var(--light);
    transform: translateY(-2px);
}

/* ===== UTILITIES ===== */
.bg-light {
    background-color: #f8f9fa !important;
}

.bg-primary {
    background: var(--gradient) !important;
}

.text-gradient {
    background: var(--gradient);
    -webkit-background-clip: text; /* For older versions of Safari and Chrome */
    -webkit-text-fill-color: transparent;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
    .hero-section {
        padding-top: 70px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .pricing-card.featured {
        transform: scale(1);
    }
    
    .hero-image {
        margin-top: 35px;
        position: relative;
    }
    
    .floating-badge {
        display: none;
    }
    
    .price-card {
        position: static;
        transform: none;
        margin-top: 20px;
    }

    /* Fix navbar container padding and overflow on smaller screens */
    #mainNav .container {
        padding-left: 10px;
        padding-right: 10px;
        max-width: 100%;
        overflow-x: hidden;
    }

    #mainNav {
        overflow-x: hidden;
    }

    #mainNav .navbar-collapse {
        width: 100%;
        overflow-x: hidden;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding-top: 60px;
        min-height: auto;
    }
    
    .hero-slider {
        min-height: auto;
        padding: 40px 0;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .floating-actions {
        bottom: 20px;
        right: 20px;
    }
    
    .fab-btn {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .fab-tooltip {
        display: none;
    }
    
    .hero-content {
        padding: 20px 0;
        margin-top: 1.5rem;
    }
    
    .slider-controls {
        padding: 0 15px;
    }
    
    .slider-prev,
    .slider-next {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .comparison-table {
        padding: 20px;
    }
    
    .why-card {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-form {
        padding: 30px 20px;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .counter-box h3 {
        font-size: 2rem;
    }
    
    .check-item {
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 1.75rem;
        line-height: 1.2;
    }
    
    .hero-description {
        font-size: 0.95rem;
        line-height: 1.5;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .btn-lg {
        padding: 10px 20px;
        font-size: 1rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 15px;
    }
    
    .counter-wrapper {
        flex-direction: column;
        text-align: center;
    }
    
    .badge-hero {
        font-size: 12px;
        padding: 6px 16px;
    }
    
    .hero-buttons {
        gap: 10px;
    }
    
    .slider-dots {
        bottom: 15px;
    }
    
    .hero-slide {
        padding: 0 15px;
    }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-on-scroll {
    animation: fadeInUp 0.8s ease forwards;
}

/* ===== CUSTOM SCROLLBAR ===== */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--light);
}

::-webkit-scrollbar-thumb {
    background: var(--gradient);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}
/* Custom CSS for black navbar toggle */
.navbar-toggler {
    border-color: black !important;
    width: auto; /* Changed from 300px to auto to prevent excessive width */
    padding: 0.25rem 0.75rem; /* Bootstrap default padding */
}

.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, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.2rem rgba(0, 0, 0, 0.25);
}
