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

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

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

/* Navigation */
.navbar {
    transition: all 0.3s ease;
}

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

.navbar-brand:hover img {
    transform: scale(1.05);
}

.nav-link {
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #007bff !important;
}

/* Dropdown Menu Styles */
.dropdown-menu {
    border: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    padding: 10px 0;
    margin-top: 10px;
}

.dropdown-item {
    padding: 10px 20px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.dropdown-item:hover {
    background: #007bff;
    color: white !important;
    transform: translateX(5px);
}

.dropdown-item i {
    width: 20px;
}

.dropdown-divider {
    margin: 10px 0;
    border-top: 2px solid #e0e0e0;
}

/* Hero Banner Slider Section */
.hero-banner-slider {
    position: relative;
    overflow: hidden;
}

.hero-banner-slider .carousel-item {
    height: 600px;
    position: relative;
}

.hero-banner-slider .carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-banner-slider .carousel-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 70%, transparent 100%);
    z-index: 1;
}

.carousel-caption-custom {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    z-index: 2;
    text-align: left;
}

.carousel-caption-custom .row {
    justify-content: flex-start !important;
}

.carousel-caption-custom .text-center {
    text-align: left !important;
}

.hero-banner-slider h1,
.hero-banner-slider p {
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
}

/* Carousel Fade Effect */
.carousel-fade .carousel-item {
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.carousel-fade .carousel-item.active {
    opacity: 1;
}

/* Carousel Controls */
.hero-banner-slider .carousel-control-prev,
.hero-banner-slider .carousel-control-next {
    width: 5%;
    z-index: 3;
}

.hero-banner-slider .carousel-control-prev-icon,
.hero-banner-slider .carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    padding: 0.5rem;
}

.hero-banner-slider .carousel-control-prev-icon:hover,
.hero-banner-slider .carousel-control-next-icon:hover {
    background-color: rgba(0, 123, 255, 0.8);
}

/* Carousel Indicators */
.hero-banner-slider .carousel-indicators {
    z-index: 3;
    margin-bottom: 2rem;
}

.hero-banner-slider .carousel-indicators button {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    margin: 0 5px;
    background-color: rgba(255, 255, 255, 0.5);
    border: 2px solid #fff;
}

.hero-banner-slider .carousel-indicators button.active {
    background-color: #fff;
}

/* Animations for carousel content */
.carousel-item.active .animate-title {
    animation: fadeInDown 1s ease;
}

.carousel-item.active .animate-subtitle {
    animation: fadeInUp 1s ease 0.3s both;
}

.carousel-item.active .animate-buttons {
    animation: fadeInUp 1s ease 0.6s both;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* About Section */
.about-image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.about-gallery-image {
    transition: transform 0.3s ease;
    border-radius: 50%;
    width: 100%;
    max-width: 400px;
    height: 400px;
    object-fit: cover;
    border: 8px solid #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.carousel-item:hover .about-gallery-image {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.certificate-container {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.certificate-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.certificate-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

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

#aboutGalleryCarousel .carousel-control-prev-icon,
#aboutGalleryCarousel .carousel-control-next-icon {
    width: 2.5rem;
    height: 2.5rem;
    background-color: rgba(0, 0, 0, 0.6);
    border-radius: 50%;
    padding: 0.5rem;
}

#aboutGalleryCarousel .carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin: 0 5px;
}

.about-section .list-unstyled li {
    font-size: 1.05rem;
}

.feature-box {
    padding: 0.5rem 0;
    font-size: 1.1rem;
}

/* Brand Categories */
.brand-categories .card {
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.brand-categories .card:hover {
    transform: translateY(-10px);
    border-color: #007bff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.brand-logo-container {
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 50%;
    padding: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.brand-card:hover .brand-logo-container {
    box-shadow: 0 8px 25px rgba(0, 123, 255, 0.3);
    transform: scale(1.1);
}

.brand-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.brand-card:hover .brand-logo {
    transform: rotate(5deg);
}

.hover-lift {
    transition: all 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2) !important;
}

/* Section Headers */
.section-header {
    position: relative;
    padding-bottom: 1rem;
}

.section-underline {
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #007bff, #00d4ff);
    margin: 1rem auto;
}

/* Product Cards */
.product-card {
    transition: all 0.3s ease;
    border: none;
    overflow: hidden;
    position: relative;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2) !important;
}

