/* Global styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

:root {
    --primary-red: #E31837;
    --dark-red: #B31329;
    --white: #ffffff;
    --black: #333333;
}

/* Header styles */
.header {
    position: fixed;
    width: 100%;
    padding: 15px 50px;
    transition: all 0.3s ease;
    z-index: 1000;
    background: transparent;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    height: 35px;
    width: auto;
}

.header.scrolled .logo {
    filter: none;
}

.nav-links {
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--white);
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s ease;
    position: relative;
}

.header.scrolled .nav-links a {
    color: white;
}

.nav-links a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--primary-red);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary-red);
}

.nav-links a:hover:after {
    width: 100%;
}

/* Dropdown styles */
/*.dropdown {*/
/*    position: relative;*/
/*    display: inline-block;*/
/*}*/

/*.dropdown-toggle {*/
/*    cursor: pointer;*/
/*    padding-right: 20px;*/
/*}*/

/*.dropdown-toggle::after {*/
/*    content: '▼';*/
/*    font-size: 10px;*/
/*    margin-left: 5px;*/
/*    position: absolute;*/
/*    top: 50%;*/
/*    transform: translateY(-50%);*/
/*}*/

/*.dropdown-menu {*/
/*    position: absolute;*/
/*    top: 100%;*/
/*    left: 0;*/
/*    background: var(--white);*/
/*    min-width: 180px;*/
/*    border-radius: 5px;*/
/*    padding: 10px 0;*/
/*    margin-top: 10px;*/
/*    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);*/
/*    opacity: 0;*/
/*    visibility: hidden;*/
/*    transform: translateY(-10px);*/
/*    transition: all 0.3s ease;*/
/*}*/

/*.dropdown:hover .dropdown-menu {*/
/*    opacity: 1;*/
/*    visibility: visible;*/
/*    transform: translateY(0);*/
/*}*/

/*.dropdown-menu a {*/
/*    display: block;*/
/*    padding: 8px 20px;*/
/*    color: var(--black) !important;*/
/*    font-size: 14px;*/
/*}*/

/*.dropdown-menu a:hover {*/
/*    background: rgba(227, 24, 55, 0.1);*/
/*}*/
.dropdown {
    position: relative;
    display: inline-block;
}

/* Main link (toggle) */
.dropdown-toggle {
    cursor: pointer;
    padding: 10px 25px 10px 10px;
    color: var(--black);
    text-decoration: none;
    font-weight: 600;
    position: relative;
    display: inline-block;
}

/* ▼ arrow */
.dropdown-toggle::after {
    content: '▼';
    font-size: 10px;
    margin-left: 6px;
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    transition: transform 0.3s ease;
}

/* Dropdown menu (hidden by default) */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 180px;
    border-radius: 6px;
    padding: 10px 0;
    margin-top: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 10;
}

/* Show menu on hover */
.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Rotate arrow when dropdown visible */
.dropdown:hover .dropdown-toggle::after {
    transform: translateY(-50%) rotate(180deg);
}

/* Menu links */
.dropdown-menu a {
    display: block;
    padding: 10px 20px;
    color: var(--black) !important;
    font-size: 14px;
    text-decoration: none;
    transition: background 0.3s ease;
}

/* Hover effect */
.dropdown-menu a:hover {
    background: rgba(227, 24, 55, 0.1);
}


.contact-btn {
    background: var(--primary-red);
    color: var(--white);
    padding: 12px 24px;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    font-weight: 500;
    transition: background 0.3s ease;
}

.contact-btn:hover {
    background: var(--dark-red);
}

/* Hero section and carousel styles */
.hero {
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.carousel {
    height: 100%;
    width: 100%;
    position: relative;
}

.carousel-inner {
    height: 100%;
    width: 100%;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: scale(1.1);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-slide.active {
    opacity: 1;
    transform: scale(1);
}

.carousel-slide img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 50px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    height: 100vh;
}

.hero-text {
    max-width: 650px;
    text-align: left;
    color: var(--white);
    transform: translateY(30px);
    opacity: 0;
    transition: all 0.8s ease 0.3s;
}

.carousel-slide.active .hero-text {
    transform: translateY(0);
    opacity: 1;
}

.hero-text h1 {
    font-size: 60px;
    margin-bottom: 20px;
    font-weight: 600;
}

.hero-text p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
    line-height: 1.6;
}

