@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');
:root {
    --primary-color: #f3a600;
    --secondary-color: #000;
    --light-color: #ffffff;
    --gray-color: #f8f9fa;
}

/* General Styles */
body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--secondary-color);
    width: 100%;
    overflow-x: hidden;
}

.section-padding {
    padding: 100px 0;
}

.section-title {
    margin-bottom: 50px;
    position: relative;
    padding-bottom: 20px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
}

.text-center .section-title::after {
    left: 50%;
    transform: translateX(-50%);
}

/* Header */
.navbar {
    padding: 20px 0;
    transition: all 0.3s ease;
}

.navbar-brand img {
    transition: all 0.3s ease;
}

.nav-link {
    color: var(--secondary-color) !important;
    font-weight: 500;
    margin: 0 15px;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-color) !important;
}

/* Hero Section */
.hero-section {
    height: 100vh;
    background: url('../images/HeroBanner.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 100%;
    padding: 0 15px;
    color: var(--light-color);
}

.hero-content .ban-logo {height: 50px;}
.hero-content h1 {
    font-size: 3.5rem;
    margin: 40px 0;
    font-weight: 700;
}

.typing-container {
  display: inline-block;
}

.cursor {
  display: inline-block;
  margin-left: 3px;
  width: 10px;
  animation: blink 0.7s infinite;
}

@keyframes blink {
  0%, 50% { opacity: 1; }
  50.01%, 100% { opacity: 0; }
}


.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    padding: 12px 30px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}

/* Services Section */
.service-category {
    margin-bottom: 60px;
}

.category-title {
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: var(--secondary-color);
    position: relative;
    padding-left: 15px;
}

.category-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    transform: none;
    width: 5px;
    height: 25px;
    background-color: var(--primary-color);
}

.service-card {
    text-align: center;
    padding: 30px 20px;
    background: var(--light-color);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    margin-bottom: 30px;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.service-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.service-card:hover i {
    transform: scale(1.1);
}

.service-card h4 {
    font-size: 1.25rem;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.service-card p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0;
}

/* Products Section */
.product-card {
    background: var(--light-color);
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.4s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
    margin-bottom: 30px;
    border: 1px solid rgba(243, 166, 0, 0.1);
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent, rgba(243, 166, 0, 0.03));
    z-index: 0;
}

.product-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 15px 35px rgba(243, 166, 0, 0.1);
    border-color: var(--primary-color);
}

.product-icon {
    width: 80px;
    height: 80px;
    line-height: 80px;
    text-align: center;
    background: var(--primary-color);
    border-radius: 20px;
    margin-bottom: 25px;
    position: relative;
    transform: rotate(-45deg);
    transition: all 0.4s ease;
}

.product-icon i {
    font-size: 2rem;
    color: var(--light-color);
    transform: rotate(45deg);
    transition: all 0.4s ease;
}

.product-card:hover .product-icon {
    transform: rotate(0deg);
    border-radius: 50%;
}

.product-card:hover .product-icon i {
    transform: rotate(0deg) scale(1.1);
}

.product-card h3 {
    font-size: 1.4rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-weight: 600;
    position: relative;
}

.product-card .product-type {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-bottom: 20px;
    font-weight: 500;
    position: relative;
}

.product-features {
    list-style: none;
    padding: 0;
    margin: 0 0 25px;
    position: relative;
}

.product-features li {
    color: #666;
    margin-bottom: 12px;
    padding-left: 28px;
    position: relative;
    transition: all 0.3s ease;
}

.product-features li:last-child {
    margin-bottom: 0;
}

.product-features li i {
    position: absolute;
    left: 0;
    top: 4px;
    color: var(--primary-color);
    font-size: 0.9rem;
}

.product-features li:hover {
    color: var(--secondary-color);
    transform: translateX(5px);
}

.btn-product {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    position: relative;
    transition: all 0.3s ease;
    padding: 10px 0;
    border-top: 1px solid rgba(243, 166, 0, 0.1);
    width: 100%;
    justify-content: center;
}

.btn-product i {
    margin-left: 8px;
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.btn-product:hover {
    color: var(--secondary-color);
}

.btn-product:hover i {
    transform: translateX(5px);
}

/* Feature Cards */
.feature-card {
    text-align: center;
    padding: 30px 20px;
    background: var(--light-color);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

.feature-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

/* Portfolio */
.portfolio-item {
    position: relative;
    margin-bottom: 30px;
    overflow: hidden;
    border-radius: 10px;
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(243, 166, 0, 0.9);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-overlay h4 {
    color: var(--light-color);
    margin-bottom: 10px;
}

/* Contact Form */
.contact-form .form-control {
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.contact-info {
    padding: 30px;
    background: var(--gray-color);
    border-radius: 10px;
}
.map-container iframe {width: 100%; height: 200px;}

.contact-info i {
    color: var(--primary-color);
    margin-right: 10px;
}

/* Footer */
.footer-section {
    background: var(--secondary-color);
    color: var(--light-color);
    padding: 70px 0 20px;
}
.footer-section .ft-logo {height: 24px; display: inline-block; vertical-align: middle;}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links a {
    color: var(--light-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.social-links a {
    color: var(--light-color);
    font-size: 1.5rem;
    margin-right: 15px;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
}

/* Animations */
[data-aos] {
    pointer-events: none;
}

[data-aos].aos-animate {
    pointer-events: auto;
}

/* Responsive Design */
@media (max-width: 991px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .section-padding {
        padding: 70px 0;
    }
}

@media (max-width: 767px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .section-padding {
        padding: 50px 0;
    }
}
