@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
    --primary: #0f342b;
    --primary-light: #164a3e;
    --primary-dark: #071e19;
    --accent: #c5a059;
    --accent-light: #d4b26f;
    --accent-dark: #a6813c;
    --text-main: #2b3531;
    --text-muted: #62726b;
    --bg-light: #f7f9f8;
    --bg-white: #ffffff;
    --border-color: #e2e8e5;
    --shadow-sm: 0 2px 4px rgba(15, 52, 43, 0.05);
    --shadow-md: 0 10px 20px rgba(15, 52, 43, 0.08);
    --shadow-lg: 0 20px 40px rgba(15, 52, 43, 0.12);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 24px;
}

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

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--text-main);
    background-color: var(--bg-light);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    color: var(--primary-dark);
    letter-spacing: -0.5px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Utilities */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

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

.text-center {
    text-align: center;
}

.badge {
    display: inline-block;
    padding: 6px 14px;
    background-color: rgba(197, 160, 89, 0.15);
    color: var(--accent-dark);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 50px;
    margin-bottom: 16px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    font-size: 0.95rem;
    font-weight: 700;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
    border: none;
    gap: 8px;
}

.btn-primary {
    background-color: var(--accent);
    color: var(--primary-dark);
}

.btn-primary:hover {
    background-color: var(--accent-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(197, 160, 89, 0.3);
}

.btn-secondary {
    background-color: var(--primary);
    color: var(--bg-white);
}

.btn-secondary:hover {
    background-color: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(15, 52, 43, 0.25);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background-color: var(--primary);
    color: var(--bg-white);
    transform: translateY(-2px);
}

/* Header & Nav */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

header.scrolled {
    background-color: var(--bg-white);
    padding: 10px 0;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo img {
    height: 55px;
    width: auto;
    object-fit: contain;
}

.nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
}

.nav-links a {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--primary-dark);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent);
    transition: var(--transition);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 16px;
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    background: none;
    border: none;
    color: var(--primary-dark);
    cursor: pointer;
}

/* Hero Section */
.hero {
    position: relative;
    padding-top: 160px;
    padding-bottom: 100px;
    background-color: var(--primary-dark);
    color: var(--bg-white);
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(7, 30, 25, 0.95) 40%, rgba(7, 30, 25, 0.65) 100%);
    z-index: 1;
}

.hero-bg-img {
    position: absolute;
    top: 0;
    right: 0;
    width: 55%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 0.75;
}

.hero .container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 48px;
    align-items: center;
}

.hero-content h1 {
    font-size: 4rem;
    line-height: 1.1;
    color: var(--bg-white);
    margin-bottom: 20px;
}

.hero-content h1 span {
    color: var(--accent-light);
}

.hero-location {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.85);
}

.hero-location svg {
    color: var(--accent-light);
    fill: currentColor;
    flex-shrink: 0;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 30px;
}

.stat-item h3 {
    font-size: 1.8rem;
    color: var(--accent-light);
    margin-bottom: 4px;
}

.stat-item p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-form-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 36px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
}

.hero-form-card h3 {
    color: var(--bg-white);
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.hero-form-card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-bottom: 24px;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 6px;
}

.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-sm);
    color: var(--bg-white);
    font-family: inherit;
    font-size: 0.95rem;
    transition: var(--transition);
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    background: rgba(255, 255, 255, 0.1);
}

.form-group option {
    background-color: var(--primary-dark);
    color: var(--bg-white);
}

.hero-form-card .btn {
    width: 100%;
    margin-top: 10px;
}

/* Info Bar */
.info-bar {
    background-color: var(--accent);
    color: var(--primary-dark);
    padding: 24px 0;
    font-weight: 700;
}

.info-bar-wrapper {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 24px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
}

.info-item svg {
    font-size: 1.4rem;
}

/* Quick Highlights */
.section-title {
    font-size: 2.8rem;
    margin-bottom: 16px;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 50px;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.highlight-card {
    background-color: var(--bg-white);
    padding: 40px 30px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.highlight-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent);
}

.highlight-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: rgba(15, 52, 43, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: var(--primary);
    transition: var(--transition);
}

.highlight-card:hover .highlight-icon {
    background-color: var(--primary);
    color: var(--accent-light);
}