/* Contact Form Styles */
.hero-form {
    position: absolute;
    top: 57%;
    right: calc((100% - 1400px) / 2 + 50px);
    transform: translateY(-50%);
    width: 400px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 10px;
    z-index: 10;
}

.desktop-form {
    animation: fadeIn 0.8s ease forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translate(30px, -50%);
    }
    to {
        opacity: 1;
        transform: translate(0, -50%);
    }
}

/* Base form styles */
.contact-form h3 {
    color: var(--white);
    font-size: 24px;
    margin-bottom: 20px;
    text-align: center;
}

.form-group {
    margin-bottom: 15px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-size: 14px;
    transition: all 0.3s ease;
}

.form-group textarea {
    height: 100px;
    resize: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-red);
    background: rgba(255, 255, 255, 0.15);
}

.submit-btn {
    width: 100%;
    padding: 12px;
    background: var(--primary-red);
    color: var(--white);
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s ease;
}

.submit-btn:hover {
    background: var(--dark-red);
}

/* Mobile Contact Section */
.mobile-contact-section {
    display: none;
    padding: 60px 20px;
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--dark-red) 100%);
}

.container {
    max-width: 1400px;
    margin: 0 auto;
}

.mobile-form {
    position: static;
    transform: none;
    max-width: 500px;
    margin: 0 auto;
    background: var(--white);
    animation: none;
}

.mobile-form .contact-form h3 {
    color: var(--primary-red);
}

.mobile-form .form-group input,
.mobile-form .form-group textarea {
    border: 1px solid rgba(0, 0, 0, 0.1);
    background: var(--white);
    color: var(--black);
}

.mobile-form .form-group input::placeholder,
.mobile-form .form-group textarea::placeholder {
    color: rgba(0, 0, 0, 0.5);
}

