:root {
    --primary-color: #0056b3;
    --secondary-color: #6c757d;
    --light-bg: #f8f9fa;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    padding-top: 76px;
}

/* Navbar Styles */
.navbar {
    padding: 1rem 0;
    background-color: #ffffff !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-brand img {
    max-height: 80px;
    height: 80px;
    width: 100px;
    object-fit: contain;
}

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

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

.navbar .form-control {
    border: 1px solid #dee2e6;
}

.navbar .btn-outline-light {
    color: #F7973F;
    border-color: #F7973F;
}

.navbar .btn-outline-light:hover {
    color: #fff;
    background-color: #F7973F;
    border-color: #F7973F;
}

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

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

/* Hero Section */
.hero-section {
    background-color: var(--light-bg);
    padding: 5rem 0;
}

/* Service Cards */
#services {
    /* Add initial state for animation */
    opacity: 0;
    transform: translateY(-60px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

#services.is-visible {
    /* Apply animation when visible */
    animation: heroFloatIn 1.2s ease-out forwards; /* Reusing the float-in-from-top keyframes */
    animation-delay: 1.2s; /* Adjust delay to appear after previous section */
}

.service-card {
    background: #fff;
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
}

.service-card ul li {
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.service-card ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

/* Product Cards */
.product-card {
    background: #fff;
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.product-card img {
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

/* Contact Form */
.contact-card {
    background: #fff;
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.form-control, .form-select {
    padding: 0.75rem;
    border-radius: 4px;
    border: 1px solid #ddd;
}

.form-control:focus, .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(0, 86, 179, 0.25);
}

/* Buttons */
.btn-primary {
    background-color: #F7973F;
    border-color: #F7973F;
    padding: 0.75rem 1.5rem;
    font-weight: 500;
}

.btn-primary:hover {
    background-color: #e88a36;
    border-color: #e88a36;
}

.btn-outline-primary {
    color: #F7973F;
    border-color: #F7973F;
}

.btn-outline-primary:hover {
    background-color: #F7973F;
    border-color: #F7973F;
    color: #fff;
}

/* Footer */
footer {
    background-color: #F7973F;
}

footer a {
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.social-links i {
    font-size: 1.5rem;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero-section {
        padding: 3rem 0;
    }

    .service-card, .product-card {
        margin-bottom: 2rem;
    }
}

/* Update existing styles */
body {
    padding-top: 76px;
}

/* Breadcrumb styles */
.breadcrumb-section {
    background-color: #f8f9fa;
    padding: 0.75rem 0;
    border-bottom: 1px solid #dee2e6;
}

.breadcrumb {
    margin-bottom: 0;
    font-size: 0.875rem;
}

.breadcrumb-item a {
    color: #0056b3;
    text-decoration: none;
}

.breadcrumb-item a:hover {
    text-decoration: underline;
}

/* Hero banner styles */
.hero-banner {
    position: relative;
    width: 100%;
    min-height: 90vh;
    margin-top: 0;
    overflow: hidden;
}

.carousel,
.carousel-inner,
.carousel-item {
    height: 90vh;
}

.hero-slide {
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.carousel-fade .carousel-item {
    opacity: 0;
    transition: opacity 2s ease-in-out;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

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

.carousel-inner {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        rgba(0, 0, 0, 0.6),
        rgba(0, 0, 0, 0.4)
    );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.carousel-indicators {
    margin-bottom: 2rem;
    z-index: 5;
}

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

.carousel-indicators button.active {
    background-color: #F7973F;
    border-color: #F7973F;
}

.carousel-control-prev,
.carousel-control-next {
    width: 5%;
    opacity: 0.8;
    z-index: 5;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 40px;
    height: 40px;
}

@media (max-width: 768px) {
    .carousel,
    .carousel-inner,
    .carousel-item {
        height: 80vh;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-slide::before {
        background: linear-gradient(
            rgba(0, 0, 0, 0.7),
            rgba(0, 0, 0, 0.5)
        );
    }
}

.hero-content h1 {
    font-weight: 300;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    font-size: 3.5rem;
    margin-left: 2rem;
}

.hero-message {
    width: 100%;
    background: transparent;
    padding: 2rem 0;
    position: relative;
    z-index: 3;
    color: #fff;
}

.our-services {
    padding: 2rem 0;
    margin-top: auto;
}

@media (max-width: 768px) {
    .hero-banner {
        min-height: 400px;
        background-attachment: scroll;
    }

    .hero-content h1 {
        font-size: 2.5rem;
        margin-left: 1rem;
    }
}

.contact-box {
    padding: 1rem;
}

.contact-box .phone-number {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
}

.contact-box a {
    text-decoration: none;
}

/* Navbar updates */
.navbar {
    background-color: #ffffff !important;
}

.navbar-brand img {
    max-height: 40px;
    width: auto;
}

.form-control {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
}

.form-control::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.form-control:focus {
    background-color: white;
    color: #333;
}

@media (max-width: 991.98px) {
    .hero-banner {
        min-height: 300px;
    }

    .hero-message .row {
        text-align: center;
    }

    .contact-box {
        margin-top: 1rem;
        text-align: center;
    }
}

.hero-message img {
    max-height: 300px;
    object-fit: cover;
    width: 100%;
}

.hero-message {
    margin-top: auto;
    width: 100%;
}

.hero-message .btn-lg {
    padding: 1rem 2rem;
    font-size: 1.25rem;
}

.navbar-phone a {
    color: #30451E;
    font-weight: 500;
    display: flex;
    align-items: center;
    transition: color 0.3s ease;
}

.navbar-phone a:hover {
    color: var(--primary-color);
}

.navbar-phone i {
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .navbar-phone {
        margin-top: 1rem;
        text-align: center;
    }
}

.gum-types {
    padding: 1rem 0;
}

.gum-types h3 {
    color: var(--primary-color);
    font-size: 1.75rem;
    font-weight: 600;
}

.gum-type-card {
    background: #30451E;
    border-radius: 8px;
    padding: 1rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    height: 100%;
}

.gum-type-card:hover {
    transform: translateY(-5px);
}

.gum-type-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 6px;
}

.gum-type-card h4 {
    color: #fff;
    font-size: 1.1rem;
    margin: 0.5rem 0;
}

.gum-type-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin: 0;
}

@media (max-width: 768px) {
    .gum-type-card img {
        height: 120px;
    }
}

/* Language Selector */
.dropdown-menu {
    border: none;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

.dropdown-item {
    color: #30451E;
    padding: 0.5rem 1rem;
    display: flex;
    align-items: center;
}

.dropdown-item:hover {
    background-color: rgba(48, 69, 30, 0.1);
    color: #30451E;
}

.flag-icon {
    width: 20px;
    height: 15px;
    object-fit: cover;
    border-radius: 2px;
}

.nav-link .bi-translate {
    margin-right: 5px;
}

@media (max-width: 991.98px) {
    .dropdown-menu {
        border: none;
        box-shadow: none;
        background: transparent;
    }
    
    .dropdown-item {
        color: #30451E;
        padding: 0.5rem 0;
    }
}

.type-gum-section {
    padding: 2rem 0;
    background: rgba(0, 0, 0, 0.3);
    margin-top: auto;
}

.type-gum-section .gum-types {
    padding: 0;
}

.type-gum-section .gum-type-card {
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .type-gum-section {
        padding: 1rem 0;
    }
}

.fade-in {
    animation: fadeIn 2s ease-in;
}

.fade-in-text {
    opacity: 0;
    animation: fadeInText 2s ease-in forwards;
    animation-delay: 0.8s;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInText {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.carousel-item.active .fade-in-text {
    animation: fadeInText 2s ease-in forwards;
    animation-delay: 0.8s;
}

.carousel-item.active .fade-in {
    animation: fadeIn 2s ease-in;
}

.slider-image {
    width: 400px;
    height: 400px;
    object-fit: cover;
    position: absolute;
    z-index: 2;
    opacity: 0;
    filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.3));
    border-radius: 50%;
    border: 6px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.4);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.slider-image.top-right {
    top: 20px;
    right: 20px;
}

.slider-image.bottom-left {
    bottom: 20px;
    left: 20px;
}

/* Define keyframes if not already present - ensure they exist or are added */
@keyframes slideInRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Add animation trigger when the parent carousel item is active */
/* Note: This uses Bootstrap's active class for carousel items */
.carousel-item.active .slider-image.top-right {
    animation: slideInRight 1.5s ease-out forwards;
    animation-delay: 0.5s;
}

.carousel-item.active .slider-image.bottom-left {
    animation: slideInLeft 1.5s ease-out forwards;
    animation-delay: 0.5s;
}

@media (max-width: 768px) {
    .slider-image {
        width: 300px;
        height: 120px;
        border-radius: 50%;
        border-width: 4px;
        box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
    }
    
    .slider-image.top-right {
        top: 10px;
        right: 10px;
    }
    
    .slider-image.bottom-left {
        bottom: 10px;
        left: 10px;
    }

    .carousel-item.active .slider-image.top-right {
        animation: slideInRight 1.5s ease-out forwards;
        animation-delay: 0.5s;
    }

    .carousel-item.active .slider-image.bottom-left {
        animation: slideInLeft 1.5s ease-out forwards;
        animation-delay: 0.5s;
    }
}

.hero-content .btn-primary {
    background-color: #F7973F;
    border-color: #F7973F;
    padding: 1rem 2.5rem;
    font-size: 1.2rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(247, 151, 63, 0.3);
}

.hero-content .btn-primary:hover {
    background-color: #e88a36;
    border-color: #e88a36;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(247, 151, 63, 0.4);
}

.hero-content .btn-primary:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(247, 151, 63, 0.3);
}

@media (max-width: 768px) {
    .hero-content .btn-primary {
        padding: 0.8rem 2rem;
        font-size: 1.1rem;
    }
}

.circular-image-container {
    position: absolute;
    right: 50px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    width: 300px;
    height: 300px;
    animation: fadeIn 2s ease-in forwards;
}

.circular-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 8px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.3);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
    100% {
        transform: translateY(0px);
    }
}

@media (max-width: 768px) {
    .circular-image-container {
        width: 200px;
        height: 200px;
        right: 20px;
    }
    
    .circular-image {
        border-width: 5px;
    }
}

.circular-images-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
}

.circular-image-item {
    position: absolute;
    width: 120px;
    height: 120px;
    animation: fadeIn 2s ease-in forwards;
}

.circular-small-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.circular-small-image:hover {
    transform: scale(1.1);
    border-color: rgba(255, 255, 255, 0.5);
}

/* Position each item in a circle */
.circular-image-item.item1 {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.circular-image-item.item2 {
    top: 20%;
    right: 0;
    transform: translateX(50%);
}

.circular-image-item.item3 {
    bottom: 20%;
    right: 0;
    transform: translateX(50%);
}

.circular-image-item.item4 {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.circular-image-item.item5 {
    top: 20%;
    left: 0;
    transform: translateX(-50%);
}

@media (max-width: 768px) {
    .circular-images-container {
        width: 300px;
        height: 300px;
    }

    .circular-image-item {
        width: 80px;
        height: 80px;
    }
}

.about-creative-section {
    background: #fff;
}

.about-img-stack {
    position: relative;
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
    min-height: 320px;
}

.about-img-main {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
    position: relative;
    z-index: 1;
}

.about-img-thumb {
    position: absolute;
    left: 30px;
    bottom: -40px;
    width: 220px;
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.18);
    border: 6px solid #fff;
    z-index: 2;
}

.about-label {
    color: #F7973F;
    font-weight: 600;
    letter-spacing: 1px;
    font-size: 1.1rem;
    text-transform: uppercase;
    display: flex;
    align-items: center;
}

.about-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #222;
}

.about-content p {
    font-size: 1.1rem;
    color: #555;
}

.about-checklist {
    padding-left: 0;
}

.about-checklist li {
    font-size: 1.08rem;
    margin-bottom: 0.7rem;
    display: flex;
    align-items: center;
    color: #222;
}

.about-check-icon {
    color: #F7973F;
    font-size: 1.2rem;
    margin-right: 0.7rem;
}

.about-btn {
    background: #F7973F;
    border: none;
    color: #fff;
    font-weight: 600;
    padding: 0.85rem 2.2rem;
    border-radius: 6px;
    font-size: 1.1rem;
    box-shadow: 0 2px 10px rgba(247, 151, 63, 0.15);
    transition: background 0.2s, box-shadow 0.2s;
}

.about-btn:hover {
    background: #e88a36;
    color: #fff;
    box-shadow: 0 4px 18px rgba(247, 151, 63, 0.22);
}

@media (max-width: 991.98px) {
    .about-img-stack {
        max-width: 320px;
        min-height: 220px;
    }
    .about-img-thumb {
        width: 140px;
        left: 10px;
        bottom: -20px;
    }
    .about-content h2 {
        font-size: 2rem;
    }
}
@media (max-width: 767.98px) {
    .about-creative-section {
        padding: 2rem 0;
    }
    .about-img-stack {
        max-width: 100%;
        min-height: 160px;
    }
    .about-img-main {
        border-radius: 8px;
    }
    .about-img-thumb {
        border-radius: 8px;
        width: 90px;
        left: 5px;
        bottom: -10px;
    }
    .about-content h2 {
        font-size: 1.3rem;
    }
    .about-btn {
        padding: 0.7rem 1.2rem;
        font-size: 1rem;
    }
}

.working-process-section {
    background: #fff;
}

.working-process-section .about-label {
    color: #F7973F;
    font-weight: 600;
    letter-spacing: 1px;
    font-size: 1.1rem;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
}

.working-steps-row {
    margin-top: 2rem;
    position: relative;
}

.process-step-wrapper {
    position: relative;
    z-index: 2;
    opacity: 0;
    transform: translateX(-60px);
}

.process-img-container {
    position: relative;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.process-img-container.step1 .process-img {
    transform: rotate(-10deg);
}
.process-img-container.step2 .process-img {
    transform: rotate(7deg);
}
.process-img-container.step3 .process-img {
    transform: rotate(-7deg);
}

.process-img {
    width: 200px;
    height: 180px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
    border: 6px solid #fff;
}

.step-label {
    position: absolute;
    top: 18px;
    left: -18px;
    background: #F7973F;
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    padding: 0.3rem 1.1rem;
    border-radius: 4px;
    transform: rotate(-20deg);
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    letter-spacing: 1px;
}
.step-label-2 {
    left: 10px;
    top: 10px;
    transform: rotate(-10deg);
}
.step-label-3 {
    left: 10px;
    top: 10px;
    transform: rotate(-15deg);
}

.process-icon-circle {
    width: 70px;
    height: 70px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: -35px auto 0 auto;
    box-shadow: 0 2px 10px rgba(247, 151, 63, 0.12);
    font-size: 2.2rem;
    color: #F7973F;
    position: relative;
    z-index: 3;
}

.process-dashed-line {
    position: absolute;
    left: 0;
    top: 40px;
    width: 100%;
    height: 120px;
    pointer-events: none;
    z-index: 1;
}

@media (max-width: 991.98px) {
    .process-img {
        width: 140px;
        height: 110px;
    }
    .process-icon-circle {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
        margin: -25px auto 0 auto;
    }
}
@media (max-width: 767.98px) {
    .working-process-section {
        padding: 2rem 0;
    }
    .process-img {
        width: 100px;
        height: 80px;
    }
    .process-icon-circle {
        width: 36px;
        height: 36px;
        font-size: 1rem;
        margin: -18px auto 0 auto;
    }
    .process-step-wrapper h5 {
        font-size: 1rem;
    }
    .process-step-wrapper p {
        font-size: 0.9rem;
    }
    .process-dashed-line {
        display: none;
    }
}

.working-process-section .col-md-4:nth-child(1) .process-step-wrapper { animation-delay: 0.2s; }
.working-process-section .col-md-4:nth-child(2) .process-step-wrapper { animation-delay: 0.5s; }
.working-process-section .col-md-4:nth-child(3) .process-step-wrapper { animation-delay: 0.8s; }

.contact-map-section {
    background: #fff;
}

.map-image-container {
    position: relative;
    width: 100%;
    min-height: 400px;
}

.world-map-img {
    width: 100%;
    max-width: 900px;
    display: block;
    margin: 0 auto;
    opacity: 0.7;
}

.map-location-img {
    position: absolute;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #fff;
    box-shadow: 0 2px 12px rgba(0,0,0,0.12);
    background: #fff;
    transition: box-shadow 0.2s, border-color 0.2s;
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out, box-shadow 0.2s, border-color 0.2s;
}
.map-location-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}
.map-location-img.active {
    border: 4px solid #F7973F;
    box-shadow: 0 4px 18px rgba(247, 151, 63, 0.22);
}

/* Example positions for demo, adjust as needed */
.map-location-img.loc1 { left: 12%; top: 38%; }      /* China */
.map-location-img.loc2 { left: 41%; top: 28%; }      /* UK */
.map-location-img.loc3 { left: 62%; top: 32%; }      /* France */
.map-location-img.loc4 { left: 28%; top: 70%; }      /* India */
.map-location-img.loc5 { left: 18%; top: 18%; }      /* USA - moved to North America */
.map-location-img.loc6 { left: 30%; top: 60%; }      /* Brazil - South America */
.map-location-img.loc7 { left: 54%; top: 40%; }      /* Turkey - between Europe/Asia */
.map-location-img.loc8 { left: 40%; top: 82%; }      /* South Africa - southern Africa */
.map-location-img.loc9 { left: 80%; top: 78%; }      /* Australia - Oceania */

.contact-info-card {
    background: #f7f7f7;
    border-radius: 12px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.07);
    min-height: 260px;
}

.contact-info-card h4 {
    color: #222;
    font-size: 1.5rem;
}

.contact-address-btn {
    background: #F7973F;
    color: #fff;
    font-weight: 600;
    padding: 1rem 1.2rem;
    border-radius: 6px;
    font-size: 1.1rem;
    margin-top: 1rem;
    text-align: center;
    box-shadow: 0 2px 10px rgba(247, 151, 63, 0.15);
}

@media (max-width: 991.98px) {
    .map-image-container {
        min-height: 260px;
    }
    .map-location-img {
        width: 60px;
        height: 60px;
    }
}
@media (max-width: 767.98px) {
    .contact-map-section {
        padding: 2rem 0;
    }
    .map-image-container {
        min-height: 180px;
    }
    .map-location-img {
        width: 40px;
        height: 40px;
    }
    .contact-info-card {
        padding: 1.2rem;
    }
    .contact-address-btn {
        font-size: 1rem;
        padding: 0.7rem 0.8rem;
    }
}

.team-section {
    background: #fff;
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
}

.team-card-modern {
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
    padding: 2.5rem 1.5rem 2rem 1.5rem;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out, box-shadow 0.3s;
}

.team-card-modern .team-img-modern {
    width: 120px;
    height: 120px;
    margin: 0 auto 1rem auto;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.10);
    background: #f7f7f7;
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-card-modern .team-img-modern img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 18px;
}

