/* About Us Page Styles */

/* RGB Color Variables for Opacity Control */
:root {
    --primary-color-rgb: 0, 128, 128; /* Teal color in RGB format */
    --secondary-color-rgb: 245, 158, 11; /* Amber color in RGB format */
    --breakpoint-xs: 0;
    --breakpoint-sm: 576px;
    --breakpoint-md: 768px;
    --breakpoint-lg: 992px;
    --breakpoint-xl: 1200px;
    --breakpoint-xxl: 1400px;
}

/* Hero Section with Carousel */
.hero-section {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    margin-top: 0 !important; /* Remove the negative margin */
    width: 100%;
}

.hero-carousel-container {
    position: relative;
    height: 100vh;
    width: 100%;
}

/* Carousel Styling */
#heroCarousel {
    height: 100vh;
}

#heroCarousel .carousel-inner,
#heroCarousel .carousel-item {
    height: 100vh;
}

#heroCarousel .carousel-item img {
    height: 100vh;
    width: 100%;
    object-fit: cover;
    filter: brightness(0.5); /* Darken the image more for better text contrast */
}

/* Hero Content Overlay */
.hero-content {
    position: absolute;
    top: 2%;
    left: 0;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
    text-align: center;
}

/* Hero Card */
.hero-card {
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border-radius: 16px;
    padding: 3.5rem;
    color: white;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    animation: slideInLeft 1s ease-out;
    max-width: 90%;
    width: 100%;
    margin: 0 auto;
}

@keyframes slideInLeft {
    from {
        transform: translateX(-50px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Trust Badge */
.trust-badge {
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    font-weight: 500;
}

.trust-badge i {
    color: var(--success-color);
    margin-right: 0.5rem;
}

/* Stats Row */
.stats-row {
    display: flex;
    justify-content: space-around;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    padding: 0 1rem;
    margin-bottom: 1rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Hero CTA */
.hero-cta {
    margin-top: 2rem;
}

.hero-cta .btn {
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.hero-cta .btn-primary {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    border: none;
    box-shadow: 0 5px 15px rgba(var(--primary-color-rgb), 0.3);
}

.hero-cta .btn-outline-light {
    border: 2px solid rgba(255, 255, 255, 0.5);
    background-color: transparent;
}

.hero-cta .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(var(--primary-color-rgb), 0.4);
}

.hero-cta .btn-outline-light:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

/* Section Padding */
.section-padding {
    padding: 6rem 0;
}

/* Section Title */
.section-title {
    margin-bottom: 3rem;
    position: relative;
}

.section-title .subtitle {
    color: var(--primary-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 0.75rem;
}

.section-title h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 1rem;
    position: relative;
}

.section-title .section-description {
    font-size: 1.1rem;
    color: var(--dark-gray);
    max-width: 700px;
    margin: 0 auto;
}

/* Story Section */
.story-section {
    position: relative;
    overflow: hidden;
}

.story-image-container {
    position: relative;
    padding: 1.5rem;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.main-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    transition: transform 0.5s ease;
}

.story-image-container:hover .main-image {
    transform: scale(1.03);
}

.experience-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: var(--white-color);
    padding: 1.5rem;
    border-radius: 50%;
    width: 120px;
    height: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(var(--primary-color-rgb), 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(var(--primary-color-rgb), 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(var(--primary-color-rgb), 0);
    }
}

.experience-badge .years {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
}

.experience-badge .text {
    font-size: 1rem;
}

/* Story Content */
.story-content {
    padding: 2rem 0 2rem 2rem;
}

.story-content h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
}

.story-content h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
}

/* Feature Items */
.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
    position: relative;
    padding-left: 0.5rem;
    transition: all 0.3s ease;
}

.feature-list-item:hover {
    transform: translateX(5px);
}

.feature-check {
    width: 28px;
    height: 28px;
    min-width: 28px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    font-size: 0.9rem;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15), inset 0 1px 1px rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.feature-check i {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    transition: all 0.3s ease;
}

.feature-list-item:hover .feature-check {
    box-shadow: 0 5px 12px rgba(0, 0, 0, 0.25), inset 0 1px 1px rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.15);
}

.feature-list-item:hover .feature-check i {
    transform: scale(1.2);
}

.feature-list-item div {
    color: rgba(255, 255, 255, 0.8);
}

.feature-content h5 {
    margin-bottom: 0.25rem;
    font-weight: 600;
}

.feature-content p {
    margin-bottom: 0;
    color: var(--gray-color);
    font-size: 0.95rem;
}