.mobile-form .form-group input:focus,
.mobile-form .form-group textarea:focus {
    background: var(--white);
    box-shadow: 0 0 0 2px rgba(227, 24, 55, 0.1);
}

     /* Properties Section */
        .properties-section {
            padding: 80px 0;
            background: #f8f9fa;
        }

        .properties-section + .properties-section {
            padding-top: 0;
        }

        .section-title {
            text-align: center;
            color: var(--black);
            font-size: 36px;
            font-weight: 600;
            margin-bottom: 50px;
            position: relative;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 3px;
            background: var(--primary-red);
        }

        .property-slider {
            overflow: hidden;
            position: relative;
            padding: 0 20px;
        }

        .property-grid {
            display: flex;
            flex-wrap: nowrap;
            gap: 20px;
            transition: transform 0.3s ease;
            cursor: grab;
            user-select: none;
            will-change: transform;
        }

        .property-grid.dragging {
            cursor: grabbing;
            transition: none;
        }

        .property-card {
            flex: 0 0 300px;
            background: var(--white);
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
        }

        .property-card:hover {
            transform: translateY(-5px);
        }

        .property-image {
            position: relative;
            height: 180px;
            overflow: hidden;
        }

        .property-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .property-card:hover .property-image img {
            transform: scale(1.1);
        }

        .property-badge {
            position: absolute;
            top: 15px;
            right: 15px;
            background: var(--primary-red);
            color: var(--white);
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 500;
        }

        .property-content {
            padding: 15px;
        }

        .property-content h3 a {
    color: var(--black);
    font-size: 18px;
    margin-bottom: 8px;
    line-height: 1.3;
    text-decoration: none; /* 🔹 removes underline */
     }

     .property-content h3 a:hover {
      color: var(--red); /* keeps text black on hover */
    text-decoration: none; /* ensures underline stays removed */
}

        .location {
            color: #666;
            font-size: 13px;
            margin-bottom: 12px;
        }

        .view-details-btn, 
        .enquiry-btn {
            width: 100%;
            padding: 8px;
            border: none;
            border-radius: 5px;
            font-size: 14px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .view-details-btn {
            background: transparent;
            border: 1px solid var(--primary-red);
            color: var(--primary-red);
            margin-bottom: 8px;
        }

        .view-details-btn:hover {
            background: rgba(227, 24, 55, 0.1);
        }

        .enquiry-btn {
            background: var(--primary-red);
            color: var(--white);
        }

        .enquiry-btn:hover {
            background: var(--dark-red);
        }

        .slider-controls {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 20px;
        }

        .slider-btn {
            background: var(--primary-red);
            color: var(--white);
            border: none;
            padding: 10px 20px;
            border-radius: 5px;
            cursor: pointer;
            font-size: 14px;
            transition: background 0.3s ease;
        }

        .slider-btn:hover {
            background: var(--dark-red);
        }

        .slider-btn:disabled {
            background: #ccc;
            cursor: not-allowed;
        }

        /* Modal Styles */
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            z-index: 1000;
            align-items: center;
            justify-content: center;
        }

        .modal-content {
            background: var(--white);
            border-radius: 10px;
            max-width: 600px;
            width: 90%;
            max-height: 80vh;
            overflow-y: auto;
            position: relative;
        }

        .close-modal {
            position: absolute;
            top: 10px;
            right: 15px;
            font-size: 24px;
            cursor: pointer;
            color: var(--black);
        }

        .modal-body {
            padding: 20px;
        }

        .property-details h3 {
            color: var(--black);
            font-size: 24px;
            margin-bottom: 15px;
        }

        .property-details p {
            color: #666;
            font-size: 14px;
            margin-bottom: 10px;
        }

        .property-details ul {
            list-style-type: disc;
            padding-left: 20px;
            margin-bottom: 15px;
        }

        .property-details ul li {
            color: #666;
            font-size: 14px;
            margin-bottom: 5px;
        }

        /* Responsive design */
        @media (max-width: 1200px) {
            .property-card {
                flex: 0 0 280px;
            }
        }

        @media (max-width: 768px) {
            .property-card {
                flex: 0 0 250px;
            }

            .property-image {
                height: 160px;
            }

            .property-content {
                padding: 20px;
            }

            .view-details-btn, 
            .enquiry-btn {
                padding: 10px;
                font-size: 15px;
            }
        }

        @media (max-width: 480px) {
            .property-card {
                flex: 0 0 220px;
            }

            .property-image {
                height: 140px;
            }
        }
        
        .exotica img{
            height: 50vh;
        }

        /* CSS Variables */
        :root {
            --black: #333;
            --white: #fff;
            --primary-red: #e31837;
            --dark-red: #c1122f;
        }
/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    overflow-y: auto;
}

.modal-content {
    position: relative;
    background: var(--white);
    width: 90%;
    max-width: 800px;
    margin: 50px auto;
    border-radius: 10px;
    padding: 30px;
}

.close-modal {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 28px;
    color: #666;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close-modal:hover {
    color: var(--primary-red);
}

.property-details h2 {
    color: var(--black);
    font-size: 28px;
    margin-bottom: 20px;
}

.property-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.info-item {
    padding: 15px;
    background: #f8f9fa;
    border-radius: 5px;
}

.info-item .label {
    color: #666;
    font-size: 14px;
    display: block;
    margin-bottom: 5px;
}

.info-item .value {
    color: var(--black);
    font-size: 16px;
    font-weight: 500;
}

.property-description,
.property-amenities {
    margin-bottom: 30px;
}

.property-description h3,
.property-amenities h3 {
    color: var(--black);
    font-size: 20px;
    margin-bottom: 15px;
}

.property-description p {
    color: #666;
    line-height: 1.6;
}

.property-amenities ul {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
    list-style: none;
}

.property-amenities li {
    color: #666;
    padding-left: 25px;
    position: relative;
}

.property-amenities li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-red);
    font-weight: bold;
}

.modal-enquiry {
    max-width: 200px;
    margin: 0 auto;
    display: block;
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 100px 0;
    background: var(--black);
    color: var(--white);
}

.why-choose-us .section-title {
    color: var(--white);
}

.why-choose-us .feature-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.why-choose-us .feature-card h3 {
    color: var(--white);
}

