/* Increase specificity for body background */

/* Target navbar specifically */
.navbar {
    transition: all 0.3s ease;
    padding: 1rem 0;
}

/* .navbar.transparent {
    background-color: transparent !important;
} */

/* Ensure bg-dark uses theme color */
.navbar.bg-dark {
    background-color: #1a2b49 !important;
    box-shadow: 0 2px 10px rgba(26, 43, 73, 0.1) !important;
}

/* Specific nav link styling */
.navbar .nav-link {
    font-weight: 400 !important;
    font-size: 16px !important;
    color: #1a2b49 !important;
    transition: color 0.3s ease !important;
}

.navbar .nav-link.active {
    color: #ff6200 !important; /* Override inline active color */
}

/* Button styling with higher specificity */
.navbar .btn-call {
    padding: 0.5rem 1.5rem !important;
    background-color: #ff6200 !important;
    color: #fff !important;
    border-radius: 20px !important;
    transition: background-color 0.3s ease !important;
}

.navbar .btn-call:hover {
    background-color: #1a2b49 !important; /* Dark navy blue on hover */
}

/* Only for md and lg screen */
.hero-section {
    border-bottom: 1px solid #ff7f00;
    -webkit-box-shadow: 0 8px 6px -6px #ff7f00;
    -moz-box-shadow: 0 8px 6px -6px #ff7f00;
    box-shadow: 0 8px 6px -6px #ff7f00;
}

/* Banner text styles */
.banner-title {
    font-size: 64px !important;
    font-weight: 700 !important;
    color: #1a2b49 !important;
    line-height: 1.2 !important;
}

.banner-subtitle {
    font-size: 18px !important;
    font-weight: 400 !important;
    color: #4b5563 !important;
}
.banner-image {
    width: 480px !important;
}

/* Button primary styling */
.btn-primary {
    /* background: linear-gradient(90deg, #ff6200, #ff7f00) !important; */
    background-color: #ff6200 !important;
    color: #fff !important;
    padding: 12px 30px !important;
    border-radius: 10px !important;
    font-weight: 500 !important;
    transition: all 0.3s ease !important;
}

.btn-primary:hover {
    opacity: 0.9 !important;
}

/* Footer */
footer {
    background-color: #1a2b49; /* Dark navy blue */
    color: white;
    text-align: center;
    padding: 20px;
    margin-top: 40px;
}

.primary-color {
    color: #1a2b49; /* Dark navy blue */
}

.secondary-color {
    color: #ff6200; /* Orange */
}

.btn-custom {
    border: 2px solid #1a2b49; /* Dark navy blue */
    background-color: #fff;
    color: #1a2b49; /* Dark navy blue */
    font-weight: 600;
    padding: 10px 24px;
    border-radius: 30px;
    transition: all 0.3s ease-in-out;
}

/* Scroll state */
.btn-custom.scrolled {
    background-color: #1a2b49; /* Dark navy blue */
    color: #fff;
    border: 2px solid #1a2b49;
}

/* About us page */

/* Section background with angled shape */
.va-section {
    background: #f9f9f9; /* Dark navy blue */
    position: relative;
    overflow: hidden;
}

.va-section::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 50%;
    background: url("../assets/images/about-us-banner.jpg") no-repeat center
        center/cover;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 20% 100%);
    z-index: 1;
}

.va-section .container {
    position: relative;
    z-index: 2;
}

/* Yellow underline */
.underline {
    width: 60px;
    height: 4px;
    background: #ff6200; /* Orange */
}

/* Custom bullet points */
.bullet {
    display: inline-block;
    width: 10px;
    height: 10px;
    background: #ff6200; /* Orange */
    border-radius: 50%;
    margin-right: 8px;
}

/* Responsive adjustments */
/* navbar */
@media (max-width: 991px) {
    .navbar-nav {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        padding: 0.5rem 0;
        margin: 0;
    }
    .nav-link {
        padding: 0.5rem 1rem;
        width: 100%;
        text-align: left;
    }
    .navbar .container,
    .navbar .container-fluid {
        padding-left: 8px !important;
        padding-right: 8px !important;
        margin: 0 !important;
        max-width: 100vw !important;
    }
    body {
        overflow-x: hidden;
    }
}

/* avout us section */
@media (max-width: 768px) {
    .va-section::before {
        width: 100%;
        clip-path: polygon(0 0, 100% 0, 100% 50%, 0 100%);
    }
    .va-section .content {
        background: #00000069;
        z-index: 2;
        color: white;
    }
}

/* Pricing page */
.price-banner {
    margin-left: 100px;
}
.card {
    background-color: #f8f9fa; /* light background */
    color: var(--secondary); /* default text color inside cards */
}
.card h4,
.card p,
.card ul li {
    color: var(--secondary);
}

.text-orange-600 {
    color: var(--primary) !important;
}

