body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    line-height: 1.5;
    color: #333;
}

/* Navbar */
.navbar-dark {
    /* background: linear-gradient(135deg, #031926 0%, #6e00ff 100%) !important; */
    background: #031926;
    padding: 0.75rem 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.navbar-dark .navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.9);
    padding: 1rem 1.2rem;
    font-weight: 500;
    position: relative;
    transition: all 0.3s ease;
}

.navbar-dark .navbar-nav .nav-link::after {
    content: "";
    /* position: absolute; */
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    /* background: #fff; */
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.navbar-dark .navbar-nav .nav-link:hover {
    color: #fff;
}

.navbar-dark .navbar-nav .nav-link:hover::before {
    width: 70%;
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: #fff;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

/* Dropdown Menu */
.dropdown-menu {
    border-radius: 0;
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Submenu positioning */
.dropdown-submenu {
    position: relative;
}

.dropdown-submenu .dropdown-menu {
    top: 0;
    left: 100%;
    margin-top: -0.1rem;
}

/* Show submenu on hover */
@media (min-width: 992px) {
    .dropdown:hover>.dropdown-menu {
        display: block;
    }

    .dropdown-submenu:hover>.dropdown-menu {
        display: block;
    }
}

/* Swiper Icons */
.swiper-button-next,
.swiper-button-prev {
    color: #fff;
    background: linear-gradient(135deg, #ff6b6b 0%, #ff7f50 100%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    transform: scale(1.1);
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 1.25rem;
}

/* Hero SEction */
/* Swiper Styles */
.hero-section {
    height: 600px;
    margin-bottom: 4rem;
}

.hero-section .swiper-slide::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.6));
    z-index: 1;
}

.swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(1.2);
}

.slide-content {
    position: absolute;
    bottom: 30%;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    z-index: 2;
    width: 80%;
    max-width: 800px;
    text-align: center;
}

.slide-content h2 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    animation: fadeInUp 1s ease-out;
}

.slide-content p {
    font-size: 1.5rem;
    animation: fadeInUp 1s ease-out 0.3s;
    animation-fill-mode: both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: white;
    opacity: 0.5;
    transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    background: #ff6b6b;
    transform: scale(1.2);
}

/* Best about */
.section-title {
    text-align: center;
    margin-top: 60px;
    margin-bottom: 40px;
    color: #031926;
    font-weight: 600;
}

.card-feature-best {
    border: 1px solid rgba(0, 0, 0, 0.05);
    background: #ffffff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border-radius: 40px 40px 40px 0px;
    transition: all 0.35s ease;
    padding: 20px;
    position: relative;
    overflow: hidden;
}

.card-feature {
    border: 1px solid rgba(0, 0, 0, 0.05);
    background: #ffffff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border-radius: 40px 40px 40px 0px;
    transition: all 0.35s ease;
    padding: 20px;
    position: relative;
    overflow: hidden;
}

.card-feature::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(0, 195, 255, 0.15), transparent 70%);
    transform: rotate(25deg);
    transition: opacity 0.4s ease;
    opacity: 0;
    z-index: 0;
}

.card-feature:hover::before {
    opacity: 1;
}

.card-feature:hover {
    transform: scale(1.03) translateY(-6px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
    border-color: rgba(0, 195, 255, 0.3);
}

.card-feature .card-body {
    position: relative;
    z-index: 1;
}


.business-img {
    height: 180px;
    object-fit: contain;
}

.business-title {
    color: #2c3e50;
    font-weight: 500;
}

/* Feature */

.section-subtitle {
    text-align: center;
    color: #555;
    margin-bottom: 40px;
}

.featureSwiper {
    padding: 10px 30px;
}

.featureSwiper h5 {
    line-height: 1.8;
    margin-bottom: 15px;
}

.featureSwiper img{
    max-height: 350px;
}

.swiper-pagination-bullet {
    background: gray;
}

.bi {
    font-size: 35px;
}

.section-subtitle span {
    display: block;
    margin-top: 10px;
    height: 2px;
    width: 60px;
    margin-left: auto;
    margin-right: auto;
    background-color: #e91e63;
}

.featureSwiper .swiper-slide {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.btn-show-details {
    background-color: #e91e63;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 5px;
    margin-top: 10px;
}

.contact-section {
    margin-top: 60px;
    padding: 40px 20px;
    background: #fff;
}

.contact-left {
    background-color: #031926;
    color: white;
    padding: 30px;
    border-radius: 8px;
    height: 100%;
}
.contact-left button{
    background-color: #031926;
}

.contact-form button{
    background-color: #031926;
    color: white;
}
.contact-form button:hover{
    background-color: #27ae60;
}

.contact-form input,
.contact-form textarea {
    margin-bottom: 15px;
}

.footer {
    background-color: #031926;
    color: white;
    padding: 40px 20px;
}

.footer a {
    color: #ccc;
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}

.social-icons a {
    color: white;
    font-size: 20px;
    margin-right: 15px;
}







/* Contact page */
/* Contact Section */
.location-box {
    border-bottom: 1px dashed #ccc;
    margin-bottom: 20px;
    padding-bottom: 10px;
}

.location-title {
    font-weight: 600;
    font-size: 1.2rem;
}






/* About Page */
/* Page Header */
.page-header {
    background: linear-gradient(135deg, #031926 0%, #6e00ff 100%);
    padding: 4rem 0;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: "";
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.page-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
}

.breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
}

.breadcrumb-item a:hover {
    color: #fff;
}

.breadcrumb-item.active {
    color: rgba(255, 255, 255, 0.6);
}

.breadcrumb-item+.breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.6);
}