.why-choose-us .feature-card p {
    color: rgba(255, 255, 255, 0.7);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature-card {
    padding: 30px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(227, 24, 55, 0.1);
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(227, 24, 55, 0.1);
    border-radius: 50%;
    color: var(--primary-red);
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    background: var(--primary-red);
    color: var(--white);
}

.feature-icon svg {
    width: 30px;
    height: 30px;
    stroke: currentColor;
}

.feature-card h3 {
    color: var(--black);
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: 600;
}

.feature-card p {
    color: #666;
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 768px) {
    .why-choose-us {
        padding: 60px 0;
    }

    .features-grid {
        gap: 20px;
        margin-top: 30px;
    }

    .feature-card {
        padding: 25px;
    }

    .feature-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 15px;
    }

    .feature-icon svg {
        width: 24px;
        height: 24px;
    }

    .feature-card h3 {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .feature-card p {
        font-size: 14px;
    }
}

/* Responsive design */
@media (max-width: 1400px) {
    .hero-form {
        right: 50px;
    }
}

@media (max-width: 1200px) {
    .hero-content {
        padding: 0 30px;
    }

    .hero-text h1 {
        font-size: 40px;
    }

    .hero-form {
        width: 350px;
        right: 30px;
    }
}

@media (max-width: 768px) {
    .header {
        padding: 15px 20px;
        background: rgba(255, 255, 255, 0.95);
    }
    
    .nav-links {
        display: none;
    }
    
    .logo {
        filter: none;
    }
    
    .hero-content {
        padding: 20px;
        text-align: center;
        justify-content: center;
    }

    .hero-text {
        text-align: center;
        max-width: 100%;
    }
    
    .hero-text h1 {
        font-size: 32px;
    }
    
    .hero-text p {
        font-size: 16px;
    }

    .desktop-form {
        display: none;
    }

    .mobile-contact-section {
        display: block;
        margin-top: -20px;
        position: relative;
        z-index: 20;
    }

    .mobile-form {
        width: 100%;
        box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
        border-radius: 20px 20px 0 0;
        padding: 30px 20px;
    }
}

@media (max-width: 768px) {
    .properties-section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .property-grid {
        gap: 20px;
        padding: 0 15px;
    }

    .modal-content {
        margin: 20px auto;
        padding: 20px;
    }

    .property-info {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .property-amenities ul {
        grid-template-columns: 1fr;
    }
}

/* Blog Section */
.blog-section {
    padding: 100px 0;
    background: var(--white);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.blog-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
}

.blog-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-date {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary-red);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
}

.blog-content {
    padding: 25px;
}

.blog-content h3 {
    color: var(--black);
    font-size: 20px;
    margin-bottom: 15px;
    line-height: 1.4;
}

.blog-content p {
    color: #666;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.read-more {
    color: var(--primary-red);
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: var(--dark-red);
}

.read-more::after {
    content: '→';
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.read-more:hover::after {
    transform: translateX(5px);
}

/* Testimonials Section */
.testimonials-section {
    padding: 100px 0;
    background: url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?w=1920&q=80') center/cover fixed;
    position: relative;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
}

.testimonials-section .container {
    position: relative;
    z-index: 2;
}

.testimonials-section .section-title {
    color: var(--white);
}

.testimonials-slider {
    position: relative;
    max-width: 800px;
    margin: 50px auto 0;
    overflow: hidden;
}

.testimonials-track {
    display: flex;
    transition: transform 0.5s ease;
}

.testimonial-slide {
    flex: 0 0 100%;
    width: 100%;
    padding: 0 20px;
}

.testimonial-content {
    background: rgba(255, 255, 255, 0.95);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.quote-icon {
    color: var(--primary-red);
    font-size: 48px;
    line-height: 1;
    margin-bottom: 20px;
    opacity: 0.2;
}

.testimonial-content p {
    color: var(--black);
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 25px;
    font-style: italic;
}

.client-info {
    margin-top: 20px;
}

.client-name {
    color: var(--black);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
}

.client-role {
    color: #666;
    font-size: 14px;
}

.slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
    gap: 20px;
}

.slider-btn {
    background: transparent;
    border: 2px solid var(--primary-red);
    color: var(--primary-red);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.slider-btn:hover {
    background: var(--primary-red);
    color: var(--white);
}

.slider-dots {
    display: flex;
    gap: 10px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--primary-red);
    transform: scale(1.2);
}

@media (max-width: 768px) {
    .blog-section,
    .testimonials-section {
        padding: 60px 0;
    }

    .blog-grid {
        gap: 20px;
        margin-top: 30px;
    }

    .blog-content {
        padding: 20px;
    }

    .blog-content h3 {
        font-size: 18px;
    }

    .testimonial-content {
        padding: 30px 20px;
    }

    .testimonial-content p {
        font-size: 16px;
    }

    .slider-btn {
        width: 35px;
        height: 35px;
    }
}

/* Footer Styles */
.footer {
    background: var(--black);
    color: var(--white);
    padding-top: 80px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-brand {
    padding-right: 40px;
}

.footer-logo {
    color: var(--primary-red);
    font-size: 28px;
    margin-bottom: 20px;
}

.footer-brand p {
    color: #999;
    line-height: 1.6;
    margin-bottom: 25px;
}

.footer h3 {
    color: var(--white);
    font-size: 18px;
    margin-bottom: 25px;
    position: relative;
}

.footer h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 30px;
    height: 2px;
    background: var(--primary-red);
}

.footer-links ul,
.footer-contact ul {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: #999;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-red);
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    color: #999;
}

.footer-contact svg {
    flex-shrink: 0;
    stroke: var(--primary-red);
    margin-top: 3px;
}
.social-links {
    display: flex;
    flex-direction: row; /* Explicitly set to row */
    gap: 15px;
    flex-wrap: nowrap; /* Prevent wrapping to next line */
    justify-content: flex-start; /* Align items horizontally from start */
}
.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
}
.social-link svg {
    stroke: var(--white);
    transition: stroke 0.3s ease;
}
.social-link:hover {
    background: var(--primary-red);
}
.social-link:hover svg {
    stroke: var(--white);
}
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 25px 0;
    text-align: center;
}

