:root {
    --primary: #0b2f5b;
    --secondary: #a96f15;
    --accent: #28a745;
}

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;
}

.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%;
}

.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: 600px;
    overflow: hidden;
}

#heroSlider .carousel-item img {
    object-fit: cover !important;
    /* height: 600px; */
    filter: brightness(0.85);
}

#heroSlider .carousel-caption {
    bottom: 30%;
    text-align: left;
    left: 5%;
}

#heroSlider .carousel-caption h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, .5);
}

#heroSlider .carousel-caption h1 span {
    color: var(--secondary);
}

#heroSlider .carousel-caption .lead {
    font-size: 1.2rem;
    color: #fff;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, .5);
}

.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 a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, .1);
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    margin-right: 10px;
    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;

}