@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,100..900;1,100..900&display=swap');

:root {
    --primary-color: #1a3a52;
    --secondary-color: #4a7ba7;
    --accent-color: #d4af37;
    --light-bg: #f5f5f0;
    --text-dark: #2c3e50;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Noto Sans', Tahoma, Geneva, Verdana, 'Segoe UI Emoji', 'Noto Color Emoji', 'Apple Color Emoji', sans-serif;
    color: var(--text-dark);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Add GPU acceleration for better performance */
.feature-card,
.product-card,
.team-card,
.contact-info-card {
    transform: translateZ(0);
    will-change: transform;
}

/* Optimize AOS animations */
[data-aos] {
    pointer-events: auto;
}

/* Header Styles */
.navbar {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    will-change: transform;
    transform: translateZ(0);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.navbar-brand {
    font-size: 1.8rem;
    font-weight: bold;
    color: white !important;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.site-name:not(.lang-vi) {
    font-size: 18px;
}

.site-name.lang-vi {
    font-size: 16px;
}

.navbar-toggler {
    display: none;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.5);
    padding: 8px 12px;
    cursor: pointer;
    border-radius: 5px;
}

.navbar-toggler span {
    display: block;
    width: 25px;
    height: 3px;
    background: white;
    margin: 5px 0;
    transition: 0.3s;
}

.navbar-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
}

.navbar-menu>li {
    position: relative;
    margin: 0 10px;
}

.navbar-menu>li>a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 500;
    padding: 8px 15px;
    display: block;
    transition: all 0.3s;
    border-radius: 5px;
}

.navbar-menu>li>a:hover {
    color: var(--accent-color);
    background: rgba(255, 255, 255, 0.1);
}

/* Active Navigation State */
.navbar-menu > li > a.active {
    color: var(--accent-color) !important;
    background: rgba(255, 255, 255, 0.15);
    font-weight: 600;
}

.navbar-menu .dropdown.active > a {
    color: var(--accent-color) !important;
    background: rgba(255, 255, 255, 0.15);
}

.dropdown {
    position: relative;
}

.dropdown-menu-custom {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--primary-color);
    min-width: 200px;
    list-style: none;
    padding: 10px 0;
    margin-top: 0;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3); 
}

.dropdown:hover .dropdown-menu-custom,
.dropdown-menu-custom:hover {
    display: block;
}

.dropdown-menu-custom li a {
    color: rgba(255, 255, 255, 0.9);
    padding: 10px 20px;
    display: block;
    text-decoration: none;
    transition: all 0.3s;
}

.dropdown-menu-custom li a:hover {
    background: var(--secondary-color);
    color: var(--accent-color);
}

.dropdown>a::after {
    content: ' ▼';
    font-size: 0.7em;
    margin-left: 5px;
}

/* Owl Carousel Styles */
.hero-carousel {
    position: relative;
}

.hero-carousel .owl-nav {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.hero-carousel .owl-nav button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.3) !important;
    color: white !important;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 30px !important;
    transition: all 0.3s;
    pointer-events: auto;
    z-index: 10;
}

.hero-carousel .owl-nav button:hover {
    background: var(--accent-color) !important;
}

.hero-carousel .owl-nav .owl-prev {
    left: 20px;
}

.hero-carousel .owl-nav .owl-next {
    right: 20px;
}

.hero-carousel .owl-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.hero-carousel .owl-dot {
    display: inline-block;
    margin: 0 5px;
}

.hero-carousel .owl-dot span {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.5);
    display: block;
    border-radius: 50%;
    transition: all 0.3s;
}

.hero-carousel .owl-dot.active span,
.hero-carousel .owl-dot:hover span {
    background: var(--accent-color);
    transform: scale(1.3);
}

.hero-carousel .carousel-item-custom {
    position: relative;
    height: 600px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-carousel .carousel-item-custom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
}

.hero-carousel .carousel-caption-custom {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
}

.hero-carousel .carousel-caption-custom h1 {
    font-size: 3.5rem;
    font-weight: bold;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
    margin-bottom: 1rem;
}

.hero-carousel .carousel-caption-custom p {
    font-size: 1.5rem;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.7);
    margin-bottom: 2rem;
}