.footer-bottom p {
    color: #666;
    font-size: 14px;
}

@media (max-width: 1200px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 60px;
    }

    .footer-brand {
        grid-column: 1 / -1;
        padding-right: 0;
    }
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer {
        padding-top: 60px;
    }

    .footer-content > div {
        padding-right: 0;
    }
}

/* About Hero Section (Shorter Banner) */
.about-hero {
    height: 50vh;
    position: relative;
    overflow: hidden;
}

.about-hero .carousel {
    height: 100%;
    width: 100%;
    position: relative;
}

.about-hero .carousel-inner {
    height: 100%;
    width: 100%;
}

.about-hero .carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: scale(1.1);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-hero .carousel-slide.active {
    opacity: 1;
    transform: scale(1);
}

.about-hero .carousel-slide img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-hero .carousel-slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
}

.about-hero .hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 50px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    height: 50vh;
}

.about-hero .hero-text {
    max-width: 600px;
    text-align: left;
    color: var(--white);
    transform: translateY(30px);
    opacity: 0;
    transition: all 0.8s ease 0.3s;
}

.about-hero .carousel-slide.active .hero-text {
    transform: translateY(0);
    opacity: 1;
}

.about-hero .hero-text h1 {
    font-size: 36px;
    margin-bottom: 15px;
    font-weight: 600;
}

.about-hero .hero-text p {
    font-size: 16px;
    opacity: 0.9;
    line-height: 1.6;
}

/* About Section */
.about-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.about-text p {
    color: #666;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

/* Services Section */
.services-section {
    padding: 80px 0;
    background: #fff;
}

.services-list {
    max-width: 800px;
    margin: 0 auto;
}

.service-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    padding-left: 20px;
    position: relative;
}

.service-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 5px;
    width: 5px;
    height: 100%;
    background: var(--primary-red);
}

.service-number {
    font-size: 24px;
    font-weight: 600;
    color: var(--primary-red);
    margin-right: 20px;
    line-height: 1;
}

.service-content h3 {
    font-size: 20px;
    color: var(--black);
    margin-bottom: 10px;
    font-weight: 600;
}

.service-content p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

/* Why Choose Us Section (Smaller Cards in One Row) */
.why-choose-us .why-choose-grid {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 50px;
}