.product-card .card-img-top {
    height: 250px;
    object-fit: contain;
    padding: 20px;
    background: #fff;
    transition: transform 0.3s ease;
}

.product-card:hover .card-img-top {
    transform: scale(1.1);
}

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #007bff;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: bold;
    z-index: 10;
    text-transform: uppercase;
}

.product-badge.bg-success {
    background: #28a745 !important;
}

.product-badge.bg-danger {
    background: #dc3545 !important;
}

.price-tag {
    font-size: 1.25rem;
    font-weight: bold;
    color: #007bff;
}

.product-card .btn {
    transition: all 0.3s ease;
}

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

/* Price Tag Styling */
.price-tag {
    font-weight: 700;
    font-size: 1.5rem;
    margin-top: 0.5rem;
}

/* Apollo Section - Blue Theme */
#apollo {
    background: linear-gradient(135deg, #f5f7fa 0%, #e8f0fe 100%);
}

#apollo .section-underline {
    background: linear-gradient(90deg, #1976d2, #42a5f5);
}

/* Nice Toner Section - Green Theme */
#nicetoner {
    background: linear-gradient(135deg, #f1f8f4 0%, #e8f5e9 100%);
}

#nicetoner .section-underline {
    background: linear-gradient(90deg, #388e3c, #66bb6a);
}

/* HP Section - Red Theme */
#hp {
    background: linear-gradient(135deg, #fef5f5 0%, #ffebee 100%);
}

#hp .section-underline {
    background: linear-gradient(90deg, #d32f2f, #f44336);
}

/* Enlite Section - Yellow/Orange Theme */
#enlite {
    background: linear-gradient(135deg, #fffbf0 0%, #fff8e1 100%);
}

#enlite .section-underline {
    background: linear-gradient(90deg, #f57c00, #ffb300);
}

.coming-soon-box {
    background: white !important;
    max-width: 600px;
    margin: 0 auto;
    border: 2px dashed #ffc107;
}

/* Location Map Section */
.map-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

/* Map Section Styles */
.map-wrapper {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.map-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.location-info-card {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.location-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    backdrop-filter: blur(10px);
}

.location-icon i {
    color: white;
}

.location-info-card h4 {
    color: white;
}

.location-info-card p {
    color: white;
}

.location-details .detail-item {
    display: flex;
    align-items: start;
    gap: 10px;
}

.location-details .detail-item i {
    font-size: 1.2rem;
    margin-top: 3px;
    color: rgba(255, 255, 255, 0.9) !important;
}

.location-details .detail-item strong {
    color: white;
    font-size: 0.95rem;
}

.location-details .detail-item small {
    color: rgba(255, 255, 255, 0.8) !important;
    line-height: 1.5;
}

.location-info-card .btn-primary {
    background: white;
    color: #007bff;
    border: none;
    font-weight: 600;
    padding: 12px;
    transition: all 0.3s ease;
}

.location-info-card .btn-primary:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.map-container {
    position: relative;
    overflow: hidden;
}

.map-container iframe {
    display: block;
    width: 100%;
    filter: grayscale(0%);
    transition: filter 0.3s ease;
}

.map-container:hover iframe {
    filter: grayscale(0%) brightness(1.05);
}

/* Responsive adjustments for map section */
@media (max-width: 768px) {
    .location-info-card {
        min-height: auto;
    }
    
    .map-container iframe {
        min-height: 350px !important;
    }
}

/* Contact Section */
.contact-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
}

.contact-section h4 {
    color: #ffc107;
    border-bottom: 2px solid #ffc107;
    padding-bottom: 10px;
}