.story-cta {
    margin-top: 2.5rem;
}


/* Mission & Vision Cards */
.feature-card {
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
    background-color: rgba(128, 128, 128, 0.2);
    border-radius: 20px;
    padding: 2.5rem;
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    z-index: 1;
    color: white;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.1), transparent);
    opacity: 0.5;
    z-index: -1;
}



.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 
               inset 0 1px 2px rgba(255, 255, 255, 0.1),
               0 0 0 1px rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
    background-color: rgba(255, 255, 255, 0.1);
}

.feature-card:hover::before {
    opacity: 0.9;
}

.feature-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 80%);
    opacity: 0;
    transform: scale(0.5);
    transition: transform 0.6s ease, opacity 0.6s ease;
    z-index: -1;
    pointer-events: none;
}

.feature-card:hover::after {
    opacity: 1;
    transform: scale(1);
}

.why-choose-us-section {
    position: relative;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.85), rgba(30, 30, 30, 0.9));
    overflow: hidden;
    color: white;
}

.why-choose-us-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1560518883-ce09059eeffa?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1773&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    opacity: 0.2;
    z-index: 0;
}

.why-choose-us-section .section-title h2,
.why-choose-us-section .section-title .subtitle,
.why-choose-us-section .section-title p {
    color: white;
}

.why-choose-us-section .section-description {
    color: rgba(255, 255, 255, 0.8);
}

.feature-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(var(--primary-color-rgb), 0.2), rgba(var(--secondary-color-rgb), 0.2));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: inset 0 0 15px rgba(255, 255, 255, 0.1), 0 5px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.feature-icon::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    filter: blur(5px);
}

.feature-icon i {
    font-size: 32px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    transition: all 0.3s ease;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.feature-card:hover .feature-icon {
    background: linear-gradient(135deg, rgba(var(--primary-color-rgb), 0.25), rgba(var(--secondary-color-rgb), 0.25));
    box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.9), 0 8px 15px rgba(0, 0, 0, 0.1);
}

.feature-card:hover .feature-icon i {
    transform: scale(1.1);
    filter: brightness(1.1);
}

.feature-card h3 {
    margin-bottom: 1rem;
    font-weight: 600;
    font-size: 1.5rem;
    color: white;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    position: relative;
    display: inline-block;
}

.feature-card h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), transparent);
}

.feature-card p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin-top: 1.5rem;
}

.feature-check-item {
    margin-bottom: 0.75rem;
    display: flex;
    align-items: flex-start;
}

.check-icon {
    color: var(--success-color);
    margin-right: 0.75rem;
    margin-top: 0.25rem;
    font-size: 1rem;
}

/* Core Values */
.process-card {
    background: linear-gradient(135deg, rgb(255, 0, 140), var(--primary-color));
    border-radius: 10px;
    padding: 2.5rem;
    height: 100%;
    position: relative;
    transition: all 0.3s ease;
    overflow: hidden;
    z-index: 1;
}

.process-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    transition: height 0.3s ease;
    z-index: -1;
}

.process-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.process-card:hover::before {
    height: 10px;
}

.process-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background-color: var(--primary-color);
    color: var(--white-color);
    font-size: 2rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.process-card:hover .process-icon {
    background-color: var(--primary-color);
    color: var(--white-color);
}

.process-card h4 {
    color: aliceblue;
    margin-bottom: 1rem;
    font-weight: 600;
    font-size: 1.3rem;
}

.process-card p {
    color: var(--white-color);
    margin-bottom: 0;
}

.process-number {
    position: absolute;
    bottom: 20px;
    right: 20px;
    font-size: 4rem;
    font-weight: 700;
    color: rgba(var(--primary-color-rgb), 0.1);
    line-height: 1;
    transition: all 0.3s ease;
}

.process-card:hover .process-number {
    color: rgba(var(--primary-color-rgb), 0.15);
    transform: scale(1.1);
}

/* Team Section */
.team-section {
    position: relative;
    overflow: hidden;
}