.highlight-card h3 {
    font-size: 1.35rem;
    margin-bottom: 12px;
}

.highlight-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
}

/* Showcase Section */
.showcase {
    background-color: var(--primary-dark);
    color: var(--bg-white);
}

.showcase h2 {
    color: var(--bg-white);
}

.showcase-wrapper {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.elevation-img-container {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--shadow-lg);
}

.elevation-img-container img {
    width: 100%;
    transition: var(--transition);
}

.elevation-img-container:hover img {
    transform: scale(1.03);
}

.elevation-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 52, 43, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.elevation-img-container:hover final-overlay,
.elevation-img-container:hover .elevation-overlay {
    opacity: 1;
}

.zoom-btn {
    background-color: var(--bg-white);
    color: var(--primary-dark);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    font-size: 1.2rem;
}

.showcase-content h3 {
    color: var(--accent-light);
    font-size: 2rem;
    margin-bottom: 20px;
}

.showcase-content p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
}

.feature-list {
    list-style: none;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.9);
}

.feature-list li svg {
    color: var(--accent-light);
    flex-shrink: 0;
}

/* Pricing and Configurations */
.pricing-section {
    background-color: var(--bg-light);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.pricing-card {
    background-color: var(--bg-white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: var(--transition);
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent);
}

.pricing-card.featured::before {
    content: 'POPULAR';
    position: absolute;
    top: 15px;
    right: -30px;
    background-color: var(--accent);
    color: var(--primary-dark);
    font-weight: 800;
    font-size: 0.75rem;
    padding: 6px 30px;
    transform: rotate(45deg);
}

.pricing-header {
    background-color: var(--primary-dark);
    color: var(--bg-white);
    padding: 30px;
    text-align: center;
}

.pricing-header h3 {
    color: var(--bg-white);
    font-size: 1.8rem;
    margin-bottom: 8px;
}

.pricing-header .area {
    color: var(--accent-light);
    font-weight: 700;
    font-size: 1.1rem;
}

.pricing-body {
    padding: 40px 30px;
}

.price-tag {
    text-align: center;
    margin-bottom: 30px;
}

.price-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.price-value {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-dark);
}

.pricing-specs {
    list-style: none;
    margin-bottom: 35px;
}

.pricing-specs li {
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    font-size: 0.95rem;
}

.pricing-specs li span:first-child {
    color: var(--text-muted);
}

.pricing-specs li span:last-child {
    font-weight: 700;
    color: var(--primary-dark);
}

.pricing-card .btn {
    width: 100%;
}

/* Amenities Section */
.amenities {
    background-color: var(--bg-white);
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 50px;
}

.amenity-card {
    background-color: var(--bg-light);
    padding: 30px 20px;
    border-radius: var(--radius-md);
    text-align: center;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.amenity-card:hover {
    background-color: var(--primary-dark);
    color: var(--bg-white);
    border-color: var(--primary-dark);
}

.amenity-card:hover h4 {
    color: var(--bg-white);
}

.amenity-icon {
    font-size: 2.2rem;
    color: var(--accent);
    margin-bottom: 16px;
}

.amenity-card h4 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--primary-dark);
}

/* Location Section */
.location-section {
    background-color: var(--bg-light);
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.map-container {
    height: 480px;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.location-info h3 {
    font-size: 2rem;
    margin-bottom: 24px;
}

.schools-hospitals-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 35px;
}

.places-list h4 {
    font-size: 1.15rem;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-dark);
}

.places-list h4 svg {
    color: var(--accent);
}

.places-list ul {
    list-style: none;
}

.places-list ul li {
    font-size: 0.95rem;
    margin-bottom: 12px;
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 8px;
}

.places-list ul li::before {
    content: '•';
    color: var(--accent);
    font-size: 1.2rem;
}

/* Form Section */
.contact-section {
    background-color: var(--primary-dark);
    color: var(--bg-white);
    position: relative;
}

.contact-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 80% 20%, rgba(197, 160, 89, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.contact-info h2 {
    color: var(--bg-white);
    font-size: 2.8rem;
    margin-bottom: 20px;
}

.contact-info p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-detail-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.contact-detail-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-light);
    font-size: 1.2rem;
}