.team-card-modern .team-role {
    color: #b0b0b0;
    font-size: 1rem;
    margin-bottom: 0.2rem;
    text-transform: lowercase;
    letter-spacing: 0.5px;
}

.team-card-modern .team-name {
    font-weight: 700;
    color: #222;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.team-card-modern .team-desc {
    color: #666;
    font-size: 1rem;
    margin-bottom: 1.1rem;
}

.team-social-modern a {
    color: #222;
    font-size: 1.2rem;
    margin: 0 0.3rem;
    transition: color 0.2s;
    display: inline-block;
}
.team-social-modern a:hover {
    color: #F7973F;
}

.team-card-highlight {
    background: #e6f0f6;
    border-radius: 32px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.10);
}

.animate-team {
    animation-delay: 0.2s;
}
.team-section .col-md-4:nth-child(2) .animate-team { animation-delay: 0.4s; }
.team-section .col-md-4:nth-child(3) .animate-team { animation-delay: 0.6s; }

@media (max-width: 991.98px) {
    .team-card-modern {
        padding: 1.2rem 0.7rem 1rem 0.7rem;
    }
    .team-card-modern .team-img-modern {
        width: 90px;
        height: 90px;
        border-radius: 12px;
    }
    .team-card-modern .team-img-modern img {
        border-radius: 12px;
    }
}
@media (max-width: 767.98px) {
    .team-section {
        padding-bottom: 0 !important;
        margin-bottom: 0 !important;
    }
    .team-card-modern {
        padding: 1rem 0.5rem 0.7rem 0.5rem;
    }
    .team-card-modern .team-img-modern {
        width: 70px;
        height: 70px;
        border-radius: 8px;
    }
    .team-card-modern .team-img-modern img {
        border-radius: 8px;
    }
    .team-card-modern .team-name {
        font-size: 1rem;
    }
    .team-card-modern .team-desc {
        font-size: 0.9rem;
    }
}

