:root {
    --primary: #0b2f5b;
    --secondary: #a96f15;
    --accent: #28a745;
    --new: blue;
}

body {
    font-family: 'Inter', Arial, sans-serif;
    background: linear-gradient(to bottom, #f8f9fa 0%, #ffffff 100%);
}

.topbar {
    background: linear-gradient(135deg, var(--primary), #081f3d);
    color: #fff;
    font-size: 14px;
    padding: 8px 0;
}

.navbar-brand {
    display: flex;
    align-items: center;
}

.navbar-brand img {
    max-height: 75px;
}

@media (max-width:576px) {
    .navbar-brand img {
        max-height: 50px;
    }

}

.navbar-nav .nav-link {
    font-weight: 500;
    margin: 0 10px;
    position: relative;
    transition: color .3s;
}

.navbar-nav .nav-link:hover {
    color: var(--secondary);
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background: var(--secondary);
    transition: width .3s;
}

.navbar-nav .nav-link:hover::after {
    width: 100%;
}

.navbar-nav .dropdown-toggle::after {
    display: none;
}

.dropdown-icon-plus {
    display: inline;
}

@media (min-width: 992px) {
    .dropdown-icon-plus {
        display: none;
    }
}

@media (max-width: 991.98px) {
    .dropdown-icon-plus {
        display: inline;
    }
}

.dropdown-menu {
    border: none;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, .12);
    padding: 10px 0;
    min-width: 220px;
    margin-top: 10px;
}

.dropdown-item {
    padding: 10px 20px;
    font-weight: 500;
    color: var(--primary);
    transition: all .2s;
}

.dropdown-item:hover {
    background: var(--primary);
    color: #fff;
    padding-left: 24px;
}

.dropdown-divider {
    margin: 8px 0;
}

.btn-orange {
    background: var(--secondary) !important;
    color: #fff !important;
    border: none;
    padding: 10px 25px;
    font-weight: 600;
    transition: all .3s;
}

.btn-orange:hover {
    background: #8a5a12 !important;
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(169, 111, 21, .3);
}

#heroSlider {
    max-height: 700px;
    overflow: hidden;
    background: #000;
}

#heroSlider .carousel-item {
    height: auto;
    min-height: unset;
}

#heroSlider .carousel-item img {
    width: 100%;
    height: auto;
    max-height: 700px;
    object-fit: contain !important;
    filter: brightness(0.85);
    display: block;
    margin: 0 auto;
}

@media (max-width: 768px) {
    #heroSlider {
        max-height: 400px;
        overflow: hidden;
    }

    #heroSlider .carousel-item img {
        max-height: 400px;
        object-fit: contain !important;
    }

    #heroSlider .carousel-caption {
        bottom: 20%;
        left: 5%;
        right: 5%;
    }

    #heroSlider .carousel-caption h1 {
        font-size: 1.6rem;
    }

    #heroSlider .carousel-caption .lead {
        font-size: .9rem;
    }
}

@media (max-width: 576px) {
    #heroSlider {
        max-height: 300px;
    }

    #heroSlider .carousel-item img {
        max-height: 300px;
    }

    #heroSlider .carousel-caption {
        bottom: 15%;
    }

    #heroSlider .carousel-caption h1 {
        font-size: 1.3rem;
    }

    #heroSlider .carousel-caption .lead {
        font-size: .85rem;
    }
}

#heroSlider .carousel-caption {
    bottom: 30%;
    text-align: left;
    left: 5%;
}

#heroSlider .carousel-caption h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--secondary);
    text-shadow: 2px 2px 8px rgba(0, 0, 0, .7);
}

#heroSlider .carousel-caption h1 span {
    color: #fff;
}

#heroSlider .carousel-caption .lead {
    font-size: 1.2rem;
    color: #fff;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, .7);
    background: rgba(11, 47, 91, .6);
    display: inline-block;
    padding: 8px 16px;
    border-radius: 4px;
}

#heroSlider2 .carousel-item {
    position: relative;
}

#heroSlider2 .carousel-item img {
    height: 420px;
    object-fit: cover;
}

#heroSlider2 .carousel-item::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(11, 47, 91, .8) 0%, rgba(11, 47, 91, .3) 60%, rgba(0, 0, 0, 0) 100%);
}

#heroSlider2 .slider-side-caption {
    position: absolute;
    bottom: 15%;
    left: 5%;
    right: 5%;
    z-index: 2;
    text-align: left;
}

#heroSlider2 .slider-side-caption h1 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--secondary);
    text-shadow: 1px 1px 6px rgba(0, 0, 0, .8);
    margin-bottom: 0;
}