.hero-carousel .owl-carousel .owl-nav button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.3) !important;
    color: white !important;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 30px !important;
    transition: all 0.3s;
}

.hero-carousel .owl-carousel .owl-nav button:hover {
    background: var(--accent-color) !important;
}

.hero-carousel .owl-carousel .owl-nav .owl-prev {
    left: 20px;
}

.hero-carousel .owl-carousel .owl-nav .owl-next {
    right: 20px;
}

.hero-carousel .owl-carousel .owl-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
}

.hero-carousel .owl-carousel .owl-dot {
    display: inline-block;
    margin: 0 5px;
}

.hero-carousel .owl-carousel .owl-dot span {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.5);
    display: block;
    border-radius: 50%;
    transition: all 0.3s;
}

.hero-carousel .owl-carousel .owl-dot.active span,
.hero-carousel .owl-carousel .owl-dot:hover span {
    background: var(--accent-color);
    transform: scale(1.3);
}

.btn-primary-custom {
    background: var(--accent-color);
    border: none;
    padding: 12px 35px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s;
    color: var(--primary-color);
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
}

.btn-primary-custom:hover {
    background: var(--secondary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Section Styles */
.section {
    padding: 80px 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 3rem;
    text-align: center;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--accent-color);
    margin: 15px auto 0;
}

.bg-light-custom {
    background: var(--light-bg);
}

/* Feature Cards */
.feature-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    height: 100%;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    margin-bottom: 1.5rem;
}

/* Product Cards */
.product-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
}

.product-card:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.product-img {
    height: 250px;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
}

.product-body {
    padding: 1.5rem;
}

.product-pic {
    height: 370px;
    overflow: hidden;

    img {
        width: 100%;
        height: auto;
        display: block;
        object-fit: contain;
        object-position: center;
    }
}

.about-preview {
    height: 400px;
    border-radius: 15px;

    img {
        max-height: 400px;
        width: -webkit-fill-available;
        border-radius: 15px;
    }
}

.company-profile-img-wrapper {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    width: 100%;
    height: 500px;
}

.company-profile-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.company-profile-img-wrapper:hover .company-profile-img {
    transform: scale(1.1);
}

/* Contact Page Styles */
.contact-info-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    height: 100%;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    margin-bottom: 1rem;
}

.form-control:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.25);
}

/* Inner Page Hero */
.inner-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 100px 0 80px;
    color: white;
    text-align: center;
}

.inner-hero h1 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

/* Footer Styles */
footer {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 50px 0 20px;
}

.footer-title {
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    color: var(--accent-color);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s;
}

.footer-links a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

.social-icons a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    margin-right: 10px;
    color: white;
    text-decoration: none;
    transition: all 0.3s;
}

.social-icons a:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
}

.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 2rem;
    padding-top: 2rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
}

/* Team Cards */
.team-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.team-img {
    height: 450px;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: white;
}

.team-pic {
    /* max-height: 600px; */
    width: 100%;
}

.team-info {
    padding: 1.5rem;
    text-align: center;
}

/* Page Toggle */
.page {
    display: none;
}

.page.active {
    display: block;
}

.mx-10r {
    margin-left: 10rem;
    margin-right: 10rem;
}

.text-bold {
    font-weight: 700;
}

/* Activity Page Styles */
.activity-section {
    padding: 40px 0;
}

.activity-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.activity-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    flex-shrink: 0;
}

.activity-title {
    font-size: 2.2rem;
    font-weight: bold;
    color: var(--primary-color);
    margin: 0;
}

.activity-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.activity-list {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 10px;
}

.activity-list li {
    padding: 8px 0;
    font-size: 1rem;
    color: var(--text-dark);
}

.activity-list li i {
    color: var(--accent-color);
    margin-right: 10px;
    font-size: 1.1rem;
}

.activity-image-wrapper {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    height: 300px;
    position: relative;
}

.activity-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.activity-image-wrapper:hover .activity-image {
    transform: scale(1.1);
}

.activity-divider {
    border: none;
    height: 2px;
    background: linear-gradient(to right, transparent, var(--accent-color), transparent);
    margin: 60px 0;
}

