/* Reset dan Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

/* Navigation */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    padding: 15px 0;
    min-height: 80px;
    max-height: 80px;
    overflow: visible;
    position: relative;
    isolation: isolate;
    contain: layout;
    z-index: 1030;
}

.navbar .container {
    height: 50px;
    max-height: 50px;
    display: flex;
    align-items: center;
    contain: layout;
}

.navbar-brand {
    display: flex;
    align-items: center;
    padding: 0;
    overflow: visible;
    position: relative;
    height: 50px;
    max-height: 50px;
    width: 50px;
    min-width: 50px;
    contain: layout;
    pointer-events: auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    overflow: visible;
    position: relative;
    height: 50px;
    max-height: 50px;
    width: 50px;
    min-width: 50px;
    contain: layout;
    pointer-events: auto;
}

.logo-image {
    width: 180px;
    height: 180px;
    object-fit: contain;
    transition: transform 0.3s ease;
    position: absolute;
    top: -65px;
    left: -90px;
    z-index: 10;
    transform: translate3d(0, 0, 0);
    will-change: transform;
    backface-visibility: hidden;
    pointer-events: none;
}

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

.logo-image-large {
    width: 80px;
    height: 80px;
    object-fit: contain;
    transition: transform 0.3s ease;
    margin-bottom: 10px;
}

.logo-image-large:hover {
    transform: scale(1.1);
}

.company-name {
    color: #1e3a8a;
    font-weight: 600;
    font-size: 20px;
    margin-left: 5px;
    position: absolute;
    left: 55px;
    white-space: nowrap;
    z-index: 5;
}

.navbar-nav {
    height: 50px;
    max-height: 50px;
    align-items: center;
    contain: layout;
}

.navbar-nav .nav-link {
    color: #1e3a8a !important;
    font-weight: 500;
    margin: 0 10px;
    transition: all 0.3s ease;
    position: relative;
    padding: 10px 15px !important;
    height: 50px;
    display: flex;
    align-items: center;
}

.navbar-nav .nav-link:hover {
    color: #3b82f6 !important;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 2px;
    background: #3b82f6;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after {
    width: 100%;
}

.navbar-collapse {
    align-items: center;
    height: 50px;
    max-height: 50px;
    contain: layout;
}

/* Enhanced navbar scroll behavior */
.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.15) !important;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}

/* Banner Slider */
.banner-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background: #000;
}

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

.banner-slide.active {
    opacity: 1;
    z-index: 1;
}

.banner-slide:not(.active) {
    z-index: 0;
}

/* Add overlay to banner slides for better text readability */
.banner-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: -1;
}

.banner-content {
    width: 100%;
    height: 100%;
    position: relative;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.8), rgba(30, 64, 175, 0.8));
    display: flex;
    align-items: center;
}

.hero-content {
    text-align: center;
    color: white;
    z-index: 2;
    position: relative;
}

.logo-large {
    margin-bottom: 30px;
}

/* Removed logo-shape-large styling as it's no longer used */

.company-name-large {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 10px;
}

.company-legal {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 10px;
    opacity: 0.9;
}

.company-type {
    font-size: 18px;
    opacity: 0.8;
}

.vision-content {
    text-align: center;
    color: white;
    z-index: 2;
    position: relative;
    max-width: 700px;
    padding: 0 40px;
    margin: 0 auto;
}

.vision-title {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 40px;
    text-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
    letter-spacing: 2px;
    line-height: 1.2;
}

.vision-text {
    font-size: 28px;
    line-height: 1.8;
    opacity: 0.95;
    font-weight: 400;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    max-width: 600px;
    margin: 0 auto;
}

/* Banner Navigation */
.banner-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    z-index: 10;
    pointer-events: none;
}

.banner-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: auto;
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.banner-nav-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-50%) scale(1.1);
}

.prev-btn {
    left: 30px;
}

.next-btn {
    right: 30px;
}

/* Banner Indicators */
.banner-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.indicator.active {
    background: white;
    transform: scale(1.2);
    border-color: rgba(255, 255, 255, 0.8);
}