@media (max-width: 991px) {
    #heroSlider2 .carousel-item img {
        height: 320px;
    }

    #heroSlider2 .slider-side-caption h1 {
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    #heroSlider2 .carousel-item img {
        height: 260px;
    }

    #heroSlider2 .slider-side-caption {
        bottom: 10%;
        left: 8%;
        right: 8%;
    }

    #heroSlider2 .slider-side-caption h1 {
        font-size: 1rem;
    }
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #6c757d;
    font-weight: 400;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-title::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 4px;
    background: var(--secondary);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.feature-box {
    background: #fff;
    padding: 30px 20px;
    text-align: center;
    border-radius: 15px;
    transition: all .3s;
    border: 1px solid #eee;
    height: 100%;
}

.feature-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(11, 47, 91, .1);
    border-color: var(--secondary);
}

.feature-box i {
    font-size: 48px;
    color: var(--secondary);
    margin-bottom: 15px;
}

.product-card {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    transition: all .3s;
    background: #fff;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, .08);
    border: 1px solid #eee;
}

.product-section {
    background: linear-gradient(135deg, var(--primary), #081f3d);
    color: #fff;
}

.product-section .section-title {
    color: #fff;
}

.product-section .section-title::after {
    background: var(--secondary);
}

.product-section .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, .15);
}

.product-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: .3s;
}

.product-card:hover img {
    transform: scale(1.05);
}

.industry-card {
    background: #fff;
    border-radius: 15px;
    transition: all .3s;
    border: 1px solid #eee;
}

.industry-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(11, 47, 91, .15);
    border-color: var(--secondary);
}

.blog-card {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    transition: all .3s;
    background: #fff;
    height: 100%;
    box-shadow: 0 5px 20px rgba(0, 0, 0, .08);
    margin-bottom: 20px;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 45px rgba(0, 0, 0, .15);
}

.blog-card .card-img-top {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: .3s;
}

.blog-card:hover .card-img-top {
    transform: scale(1.05);
}

.blog-card .card-body {
    padding: 25px 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-card h5 {
    font-size: 1.15rem;
    margin-bottom: 15px;
    color: var(--primary);
    font-weight: 600;
}

.blog-card .badge {
    font-size: 0.75rem;
    font-weight: 500;
    padding: 6px 12px;
    margin-bottom: 12px;
}

.stats {
    background: linear-gradient(135deg, var(--primary), #081f3d);
    color: #fff;
    padding: 70px 0;
}

.counter {
    text-align: center;
    padding: 20px;
}

.counter h2 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.counter p {
    font-size: 1.1rem;
    opacity: .9;
}

.cta {
    background: linear-gradient(rgba(11, 47, 91, .95), rgba(11, 47, 91, .95));
    color: #fff;
    padding: 80px 0;
}

.footer {
    background: #081f3d;
    color: #fff;
    padding: 60px 0 30px;
}

.footer a {
    color: #fff;
    text-decoration: none;
    transition: color .3s;
}

.footer a:hover {
    /* color: var(--secondary); */
}

.footer-title {
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 20px;
}

.footer-title::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 3px;
    background: var(--secondary);
    bottom: 0;
    left: 0;
}

.social-icons {
    display: flex;
    align-items: center;
    gap: 12px;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, .1);
    border-radius: 50%;
    color: #fff;
    font-size: 1.1rem;
    transition: all .3s;
}

.social-icons a:hover {
    background: var(--secondary);
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    #heroSlider .carousel-caption h1 {
        font-size: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .counter h2 {
        font-size: 2.5rem;
    }
}

.product-card .btn-outline-primary {
    background: var(--secondary);
    border-color: var(--secondary);
    color: #fff;
}

.product-card .btn-outline-primary:hover {
    background: #8a5a12;
    border-color: #8a5a12;
    color: #fff;
}

.product-section .btn-orange {
    background: var(--secondary) !important;
    color: #fff !important;
}

.blog-card .btn-outline-primary {
    background: var(--secondary);
    border-color: var(--secondary);
    color: #fff;
}

.blog-card .btn-outline-primary:hover {
    background: #8a5a12;
    border-color: #8a5a12;
    color: #fff;
}

@media (max-width: 768px) {
    .blog-card {
        margin-bottom: 25px;
    }

    .blog-card .card-body {
        padding: 20px 15px;
    }

    .blog-card h5 {
        font-size: 1rem;
    }

    .blog-card .card-img-top {
        height: 250px;
    }
}

@media (max-width: 576px) {
    .blog-section .section-title {
        font-size: 1.75rem;
    }

    .blog-section .section-subtitle {
        font-size: 1rem;
    }
}

.text-muted {

    font-size: 16px;
    line-height: 1.7;

}

.fab-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.fab {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform 0.3s, box-shadow 0.3s;
}

.fab:hover {
    transform: scale(1.1);
}

.fab-call {
    background: var(--secondary);
    color: #fff;
    box-shadow: 0 4px 12px rgba(169, 111, 21, 0.4);
}

.fab-call:hover {
    box-shadow: 0 6px 16px rgba(169, 111, 21, 0.6);
}

.fab-whatsapp {
    background: #25d366;
    color: #fff;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
}

.fab-whatsapp:hover {
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.6);
}