/* Breadcrumb Styles */
.breadcrumb-custom {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
    background: transparent;
    justify-content: center;
}

.breadcrumb-custom .breadcrumb-item {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
}

.breadcrumb-custom .breadcrumb-item + .breadcrumb-item::before {
    content: '/';
    padding: 0 10px;
    color: rgba(255, 255, 255, 0.5);
}

.breadcrumb-custom .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: all 0.3s;
}

.breadcrumb-custom .breadcrumb-item a:hover {
    color: var(--accent-color);
}

.breadcrumb-custom .breadcrumb-item.active {
    color: var(--accent-color);
    font-weight: 600;
}

/* Testimonials Section */
.testimonials-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--secondary-color);
    margin-top: -20px;
    margin-bottom: 3rem;
}

.testimonial-carousel {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px 10px;
    position: relative;
}

.testimonial-item {
    background: white;
    border-radius: 25px;
    padding: 0;
    margin: 20px 15px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 5px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.testimonial-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 5px 5px rgba(0, 0, 0, 0.12);
}

.testimonial-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 2.5rem 2.5rem 1.5rem;
    position: relative;
}

.author-image {
    width: 80px !important;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--accent-color);
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.3);
    flex-shrink: 0;
}

.author-info {
    flex: 1;
}

.author-info h5 {
    margin: 0;
    font-size: 1.3rem;
    color: var(--primary-color);
    font-weight: 700;
    line-height: 1.3;
}

.author-info > p {
    margin: 5px 0;
    font-size: 0.95rem;
    color: var(--secondary-color);
    font-weight: 500;
}

.author-location {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.85rem;
    color: var(--accent-color);
    margin-top: 5px;
    font-weight: 600;
}

.author-location i {
    font-size: 0.9rem;
}

.quote-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    flex-shrink: 0;
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.3);
}

.testimonial-content {
    padding: 0 2.5rem 2.5rem;
}

.rating {
    display: flex;
    gap: 5px;
    margin-bottom: 20px;
}

.rating i {
    font-size: 1.1rem;
    color: #ffc107;
}

.testimonial-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
    margin: 0;
    position: relative;
}

/* Owl Carousel Custom Styling */
.testimonial-carousel .owl-nav {
    margin-top: 0px;
}

.testimonial-carousel .owl-nav button {
    width: 50px;
    height: 50px;
    background: white !important;
    border-radius: 50%;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}

