* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
}

body {
    line-height: 1.6;
    color: #333;
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
    width: 100%;
}

/* Header */
header {
    background: linear-gradient(90deg, #1E2761, #28398F, #1E1B4B) !important;
    z-index: 1000;
}

.navbar {
    background: transparent !important;
    height: 70px;
}

.logo {
    color: white !important;
    font-size: 1.5rem;
    font-weight: bold;
    text-decoration: none !important;
    position: absolute;
}

.navbar-logo {
    height: 90px;
    width: auto;
    max-width: 300px;
    object-fit: contain;
    transition: transform 0.3s ease;
    margin-top: 18px;
    filter: drop-shadow(2px 4px 6px rgba(0, 0, 0, 0.5));
}

/* Navigation Logo Hover Effect - COMMENTED OUT */
/* .navbar-logo:hover {
    transform: scale(1.05);
} */

/* Navigation Links Base Styles */
.nav-links .nav-link {
    color: white !important;
    /* transition: all 0.3s; */
    /* Hover transition - COMMENTED OUT */
    padding: 0.5rem 2.15rem !important;
    border: 2px solid transparent;
    border-right: 1px solid rgba(255, 255, 255, 0.5);
    position: relative;
}

@media (max-width: 1366px) {
    .nav-links .nav-link {
        padding: 0.5rem 1.5rem !important;
    }
}

/* Remove border from last navigation link */
.nav-links .nav-item:last-child .nav-link {
    border-right: none;
}

/* Navigation Links Hover Effect - COMMENTED OUT */
/* .nav-links .nav-link:hover {
    color: white !important;
    border-color: #e74c3c !important;
} */

/* Active Navigation Button Style - COMMENTED OUT */
/* .home-btn {
    color: white !important;
    border: 2px solid #e74c3c !important;
    background: transparent !important;
    padding: 0.5rem 1rem !important;
    text-decoration: none !important;
    transition: all 0.3s;
} */

/* Active Navigation Button Hover Effect - COMMENTED OUT */
/* .home-btn:hover {
    border-color: #c0392b !important;
    color: white !important;
} */

.navbar-toggler {
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Mobile Drawer Styles */
.mobile-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    z-index: 9999;
    transition: right 0.3s ease;
}

.mobile-drawer.active {
    right: 0;
}

.mobile-drawer-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-drawer.active .mobile-drawer-overlay {
    opacity: 1;
}

.mobile-drawer-content {
    position: absolute;
    top: 0;
    right: 0;
    width: 280px;
    height: 100%;
    background: linear-gradient(135deg, #1E2761, #28398F, #1E1B4B);
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
    transform: translateX(100%);
    transition: transform 0.3s ease;
}

.mobile-drawer.active .mobile-drawer-content {
    transform: translateX(0);
}

.mobile-drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-logo {
    height: 40px;
    width: auto;
}

.mobile-drawer-close {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 5px;
    transition: color 0.3s ease;
}

.mobile-drawer-close:hover {
    color: #00D4FF;
}

.mobile-nav-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav-link {
    display: block;
    padding: 20px;
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.mobile-nav-link:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #00D4FF;
    padding-left: 30px;
}

/* Hide mobile drawer on desktop */
@media (min-width: 992px) {
    .mobile-drawer {
        display: none;
    }
}

.hero-carousel {
    position: relative;
    height: 100vh;
    overflow: hidden;
    /* margin-top: 90px; */
}

.hero-video {
    position: relative;
    height: 100vh;
    overflow: hidden;
    /* margin-top: 80px; */
}

.video-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: -1;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-slide.active {
    opacity: 1;
}

.slide1 {
    background: url('./assets/pexels-tima-miroshnichenko-5846281.jpg') center/cover;
}

.slide2 {
    background: url('./assets/pexels-tima-miroshnichenko-5846119.jpg') center/cover;
}

.slide3 {
    background: url('./assets/pexels-tima-miroshnichenko-5846151.jpg') center/cover;
}

.hero-content {
    text-align: center;
    color: white;
    max-width: 1000px;
    padding: 0 2rem;
}

.hero-content h1 {
    font-size: 4rem;
    margin-top: 25rem;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 1);
}

.hero-dots {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background 0.3s;
}

.dot.active {
    background: #e74c3c;
}

.welcome {
    padding-top: 100px;
    /* Account for fixed header */
}

.page-main {
    margin-top: 112px;
    min-height: 60vh;
}

@media (max-width: 768px) {
    .page-main {
        margin-top: 92px;
    }
}

@media (max-width: 576px) {
    .page-main {
        margin-top: 62px;
    }
}

.service-card {
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-number {
    font-size: 1.5rem;
    font-weight: bold;
}

.service-btn {
    border-radius: 0px !important;
}

.service-btn:hover {
    background: #c0392b !important;
}

/* Features Section */
.features {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('./assets/pexels-pixabay-159298.jpg') center/cover;
    color: white !important;
    opacity: 0.9;
    margin-bottom: 5rem;
}

.features .feature-icon,
.features .feature-icon i {
    color: white !important;
}

.features h3,
.features p {
    color: white !important;
}

/* Products Section */
.product-card {
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-btn {
    border-radius: 0px !important;
    width: 5rem;
}

.product-btn:hover {
    background: #555 !important;
    color: white !important;
}

.contact {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('./assets/pexels-nikiemmert-20596139-modified.jpg') center/cover;
    color: white !important;
}

.social-links a:hover {
    background: #e74c3c !important;
    border-color: #e74c3c !important;
    color: white !important;
}

.partners-section {
    background: white;
    padding: 60px 0;
}

.partners-container {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    gap: 80px;
}

.partner-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
    transition: opacity 0.3s ease;
}


.vertical-divider {
    width: 1px;
    height: 100px;
    background: #28398F;
    flex-shrink: 0;
}



.partner-image {
    max-width: 120px;
    max-height: 100px;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.partner-image:hover {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .partners-container {
        gap: 40px;
        flex-wrap: wrap;
        justify-content: space-around;
    }

    .vertical-divider {
        display: none;
    }

    .partner-logo {
        margin: 10px 0;
    }
}

@media (max-width: 768px) {

    header {
        padding: 0.5rem 0;
        width: 100%;
        left: 0;
        right: 0;
    }

    .navbar {
        width: 100%;
        margin: 0;
        padding: 0;
        height: 45px;
    }

    .container {
        max-width: 100%;
        padding-left: 15px;
        padding-right: 15px;
        margin: 0 auto;
    }

    .logo {
        font-size: 1.3rem !important;
        white-space: nowrap;
    }

    .navbar-logo {
        height: 70px;
        max-width: 150px;
        margin-top: 10px;
    }

    .navbar-toggler {
        border: none;
        padding: 0.25rem 0.5rem;
        margin-right: 15px;
        position: absolute;
        right: 0;
    }

    .navbar-toggler:focus {
        box-shadow: none;
    }

    .navbar-collapse {
        background: rgba(0, 0, 0, 0.5);
        margin-top: 1rem;
        padding: 1rem;
        border-radius: 8px;
    }

    .nav-links .nav-link {
        margin: 0.5rem 0;
        padding: 0.75rem 1rem !important;
        text-align: center;
        font-size: 1.1rem;
        border-radius: 4px;
        border-right: none !important;
    }

    .navbar-toggler:focus {
        box-shadow: none;
    }

    .navbar-collapse {
        background: rgba(0, 0, 0, 0.95);
        margin-top: 1rem;
        padding: 1rem;
        border-radius: 8px;
    }

    .nav-links .nav-link {
        margin: 0.5rem 0;
        padding: 0.75rem 1rem !important;
        text-align: center;
        font-size: 1.1rem;
        border-radius: 4px;
    }

    /* Mobile Navigation Hover Effects - COMMENTED OUT */
    /* .nav-links .nav-link:hover,
    .home-btn {
        background: rgba(231, 76, 60, 0.1) !important;
    } */
    .hero-content {
        padding: 0 1rem;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 2.5rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }

    .hero-content .lead {
        font-size: 1.1rem;
        margin-bottom: 0;
    }

    .video-overlay {
        background: rgba(0, 0, 0, 0.6);
    }
}

.stats-bar {
    background: linear-gradient(90deg, #1E2761, #28398F, #1E2761);
    color: white;
}

.stat-item {
    text-align: center;
    padding: 20px 15px;
    position: relative;
}

.stat-item:not(:last-child):after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
}

.stat-number {
    font-size: 1.5rem;
    font-weight: bold;
    display: block;
    color: #00B7F3;
}

.stats-bar .stat-number .clad {
    font-size: 1rem !important;
    display: inline !important;
}

.stat-label {
    font-size: 1rem;
    font-weight: 500;
    color: #ffffff;
    line-height: 1.4;
}

@media (max-width: 768px) {

    .hero-video {
        height: 40vh;
        min-height: 300px;
    }

    .stat-item:after {
        display: none;
    }

    .stat-item {
        margin-bottom: 15px;
        padding: 20px 15px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .stat-item:last-child {
        border-bottom: none;
    }

    .stat-item:not(:last-child):after {
        display: none;
    }

    .stat-number {
        font-size: 1.5rem;
        margin-bottom: 8px;
    }

    .stat-label {
        font-size: 0.95rem;
        line-height: 1.4;
    }
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
}

.partner-banner {
    display: flex;
    min-height: 80px;
    font-family: 'Arial', sans-serif;
    margin-top: 5px;
}

.partner-section {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(90deg, #1E2761, #28398F, #1E1B4B);
    color: white;
    padding: 20px;
    position: relative;
    transition: all 0.3s ease;
}

.partner-section::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 1px;
    background: rgba(255, 255, 255, 0.5);
}

.partner-section:last-child::after {
    display: none;
}

.partner-text {
    font-size: 1rem;
    font-weight: 300;
    text-align: center;
    margin: 0;
    line-height: 1.4;
}

.partner-text .regular-text {
    color: white;
    font-weight: 400;
}

.partner-text .highlight-text {
    font-weight: 700;
    text-transform: uppercase;
}

.section-1 .highlight-text {
    color: #00D4FF;
}

.section-2 .highlight-text {
    color: #00D4FF;
}

.section-3 .highlight-text {
    color: #00D4FF;
}

@media (max-width: 768px) {
    .partner-banner {
        flex-direction: column;
    }

    .partner-section {
        min-height: 60px;
    }

    .partner-section::after {
        width: 100%;
        height: 1px;
        top: auto;
        bottom: 0;
        right: 0;
    }

    .partner-text {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .partner-text {
        font-size: 0.9rem;
    }

    .partner-section {
        padding: 15px 10px;
    }
}

.container-fluid {
    max-width: 1400px;
}

.company-section {
    background-color: #f8f9fa;
    padding: 80px 0;
    height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-container {
    text-align: center;
    margin-bottom: 40px;
}

.company-logo {
    display: inline-block;
    padding: 20px 40px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.company-logo-img {
    max-width: 300px;
    height: auto;
    display: block;
    margin: 0 auto;
}

.logo-icon {
    width: 60px;
    height: 60px;
    border: 3px solid #ffffff;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    vertical-align: middle;
}

.logo-bracket {
    color: #ffffff;
    font-size: 32px;
    font-weight: bold;
    font-family: 'Arial', sans-serif;
}

.company-name {
    color: #ffffff;
    display: inline-block;
    vertical-align: middle;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.company-title {
    font-size: 32px;
    font-weight: 600;
    margin: 0;
    line-height: 1.2;
}

.company-subtitle {
    font-size: 20px;
    font-weight: 300;
    margin: 5px 0 0 0;
    opacity: 0.9;
}

.tagline {
    color: #333333;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

@media (max-width: 768px) {
    .company-section {
        background-color: #f8f9fa;
        padding: 80px 0;
        height: 30vh;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .company-logo {
        padding: 15px 25px;
    }

    .logo-icon {
        width: 45px;
        height: 45px;
        margin-right: 15px;
    }

    .logo-bracket {
        font-size: 24px;
    }

    .company-title {
        font-size: 24px;
    }

    .company-subtitle {
        font-size: 16px;
    }

    .tagline {
        font-size: 16px;
        padding: 0 15px;
    }
}

@media (max-width: 576px) {

    .company-section {
        background-color: #f8f9fa;
        padding: 80px 0;
        height: 30vh;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .company-logo {
        padding: 12px 20px;
    }

    .logo-icon {
        width: 40px;
        height: 40px;
        margin-right: 12px;
    }

    .logo-bracket {
        font-size: 20px;
    }

    .company-title {
        font-size: 20px;
    }

    .company-subtitle {
        font-size: 14px;
    }

    .tagline {
        font-size: 15px;
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.contact-section {
    background: linear-gradient(90deg, #1E2761, #28398F, #1E1B4B);
    color: white;
    padding: 40px 0 0 0;
    min-height: 350px;
}

.main-heading {
    text-align: center;
    padding: 0 20px 30px 20px;
}

.contact-title {
    font-size: 3rem;
    font-weight: 700;
    /* margin-bottom: 15px; */
    line-height: 1.2;
}

.contact-title .get-text {
    color: #00D4FF;
}

.contact-title .in-touch-text {
    color: white;
}

.contact-subtitle {
    font-size: 1.1rem;
    color: #bdc3c7;
    margin-bottom: 0;
    line-height: 1.5;
}

.content-row {
    background: transparent;
}

.map-container {
    height: 300px;
    position: relative;
    overflow: hidden;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-embed {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.contact-info {
    padding: 20px 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 280px;
}

.contact-details-heading {
    font-size: 0.87rem;
    color: #bdc3c7;
    margin-bottom: 25px;
    line-height: 1.5;
    text-align: center;
    max-width: 100%;
}

.contact-details {
    display: flex;
    flex-direction: row;
    gap: 0px;
    justify-content: center;
}

.contact-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    text-align: center;
    min-width: 150px;
}

.contact-icon {
    width: 10px;
    height: 10px;
    color: #00D4FF;
    flex-shrink: 0;
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-text {
    color: white;
    font-size: 0.65rem;
}

.contact-text a {
    color: white;
    text-decoration: none;
}

.contact-text a:hover {
    color: #00D4FF;
    text-decoration: underline;
}

.quotation-section {
    padding: 20px 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 280px;
    text-align: center;
}

.quotation-title {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 25px;
    color: white;
}

.social-icons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.social-icon {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 8px;
}

.social-icon:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.email-icon {
    width: 55px;
    height: 55px;
    background: #e74c3c;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    margin: 0 auto;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.email-icon:hover {
    background: #c0392b;
    transform: scale(1.1);
}

@media (max-width: 992px) {
    .contact-title {
        font-size: 2.5rem;
    }

    .contact-info,
    .quotation-section {
        padding: 20px;
        height: auto;
        min-height: 220px;
    }

    .map-container {
        height: 250px;
    }
}

@media (max-width: 768px) {
    .contact-title {
        font-size: 2rem;
    }

    .map-container {
        height: 200px;
        padding: 15px;
    }

    .contact-info,
    .quotation-section {
        padding: 20px;
        height: auto;
    }

    .contact-details {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 20px;
    }

    .contact-item {
        justify-content: center;
        flex-direction: row;
        gap: 15px;
        min-width: auto;
        width: 100%;
        max-width: 300px;
    }

    .contact-details-heading {
        font-size: 0.9rem;
        margin-bottom: 15px;
    }

    .social-icons {
        gap: 12px;
    }

    .social-icon {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
}

.strengths-section {
    background-color: #f8f9fa;
    padding: 80px 0;
}

.strengths-section .container {
    max-width: 1400px;
}

.strengths-section .row {
    margin-left: -8px;
    margin-right: -8px;
}

.strengths-section .col-lg-3 {
    padding-left: 8px;
    padding-right: 8px;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 30px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.title-bold {
    font-weight: 700;
    color: #555;
}

.title-normal {
    font-weight: 400;
    color: #28398F;
}

.strength-card {
    position: relative;
    height: 220px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 30px;
    border-bottom: 5px solid #555;
}

.strength-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.card-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.3s ease;
}

.strength-card:hover .card-background {
    transform: scale(1.05);
}

.card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    pointer-events: none;
    background: linear-gradient(to top,
            rgba(0, 0, 0, 1) 0%,
            rgba(0, 0, 0, 0.0) 100%);
    opacity: 1;
    transition: height 0.3s ease, opacity 0.3s ease;
}

.strength-card:hover .card-overlay {
    height: 100%;
    opacity: 1;
}

.card-content {
    position: absolute;
    bottom: 0px;
    left: 30px;
    right: 30px;
    color: white;
    z-index: 2;
}

.card-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 0;
    transition: all 0.3s ease;
}

.card-description {
    font-size: 0.95rem;
    line-height: 1.5;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
    margin-top: 15px;
    max-height: 0;
    overflow: hidden;
}

.strength-card:hover .card-description {
    opacity: 1;
    transform: translateY(0);
    max-height: 100px;
}

@media (max-width: 768px) {
    .card-overlay {
        height: 70% !important;
        opacity: 1 !important;
    }

    .card-description {
        opacity: 1 !important;
        transform: translateY(0) !important;
        max-height: 100px !important;
    }

    .card-content {
        bottom: 20px;
        left: 20px;
        right: 20px;
    }

    .card-title {
        margin-bottom: 15px;
    }
}

.card-industrial-steel {
    background-image: url('../media/Asset 6.png');
}

.card-warehouse {
    background-image: url('../media/Asset 8.png');
}

.card-supply-force {
    background-image: url('../media/Asset 9.png');
}

.card-quality-assurance {
    background-image: url('../media/Asset 10.png');
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
        margin-bottom: 40px;
    }

    .strength-card {
        height: 200px;
    }

    .strengths-section .row {
        margin-left: -12px;
        margin-right: -12px;
    }

    .strengths-section .col-lg-3 {
        padding-left: 12px;
        padding-right: 12px;
        margin-bottom: 20px;
    }

    .card-content {
        bottom: 0px;
        left: 20px;
        right: 20px;
    }

    .card-title {
        font-size: 1.2rem;
        margin-bottom: 10px;
    }

    .card-description {
        font-size: 0.85rem;
    }
}

@media (max-width: 576px) {

    html,
    body {
        overflow-x: hidden;
        width: 100%;
        position: relative;
    }

    body {
        font-size: 14px;
        line-height: 1.6;
    }

    header {
        width: 100vw;
        position: fixed;
        left: 0;
        right: 0;
    }

    .navbar .container {
        max-width: 100%;
        padding: 0 10px;
    }

    h1,
    .h1 {
        font-size: 1.8rem !important;
        line-height: 1.3;
    }

    h2,
    .h2 {
        font-size: 1.5rem !important;
        margin-bottom: 1rem;
    }

    h3,
    .h3 {
        font-size: 1.3rem !important;
    }

    .lead {
        font-size: 1rem !important;
        line-height: 1.5;
    }

    .container {
        padding-left: 15px;
        padding-right: 15px;
    }

    .strengths-section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 1.5rem;
        letter-spacing: 1px;
        margin-bottom: 2rem;
    }

    .strength-card {
        height: 250px;
        margin-bottom: 20px;
    }

    .card-title {
        font-size: 1.1rem;
    }

    .card-description {
        font-size: 0.8rem;
    }

    .features {
        padding: 3rem 0 !important;
    }

    .feature {
        margin-bottom: 0.5rem;
    }

    .feature-icon {
        font-size: 2.5rem !important;
        margin-bottom: 1rem !important;
    }

    .feature h3 {
        font-size: 1.1rem !important;
        padding: 15px !important;
    }

    .vmv-item {
        padding: 20px 15px !important;
        margin-bottom: 1.5rem;
    }

    .vmv-title {
        font-size: 1.3rem !important;
        margin-bottom: 1rem;
    }

    .vmv-description {
        font-size: 0.9rem !important;
        line-height: 1.5;
        text-align: justify !important;
        max-width: 375px !important;
    }

    .icon-box {
        width: 50px !important;
        height: 50px !important;
    }

    .vmv-icon {
        font-size: 1.5rem !important;
    }

    .company-logo-img {
        max-width: 250px !important;
    }

    .partners-container {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 20px;
        justify-content: center;
    }

    .vertical-divider {
        display: none;
    }

    .partner-logo {
        flex: 0 0 calc(50% - 10px);
        margin: 10px 0;
        max-width: 150px;
    }

    .panther-text {
        font-size: 0.9rem;
    }

    .partner-section {
        padding: 15px 10px;
    }
}

.vmv-section {
    background-color: #f8f9fa;
    /* padding: 80px 0; */
    position: relative;
}

.vmv-container {
    max-width: 1200px;
    margin: 0 auto;
}

.vmv-item {
    text-align: center;
    padding: 40px 20px;
    position: relative;
    height: 100%;
}

.vmv-item:not(:last-child):after {
    content: '';
    position: absolute;
    right: 0;
    top: 20%;
    bottom: 20%;
    width: 2px;
    background: linear-gradient(to bottom, transparent, #bdc3c7, transparent);
}

.icon-container {
    width: 120px;
    height: 120px;
    background-color: #333333;
    border-radius: 50%;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.icon-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(44, 62, 80, 0.3);
}

.icon-box {
    width: 60px;
    height: 60px;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
}

.vmv-icon {
    font-size: 2rem;
    color: #2c3e50;
}

.vmv-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.vmv-description {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #34495e;
    text-align: center;
    max-width: 280px;
    margin: 0 auto;
    font-weight: 400;
}

.highlight-text {
    color: #2980b9;
    font-weight: 600;
}

@media (max-width: 991px) {
    .vmv-item:after {
        display: none;
    }

    .vmv-item {
        margin-bottom: 50px;
        padding: 30px 15px;
    }

    .vmv-item:not(:last-child) {
        border-bottom: 2px solid #e9ecef;
        padding-bottom: 50px;
    }
}

@media (max-width: 768px) {
    .vmv-section {
        padding: 60px 0;
    }

    .icon-container {
        width: 100px;
        height: 100px;
        margin-bottom: 25px;
    }

    .icon-box {
        width: 50px;
        height: 50px;
    }

    .vmv-icon {
        font-size: 1.6rem;
    }

    .vmv-title {
        font-size: 1.3rem;
        margin-bottom: 20px;
    }

    .vmv-description {
        font-size: 0.9rem;
        max-width: 250px;
    }
}

@media (max-width: 576px) {
    .vmv-item {
        padding: 25px 10px;
    }

    .icon-container {
        width: 90px;
        height: 90px;
    }

    .icon-box {
        width: 45px;
        height: 45px;
    }

    .vmv-icon {
        font-size: 1.4rem;
    }

    .vmv-title {
        font-size: 1.2rem;
    }

    .vmv-description {
        font-size: 0.85rem;
        max-width: 220px;
    }
}

#loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

#loader img {
    width: 100px;
    height: auto;
    animation: pulse 1.5s infinite ease-in-out;
}

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

    50% {
        transform: scale(1.3);
    }

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

.features-section {
    background: #9b8c8c;
    padding: 30px 0;
    position: relative;
}

.features-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
    background-size: 30px 30px;
}

.feature-item {
    text-align: center;
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-10px);
}

.icon-container {
    width: 120px;
    height: 120px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    position: relative;
}

.icon-container::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-item:hover .icon-container::before {
    opacity: 1;
}

.feature-item:hover .icon-container {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transform: scale(1.05);
}

.feature-icon {
    width: 80px;
    height: 80px;
    object-fit: contain;
    transition: transform 0.3s ease;
    margin: 0 auto 20px;
    display: block;
}

.feature-title {
    color: white;
    font-size: 1.4rem;
    font-weight: 600;
    margin: 0;
}

.highlight-blue {
    color: #1E2761;
    font-weight: 700;
}

.highlight-white {
    color: white;
    font-weight: 400;
}

@media (max-width: 768px) {
    .features-section {
        padding: 40px 0;
    }

    .icon-container {
        width: 100px;
        height: 100px;
    }

    .feature-icon {
        width: 50px;
        height: 50px;
    }

    .feature-title {
        font-size: 1.2rem;
    }
}

.up-title {
    display: none;
}

@media (max-width: 768px) {
    .down-title {
        display: none;
    }

    .up-title {
        display: block;
    }
}

@media (max-width: 576px) {
    .down-title {
        display: none;
    }

    .up-title {
        display: block;
    }
}

.mobile-video {
    display: none;
}

@media (max-width: 576px) {
    .pc-video {
        display: none;
    }

    .mobile-video {
        display: inline-block;
    }
}