/* About Section */
.about-section {
    padding: 5rem 0;
    background: #fff;
}

.about-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #333;
    position: relative;
    padding-bottom: 1rem;
}

.about-content h2::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #ff6b6b, #ff7f50);
    border-radius: 2px;
}

.about-content .lead {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 1.5rem;
}

.about-content p {
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.about-stats {
    display: flex;
    margin-top: 2rem;
}

.stat-item {
    margin-right: 2.5rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(90deg, #ff6b6b, #ff7f50);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
}

.stat-text {
    color: #666;
    font-size: 0.9rem;
}

.about-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.experience-badge {
    position: absolute;
    bottom: 30px;
    left: -20px;
    background: linear-gradient(135deg, #ff6b6b 0%, #ff7f50 100%);
    color: #fff;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    box-shadow: 0 10px 20px rgba(255, 107, 107, 0.3);
}

.experience-badge span:first-child {
    font-size: 1.8rem;
    line-height: 1;
}

.experience-badge span:last-child {
    font-size: 1rem;
}

/* Mission Section */
.mission-section {
    padding: 5rem 0;
    background: #f9f9f9;
}

.mission-card {
    background: #fff;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: all 0.3s ease;
}

.mission-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.mission-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.1) 0%, rgba(255, 127, 80, 0.1) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.mission-icon i {
    font-size: 2rem;
    background: linear-gradient(90deg, #ff6b6b, #ff7f50);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.mission-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #333;
}

.mission-card p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 0;
}

/* Team Section */
.team-section {
    padding: 5rem 0;
    background: #fff;
}

.team-member {
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-10px);
}

.member-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 1.5rem;
}

.member-image img {
    width: 100%;
    height: auto;
    transition: all 0.5s ease;
}

.team-member:hover .member-image img {
    transform: scale(1.05);
}

.member-social {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 1.5rem;
    display: flex;
    justify-content: center;
    gap: 1rem;
    transform: translateY(100%);
    transition: all 0.3s ease;
}

.team-member:hover .member-social {
    transform: translateY(0);
}

.member-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.member-social a:hover {
    background: #ff6b6b;
    transform: translateY(-5px);
}

.member-info {
    text-align: center;
}

.member-info h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #333;
}