.testimonial-carousel .owl-nav button:hover {
    background: var(--accent-color) !important;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.testimonial-carousel .owl-nav button span {
    font-size: 2rem;
    color: var(--primary-color);
    line-height: 0;
}

.testimonial-carousel .owl-nav button:hover span {
    color: white;
}

.testimonial-carousel .owl-nav .owl-prev {
    left: 10px;
}

.testimonial-carousel .owl-nav .owl-next {
    right: 10px;
}

.testimonial-carousel .owl-dots {
    margin-top: 40px;
    text-align: center;
}

.testimonial-carousel .owl-dot {
    display: inline-block;
    margin: 0 6px;
}

.testimonial-carousel .owl-dot span {
    width: 12px;
    height: 12px;
    background: rgba(26, 58, 82, 0.2);
    display: block;
    border-radius: 50%;
    transition: all 0.3s;
}

.testimonial-carousel .owl-dot.active span {
    background: var(--accent-color);
    transform: scale(1.4);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.testimonial-carousel .owl-dot:hover span {
    background: var(--secondary-color);
    transform: scale(1.2);
}

/* Top Bar Styles */
.top-bar {
    background: var(--primary-color);
    padding: 10px 0;
    font-size: 0.9rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.top-bar-left {
    display: flex;
    align-items: center;
    gap: 25px;
    flex-wrap: wrap;
}

.top-bar-link {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s;
}

.top-bar-link:hover {
    color: var(--accent-color);
}

.top-bar-link i {
    font-size: 1rem;
}

.top-bar-right {
    display: flex;
    align-items: center;
}

.btn-inquire {
    background: var(--accent-color);
    color: var(--primary-color);
    padding: 8px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
    font-size: 0.9rem;
}

.btn-inquire:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.btn-inquire i {
    font-size: 0.9rem;
}

/* Enquiry Page Styles */
.enquiry-form-card {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.enquiry-form-card h3 {
    color: var(--primary-color);
    font-weight: bold;
}

.enquiry-contact-card {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 20px;
    padding: 3rem;
    color: white;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    height: 100%;
}

.enquiry-contact-card h3 {
    color: var(--accent-color);
    font-weight: bold;
}

.enquiry-contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.enquiry-contact-item:last-of-type {
    border-bottom: none;
    margin-bottom: 0;
}

.enquiry-contact-icon {
    width: 50px;
    height: 50px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--primary-color);
    flex-shrink: 0;
}

.enquiry-contact-details h5 {
    color: var(--accent-color);
    font-size: 1.1rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.enquiry-contact-details p {
    margin: 0;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
}

.enquiry-contact-details a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s;
}

.enquiry-contact-details a:hover {
    color: var(--accent-color);
}

.social-connect h5 {
    color: var(--accent-color);
    font-size: 1.1rem;
}

.social-connect .social-icons {
    display: flex;
    gap: 10px;
}

.social-connect .social-icons a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s;
    font-size: 1.2rem;
}

.social-connect .social-icons a:hover {
    background: var(--accent-color);
    color: var(--primary-color);
    transform: translateY(-3px);
}

/* Map Container Styles */
.map-container h3 {
    color: var(--primary-color);
    font-weight: bold;
}

.map-wrapper {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.map-wrapper iframe {
    display: block;
}

/* Language Dropdown */
.language-dropdown {
    position: relative;
    margin-right: 15px;
}

.language-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 8px 15px;
    border-radius: 25px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
    font-size: 0.9rem;
}

.language-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--accent-color);
}

.language-btn .flag {
    font-size: 1.2rem;

    .svg-wrapper {
        width: 19.2px;
        border-radius: 3px;
        overflow: hidden;

        img {
            width: 100%;
            height: 100%;
            display: block;
        }
    }
}

.language-btn .lang-name {
    font-weight: 500;
}

.language-btn i {
    font-size: 0.8rem;
    transition: transform 0.3s;
}

.language-btn.active i {
    transform: rotate(180deg);
}

.language-menu {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    min-width: 180px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s;
    z-index: 10000;
    overflow: hidden;
}

.language-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.language-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    color: var(--text-dark);
    text-decoration: none;
    transition: all 0.3s;
    border-left: 3px solid transparent;
}

.language-item:hover {
    background: var(--light-bg);
    border-left-color: var(--accent-color);
}

.language-item.active {
    background: var(--light-bg);
    border-left-color: var(--accent-color);
    color: var(--primary-color);
    font-weight: 600;
}

.language-item .flag {
    font-size: 1.3rem;

    .svg-wrapper {
        width: 20.8px;
        border-radius: 3px;
        overflow: hidden;

        img {
            width: 100%;
            height: 100%;
            display: block;
        }
    }
}

/* Page Loader */
#page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 4px;
    background: linear-gradient(90deg, #4a7ba7, #d4af37, #4a7ba7);
    background-size: 200% 100%;
    z-index: 9999;
    transition: width 0.8s ease-out;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.8), 0 0 5px rgba(74, 123, 167, 0.6);
    animation: shimmer 2s linear infinite;
}

@keyframes shimmer {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

#page-loader.loading {
    width: 85%;
    transition: width 2.5s ease-out;
}

#page-loader.complete {
    width: 100%;
    transition: width 0.8s ease-in;
}