.contact-info p,
.address-info p {
    margin-bottom: 0.5rem;
}

.social-links a {
    transition: all 0.3s ease;
}

.social-links a:hover {
    transform: translateY(-5px);
    color: #ffc107 !important;
}

/* Footer */
.footer-bottom {
    background: #000 !important;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-banner-slider .carousel-item {
        height: 450px;
    }

    .hero-banner-slider h1 {
        font-size: 2rem;
    }

    .hero-banner-slider .lead {
        font-size: 1.1rem;
    }

    .hero-banner-slider .h5 {
        font-size: 1rem;
    }

    .hero-banner-slider .btn {
        padding: 0.5rem 2rem !important;
        font-size: 0.9rem;
    }

    .hero-banner-slider .carousel-control-prev-icon,
    .hero-banner-slider .carousel-control-next-icon {
        width: 2rem;
        height: 2rem;
    }

    .product-card .card-img-top {
        height: 200px;
    }

    .navbar-brand img {
        height: 50px !important;
    }

    .brand-logo-container {
        width: 100px;
        height: 100px;
        padding: 12px;
    }
}

@media (max-width: 576px) {
    .hero-banner-slider .carousel-item {
        height: 400px;
    }

    .hero-banner-slider .carousel-item::before {
        width: 100%;
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 100%);
    }

    .hero-banner-slider h1 {
        font-size: 1.5rem;
    }

    .hero-banner-slider .lead {
        font-size: 0.95rem;
    }

    .hero-banner-slider .h5 {
        font-size: 0.85rem;
        margin-bottom: 1rem !important;
    }

    .hero-banner-slider .btn {
        padding: 0.5rem 1.5rem !important;
        font-size: 0.85rem;
        display: inline-block;
        margin-bottom: 0.5rem;
    }

    .hero-banner-slider .btn.me-3 {
        margin-right: 0.5rem !important;
    }

    .carousel-caption-custom .col-lg-7 {
        padding: 0 30px;
    }

    .hero-banner-slider .carousel-control-prev-icon,
    .hero-banner-slider .carousel-control-next-icon {
        width: 1.5rem;
        height: 1.5rem;
    }

    .hero-banner-slider .carousel-indicators {
        margin-bottom: 1rem;
    }

    .hero-banner-slider .carousel-indicators button {
        width: 10px;
        height: 10px;
    }

    .display-3 {
        font-size: 1.8rem;
    }

    .display-4 {
        font-size: 1.5rem;
    }

    .display-5 {
        font-size: 1.3rem;
    }

    .lead {
        font-size: 1rem;
    }

    .navbar-brand img {
        height: 40px !important;
    }

    .brand-logo-container {
        width: 80px;
        height: 80px;
        padding: 10px;
    }

    .brand-categories .card-title {
        font-size: 0.95rem;
    }

    .brand-categories .text-muted {
        font-size: 0.75rem;
    }
}

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

.product-card,
.brand-card {
    animation: fadeInUp 0.6s ease;
}

/* Button Styles */
.btn {
    border-radius: 5px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-primary {
    background: #007bff;
    border: none;
}

.btn-primary:hover {
    background: #0056b3;
    box-shadow: 0 5px 15px rgba(0, 123, 255, 0.4);
}

.btn-success {
    background: #28a745;
    border: none;
}

.btn-success:hover {
    background: #1e7e34;
    box-shadow: 0 5px 15px rgba(40, 167, 69, 0.4);
}

.btn-danger {
    background: #dc3545;
    border: none;
}

.btn-danger:hover {
    background: #c82333;
    box-shadow: 0 5px 15px rgba(220, 53, 69, 0.4);
}

.btn-warning {
    background: #ffc107;
    border: none;
    color: #000;
}

.btn-warning:hover {
    background: #e0a800;
    box-shadow: 0 5px 15px rgba(255, 193, 7, 0.4);
    color: #000;
}