.team-card-modern:hover {
    background: #F7973F;
    box-shadow: 0 8px 32px rgba(247, 151, 63, 0.18);
}
.team-card-modern:hover .team-name,
.team-card-modern:hover .team-role,
.team-card-modern:hover .team-desc {
    color: #fff !important;
}
.team-card-modern:hover .team-social-modern a {
    color: #fff;
}

/* Define the animation keyframes */
@keyframes heroFloatIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes aboutFloatIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes processSlideIn {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
@keyframes teamFadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes mapScaleIn {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Class to trigger animations on scroll */
.is-visible {
    opacity: 1;
    transform: translateY(0);
    transform: translateX(0);
    transform: scale(1);
}

/* Apply animations when parent section is visible */
.hero-section.is-visible {
    animation: heroFloatIn 1.2s ease-out forwards;
    animation-delay: 0.1s;
}

.about-creative-section.is-visible {
    animation: aboutFloatIn 1.2s ease-out forwards;
    animation-delay: 0.4s;
}

.working-process-section.is-visible .process-step-wrapper {
    animation: processSlideIn 1s forwards;
}
.working-process-section.is-visible .col-md-4:nth-child(1) .process-step-wrapper { animation-delay: 0.2s; }
.working-process-section.is-visible .col-md-4:nth-child(2) .process-step-wrapper { animation-delay: 0.5s; }
.working-process-section.is-visible .col-md-4:nth-child(3) .process-step-wrapper { animation-delay: 0.8s; }

.contact-map-section.is-visible .map-location-img {
    animation: mapScaleIn 0.8s ease-out forwards;
}
.contact-map-section.is-visible .loc1 { animation-delay: 0.3s; }
.contact-map-section.is-visible .loc2 { animation-delay: 0.5s; }
.contact-map-section.is-visible .loc3 { animation-delay: 0.7s; }
.contact-map-section.is-visible .loc4 { animation-delay: 0.9s; }
.contact-map-section.is-visible .loc5 { animation-delay: 1.1s; }
.contact-map-section.is-visible .loc7 { animation-delay: 1.3s; }
.contact-map-section.is-visible .loc8 { animation-delay: 1.5s; }
.contact-map-section.is-visible .loc9 { animation-delay: 1.7s; }

.team-section.is-visible .team-card-modern {
    animation: teamFadeIn 1s forwards;
}
.team-section.is-visible .col-md-4:nth-child(1) .animate-team { animation-delay: 0.2s; }
.team-section.is-visible .col-md-4:nth-child(2) .animate-team { animation-delay: 0.4s; }
.team-section.is-visible .col-md-4:nth-child(3) .animate-team { animation-delay: 0.6s; }

@media (max-width: 767.98px) {
    /* Ensure animations work on mobile too if needed, or adjust */
}

/* Add back the initial opacity/transform for elements that didn't have transitions/animations previously */
/* For example, the main text content in sections */
.hero-section .container > .row,
.about-creative-section .container > .row,
.working-process-section .container,
.contact-map-section .container,
.team-section .container {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.hero-section.is-visible .container > .row,
.about-creative-section.is-visible .container > .row,
.working-process-section.is-visible .container,
.contact-map-section.is-visible .container,
.team-section.is-visible .container {
    opacity: 1;
    transform: translateY(0);
}

.circular-image-container.left-side {
    left: 50px;
    right: auto;
    animation: fadeIn 2s ease-in forwards;
}

@media (max-width: 768px) {
    .circular-image-container.left-side {
        left: 20px;
        right: auto;
    }
}

.circular-text-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    color: #fff;
    font-size: 1.5rem;
    font-weight: bold;
    text-align: center;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

@media (max-width: 768px) {
    .circular-text-center {
        font-size: 1.2rem;
    }
}

.animated-list {
    padding-left: 0;
}

.animated-list-item {
    opacity: 0;
    transform: translateX(-20px);
    margin-bottom: 10px;
    font-size: 1.1rem;
    color: #555;
}

@keyframes listFadeIn {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-section.is-visible .animated-list-item {
    animation: listFadeIn 0.6s ease-out forwards;
}

.hero-section.is-visible .animated-list-item:nth-child(1) { animation-delay: 0.6s; }
.hero-section.is-visible .animated-list-item:nth-child(2) { animation-delay: 0.7s; }
.hero-section.is-visible .animated-list-item:nth-child(3) { animation-delay: 0.8s; }
.hero-section.is-visible .animated-list-item:nth-child(4) { animation-delay: 0.9s; }
.hero-section.is-visible .animated-list-item:nth-child(5) { animation-delay: 1.0s; }

/* Imported Products Section */
.imported-products-section {
    background-color: #f8f9fa;
}

.imported-product-item {
    margin-bottom: 3rem; /* Spacing between products */
    padding: 2rem;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.imported-product-item img {
    border-radius: 8px;
}

.imported-product-item h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
}

.imported-product-item p {
    font-size: 1.1rem;
    color: #555;
}

/* Alternating layout using Bootstrap's order classes */
.imported-product-item:nth-child(odd) .col-md-6:first-child {
    order: 1;
}
.imported-product-item:nth-child(odd) .col-md-6:last-child {
    order: 2;
}

@media (max-width: 767.98px) {
    .imported-product-item {
        padding: 1.5rem;
    }
    .imported-product-item img {
        margin-bottom: 1.5rem;
    }
     .imported-product-item:nth-child(odd) .col-md-6:first-child,
     .imported-product-item:nth-child(odd) .col-md-6:last-child {
        order: 0; /* Reset order on small screens */
    }
    .imported-product-item h3 {
        font-size: 1.5rem;
    }
    .imported-product-item p {
        font-size: 1rem;
    }
}

/* Timeline styles - Updated for left-aligned layout from new image */
.timeline {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 10px; /* Add some padding on the sides */
}

.timeline::after {
    content: '';
    position: absolute;
    width: 3px; /* Thinner line */
    background-color: #e0e0e0; /* Lighter line color */
    top: 0;
    bottom: 0;
    left: 18px; /* Position line on the left */
    margin-left: 0; /* Remove margin */
}

.timeline-item {
    padding: 10px 0; /* Adjust padding */
    position: relative;
    background-color: inherit;
    width: 100%; /* Use full width */
    display: flex; /* Use flexbox for layout */
    justify-content: flex-end; /* Align items to the right of the line */
    align-items: center; /* Vertically center items */
    opacity: 0;
    transform: translateX(60px); /* Initial state for animation */
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.timeline-item::after {
    content: '';
    position: absolute;
    width: 15px; /* Smaller circle */
    height: 15px;
    left: 11px; /* Position circle on the left line */
    background-color: #F7973F; /* Circle color */
    border: none; /* No border */
    top: 25px; /* Position circle down slightly */
    border-radius: 50%;
    z-index: 1;
    transform: translateX(-50%); /* Center circle on the line */
}

.timeline-item .timeline-panel {
    width: calc(100% - 60px); /* Panel takes up remaining width */
    padding: 20px; /* Padding around content */
    box-sizing: border-box;
    background-color: #fff;
    border-radius: 6px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    display: flex; /* Use flexbox for image and text inside panel */
    align-items: center; /* Vertically center image and text */
}

.timeline-item .timeline-image {
    width: 40%; /* Image takes up 40% of panel width */
    flex-shrink: 0;
    margin-right: 20px; /* Space between image and text */
}

.timeline-item .timeline-image img {
     width: 100%;
     height: auto;
     border-radius: 8px;
     box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.timeline-content-text {
    flex-grow: 1; /* Text content takes up remaining space */
}

.timeline-heading h4 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 0.5rem;
}

.timeline-body p {
     font-size: 1rem;
     color: #555;
     margin-bottom: 1rem;
}

.view-more-link {
    display: inline-block;
    color: #F7973F;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s;
}

.view-more-link:hover {
    color: #e88a36;
}

/* Animation for timeline items (keep existing is-visible) */
.timeline-item.is-visible {
     opacity: 1;
     transform: translateX(0);
}

@media (max-width: 767.98px) {
    .timeline::after {
        left: 18px;
    }

    .timeline-item {
        padding-left: 40px; /* Adjust padding */
        padding-right: 10px; /* Adjust padding */
        justify-content: flex-start; /* Align items to the left on mobile */
    }

     .timeline-item::after {
        left: 11px;
        top: 15px;
        transform: translateY(0);
     }

     .timeline-item .timeline-panel {
        width: 100%; /* Full width on mobile */
        padding: 10px; /* Adjust padding on mobile */
        flex-direction: column; /* Stack image and text on mobile */
        align-items: flex-start; /* Align items to the start on mobile */
     }

     .timeline-item .timeline-image {
        width: 100%; /* Full width for image on mobile */
        margin-right: 0; /* Remove right margin on mobile */
        margin-bottom: 1rem; /* Add bottom margin on mobile */
     }

     .timeline-heading h4 {
        font-size: 1.4rem;
     }
     .timeline-body p {
        font-size: 0.9rem;
     }
}

/* Page Specific Hero Section */
.page-hero-section {
    background-size: cover;
    background-position: center;
    min-height: 50vh;
    padding: 10rem 0 6rem 0; /* Increased top and bottom padding for more height */
    position: relative;
    z-index: 1;
}

.page-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5); /* Dark overlay */
    z-index: -1;
}

.page-hero-section h1 {
    color: #fff;
    font-size: 3.5rem;
    font-weight: bold;
}

@media (max-width: 767.98px) {
    .page-hero-section {
        padding: 8rem 0 4rem 0; /* Adjusted padding for mobile */
    }
    .page-hero-section h1 {
        font-size: 2.5rem;
    }
}

/* Events Section */
.events-section {
    background-color: #f8f9fa; /* Light background */
    padding-top: 0 !important;
    margin-top: 0 !important;
}

.event-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    text-align: center;
    position: relative;
    transform: translateY(40px); /* Initial state for animation */
    transition: transform 0.6s ease-out, opacity 0.6s ease-out, box-shadow 0.2s;
}

.event-card:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.event-img-wrapper {
    position: relative;
    width: 100%;
    height: 180px; /* Fixed height for images */
    overflow: hidden;
}

.event-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.event-date {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: #F7973F; /* Brand color background */
    color: #fff;
    padding: 8px 12px;
    border-radius: 6px;
    font-weight: bold;
    text-align: center;
    line-height: 1.2;
    z-index: 1;
}

.event-date .day {
    font-size: 1.5rem;
    display: block;
}

.event-date .month {
    font-size: 0.9rem;
    text-transform: uppercase;
}

.event-content {
    padding: 1.5rem;
}

.event-content h5 {
    font-size: 1.3rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 0.5rem;
}

.event-content p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 1rem;
}

.read-more-link {
    display: inline-block;
    color: #F7973F;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s;
}

.read-more-link:hover {
    color: #e88a36;
}

/* Animation for event cards (triggered by is-visible) */
.events-section.is-visible .event-card {
    animation: eventFadeIn 0.8s ease-out forwards;
}

@keyframes eventFadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Stagger animation delays */
.events-section.is-visible .col-md-6:nth-child(1) .animate-event { animation-delay: 0.2s; }
.events-section.is-visible .col-md-6:nth-child(2) .animate-event { animation-delay: 0.4s; }
.events-section.is-visible .col-md-6:nth-child(3) .animate-event { animation-delay: 0.6s; }

@media (max-width: 767.98px) {
    .events-section {
        padding-top: 0 !important;
        margin-top: 0 !important;
    }
    .event-img-wrapper {
        height: 160px;
    }
    .event-date {
        padding: 6px 10px;
    }
    .event-date .day {
        font-size: 1.3rem;
    }
    .event-date .month {
        font-size: 0.8rem;
    }
    .event-content {
        padding: 1rem;
    }
     .event-content h5 {
        font-size: 1.1rem;
     }
     .event-content p {
        font-size: 0.9rem;
     }
}

/* Add styles for event sharing links */
.event-share-links {
    margin-top: 1rem;
    display: flex;
    justify-content: center;
    gap: 15px; /* Space between icons */
}

.share-link {
    font-size: 1.5rem;
    color: #555; /* Default icon color */
    transition: color 0.2s ease-in-out;
}

.share-link:hover {
    color: #F7973F; /* Hover color */
}

.share-link.facebook:hover {
    color: #3b5998; /* Facebook brand color */
}

.share-link.whatsapp:hover {
    color: #25d366; /* WhatsApp brand color */
}

.share-link.instagram:hover {
    color: #c13584; /* Instagram brand color */
}

/* Add styles for event sharing dropdown */
.event-card {
    position: relative; /* Needed for absolute positioning of the dropdown */
}

.event-share-dropdown {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 10;
}

.event-share-dropdown .btn-link {
    color: #fff; /* White color for the icon */
    font-size: 1.3rem;
    padding: 0.25rem 0.5rem; /* Adjust padding */
    background-color: rgb(255, 255, 255); /* Semi-transparent background */
    border-radius: 5px;
    line-height: 1;
    transition: background-color 0.2s ease;
}

.event-share-dropdown .btn-link:hover {
    background-color: rgba(0, 0, 0, 0.7); /* Darker background on hover */
}

.event-share-dropdown .dropdown-menu {
    font-size: 0.9rem;
    min-width: 120px; /* Adjust width */
}

.event-share-dropdown .dropdown-item i {
    margin-right: 0.5rem;
}

/* About Us Page Specific Styles */
.page-hero-section {
    background-size: cover;
    background-position: center;
    min-height: 50vh;
    padding: 10rem 0 6rem 0; /* Increased top and bottom padding for more height */
    position: relative;
    z-index: 1;
}

.page-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5); /* Dark overlay */
    z-index: -1;
}