.contact-detail-text h4 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-detail-text p {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.contact-form-card {
    background-color: var(--bg-white);
    color: var(--text-main);
    padding: 50px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
}

.contact-form-card h3 {
    font-size: 1.8rem;
    margin-bottom: 8px;
}

.contact-form-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 30px;
}

.contact-form-card .form-group label {
    color: var(--primary-dark);
}

.contact-form-card .form-group input,
.contact-form-card .form-group select,
.contact-form-card .form-group textarea {
    background-color: var(--bg-light);
    border: 1px solid var(--border-color);
    color: var(--text-main);
}

.contact-form-card .form-group input:focus,
.contact-form-card .form-group select:focus,
.contact-form-card .form-group textarea:focus {
    border-color: var(--primary);
    background-color: var(--bg-white);
}

.contact-form-card .btn {
    width: 100%;
}

/* Floating Actions */
.floating-actions {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 999;
}

.floating-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-white);
    box-shadow: var(--shadow-lg);
    font-size: 1.6rem;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.floating-btn:hover {
    transform: scale(1.1);
}

.floating-whatsapp {
    background-color: #25d366;
}

.floating-call {
    background-color: var(--primary);
}

.floating-enquiry {
    background-color: var(--accent);
    color: var(--primary-dark);
    border-radius: 30px;
    width: auto;
    height: 50px;
    padding: 0 24px;
    font-size: 0.95rem;
    font-weight: 700;
    gap: 8px;
    display: flex;
    align-items: center;
}

/* Lightbox Modal */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(7, 30, 25, 0.95);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
}

.modal.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-content-wrapper {
    position: relative;
    max-width: 90%;
    max-height: 85%;
}

.modal-img {
    max-width: 100%;
    max-height: 80vh;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-lg);
    object-fit: contain;
}

.modal-close {
    position: absolute;
    top: -45px;
    right: 0;
    background: none;
    border: none;
    color: var(--bg-white);
    font-size: 2rem;
    cursor: pointer;
    transition: var(--transition);
}

.modal-close:hover {
    color: var(--accent);
}

/* Dialog success message */
.dialog-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(7, 30, 25, 0.8);
    z-index: 2001;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
}

.dialog-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.dialog-box {
    background-color: var(--bg-white);
    padding: 50px 40px;
    border-radius: var(--radius-md);
    text-align: center;
    max-width: 450px;
    width: 90%;
    box-shadow: var(--shadow-lg);
    transform: translateY(20px);
    transition: var(--transition);
}

.dialog-overlay.active .dialog-box {
    transform: translateY(0);
}

.dialog-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: rgba(197, 160, 89, 0.15);
    color: var(--accent-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    margin: 0 auto 24px;
}

.dialog-box h3 {
    font-size: 1.8rem;
    margin-bottom: 12px;
}

.dialog-box p {
    color: var(--text-muted);
    margin-bottom: 24px;
}

/* Footer */
footer {
    background-color: var(--primary-dark);
    color: rgba(255, 255, 255, 0.7);
    padding: 60px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr;
    gap: 50px;
    margin-bottom: 40px;
}

.footer-logo img {
    height: 55px;
    margin-bottom: 20px;
}

.footer-about p {
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-links h4, .footer-contact h4 {
    color: var(--bg-white);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.1rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a:hover {
    color: var(--accent-light);
    padding-left: 5px;
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
    font-size: 0.95rem;
}

.footer-contact p svg {
    color: var(--accent-light);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    flex-wrap: wrap;
    gap: 20px;
}

/* Responsiveness */
@media (max-width: 1024px) {
    .hero-content h1 {
        font-size: 3.2rem;
    }
    .hero .container {
        grid-template-columns: 1fr 1fr;
    }
    .amenities-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 900px) {
    .section-padding {
        padding: 70px 0;
    }
    .section-title {
        font-size: 2.2rem;
    }
    .hero .container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .hero-bg-img {
        width: 100%;
        opacity: 0.3;
    }
    .showcase-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }
    .location-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .nav-links {
        display: none;
    }
    .menu-toggle {
        display: block;
    }
    .nav-cta {
        display: none;
    }
}

@media (max-width: 600px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    .amenities-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .contact-form-card {
        padding: 30px 20px;
    }
    .schools-hospitals-grid {
        grid-template-columns: 1fr;
    }
}