/* Alert Styles */
.alert {
    padding: 15px 20px;
    margin-bottom: 20px;
    border-radius: 10px;
    font-size: 0.95rem;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.alert-success {
    background: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
}

.alert-danger {
    background: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
}

.alert ul {
    margin: 10px 0 0 0;
    padding-left: 20px;
}

.alert li {
    margin-bottom: 5px;
}

.alert .btn-close {
    float: right;
    font-size: 1.2rem;
    font-weight: bold;
    line-height: 1;
    color: inherit;
    opacity: 0.5;
    background: transparent;
    border: 0;
    cursor: pointer;
}

.alert .btn-close:hover {
    opacity: 0.8;
}

/* Loading Spinner */
.spinner-border {
    display: inline-block;
    width: 1rem;
    height: 1rem;
    vertical-align: text-bottom;
    border: 0.15em solid currentColor;
    border-right-color: transparent;
    border-radius: 50%;
    animation: spinner-border 0.75s linear infinite;
}

.spinner-border-sm {
    width: 0.875rem;
    height: 0.875rem;
    border-width: 0.1em;
}

@keyframes spinner-border {
    to { transform: rotate(360deg); }
}

/* Button disabled state */
button[disabled] {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Alert fade in animation */
.alert.fade {
    opacity: 0;
    transition: opacity 0.3s ease-in;
}

.alert.show {
    opacity: 1;
}

.mission-points {
    list-style-type: none;

    h4 {
        font-size: 1.3rem;
    }
}

/* Mobile Menu */
@media (max-width: 991px) {
    .navbar-toggler {
        display: block;
    }

    .navbar-menu {
        display: none;
        width: 100%;
        flex-direction: column;
        background: var(--primary-color);
        padding: 20px;
        margin-top: 15px;
        border-radius: 10px;
    }

    .navbar-menu.active {
        display: flex;
    }

    .navbar-menu>li {
        margin: 5px 0;
        width: 100%;
    }

    .dropdown-menu-custom {
        position: static;
        display: none;
        box-shadow: none;
        background: rgba(0, 0, 0, 0.2);
        margin-top: 10px;
    }

    .dropdown.active .dropdown-menu-custom {
        display: block;
    }

    .carousel-item-custom {
        height: 400px;
    }

    .carousel-caption-custom h1 {
        font-size: 2rem;
    }

    .carousel-caption-custom p {
        font-size: 1rem;
    }
}

/* Responsive */
@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }
    
    .hero-carousel .carousel-item-custom {
        height: 700px;
    }
    
    .section {
        padding: 100px 0;
    }
}


@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
}

@media (max-width: 1200px) {
    .testimonial-carousel .owl-stage-outer {
        padding: 0;
    }
    
    .testimonial-carousel .owl-nav .owl-prev {
        left: 5px;
    }
    
    .testimonial-carousel .owl-nav .owl-next {
        right: 5px;
    }
}

@media (min-width: 991px) and (max-width: 1199.99px) {
    .site-name {
        display: none;
    }
}

@media (min-width: 992px) and (max-width: 1199.99px) {
    .container {
        max-width: 960px;
    }

    .product-pic {
        height: 284px;
    }
}

@media (max-width: 991.99px) {
    .activity-header {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }
    
    .activity-title {
        font-size: 1.8rem;
    }
    
    .activity-image-wrapper {
        height: 250px;
        margin-bottom: 15px;
    }
    
    .activity-list {
        grid-template-columns: 1fr;
    }

    
    .enquiry-form-card,
    .enquiry-contact-card {
        padding: 2rem;
    }
    
    .enquiry-contact-card {
        margin-top: 30px;
    }
    
    .map-container {
        margin-top: 30px;
    }
    
    .map-wrapper iframe {
        height: 400px !important;
    }
    
    .testimonial-carousel .owl-nav button {
        display: none;
    }
    
    .testimonial-item {
        margin: 20px 10px;
    }

    .testimonial-carousel .owl-stage-outer {
        padding: 0 10px;
    }
    
    .testimonial-carousel .owl-nav button {
        display: none;
    }
    
    .testimonial-item {
        margin: 20px 10px;
    }

    .mx-10r {
        margin-left: 15px;
        margin-right: 15px;
    }
    
    .product-pic {
        height: 308px;
    }
}