.page-hero-section h1 {
    color: #fff;
    font-size: 3.5rem;
    font-weight: bold;
}

@media (max-width: 767.98px) {
    .page-hero-section {
        padding: 8rem 0 4rem 0; /* Adjusted padding for mobile */
    }
    .page-hero-section h1 {
        font-size: 2.5rem;
    }
}

.about-intro-section img {
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}

.about-intro-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #222;
}

.about-intro-section p.lead {
    font-size: 1.25rem;
}

.about-intro-section ul li {
    font-size: 1.1rem;
    margin-bottom: 0.7rem;
    display: flex;
    align-items: center;
    color: #555;
}

.activities-section .activity-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.activities-section .activity-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.activities-section .activity-card i {
    color: #F7973F !important; /* Override primary-color if it's too blue */
}

.call-to-action-section {
    background-color: #F7973F;
    padding: 4rem 0;
}

.call-to-action-section h2 {
    font-size: 2.8rem;
}

.call-to-action-section .btn-light {
    color: #F7973F;
    background-color: #fff;
    border-color: #fff;
    font-weight: 600;
    padding: 0.85rem 2.2rem;
    border-radius: 50px;
    transition: background-color 0.2s, color 0.2s;
}

.call-to-action-section .btn-light:hover {
    background-color: #eee;
    color: #e88a36;
}