.why-choose-item {
    flex: 1;
    text-align: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
}

.why-choose-item:hover {
    transform: translateY(-5px);
}

.why-choose-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(227, 24, 55, 0.1);
    border-radius: 50%;
    color: var(--primary-red);
    transition: all 0.3s ease;
}

.why-choose-item:hover .why-choose-icon {
    background: var(--primary-red);
    color: var(--white);
}

.why-choose-icon svg {
    width: 24px;
    height: 24px;
    stroke: currentColor;
}

.why-choose-item h3 {
    font-size: 16px;
    color: var(--white);
    margin-bottom: 10px;
    font-weight: 600;
}

.why-choose-item p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .why-choose-us .why-choose-grid {
        flex-wrap: wrap;
        justify-content: center;
    }

    .why-choose-item {
        flex: 0 0 30%;
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .about-hero {
        height: 40vh;
    }

    .about-hero .hero-content {
        height: 40vh;
        padding: 20px;
        justify-content: center;
        text-align: center;
    }

    .about-hero .hero-text h1 {
        font-size: 28px;
    }

    .about-hero .hero-text p {
        font-size: 14px;
    }

    .about-section,
    .services-section {
        padding: 60px 0;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-text p {
        font-size: 15px;
    }

    .service-item {
        flex-direction: column;
        padding-left: 0;
    }

    .service-item::before {
        display: none;
    }

    .service-number {
        margin-bottom: 10px;
    }

    .why-choose-us .why-choose-grid {
        flex-direction: column;
        gap: 15px;
    }

    .why-choose-item {
        padding: 15px;
    }

    .why-choose-item h3 {
        font-size: 15px;
    }

    .why-choose-item p {
        font-size: 12px;
    }
}

/* contact us  */
/* Contact Section */
.contact-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.contact-form-container {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

/* Contact Us Form (Separate from Homepage) */
.contact-us-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-us-form h3 {
    color: var(--black);
    font-size: 24px;
    margin-bottom: 10px;
    text-align: center;
    font-weight: 600;
}

.contact-us-form .form-group {
    position: relative;
}

.contact-us-form .form-group input,
.contact-us-form .form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 15px;
    color: var(--black);
    background: #fff;
    outline: none;
    transition: border-color 0.3s ease;
}

.contact-us-form .form-group input {
    height: 45px;
}

.contact-us-form .form-group textarea {
    height: 120px;
    resize: vertical;
}

.contact-us-form .form-group input::placeholder,
.contact-us-form .form-group textarea::placeholder {
    color: #999;
    opacity: 1;
}

.contact-us-form .form-group input:focus,
.contact-us-form .form-group textarea:focus {
    border-color: var(--primary-red);
    box-shadow: 0 0 5px rgba(227, 24, 55, 0.2);
}

.contact-us-form .submit-btn {
    background: var(--primary-red);
    color: var(--white);
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s ease;
    align-self: center;
}

.contact-us-form .submit-btn:hover {
    background: var(--dark-red);
}

/* Contact Info */
.contact-info {
    padding: 40px;
    text-align: right;
}

.contact-info h3 {
    color: var(--black);
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
}

.contact-info h3::after {
    content: '';
    position: absolute;
    right: 0;
    bottom: -10px;
    width: 40px;
    height: 3px;
    background: var(--primary-red);
}

.contact-info ul {
    list-style: none;
    padding: 0;
    margin-bottom: 40px;
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    gap: 20px;
    margin-bottom: 25px;
    color: #333;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.6;
}

.contact-info svg {
    flex-shrink: 0;
    stroke: var(--primary-red);
    margin-top: 3px;
}

/* Reuse social-links from footer */
.contact-info .social-links {
    display: flex;
    gap: 20px;
    justify-content: flex-end;
}

.contact-info .social-link {
    background: rgb(199 0 30 / 60%);
    width: 40px;
    height: 40px;
}

.contact-info .social-link svg {
    stroke: var(--primary-red);
}

.contact-info .social-link:hover {
    background: var(--primary-red);
}

.contact-info .social-link:hover svg {
    stroke: var(--white);
}

/* Map Section */
.map-section {
    padding: 0;
    margin: 0;
}

.map-section iframe {
    width: 100%;
    height: 400px;
    border: none;
    display: block;
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-section {
        padding: 60px 0;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contact-form-container {
        padding: 20px;
    }

    .contact-us-form h3 {
        font-size: 20px;
    }

    .contact-us-form .form-group input,
    .contact-us-form .form-group textarea {
        font-size: 14px;
    }

    .contact-us-form .submit-btn {
        font-size: 14px;
        padding: 10px 25px;
    }

    .contact-info {
        padding: 20px;
        text-align: center;
    }

    .contact-info h3 {
        font-size: 24px;
    }

    .contact-info h3::after {
        left: 50%;
        transform: translateX(-50%);
        right: auto;
    }

    .contact-info li {
        font-size: 16px;
        justify-content: center;
    }

    .contact-info .social-links {
        justify-content: center;
    }

    .map-section iframe {
        height: 300px;
    }
}

/* navigation */
/* Header and Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: transparent; /* Default transparent */
    z-index: 1000;
    transition: background 0.3s ease;
}

.header.scrolled {
    background: rgb(21 18 18 / 95%); /* White on scroll */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
    padding: 15px 50px; /* Reduced padding to control height */
    height: 60px; /* Fixed height to match typical design */
}

.logo {
    height: 60px;
    width: auto;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 25px; /* Slightly reduced gap */
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: white;
    
}

.dropdown {
    position: relative;
}

.dropdown-toggle {
    cursor: pointer;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    padding: 10px 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    min-width: 150px;
}

.dropdown-menu a {
    display: block;
    padding: 8px 20px;
    color: var(--black);
    font-size: 14px;
}

.dropdown-menu a:hover {
    background: rgba(227, 24, 55, 0.1);
    color: var(--primary-red);
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.contact-btn {
    background: var(--primary-red);
    color: var(--white);
    padding: 8px 20px; /* Adjusted padding */
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s ease;
}

.contact-btn:hover {
    background: var(--dark-red);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    width: 30px;
    height: 20px;
    justify-content: center;
}

.hamburger span {
    width: 100%;
    height: 3px;
    background: #ce1631;
    transition: all 0.3s ease;
}

.nav-links.active {
    transform: translateX(0);
}

/* Responsive Design */
@media (max-width: 768px) {L
    .hamburger {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 60px; /* Matches header height */
        right: 0;
        width: 250px;
        height: calc(100vh - 60px); /* Adjust for header height */
        background:#161616ba;
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
        transform: translateX(100%);
        transition: transform 0.3s ease;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    }

    .nav-links a {
        width: 100%;
        padding: 10px 0;
        font-size: 18px;
    }

    .dropdown {
        width: 100%;
    }

    .dropdown-toggle {
        width: 100%;
        padding: 10px 0;
    }

    .dropdown-menu {
        position: static;
        width: 100%;
        box-shadow: none;
        padding: 0;
        display: none;
    }

    .dropdown.active .dropdown-menu {
        display: block;
    }

    .dropdown-menu a {
        padding: 8px 20px;
        font-size: 16px;
    }

    .contact-btn {
        width: 100%;
        padding: 12px;
        text-align: center;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
}


/* Header */
.header {
    background: #16161600; /* Assuming dark header */
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

/* Nav Container */
.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /*max-width: 1200px;*/
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hamburger Menu (Your Existing CSS) */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    width: 30px;
    height: 20px;
    justify-content: center;
}

.hamburger span {
    width: 100%;
    height: 3px;
    background: #ce1631; /* Red lines */
    transition: all 0.3s ease;
}

/* Media Query */
@media (max-width: 768px) {
    .hamburger {
        display: flex !important; /* Force visibility */
    }
    .nav-links {
        position: fixed;
        top: 60px;
        right: 0;
        width: 250px;
        height: calc(100vh - 60px);
        background: #161616ba;
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
        transform: translateX(100%);
        transition: transform 0.3s ease;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    }
    .nav-links.active {
        transform: translateX(0);
    }
}
/* blog */
/* Blog Section */
.blog-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.blog-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.blog-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-content {
    padding: 20px;
}

.blog-content h3 {
    font-size: 20px;
    color: var(--black);
    margin-bottom: 10px;
    font-weight: 600;
}

.blog-content p {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
    line-height: 1.6;
}

.read-more {
    display: inline-block;
    color: var(--primary-red);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: var(--dark-red);
}

/* Responsive Design */
@media (max-width: 768px) {
    .blog-section {
        padding: 60px 0;
    }

    .blog-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .blog-card img {
        height: 180px;
    }

    .blog-content h3 {
        font-size: 18px;
    }

    .blog-content p {
        font-size: 13px;
    }
}

.hero-text h1 {
    font-size: 60px;
    color: #fff;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero-text p {
    font-size: 18px;
    color: #fff;
    font-weight: 400;
}

/* Add this new class for the red highlight */
.hero-text .highlight {
    color: #E31837; /* Theme red color */
    /*margin-left: 5rem;*/
}

html {
    scroll-behavior: smooth;
}

.scroll-reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.scroll-reveal.active {
    opacity: 1;
    transform: translateY(0);
}



/* Enquiry Modal Specific Styling */
#enquiryModal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Dark overlay */
    z-index: 1000;
    overflow: auto;
}

#enquiryModal .modal-content {
    background-color: #ffffff; /* White background */
    margin: 5% auto;
    padding: 20px;
    border-radius: 8px;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    position: relative;
}

#enquiryModal .close-modal {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 28px;
    font-weight: bold;
    color: #333333; /* Dark gray for visibility */
    cursor: pointer;
}