.text-warning {
    color: var(--primary) !important;
}
.btn-outline-primary {
    background: transparent !important;
    color: var(--primary) !important;
    border: 2px solid var(--primary) !important;
    padding: 12px 30px !important;
    border-radius: 9999px !important;
    font-weight: 500 !important;
    transition: all 0.3s ease !important;
}

.btn-outline-primary:hover {
    background: linear-gradient(90deg, #ff6200, #ff7f00) !important;
    color: #fff !important;
    border-color: var(--primary) !important;
}
@media (max-width: 768px) {
    .price-banner {
        margin-left: 0px;
        width: 100%;
    }
}
/* Full section background */
.service-banner {
    margin: 0;
    padding: 0;
    font-family: "Poppins", sans-serif;
    min-height: 85vh; /* full viewport */
    color: white;
    background: url("../assets/images/virtual-assistant-landing-page.jpg")
        no-repeat center center/cover;
    position: relative;
    overflow: hidden;
}

/* Dark overlay */
.service-banner::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 1;
}

/* Ensure all content is above overlay */
.service-banner > * {
    position: relative;
    z-index: 2;
}

/* Floating Services */
.floating-services {
    position: relative;
    width: 100%;
    height: 100%;
}

.service {
    background: #61615d;
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 1.25rem;
    white-space: nowrap;
    text-align: center;
    transition: background-color 0.3s, color 0.3s;
    cursor: pointer;
    z-index: 5;
    pointer-events: auto;
}
/* Smooth zoom animation */
.service-card.zoom-highlight {
    transform: scale(1.08);
    transition: transform 0.4s cubic-bezier(0.4, 2, 0.6, 1);
    z-index: 10;
    box-shadow: 0 0 20px rgba(255, 98, 0, 0.4);
}

@media (min-width: 768px) {
    .service:nth-child(1) {
        top: 15%;
        left: 10%;
    }
    .service:nth-child(2) {
        top: 25%;
        right: 12%;
    }
    .service:nth-child(3) {
        top: 45%;
        left: 12%;
    }
    .service:nth-child(4) {
        top: 55%;
        right: 8%;
    }
    .service:nth-child(5) {
        top: 70%;
        left: 20%;
    }
    .service:nth-child(6) {
        top: 85%;
        right: 15%;
    }
    .service {
        position: absolute;
        animation: float 6s infinite ease-in-out;
        animation-delay: calc(var(--index) * 1s);
    }
}

@keyframes float {
    0% {
        transform: translateY(0px);
        opacity: 0.8;
    }
    50% {
        transform: translateY(-15px);
        opacity: 1;
    }
    100% {
        transform: translateY(0px);
        opacity: 0.8;
    }
}

.service:hover {
    background-color: #ff6200;
    color: black;
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .service-banner {
        min-height: 60vh;
    }
    .service-banner h2 {
        font-size: 2rem;
    }
    .service-banner h4 {
        font-size: 1rem;
    }
    .service {
        padding: 0.4rem 0.8rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .service-banner {
        min-height: 50vh;
    }
    .flex-col {
        flex-direction: column !important;
    }
    .service-banner h2 {
        font-size: 1.5rem;
    }
    .service-banner h4 {
        font-size: 0.9rem;
    }
    .floating-services {
        position: static;
        grid-template-columns: 1fr;
        gap: 0.25rem;
    }
    .service {
        position: static;
        padding: 0.3rem 0.6rem;
        font-size: 0.85rem;
        animation: none;
    }
}

@media (max-width: 480px) {
    .service-banner {
        min-height: 40vh;
    }
    .service-banner h2 {
        font-size: 1.2rem;
    }
    .service-banner h4 {
        font-size: 0.8rem;
    }
    .service {
        padding: 0.2rem 0.4rem;
        font-size: 0.75rem;
    }
    .floating-services {
        gap: 0.1rem;
        padding: 0.5rem;
    }
}

/* Highlight and Zoom effect for cards */
.highlight {
    border: 2px solid #ff6200;
    transition: border 0.3s;
}

.service-card {
    transition: transform 0.5s ease;
}
/* social / contact icon brand colors */
.icon-linkedin {
    color: #0a66c2 !important;
} /* LinkedIn blue */
.icon-facebook {
    color: #1877f2 !important;
} /* Facebook blue */
.icon-whatsapp {
    color: #25d366 !important;
} /* WhatsApp green */

/* Gmail icon — solid fallback + gradient where supported */
.icon-gmail {
    /* solid fallback that always works */
    color: #d44638 !important;

    /* optional gradient for browsers that support background-clip:text */
    background-image: linear-gradient(90deg, #d44638, #e57368);
    background-size: 100% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent; /* WebKit browsers */
    display: inline-block;
    vertical-align: middle;
}

/* phone/map icons use site orange (force override) */
.icon-phone,
.icon-location {
    color: #ff6200 !important;
    display: inline-block;
    vertical-align: middle;
}

/* optional: ensure sizing/vertical alignment */
/* .icon-gmail,
.icon-phone,
.icon-location {
    width: 1em;
    height: 1em;
    display: inline-block;
    vertical-align: middle;
} */