/* Ensure the footer links on about.html are white */
footer a {
    color: #fff;
}

footer a:hover {
    opacity: 0.8;
}

main {
    margin-bottom: 0 !important;
}

/* Contact Section Styles */
.contact-section {
    background-color: #f8f9fa;
}

.map-container {
    height: 450px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.contact-form-container {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.contact-info {
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #eee;
}

.contact-info h5 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
}

.contact-form .form-control {
    padding: 0.8rem 1rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.contact-form .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(247, 151, 63, 0.25);
}

.contact-form textarea.form-control {
    resize: none;
}

.contact-form .btn-primary {
    padding: 0.8rem 2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@media (max-width: 991.98px) {
    .map-container {
        height: 350px;
        margin-bottom: 2rem;
    }
    
    .contact-form-container {
        padding: 1.5rem;
    }
}

@media (max-width: 767.98px) {
    .contact-section {
        padding: 3rem 0;
    }
    
    .map-container {
        height: 300px;
    }
    
    .contact-info {
        padding-bottom: 1rem;
    }
    
    .contact-info h5 {
        font-size: 1rem;
    }
}

/* Mission Section Styles */
.mission-section {
    background-color: #fff;
}

.mission-content {
    padding-right: 2rem;
}

.mission-highlights {
    margin-top: 2rem;
}

.mission-item {
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.mission-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.mission-item h4 {
    font-size: 1.25rem;
    color: #333;
}

.mission-item p {
    font-size: 1rem;
    line-height: 1.6;
}

.mission-image-container {
    position: relative;
    padding: 1rem;
}

.mission-image-container img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.mission-stats {
    width: 80%;
    margin: 1rem;
    transform: translateY(50%);
}

.mission-stats h3 {
    font-size: 2rem;
}

@media (max-width: 991.98px) {
    .mission-content {
        padding-right: 0;
        margin-bottom: 2rem;
    }
    
    .mission-stats {
        width: 90%;
        transform: translateY(30%);
    }
}

@media (max-width: 767.98px) {
    .mission-item {
        padding: 1rem;
    }
    
    .mission-stats {
        position: relative !important;
        transform: none !important;
        margin: 1rem auto;
        width: 100%;
    }
}