#enquiryModal .close-modal:hover {
    color: #ff0000; /* Red on hover */
}

/* Enquiry Form Specific Styling */
#enquiryModal .enquiry-form {
    color: #333333; /* Dark text */
    text-align: center;
}

#enquiryModal .enquiry-form h2 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #e31837; /* Blue heading */
}

#enquiryModal .enquiry-form p {
    font-size: 16px;
    margin-bottom: 20px;
    color: #555555; /* Medium gray */
}

#enquiryModal .enquiry-form #enquiryPropertyName {
    font-weight: bold;
    color: #e31837; /* Blue for property name */
}

/* Enquiry Form Inputs */
#enquiryModal .enquiry-form-group {
    margin-bottom: 15px;
}

#enquiryModal .enquiry-input,
#enquiryModal .enquiry-textarea {
    width: 100%;
    padding: 10px;
    font-size: 14px;
    border: 1px solid #cccccc;
    border-radius: 4px;
    color: #333333; /* Dark text for input values */
    background-color: #f9f9f9; /* Light gray background */
}

#enquiryModal .enquiry-textarea {
    height: 100px;
    resize: vertical;
}

/* Placeholder Styling */
#enquiryModal .enquiry-input::placeholder,
#enquiryModal .enquiry-textarea::placeholder {
    color: #888888; /* Medium gray for placeholders */
    opacity: 1; /* Full visibility */
}