@media (max-width: 768px) {
    .top-bar {
        padding: 12px 0;
    }
    
    .top-bar-content {
        justify-content: space-between;
        text-align: center;
    }
    
    .top-bar-left {
        gap: 10px;
        width: 100%;
        align-items: center;
        justify-content: space-between;
    }
    
    .top-bar-link span {
        font-size: 0.85rem;
    }
    
    .top-bar-right {
        width: 100%;
        justify-content: center;
        margin-top: 5px;
    }

    .section-title {
        font-size: 2rem;
    }

    .inner-hero h1 {
        font-size: 2rem;
    }

    .activity-title {
        font-size: 1.5rem;
    }
    
    .activity-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .breadcrumb-custom {
        font-size: 0.85rem;
        margin-bottom: 15px;
    }
    
    .breadcrumb-custom .breadcrumb-item + .breadcrumb-item::before {
        padding: 0 5px;
    }
    
    .testimonial-header {
        flex-direction: column;
        text-align: center;
        padding: 2rem 1.5rem 1rem;
    }
    
    .author-image {
        width: 70px;
        height: 70px;
    }
    
    .author-info h5 {
        font-size: 1.1rem;
    }
    
    .quote-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        margin-top: 15px;
    }
    
    .testimonial-content {
        padding: 0 1.5rem 2rem;
    }
    
    .testimonial-text {
        font-size: 0.95rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
        padding: 0 15px;
    }

    .language-dropdown {
        margin-right: 10px;
    }
    
    .language-btn .lang-name {
        display: none;
    }
    
    .language-btn {
        padding: 8px 12px;
    }
    
    .language-menu {
        right: -10px;
    }

    .read-more-btn {
        margin-bottom: 2.5rem;
    }

    .about-preview img {
        width: 100%;
    }
}

@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
    .navbar-brand {
        font-size: 1.5rem;
    }
    
    .hero-carousel .carousel-item-custom {
        height: 450px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .section-title {
        font-size: 2.2rem;
    }
    
    .hero-carousel .carousel-item-custom {
        height: 500px;
    }
    
    .hero-carousel .carousel-caption-custom h1 {
        font-size: 2.5rem;
    }
    
    .hero-carousel .carousel-caption-custom p {
        font-size: 1.2rem;
    }
    
    .testimonial-item {
        margin: 20px 10px;
    }

    .read-more-btn {
        margin-bottom: 2.5rem;
    }

    .about-preview img {
        width: 100%;
    }

    .product-pic {
        height: 308px;
    }
}

@media (max-width: 767px) and (orientation: landscape) {
    .hero-carousel .carousel-item-custom {
        height: 350px;
    }
    
    .inner-hero {
        padding: 60px 0 40px;
    }
}

@media (min-width: 576px) and (max-width: 767px) {
    .section {
        padding: 60px 0;
    }
    
    .feature-card,
    .product-card {
        margin-bottom: 20px;
    }
}

@media (max-width: 480px) {
    .top-bar-link span {
        display: none;
    }
    
    .top-bar-link {
        font-size: 1.2rem;
    }

    .language-btn .flag {
        font-size: 1.4rem;
    }

    .top-bar-content {
        justify-content: space-between;
        text-align: center;
        flex-direction: row;
    }

    .top-bar-link i {
        font-size: 1.5rem;
    }

    .top-bar-left {
        gap: 20px;
        align-items: center;
        width: auto;
    }
    
    .top-bar-right {
        justify-content: center;
        margin-top: 5px;
        width: auto;
    }

    .feature-card, .activity-body, .contact-info-card {
        text-align: center;
        display: flex;
        align-items: center;
        flex-direction: column;
    }

    .activity-header {
        align-items: center;
    }

    .about-preview {
        height: 300px;
    }

    .site-name {
        display: none;
    }
}

@media (min-width: 360px) and (max-width: 448px) {
    .product-pic {
        height: 282px;
    }
}

@media (max-width: 360px) {
    .hero-carousel .carousel-caption-custom h1 {
        font-size: 1.5rem;
    }
    
    .hero-carousel .carousel-caption-custom p {
        font-size: 0.9rem;
    }
    
    .btn-primary-custom {
        padding: 10px 25px;
        font-size: 0.95rem;
    }
    
    .testimonial-header {
        padding: 1.5rem 1rem 1rem;
    }
    
    .author-image {
        width: 60px;
        height: 60px;
    }
    
    .quote-icon {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }

    .product-pic {
        height: 282px;
    }
}