.testimonial-card {
    background-color: var(--white-color);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.testimonial-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.testimonial-card:hover .testimonial-image img {
    transform: scale(1.05);
}

.testimonial-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to top, rgba(0,0,0,0.5), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.testimonial-card:hover .testimonial-image::after {
    opacity: 1;
}

.testimonial-content {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.testimonial-text {
    margin-bottom: 1.5rem;
    font-style: italic;
    color: var(--gray-color);
    position: relative;
    padding-left: 1.5rem;
    border-left: 3px solid var(--primary-color);
    flex-grow: 1;
}

.author-info {
    display: flex;
    align-items: center;
}

.author-details {
    flex-grow: 1;
}

.author-details h4 {
    margin-bottom: 0.25rem;
    font-weight: 600;
    font-size: 1.1rem;
}

.author-details .position {
    color: var(--primary-color);
    font-weight: 500;
    font-size: 0.9rem;
}

.social-links {
    display: flex;
    gap: 0.75rem;
    margin-top: 1rem;
}

.social-links a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(var(--primary-color-rgb), 0.1);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--primary-color);
    color: var(--white-color);
    transform: translateY(-3px);
}

/* Achievements Section */
.achievement-card {
    display: flex;
    align-items: flex-start;
    background-color: var(--white-color);
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.achievement-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(var(--primary-color-rgb), 0.03), rgba(var(--secondary-color-rgb), 0.03));
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.achievement-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.achievement-card:hover::before {
    opacity: 1;
}

.achievement-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    border-radius: 12px;
    background-color: rgba(var(--primary-color-rgb), 0.1);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-right: 1.5rem;
    transition: all 0.3s ease;
}

.achievement-card:hover .achievement-icon {
    background-color: var(--primary-color);
    color: var(--white-color);
}

.achievement-content h4 {
    margin-bottom: 0.75rem;
    font-weight: 600;
    font-size: 1.3rem;
}

.achievement-content p {
    margin-bottom: 0;
    color: var(--gray-color);
}

/* CTA Section */
.cta-section {
    padding: 6rem 0;
    background-color: var(--light-gray);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../img/pattern-bg.png');
    opacity: 0.05;
    z-index: 0;
}

.cta-card {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: var(--white-color);
    border-radius: 16px;
    padding: 3.5rem;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.cta-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../img/pattern-light.png');
    opacity: 0.1;
    z-index: -1;
}

.cta-card h3 {
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-size: 2.2rem;
}

.cta-card p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-buttons .btn-light {
    background-color: var(--white-color);
    color: var(--primary-color);
    border: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.cta-buttons .btn-outline-light {
    border: 2px solid rgba(255, 255, 255, 0.5);
    background-color: transparent;
}

.cta-buttons .btn:hover {
    transform: translateY(-3px);
}

/* Responsive Adjustments */
@media (max-width: 1199px) {
    .hero-card {
        padding: 2.5rem;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .section-title h2 {
        font-size: 2.2rem;
    }
    
    .process-card,
    .feature-card,
    .testimonial-content,
    .achievement-card {
        padding: 2rem;
    }
}

@media (max-width: 991px) {
    #heroCarousel,
    #heroCarousel .carousel-inner,
    #heroCarousel .carousel-item,
    #heroCarousel .carousel-item img,
    .hero-content {
        height: 80vh;
    }
    
    .hero-card {
        padding: 2rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-padding {
        padding: 5rem 0;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
    
    .experience-badge {
        width: 100px;
        height: 100px;
    }
    
    .cta-card {
        padding: 2.5rem;
    }
    
    .cta-card h3 {
        font-size: 1.8rem;
    }
}

@media (max-width: 767px) {
    #heroCarousel,
    #heroCarousel .carousel-inner,
    #heroCarousel .carousel-item,
    #heroCarousel .carousel-item img,
    .hero-content {
        height: 70vh;
    }
    
    .hero-card {
        padding: 1.5rem;
    }
    
    .hero-title {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .section-padding {
        padding: 4rem 0;
    }
    
    .section-title .subtitle {
        font-size: 0.8rem;
    }
    
    .section-title h2 {
        font-size: 1.8rem;
    }
    
    .story-content {
        padding: 1.5rem 0;
    }
    
    .process-card,
    .feature-card,
    .testimonial-content,
    .achievement-card {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .cta-card {
        padding: 2rem;
        text-align: center;
    }
    
    .cta-buttons {
        justify-content: center;
    }
}

@media (max-width: 575px) {
    #heroCarousel,
    #heroCarousel .carousel-inner,
    #heroCarousel .carousel-item,
    #heroCarousel .carousel-item img,
    .hero-content {
        height: 60vh;
    }
    
    .hero-card {
        padding: 1.25rem;
    }
    
    .hero-title {
        font-size: 1.5rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .section-padding {
        padding: 3rem 0;
    }
    
    .section-title h2 {
        font-size: 1.5rem;
    }
    
    .process-icon,
    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .cta-card h3 {
        font-size: 1.5rem;
    }
    
    .cta-card p {
        font-size: 1rem;
    }
}