#enquiryModal .enquiry-input:focus,
#enquiryModal .enquiry-textarea:focus {
    border-color: #007bff; /* Blue border on focus */
    outline: none;
    background-color: #ffffff; /* White background on focus */
}

#enquiryModal .enquiry-input:focus::placeholder,
#enquiryModal .enquiry-textarea:focus::placeholder {
    color: #bbbbbb; /* Lighter gray when focused */
}

/* Submit Button */
#enquiryModal .enquiry-submit-btn {
    background-color: #e31837; /* Blue button */
    color: #ffffff; /* White text */
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}

#enquiryModal .enquiry-submit-btn:hover {
    background-color: #0056b3; /* Darker blue on hover */
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    #enquiryModal .modal-content {
        width: 95%;
        margin: 10% auto;
    }
}


.reels-section {
    padding: 60px 0;
    background-color: #f8f8f8;
}

.video-reels-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.reel-video {
    width: 100%;
    max-width: 300px; /* Adjust as needed */
    height: 533px; /* Typical vertical video aspect ratio (9:16) */
    object-fit: cover;
    border-radius: 10px;
    border: none;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .reel-video {
        max-width: 45%;
        height: 400px;
    }
}

@media (max-width: 480px) {
    .reel-video {
        max-width: 100%;
        height: 500px;
    }
}