.indicator:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.1);
}

/* Section Styles */
.section-title {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 50px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6, #1e3a8a);
    border-radius: 2px;
}

/* About Section */
.about-section {
    padding: 100px 0;
    background: #f8fafc;
}

.about-image {
    position: relative;
    height: 400px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.about-us-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    border-radius: 15px;
}

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

.logo-overlay {
    position: absolute;
    top: 20px;
    left: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    background: rgba(255, 255, 255, 0.9);
    padding: 15px;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.about-content {
    padding: 30px;
}

.intro-text {
    font-size: 18px;
    color: #6b7280;
    margin-bottom: 30px;
    font-style: italic;
}

.company-title {
    font-size: 28px;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 20px;
}

.company-description,
.company-services {
    font-size: 16px;
    line-height: 1.8;
    color: #4b5563;
    margin-bottom: 20px;
}

/* Partners Section */
.partners-section {
    padding: 100px 0;
    background: url('../images/bg/background navy-07.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    position: relative;
}

.partners-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.partners-section .container {
    position: relative;
    z-index: 2;
}

.partners-subtitle {
    text-align: center;
    font-size: 20px;
    margin-bottom: 60px;
    opacity: 0.9;
}

.partner-card {
    text-align: center;
    margin-bottom: 40px;
    transition: transform 0.3s ease;
}

.partner-card:hover {
    transform: translateY(-10px);
}

.partner-logo {
    margin-bottom: 20px;
}

.partner-logo-img {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    padding: 25px;
}

.partner-logo-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
    border-radius: 50%;
}

.partner-card:hover .partner-logo-image {
    transform: scale(1.1);
}

.partner-name {
    font-size: 20px;
    font-weight: 600;
    margin-top: 15px;
}

/* Products Section */
.products-section {
    padding: 100px 0;
    background: white;
}

.product-card {
    text-align: center;
    margin-bottom: 40px;
    transition: transform 0.3s ease;
}

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

.product-image {
    margin-bottom: 20px;
}

.product-image-img {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    margin: 0 auto;
    object-fit: contain;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    background: white;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

.product-image-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.product-name {
    font-size: 18px;
    font-weight: 600;
    color: #1e3a8a;
}

/* Clients Section */
.clients-section {
    padding: 100px 0;
    background: #f8fafc;
    overflow: hidden;
}

.clients-marquee {
    width: 100%;
    overflow: hidden;
    position: relative;
    margin-top: 50px;
    min-height: 120px;
}

.clients-marquee::before,
.clients-marquee::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100px;
    z-index: 2;
    pointer-events: none;
}

.clients-marquee::before {
    left: 0;
    background: linear-gradient(to right, #f8fafc 0%, transparent 100%);
}

.clients-marquee::after {
    right: 0;
    background: linear-gradient(to left, #f8fafc 0%, transparent 100%);
}

.clients-track {
    display: flex !important;
    flex-direction: row !important;
    align-items: center;
    animation: marquee 30s linear infinite;
    width: max-content;
    gap: 0;
    min-height: 100px;
}

.clients-track:hover {
    animation-play-state: paused;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.client-logo {
    margin: 0 20px;
    flex-shrink: 0;
}

.client-logo-img {
    width: 140px;
    height: 100px;
    border-radius: 10px;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.client-logo:hover .client-logo-img {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transform: translateY(-5px);
    border: 2px solid #3b82f6;
    background: linear-gradient(135deg, #ffffff, #f8fafc);
}

.client-logo:hover .client-logo-image {
    transform: scale(1.1);
    filter: brightness(1.1) contrast(1.1);
}

.client-logo-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
    border-radius: 8px;
    max-width: 100%;
    max-height: 100%;
}

/* Gallery Section */
.gallery-section {
    padding: 100px 0;
    background: white;
}

.gallery-item {
    margin-bottom: 30px;
}

.gallery-image {
    width: 100%;
    height: 280px;
    border-radius: 15px;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background: url('../images/bg/background navy-07.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    position: relative;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.contact-section .container {
    position: relative;
    z-index: 2;
}

.office-info,
.contact-info {
    text-align: left;
    margin-bottom: 40px;
}

.office-info h3,
.contact-info h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
    color: white;
}

.office-info h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: white;
}

.office-info p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
    opacity: 0.9;
}

.map-container {
    width: 100%;
    height: 200px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-top: 20px;
    transition: transform 0.3s ease;
}

.map-container:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 10px;
}

.contact-info {
    text-align: left;
    margin-bottom: 40px;
    padding-left: 120px;
    margin-top: 3px;
}

.contact-details,
.social-media {
    margin-bottom: 30px;
    text-align: left;
}

.contact-details p,
.social-media p {
    margin-bottom: 15px;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    text-align: left;
}

.contact-details i,
.social-media i {
    width: 20px;
    text-align: center;
    flex-shrink: 0;
    margin-right: 5px;
}

/* Social Media Links Styling */
.social-media a {
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    opacity: 0.9;
    text-align: left;
    display: inline;
}

.social-media a:hover {
    color: #3b82f6;
    opacity: 1;
    text-decoration: underline;
}

.contact-details a {
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    opacity: 0.9;
    text-align: left;
    display: inline;
}

.contact-details a:hover {
    color: #3b82f6;
    opacity: 1;
    text-decoration: underline;
}

/* Footer */
.footer {
    background: #1e3a8a;
    color: white;
    text-align: center;
    padding: 30px 0;
}

/* Responsive Design */
@media (max-width: 992px) {
    .navbar-nav .nav-link {
        margin: 0 8px;
        padding: 8px 12px !important;
        font-size: 15px;
    }
    
    .company-name {
        font-size: 18px;
        left: 50px;
    }
    
    .logo-image {
        width: 160px;
        height: 160px;
        top: -55px;
        left: -75px;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 12px 0;
        min-height: 70px;
        max-height: 70px;
        contain: layout;
    }
    
    .navbar .container {
        height: 46px;
        max-height: 46px;
        contain: layout;
    }
    
    .navbar-brand {
        height: 46px;
        max-height: 46px;
    }
    
    .logo {
        height: 46px;
        max-height: 46px;
    }
    
    /* Improved mobile navbar styling */
    .navbar-toggler {
        border: none;
        padding: 8px;
        border-radius: 8px;
        background: rgba(30, 58, 138, 0.1);
        transition: all 0.3s ease;
    }
    
    .navbar-toggler:focus {
        box-shadow: 0 0 0 0.2rem rgba(30, 58, 138, 0.25);
        outline: none;
    }
    
    .navbar-toggler:hover {
        background: rgba(30, 58, 138, 0.2);
    }
    
    .navbar-collapse {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(15px);
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
        border-radius: 0 0 16px 16px;
        padding: 20px 0;
        margin-top: 0;
        height: auto !important;
        max-height: none !important;
        overflow: hidden;
        transition: all 0.3s ease;
    }
    
    .navbar-nav {
        height: auto !important;
        max-height: none !important;
        padding: 0 20px;
        margin: 0;
    }
    
    .navbar-nav .nav-item {
        margin: 8px 0;
        border-radius: 12px;
        transition: all 0.3s ease;
    }
    
    .navbar-nav .nav-item:hover {
        background: rgba(30, 58, 138, 0.05);
    }
    
    .navbar-nav .nav-link {
        height: auto !important;
        max-height: none !important;
        padding: 16px 20px !important;
        margin: 0 !important;
        border-radius: 12px;
        font-size: 16px;
        font-weight: 500;
        color: #1e3a8a !important;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .navbar-nav .nav-link:hover {
        color: #3b82f6 !important;
        background: rgba(59, 130, 246, 0.1);
        transform: translateX(8px);
    }
    
    .navbar-nav .nav-link::after {
        display: none;
    }
    
    /* Smooth animation for mobile menu */
    .navbar-collapse.collapsing {
        transition: all 0.3s ease;
    }
    
    .navbar-collapse.show {
        animation: slideDown 0.3s ease forwards;
    }
    
    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    /* Enhanced mobile menu styling */
    .navbar-nav .nav-item.active .nav-link {
        background: rgba(30, 58, 138, 0.1);
        color: #1e3a8a !important;
        font-weight: 600;
    }
    
    .navbar-nav .nav-item.active .nav-link::before {
        content: '';
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 4px;
        height: 20px;
        background: #1e3a8a;
        border-radius: 0 2px 2px 0;
    }
    
    /* Improved mobile menu backdrop */
    .navbar-collapse::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.3);
        z-index: -1;
        opacity: 0;
        transition: opacity 0.3s ease;
    }
    
    .navbar-collapse.show::before {
        opacity: 1;
    }
    
    /* Enhanced mobile menu item transitions */
    .navbar-nav .nav-item {
        opacity: 0;
        transform: translateY(10px);
        animation: fadeInUp 0.4s ease forwards;
    }
    
    .navbar-nav .nav-item:nth-child(1) { animation-delay: 0.1s; }
    .navbar-nav .nav-item:nth-child(2) { animation-delay: 0.2s; }
    .navbar-nav .nav-item:nth-child(3) { animation-delay: 0.3s; }
    .navbar-nav .nav-item:nth-child(4) { animation-delay: 0.4s; }
    .navbar-nav .nav-item:nth-child(5) { animation-delay: 0.5s; }
    
    @keyframes fadeInUp {
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    /* Enhanced mobile menu link hover effects */
    .navbar-nav .nav-link::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 2px;
        background: linear-gradient(90deg, #1e3a8a, #3b82f6);
        transform: translateX(-100%);
        transition: transform 0.3s ease;
    }
    
    .navbar-nav .nav-link:hover::after {
        transform: translateX(0);
    }
    
    /* Glassmorphism effect for mobile menu */
    .navbar-collapse {
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border: 1px solid rgba(255, 255, 255, 0.2);
        box-shadow: 0 8px 32px rgba(31, 38, 135, 0.37);
    }
    
    /* Enhanced mobile menu item styling */
    .navbar-nav .nav-item {
        margin: 4px 0;
        border-radius: 16px;
        background: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.2);
        transition: all 0.3s ease;
    }
    
    .navbar-nav .nav-item:hover {
        background: rgba(30, 58, 138, 0.1);
        border-color: rgba(30, 58, 138, 0.3);
        transform: translateX(8px) scale(1.02);
        box-shadow: 0 4px 20px rgba(30, 58, 138, 0.15);
    }
    
    .navbar-nav .nav-link {
        border-radius: 16px;
        margin: 2px;
        background: transparent;
        transition: all 0.3s ease;
    }
    
    .navbar-nav .nav-link:hover {
        background: rgba(59, 130, 246, 0.1);
        color: #1e3a8a !important;
        transform: translateX(0);
    }
    
    .banner-slider {
        height: 100vh;
    }
    
    .banner-nav-btn {
        width: 40px;
        height: 40px;
    }
    
    .prev-btn {
        left: 15px;
    }
    
    .next-btn {
        right: 15px;
    }
    
    .banner-indicators {
        bottom: 20px;
    }
    
    .vision-title {
        font-size: 36px;
        margin-bottom: 30px;
        letter-spacing: 1px;
    }
    
    .vision-text {
        font-size: 20px;
        line-height: 1.6;
    }
    
    .logo-image {
        width: 150px;
        height: 150px;
        top: -50px;
        left: -55px;
        transform: translate3d(0, 0, 0);
        backface-visibility: hidden;
        pointer-events: none;
    }
    
    .logo {
        width: 50px;
        min-width: 50px;
        contain: layout;
        pointer-events: auto;
    }
    
    .navbar-brand {
        width: 50px;
        min-width: 50px;
        contain: layout;
        pointer-events: auto;
    }
    
    .company-name {
        left: 40px;
    }
    
    .company-name {
        font-size: 18px;
    }
    
    .logo-image-large {
        width: 60px;
        height: 60px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .about-content {
        padding: 20px 0;
    }
    
    .partner-card,
    .product-card {
        margin-bottom: 30px;
    }
    
    .partner-logo-img {
        width: 180px;
        height: 180px;
    }
    
    .product-image-img {
        width: 180px;
        height: 180px;
        padding: 12px;
    }
    

}

@media (max-width: 576px) {
    .navbar {
        padding: 10px 0;
        min-height: 65px;
        max-height: 65px;
        contain: layout;
    }
    
    .navbar .container {
        height: 45px;
        max-height: 45px;
        contain: layout;
    }
    
    .navbar-brand {
        height: 45px;
        max-height: 45px;
    }
    
    .logo {
        height: 45px;
        max-height: 45px;
    }
    
    /* Enhanced mobile navbar styling for small screens */
    .navbar-toggler {
        padding: 6px;
        border-radius: 6px;
    }
    
    .navbar-collapse {
        padding: 15px 0;
        border-radius: 0 0 12px 12px;
    }
    
    .navbar-nav {
        padding: 0 15px;
    }
    
    .navbar-nav .nav-item {
        margin: 6px 0;
    }
    
    .navbar-nav .nav-link {
        padding: 14px 16px !important;
        font-size: 15px;
    }
    
    .navbar-brand .company-name {
        display: none;
    }
    
    .logo {
        width: 35px;
        min-width: 35px;
        height: 45px;
        max-height: 45px;
        contain: layout;
        pointer-events: auto;
    }
    
    .navbar-brand {
        width: 35px;
        min-width: 35px;
        height: 45px;
        max-height: 45px;
        contain: layout;
        pointer-events: auto;
    }
    
    .logo-image {
        width: 120px;
        height: 120px;
        top: -35px;
        left: -40px;
        transform: translate3d(0, 0, 0);
        backface-visibility: hidden;
        pointer-events: none;
    }
    
    .company-name {
        left: 40px;
    }
    
    .banner-slider {
        height: 100vh;
    }
    
    .banner-nav-btn {
        width: 35px;
        height: 35px;
    }
    
    .prev-btn {
        left: 10px;
    }
    
    .next-btn {
        right: 10px;
    }
    
    .vision-content {
        padding: 0 20px;
        max-width: 100%;
    }
    
    .vision-title {
        font-size: 28px;
        margin-bottom: 25px;
        letter-spacing: 0.5px;
    }
    
    .vision-text {
        font-size: 18px;
        line-height: 1.5;
    }
    
    .about-image {
        height: 300px;
        margin-bottom: 30px;
    }
    
    .clients-marquee {
        margin-top: 20px;
    }
    
    .clients-track {
        animation-duration: 15s;
    }
    
    .client-logo {
        margin: 0 15px;
    }
    
    .client-logo-img {
        width: 80px;
        height: 60px;
        padding: 8px;
    }
    
    .product-image-img {
        width: 160px;
        height: 160px;
        padding: 10px;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Enhanced focus states for accessibility */
.navbar-nav .nav-link:focus {
    outline: 2px solid rgba(59, 130, 246, 0.5);
    outline-offset: 2px;
    border-radius: 8px;
}

/* Loading Animation */
.loading {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.loading.loaded {
    opacity: 1;
    transform: translateY(0);
} 

.partners-section .section-title {
    font-size: 40px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.9);
    color: #ffffff;
}

.partners-section .partners-subtitle {
    text-shadow: 0 1px 3px rgba(0,0,0,0.9);
    font-weight: 700;
    color: #ffffff;
    font-size: 22px;
} 

.contact-section .section-title {
    font-size: 40px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.9);
    color: #ffffff;
} 

.clients-section .clients-marquee .clients-track .client-logo {
    text-align: center;
    margin: 0 30px;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    flex-basis: auto;
    display: block;
    /* Debug: ensure proper item behavior */
    min-width: 120px;
    max-width: 120px;
} 

.clients-section .clients-marquee .clients-track .client-logo:hover {
    transform: scale(1.1);
} 

@media (max-width: 768px) {
    .contact-info {
        text-align: left;
        padding: 0 15px 0 25px;
        margin-top: 25px;
    }
    
    .contact-details,
    .social-media {
        text-align: left;
    }
    
    .contact-details p,
    .social-media p {
        justify-content: flex-start;
        text-align: left;
    }
} 

@media (max-width: 576px) {
    .contact-info {
        text-align: left;
        padding: 0 10px 0 20px;
        margin-top: 20px;
    }
} 

/* Responsive Banner Slider */
@media (max-width: 768px) {
    .banner-nav-btn {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .prev-btn {
        left: 15px;
    }
    
    .next-btn {
        right: 15px;
    }
    
    .banner-indicators {
        bottom: 20px;
        gap: 8px;
    }
    
    .indicator {
        width: 10px;
        height: 10px;
    }
}

@media (max-width: 480px) {
    .navbar {
        padding: 8px 0;
        min-height: 60px;
        max-height: 60px;
    }
    
    .navbar .container {
        height: 44px;
        max-height: 44px;
    }
    
    .navbar-brand {
        height: 44px;
        max-height: 44px;
    }
    
    .logo {
        height: 44px;
        max-height: 44px;
    }
    
    /* Enhanced mobile navbar styling for very small screens */
    .navbar-toggler {
        padding: 5px;
        border-radius: 5px;
    }
    
    .navbar-collapse {
        padding: 12px 0;
        border-radius: 0 0 10px 10px;
    }
    
    .navbar-nav {
        padding: 0 12px;
    }
    
    .navbar-nav .nav-item {
        margin: 4px 0;
    }
    
    .navbar-nav .nav-link {
        padding: 12px 14px !important;
        font-size: 14px;
    }
    
    .logo-image {
        width: 100px;
        height: 100px;
        top: -30px;
        left: -30px;
    }
    
    .logo {
        width: 30px;
        min-width: 30px;
        height: 44px;
        max-height: 44px;
    }
    
    .navbar-brand {
        width: 30px;
        min-width: 30px;
        height: 44px;
        max-height: 44px;
    }
    
    .banner-nav-btn {
        width: 30px;
        height: 30px;
    }
    
    .prev-btn {
        left: 8px;
    }
    
    .next-btn {
        right: 8px;
    }
    
    .vision-title {
        font-size: 24px;
        margin-bottom: 20px;
    }
    
    .vision-text {
        font-size: 16px;
        line-height: 1.4;
    }
} 

/* Responsive Clients Section */
@media (max-width: 768px) {
    .clients-section {
        padding: 60px 0;
    }
    
    .clients-marquee {
        margin-top: 30px;
        min-height: 100px;
    }
    
    .clients-track {
        animation-duration: 20s;
        min-height: 80px;
    }
    
    .client-logo {
        margin: 0 15px;
    }
    
    .client-logo-img {
        width: 120px;
        height: 80px;
        padding: 12px;
    }
}

@media (max-width: 576px) {
    .clients-section {
        padding: 40px 0;
    }
    
    .clients-marquee {
        margin-top: 20px;
        min-height: 80px;
    }
    
    .clients-track {
        animation-duration: 15s;
        min-height: 60px;
    }
    
    .client-logo {
        margin: 0 10px;
    }
    
    .client-logo-img {
        width: 100px;
        height: 70px;
        padding: 10px;
    }
    
    .clients-marquee::before,
    .clients-marquee::after {
        width: 50px;
    }
} 

/* Floating WhatsApp Contact */
.floating-whatsapp {
    position: fixed;
    right: 30px;
    bottom: 40px;
    z-index: 1100;
}

.floating-whatsapp a {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #25d366;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.25);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.floating-whatsapp a:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.35);
}

@media (max-width: 768px) {
    .floating-whatsapp {
        right: 20px;
        bottom: 30px;
    }
}

@media (max-width: 576px) {
    .floating-whatsapp a {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
}