.fab i {
    font-size: 24px;
}

.page-header {
    background: linear-gradient(135deg, var(--primary), #081f3d);
    color: #fff;
    padding: 100px 0 60px;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 700;
}

.page-header .lead {
    font-size: 1.2rem;
    opacity: 0.9;
}

.footer-brand img {
    max-height: 60px;
}

.btn-close-black {
    color: #000;
    font-size: 28px;
    font-weight: bold;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    line-height: 1;
}

.gallery-card {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, .08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.gallery-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, .15);
}

.gallery-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s;
}

.gallery-card:hover img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(11, 47, 91, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.gallery-card:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    font-size: 2rem;
    color: #fff;
}

.product-category {
    background: #fff;
    padding: 12px 24px;
    border-radius: 50px;
    border: 1px solid #dee2e6;
    font-weight: 500;
    cursor: pointer;
    transition: all .3s;
}

.product-category:hover,
.product-category.active {
    background: var(--secondary);
    color: #fff;
    border-color: var(--secondary);
}

.product-card-enhanced {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #eee;
    transition: all .3s;
    height: 100%;
}

.product-card-enhanced:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, .12);
    border-color: var(--secondary);
}

.product-card-enhanced .product-img-wrapper {
    position: relative;
    overflow: hidden;
    height: 260px;
    background: #f8f9fa;
}

.product-card-enhanced .product-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s;
}

.product-card-enhanced:hover .product-img-wrapper img {
    transform: scale(1.06);
}

.product-card-enhanced .product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--secondary);
    color: #fff;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: .75rem;
    font-weight: 600;
    z-index: 2;
}

.product-card-enhanced .product-body {
    padding: 24px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-card-enhanced .product-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
}

.product-card-enhanced .product-desc {
    color: #6c757d;
    font-size: .95rem;
    line-height: 1.6;
    margin-bottom: 16px;
    flex-grow: 1;
}

.product-card-enhanced .product-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    border-top: 1px solid #eee;
}

.product-card-enhanced .product-meta .meta-item {
    font-size: .85rem;
    color: #6c757d;
}

.product-card-enhanced .product-meta .meta-item i {
    color: var(--secondary);
    margin-right: 4px;
}

.specs-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
}

.specs-table th,
.specs-table td {
    padding: 14px 18px;
    text-align: left;
    border-bottom: 1px solid #e9ecef;
}

.specs-table th {
    width: 35%;
    font-weight: 600;
    color: var(--primary);
    background: #f8f9fa;
}

.specs-table tr:last-child td,
.specs-table tr:last-child th {
    border-bottom: none;
}

#heroSlider {
    position: relative;
}

#heroSlider .carousel-item {
    position: relative;
}

#heroSlider .carousel-item img {
    width: 100%;
    height: 551px;
    ;
    object-fit: cover;
}

.slider-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(11, 47, 91, .75) 0%, rgba(11, 47, 91, .45) 55%, rgba(11, 47, 91, 0) 100%);
    z-index: 1;
}

.slider-content {
    position: absolute;
    top: 50%;
    left: 8%;
    transform: translateY(-50%);
    max-width: 650px;
    color: #fff;
    z-index: 2;
}

.slider-content .btn {
    text-shadow: none;
}

.slider-content h1 {
    font-size: 60px;
    line-height: 1.15;
    margin-bottom: 20px;
    color: #fff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, .45);
}

.slider-content p {
    font-size: 18px;
    line-height: 30px;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, .95);
    text-shadow: 0 1px 6px rgba(0, 0, 0, .5);
}

#typed-text {
    color: #ffb347;
    font-weight: 700;
    text-shadow: 0 2px 8px rgba(0, 0, 0, .5);
}

.typed-cursor {
    color: #ffb347;
    font-weight: bold;
    animation: blink .7s infinite;
}

@keyframes blink {
    50% {
        opacity: 0;
    }
}

@media (max-width:992px) {
    #heroSlider .carousel-item img {
        height: 500px;
    }

    .slider-content {
        left: 6%;
        right: 6%;
        max-width: 88%;
    }

    .slider-content h1 {
        font-size: 40px;
    }

    .slider-content p {
        font-size: 16px;
        line-height: 26px;
    }
}

@media (max-width:576px) {
    #heroSlider .carousel-item img {
        height: 150px;
    }

    .slider-content {

        height: 155px
    }

    .monone {
        display: none !important;
    }

    .slider-content {
        top: auto;
        bottom: 0;
        left: 0;
        right: 0;
        transform: none;
        max-width: 100%;
        padding: 0 22px 100px;
    }

    .slider-content h1 {
        font-size: 29px;
        line-height: 1.2;
        margin-bottom: 0px;
        margin-top: 2%;

    }

    .slider-content p {
        display: none;
    }

    .slider-content .mt-4 {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }

    .slider-content .mt-4 .btn {
        /* flex:1 1 auto; */
        font-size: 15px;
        /* padding:12px 16px; */
    }
}