.member-info p {
    color: #666;
    margin-bottom: 0;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .about-stats {
        flex-wrap: wrap;
    }

    .stat-item {
        margin-right: 1.5rem;
        margin-bottom: 1rem;
    }

    .experience-badge {
        width: 80px;
        height: 80px;
    }

    .experience-badge span:first-child {
        font-size: 1.5rem;
    }

    .experience-badge span:last-child {
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .page-header {
        padding: 3rem 0;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .about-content h2 {
        font-size: 2rem;
    }

    .about-image {
        margin-top: 2rem;
    }

    .mission-card {
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 576px) {
    .about-stats {
        flex-direction: column;
    }

    .stat-item {
        margin-right: 0;
        margin-bottom: 1.5rem;
    }

    .experience-badge {
        bottom: 20px;
        left: 20px;
    }
}



/* News Page */
.section-title {
    text-align: center;
    margin-top: 60px;
    margin-bottom: 30px;
}

.section-title h2 {
    color: #2e7d32;
    font-weight: 700;
}

.section-title p {
    color: #555;
    font-size: 16px;
}

.news-card {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: none;
    border-radius: 10px;
    transition: all 0.3s ease-in-out;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.news-card img {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.news-card .card-body {
    padding: 20px;
}

.news-card .card-title a {
    font-size: 18px;
    color: #2e7d32;
    font-weight: bold;
    text-decoration: none;
}

.news-card .card-text {
    font-size: 14px;
    color: #666;
}

.card-date {
    font-size: 13px;
    color: #999;
    margin-bottom: 10px;
}




/* Products Page */
.products .product-title{
    font-size: 18px;
    color: #2e7d32;
    font-weight: bold;
}
.page-header {
    background: linear-gradient(135deg, #2c7be5 0%, #1a68d1 100%);
    color: white;
    padding: 2rem 0;
    margin-bottom: 2.5rem;
    border-radius: 0 0 1.5rem 1.5rem;
    box-shadow: 0 4px 20px rgba(44, 123, 229, 0.2);
}

.page-title {
    font-weight: 600;
    letter-spacing: 0.5px;
    margin: 0;
}

.sidebar-menu {
    background-color: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 20px;
}

.sidebar-menu .menu-header {
    background-color: #031926;
    color: white;
    padding: 1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.sidebar-menu a {
    display: flex;
    align-items: center;
    padding: 0.9rem 1.5rem;
    color: var(--dark);
    text-decoration: none;
    border-left: 3px solid transparent;
    transition: all 0.3s ease;
}

.sidebar-menu a i {
    margin-right: 10px;
    font-size: 1.1rem;
    color: var(--primary);
    width: 24px;
    text-align: center;
}

.sidebar-menu a:hover {
    background-color: rgba(44, 123, 229, 0.05);
    border-left: 3px solid var(--primary);
    color: var(--primary);
    transform: translateX(3px);
}

.product-card {
    background-color: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.1);
}

.product-card h3 a {
    text-decoration: none;
    color: inherit;
}

.product-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: var(--accent);
    color: white;
    border-radius: 2rem;
    padding: 0.25rem 0.75rem;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 10;
}

.product-image {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    background-color: var(--light);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.product-image img {
    max-height: 100%;
    max-width: 100%;
    transition: all 0.5s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-info {
    padding: 1.5rem;
}

.product-code {
    font-size: 0.8rem;
    color: var(--secondary);
    margin-bottom: 0.5rem;
}

.product-title {
    color: var(--dark);
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.4;
    font-size: 1.1rem;
}

.product-action {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1rem;
}

.btn-primary {
    background-color: #031926;
    border-color: #031926;
    border-radius: 0.5rem;
    padding: 0.5rem 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #1a68d1;
    border-color: #1a68d1;
    transform: translateY(-2px);
}

.product-action .btn-light {
    background-color: var(--light);
    border-color: #e9ecef;
    color: var(--dark);
    border-radius: 0.5rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.product-action .btn-light:hover {
    background-color: var(--primary);
    color: white;
}



@media (max-width: 768px) {
    .page-header {
        border-radius: 0;
        padding: 1.5rem 0;
    }

    .sidebar-menu {
        margin-bottom: 2rem;
        position: static;
    }
}




/* Details Page */
.product-section {
    padding: 70px 20px;
}

.image-box {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    padding: 30px;
    transition: transform 0.3s ease;
}

.image-box:hover {
    transform: scale(1.02);
}

.product-img {
    width: 100%;
    border-radius: 10px;
}

.details-box {
    padding: 30px;
    background-color: #ffffff;
    border-radius: 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    animation: fadeInUp 0.8s ease;
}

.product-title {
    font-size: 2.4rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 20px;
}

.meta-info {
    font-size: 1rem;
    color: #666;
    margin-bottom: 10px;
}

.meta-info i {
    color: #0d6efd;
    margin-right: 6px;
    font-size: 20px;
}

.description p {
    margin-bottom: 1rem;
    color: #555;
    line-height: 1.7;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .product-title {
        font-size: 2rem;
    }
}


.masonry-gallery {
    column-count: 3;
    column-gap: 1rem;
  }

  @media (max-width: 992px) {
    .masonry-gallery {
      column-count: 2;
    }
  }

  @media (max-width: 576px) {
    .masonry-gallery {
      column-count: 1;
    }
  }

  .masonry-gallery img {
    width: 100%;
    height: auto;
    margin-bottom: 1rem;
    border-radius: 10px;
    display: block;
    break-inside: avoid;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s;
  }

  .masonry-gallery img:hover {
    transform: scale(1.03);
  }


.concern-company .swiper-slide{
    padding: 20px;
  }
  .concern-company .card{
    padding: 20px 0;
    border-radius: 25px;
    transition: transform 0.6s ease;
  }
  .concern-company .card:hover{
    transform: scale(1.2);
    border: 1px solid #ed1c24;
  }
  .concern-company .card img{
    width: 100%;
    height: auto;
  }
  .concern-company .swiper-button-prev,
  .concern-company .swiper-button-next {
    width: 40px;
    height: 40px;
    background-color: #eee;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .concern-company .swiper-button-prev:after,
  .concern-company .swiper-button-next:after {
    font-size: 20px;
  }
