
/* Navbar Logo */
.navbar-logo {
    width: auto;
    height: 100px;
    max-width: 100%;
}
/* Base Styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #000000
;
    padding-top: 0;
    margin: 0;
}

/* ===== Neutral Contrast Scrollbar ===== */

/* Chrome, Edge, Safari */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1; /* light gray track */
}

::-webkit-scrollbar-thumb {
  background-color: #b0b0b0; /* slightly darker gray thumb */
  border-radius: 8px;
  border: 2px solid #f1f1f1;
}

::-webkit-scrollbar-thumb:hover {
  background-color: #9a9a9a;
}

/* Firefox */
* {
  scrollbar-width: thin;
  scrollbar-color: #b0b0b0 #f1f1f1;
}

/* Sections */
section {
    padding: 80px 0;
}

/* Service Cards */
.service-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* Pricing Box */
.pricing-box {
    border-left: 4px solid #f97316;
    background: #f8fafc;
}
.hero {
    background: #FFFFFF;
padding: 100px 0 80px;
    margin-top: 0;
}
/* Buttons */
.btn {
    transition: all 0.3s ease;
}
.btn-primary {
    background-color: #f59e0b;
color: white;
}
.btn-primary:hover {
    background-color: #fbbf24;
transform: translateY(-2px);
}
/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.6s ease-out forwards;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    section {
        padding: 60px 0;
    }
    .hero {
        padding: 80px 0;
    }
}

/* Form styles */
input, textarea, select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    margin-bottom: 16px;
    transition: border-color 0.3s;
}
input:focus, textarea:focus, select:focus {
    border-color: #212b5f;
outline: none;
}