/* Smaller helpers */
.columns-2 { columns: 2; column-gap: 2rem; }
@media (max-width: 768px){ .columns-2 { columns: 1; } }

/* Make cards link fully clickable without underline clutter */
.card a.stretched-link { text-decoration: none; }

a{
    color: #A82C1A
}
/*adding custom logo size*/
.navbar-brand img{
    width:200px;
}
.footer-navbar img{ 
    width:150px;
    
}

.btn-primary, .btn-outline-primary {
    background-color: #092437;
    border-color: #092437;
    color:#fff
}
.btn-primary:hover {
    background-color: #0c3b52;
    border-color: #0c3b52;
}

.btn-outline-secondary {
    background-color: white;
    border-color: #092437;
    color: #092437;
}

.btn-outline-secondary:hover {
    background-color: #092437;
    border-color: #092437;
    color: white;
}
h1, h2, h3, h4, h5, h6 {
    font-family: 'Bebas Neue', 'Open Sans', sans-serif;
    color: #092437;
    font-weight: 400;
    letter-spacing: 0.5px;
}

/* Specific headline sizes with Bebas Neue emphasis */
h1 {
    font-size: 3.5rem;
    letter-spacing: 1px;
}

h2 {
    font-size: 2.75rem;
    letter-spacing: 0.8px;
}

h3 {
    font-size: 2.25rem;
    letter-spacing: 0.6px;
}

/* Responsive typography */
@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.75rem; }
}
#content{
    min-height:85vh
}
.card-img-top{
    max-height:266px;
}
@media (max-width: 1200px) {
.mobile-center{
justify-content:center !important;
align-items:center !important;
} 
 .mobile-center .ms-auto{
    margin-left:0 !important;
 }
}

/* Business Advisor Styles */
#business-advisor {
    max-width: 100%;
    margin-bottom: 2rem;
    border: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

#business-advisor .card-header {
    background: linear-gradient(135deg, #092437 0%, #0c3b52 100%);
    border-bottom: none;
}

#business-advisor .card-header h5 {
    color: white;
    margin: 0;
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
}

#business-advisor .card-body {
    padding: 1.5rem;
}

#business-advisor .btn {
    border-radius: 0.5rem;
    font-weight: 500;
    transition: all 0.2s ease-in-out;
}

/* Brand color buttons - blue background, white text */
#business-advisor .btn-outline-primary,
#business-advisor .btn-outline-secondary {
    background-color: #092437;
    border-color: #092437;
    color: white;
}

#business-advisor .btn-outline-primary:hover,
#business-advisor .btn-outline-secondary:hover {
    background-color: white;
    border-color: #092437;
    color: #092437;
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

#business-advisor .btn-success {
    background-color: #092437;
    border-color: #092437;
    color: white;
}

#business-advisor .btn-success:hover {
    background-color: white;
    border-color: #092437;
    color: #092437;
}

#business-advisor .btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

#business-advisor .list-group-item {
    border: none;
    border-bottom: 1px solid #e9ecef;
    padding: 1rem 0;
}

#business-advisor .list-group-item:last-child {
    border-bottom: none;
}

#business-advisor .accordion-button {
    font-weight: 600;
    padding: 1rem 1.25rem;
}

#business-advisor .accordion-button:not(.collapsed) {
    background-color: #f8f9fa;
    border-color: #dee2e6;
}

#business-advisor .badge {
    font-size: 0.75rem;
    padding: 0.35em 0.65em;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    #business-advisor .card-body {
        padding: 1rem;
    }
    
    #business-advisor .btn {
        font-size: 0.9rem;
        padding: 0.5rem 1rem;
    }
    
    #business-advisor .row.g-2 .col-md-6 {
        margin-bottom: 0.5rem;
    }
}

/* Animation for advisor appearance */
#business-advisor {
    animation: slideIn 0.5s ease-out;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* FAQ Page Styles */
.accordion-button {
    background-color: #092437;
    color: white;
    font-weight: 600;
    border: none;
}

.accordion-button:not(.collapsed) {
    background-color: white;
    color: #092437;
    border: 2px solid #092437;
    box-shadow: none;
}

.accordion-button:hover {
    background-color: white;
    color: #092437;
    border: 2px solid #092437;
}

.accordion-button:focus {
    box-shadow: 0 0 0 0.25rem rgba(9, 36, 55, 0.25);
    border-color: #092437;
}

.accordion-button::after {
    filter: brightness(0) invert(1);
}

.accordion-button:not(.collapsed)::after,
.accordion-button:hover::after {
    filter: none;
}

.accordion-item {
    border: 1px solid #dee2e6;
    margin-bottom: 0.5rem;
    border-radius: 0.375rem;
    overflow: hidden;
}

.accordion-body {
    background-color: #f8f9fa;
}

/* Project Slider Styles */
.project-slider-wrapper {
    position: relative;
    margin: 0 3rem;
}

.project-slider {
    transition: transform 0.4s ease-in-out;
    flex-wrap: nowrap;
}

.project-slide {
    flex: 0 0 calc(33.333% - 1rem);
    min-width: calc(33.333% - 1rem);
}

.project-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: #092437;
    border: none;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    opacity: 0.9;
}

.project-nav:hover:not(:disabled) {
    opacity: 1;
    background-color: #0c3b52;
    transform: translateY(-50%) scale(1.1);
}

.project-nav:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.project-nav-prev {
    left: -3rem;
}

.project-nav-next {
    right: -3rem;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .project-slide {
        flex: 0 0 calc(50% - 0.5rem);
        min-width: calc(50% - 0.5rem);
    }
}

@media (max-width: 768px) {
    .project-slider-wrapper {
        margin: 0 2.5rem;
    }
    
    .project-slide {
        flex: 0 0 100%;
        min-width: 100%;
    }
    
    .project-nav {
        width: 40px;
        height: 40px;
    }
    
    .project-nav-prev {
        left: -2.5rem;
    }
    
    .project-nav-next {
        right: -2.5rem;
    }
}

