* {
    font-family: 'Poppins', sans-serif;
}

body {
    overflow-x: hidden;
}

:root {
    --primary: #0d6efd;
    --secondary: #ff7f00;
    --dark: #0b1a2e;
}

.bg-dark-custom {
    background-color: var(--dark);
}

.text-secondary-custom {
    color: var(--secondary);
}

.btn-secondary-custom {
    background: var(--secondary);
    color: #fff;
    border: none;
}

.btn-secondary-custom:hover {
    background: #e67300;
    color: #fff;
}

.top-header a {
    color: rgba(255, 255, 255, 0.8);
    transition: 0.3s;
    text-decoration: none;
}

.top-header a:hover {
    color: var(--secondary);
    transform: translateY(-2px);
}

.navbar {
    transition: 0.4s;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    border-bottom: 1.5px solid #000;
}

/* Dropdown Menu */
.dropdown-menu {
    border: none;
    border-radius: 12px;
    padding: 10px 0;
    min-width: 260px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .12);
}

.dropdown-item {
    padding: 10px 20px;
    font-size: 15px;
    font-weight: 500;
    transition: all .3s ease;
}

.dropdown-item:hover {
    background: #ff6b00;
    color: #fff;
    padding-left: 28px;
}

/* Show dropdown on hover for desktop */
@media (min-width: 992px) {
    .navbar .dropdown:hover .dropdown-menu {
        display: block;
        margin-top: 0;
        animation: fadeIn .3s ease;
    }
}

/* Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.navbar.sticky {
    background: #fff !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.nav-link {
    font-weight: 600;
    color: #333 !important;
    margin: 0 8px;
    transition: 0.3s;
}

.nav-link:hover {
    color: var(--secondary) !important;
    transform: translateY(-2px);
}

.hero-slider .carousel-item {
    height: 100vh;
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero-slider .carousel-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
}

.hero-slider .carousel-caption {
    z-index: 2;
    bottom: 25%;
    text-align: left;
    max-width: 700px;
}

.hero-slider .carousel-caption h1 {
    font-weight: 800;
    font-size: 4rem;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
}

.hero-slider .carousel-caption p {
    font-size: 1.3rem;
    opacity: 0.9;
}

.hero-gallery {
    background: linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.65)), url('assets/images/breadcum-banner.png?w=1400&q=80') center/cover no-repeat;
    min-height: 50vh;
    display: flex;
    align-items: center;
}

.hero-services {
    background: linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.65)), url('assets/images/breadcum-banner.png?w=1400&q=80') center/cover no-repeat;
    min-height: 50vh;
    display: flex;
    align-items: center;
}

.hero-about {
    background: linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.65)), url('assets/images/breadcum-banner.png?w=1400&q=80') center/cover no-repeat;
    min-height: 50vh;
    display: flex;
    align-items: center;
}

.breadcrumb-item a {
    color: var(--secondary);
    text-decoration: none;
}

.contact-card {
    background: #fff;
    border-radius: 24px;
    padding: 2rem 1.5rem;
    transition: 0.4s;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.04);
    height: 100%;
    text-align: center;
    border: none;
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.contact-card i {
    font-size: 3rem;
    color: var(--secondary);
    margin-bottom: 1rem;
}

.contact-card h6 {
    font-weight: 700;
}

.form-control,
.form-select {
    border-radius: 16px;
    padding: 14px 18px;
    border: 1px solid #e0e0e0;
    transition: 0.3s;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--secondary);
    box-shadow: 0 0 0 0.2rem rgba(255, 127, 0, 0.15);
}

.map-container {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}

.reason-item {
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.reason-item i {
    font-size: 1.4rem;
    color: var(--secondary);
    flex-shrink: 0;
}

.accordion-button:not(.collapsed) {
    background: var(--secondary);
    color: #fff;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: var(--secondary);
}

.testimonial-card {
    background: #fff;
    border-radius: 30px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
}

.success-msg {
    display: none;
    background: #d4edda;
    color: #155724;
    padding: 1rem;
    border-radius: 16px;
    margin-top: 1rem;
}

.error-msg {
    display: none;
    background: #f8d7da;
    color: #721c24;
    padding: 1rem;
    border-radius: 16px;
    margin-top: 1rem;
}

@media (max-width: 768px) {
    .hero-contact {
        min-height: 40vh;
    }
}

.hero-contact {
    background: linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.65)), url('https://images.unsplash.com/photo-1600880292203-757bb62b4baf?w=1400&q=80') center/cover no-repeat;
    min-height: 50vh;
    display: flex;
    align-items: center;
}

.btn-outline-light:hover {
    background: var(--secondary);
    border-color: var(--secondary);
}

section {
    overflow: hidden;
}

.section-title {
    font-weight: 700;
    color: var(--dark);
    position: relative;
}

.section-title::after {
    content: '';
    width: 80px;
    height: 4px;
    background: var(--secondary);
    display: block;
    margin: 12px auto 0;
    border-radius: 4px;
}

.service-card {
    border-radius: 20px;
    padding: 1.8rem 1.2rem;
    transition: 0.4s;
    background: #fff;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
    border: none;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.service-card i {
    font-size: 3.2rem;
    color: var(--secondary);
    transition: 0.3s;
}

.service-card:hover i {
    transform: scale(1.2);
    color: var(--primary);
}

.service-card {
    border-radius: 24px;
    overflow: hidden;
    transition: 0.4s;
    background: #fff;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
    height: 100%;
    border: none;
}

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.service-card img {
    transition: 0.5s;
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.service-card:hover img {
    transform: scale(1.05);
}

.service-card .card-body {
    padding: 1.5rem;
}

.service-card i {
    font-size: 2.8rem;
    color: var(--secondary);
    transition: 0.3s;
}

.service-card:hover i {
    transform: scale(1.2);
    color: var(--primary);
}

.industry-card {
    background: #fff;
    border-radius: 20px;
    padding: 1.8rem 1rem;
    transition: 0.4s;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
    text-align: center;
    height: 100%;
    border: none;
}

.industry-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.industry-card i {
    font-size: 3rem;
    color: var(--secondary);
}

.process-step {
    background: #fff;
    border-radius: 24px;
    padding: 1.8rem 1rem;
    transition: 0.4s;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.04);
    text-align: center;
    height: 100%;
}

.process-step:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.process-step .step-number {
    width: 60px;
    height: 60px;
    background: var(--secondary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.6rem;
    margin: 0 auto 1rem;
}

.process-arrow {
    font-size: 2.4rem;
    color: var(--secondary);
}

.value-card,
.team-card,
.process-step {
    background: #fff;
    border-radius: 24px;
    padding: 1.8rem 1.2rem;
    transition: 0.4s;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.04);
    height: 100%;
    border: none;
}

.value-card:hover,
.team-card:hover,
.process-step:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.value-card i,
.process-step .step-icon {
    font-size: 2.8rem;
    color: var(--secondary);
    transition: 0.3s;
}

.value-card:hover i {
    transform: scale(1.2);
    color: var(--primary);
}

.counter-box {
    background: #fff;
    padding: 2rem 1rem;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.counter-box h2 {
    font-weight: 700;
    color: var(--dark);
}
.counter-box h2,
.counter-box span:first-of-type {
    display: inline-block;
    font-size: 42px;
    font-weight: 700;
    color: #ff6600;
}

.counter-box p {
    margin-top: 10px;
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

.process-step {
    background: #fff;
    padding: 2rem 1rem;
    border-radius: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.04);
    transition: 0.3s;
    position: relative;
}

.process-step:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.process-step .step-number {
    width: 60px;
    height: 60px;
    background: var(--secondary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.6rem;
    margin: 0 auto 1rem;
}

.process-arrow {
    font-size: 2.4rem;
    color: var(--secondary);
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    cursor: pointer;
    margin-bottom: 20px;
}

.gallery-item img {
    transition: 0.5s;
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-item .overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: 0.4s;
    color: #fff;
}

.gallery-item:hover .overlay {
    opacity: 1;
}

.gallery-item .overlay i {
    font-size: 3rem;
    margin-bottom: 10px;
}

.gallery-item .overlay h6 {
    font-weight: 600;
}

.featured-card {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}

.compare-card {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.04);
    transition: 0.3s;
}

.compare-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.video-card {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.video-card img {
    transition: 0.4s;
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.video-card:hover img {
    transform: scale(1.05);
}

.video-card .play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: rgba(255, 127, 0, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.4rem;
    color: #fff;
    transition: 0.3s;
}

.video-card:hover .play-btn {
    transform: translate(-50%, -50%) scale(1.1);
    background: var(--secondary);
}

.filter-btn {
    background: #f1f1f1;
    border: none;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600;
    transition: 0.3s;
    margin: 4px;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--secondary);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 127, 0, 0.3);
}

.testimonial-card {
    background: #fff;
    border-radius: 30px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
}

.testimonial-card img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid var(--secondary);
}

.floating-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.floating-btn a {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #fff;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
    animation: pulse 2s infinite;
}

.floating-btn .whatsapp {
    background: #25d366;
}

.floating-btn .call {
    background: #0d6efd;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.08);
    }

    100% {
        transform: scale(1);
    }
}

.back-to-top {
    position: fixed;
    bottom: 170px;
    right: 30px;
    z-index: 998;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--secondary);
    color: #fff;
    border: none;
    font-size: 1.6rem;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.back-to-top.show {
    display: flex;
}

.parallax-cta {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('assets/images/call-to-action.jpg?w=1200&q=80') fixed;
    background-size: cover;
    background-position: center;
}

.footer a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.7);
    transition: 0.3s;
}

.footer a:hover {
    color: rgb(240, 217, 171);
    transform: translateX(4px);
}

.social-icon {
    display: inline-flex;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: 0.3s;
    margin-right: 6px;
}

.social-icon:hover {
    background: var(--secondary);
    transform: translateY(-4px);
    color: #fff;
}

@media (max-width: 768px) {
    .hero-slider .carousel-caption h1 {
        font-size: 2.2rem;
    }
}

.lightbox-modal .modal-content {
    background: transparent;
    border: none;
}

.lightbox-modal .modal-body {
    padding: 0;
}

.lightbox-modal img {
    width: 100%;
    border-radius: 16px;
}

.masonry-grid {
    column-count: 3;
    column-gap: 20px;
}

.masonry-grid .gallery-item {
    break-inside: avoid;
    margin-bottom: 20px;
}

.masonry-grid .gallery-item img {
    height: auto;
    min-height: 200px;
}

@media (max-width: 992px) {
    .masonry-grid {
        column-count: 2;
    }
}

@media (max-width: 576px) {
    .masonry-grid {
        column-count: 1;
    }
}

@media (max-width: 768px) {
    .hero-gallery {
        min-height: 40vh;
    }
}