/* Reset & Base Styles --By: LayananWeb.com */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    scroll-behavior: smooth;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1045a7;
    margin-bottom: 25px;
    letter-spacing: -1px;	 
}
.section-title-products {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.5rem;
    color: #1045a7; 
}
.section-footer-title {
    text-transform: uppercase;
	text-align: center;
    margin-bottom: 0px;
    font-size: 1.5rem;
    color: #ddd; 
}
/* Navigation */
header {
    background: #fff;
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    height: 50px;       
    width: auto;        
    display: block;
}
.logo a {
    display: flex;
    align-items: center;
}


nav ul {
    display: flex;
    list-style: none;
}

nav ul li a {
    text-decoration: none;
    color: #333;
    margin-left: 30px;
    font-weight: 600;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #0056b3;
}

/* Hero Section */
.hero {
    height: 100vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    color: #fff;
    text-align: center;
    margin-top: 60px;
}
.hero-content {
    margin-top: 13%;
	max-width: 800px; 
    padding: 0 20px;
    z-index: 2; 
}
.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.btn {
    display: inline-block;
    background: #0056b3;
    color: #fff;
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
}

/* About Section */
.about {
    padding: 120px 0;
    background: linear-gradient(135deg, #f9fafc 0%, #eef2f7 100%);
}

.grid-alt {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 35px;
    align-items: stretch; 
}

.about-img {
    display: flex;
    align-items: center;
    justify-content: center;
}

.lead {
    font-size: 1.15rem;
    line-height: 1.9;
    color: #333;
    margin-bottom: 40px;
}

.about-img img {
    display: none;
}

@media screen and (orientation: landscape) {
    .about-img img {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 16px;
        box-shadow: 0 12px 28px rgba(0,0,0,0.12);
		transform: translateY(0);
		transition: transform 0.4s ease;		
    }
}

.about-img img:hover {
    transform: translateY(-8px);
}

.vision-mission {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.vm-block {
    background: #fff;
    padding: 25px 30px;
    border-left: 6px solid #0056b3;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
    transition: box-shadow 0.3s ease;
}

.vm-block:hover {
    box-shadow: 0 10px 24px rgba(0,0,0,0.12);
}

.vm-block h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #0056b3;
    margin-bottom: 10px;
}

.vm-block p {
    color: #555;
    line-height: 1.6;
}

.brands {
    background: #f9f9f9;
    padding: 100px 0;
}

.brand-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.brand-icon {
    font-size: 3rem;
    color: #0056b3;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}
.brand-icon img {
    width: 213px;
    height: 77px;
    object-fit: contain; 
    display: block;
    margin: 0 auto 15px; 
}
.brand-logo:hover {
    filter: sepia(1) saturate(500%) hue-rotate(-30deg);
}


.brand-item {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px); 
    padding: 40px 30px;
    text-align: center;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.brand-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 86, 179, 0.15);
    background: #fff;
    cursor: pointer;
    animation: wobble 0.5s ease-in-out;
}

.brand-item:hover .brand-icon {
    color: #1a2a44;
    transform: scale(1.2);
}

@keyframes wobble {
    0% { transform: translateY(-10px) rotate(0deg); }
    25% { transform: translateY(-10px) rotate(-3deg); }
    50% { transform: translateY(-10px) rotate(3deg); }
    75% { transform: translateY(-10px) rotate(-1deg); }
    100% { transform: translateY(-10px) rotate(0deg); }
}

.brand-item h3 {
	text-transform: uppercase;
    font-size: 1.3rem;
    color: #0056b3;
    margin-bottom: 10px;
    position: relative;
	display: none;
}

.brand-item p {
    font-size: 0.9rem;
    color: #666;
}

.partners {
    padding: 100px 0;    
    background: radial-gradient(circle at center, #1c2a44 0%, #0d1525 100%);
    overflow: hidden;
    position: relative;
}

.section-title.light {
    color: #ffffff;
    margin-bottom: 60px;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 2rem;
	text-align: center;
}

.partner-slider {
    width: 100%;
    padding: 20px 0;
    position: relative;
    mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}

.partner-track {
    display: flex;
    align-items: center;
    width: calc(200px * 21); 
    animation: scrollInfinite 30s linear infinite;
}

.partner-track img {
    width: auto;
    height: 60px;
    margin: 0 40px;
    transition: transform 0.3s ease, filter 0.3s ease;
    filter: brightness(1); 
}

.partner-track img:hover {
    transform: scale(1.1);
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.4));
}

@keyframes scrollInfinite {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-200px * 14));
    }
}



.contact {
    padding: 80px 0;
    text-align: center;
    background: #1a2a44;
    color: #fff;
}

footer {
  background: #111;
  color: #777;
  font-size: 0.9rem;
}

footer .container {
  padding: 30px 0;
  text-align: center;
}

.footer-credit {
  border-top: 1px solid #333;
  padding: 15px 0;
  text-align: center;
  font-size: 0.8rem;
  color: #555;
}

.footer-credit a {
  color: #999;
  text-decoration: none;
}

.footer-credit a:hover {
  color: #fff;
}



/* Responsive */
@media (max-width: 768px) {
    .partner-track img {
        width: 100px;
        margin: 0 25px;
    }
    @keyframes scrollInfinite {
        100% {
            transform: translateX(calc(-150px * 14));
        }
    }
    .grid { grid-template-columns: 1fr; }
    .hero h1 { font-size: 2.5rem; }
    nav ul { display: none; }
}

@media (max-width: 992px) {
    .grid-alt {
        grid-template-columns: 1fr; 
        gap: 40px;
    }

    .about {
        padding: 80px 0;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .lead {
        font-size: 1rem;
        line-height: 1.7;
    }

    .about-img img {
        height: auto; 
        object-fit: contain;
    }
}

@media (max-width: 576px) {
    .about {
        padding: 60px 20px; 
    }

    .section-title {
        font-size: 1.8rem;
        text-align: center;
    }

    .lead {
        font-size: 0.95rem;
        text-align: center;
    }

    .vision-mission {
        gap: 20px;
    }

    .vm-block {
        padding: 20px;
    }

    .vm-block h3 {
        font-size: 1.2rem;
        text-align: center;
    }

    .vm-block p {
        text-align: center;
    }
}
