/* Global Variables */
:root {
    --primary-color: #072333; /* Navy Blue */
    --secondary-color: #dba952; /* Warm Tan/Gold */
    --dark-neutral: #1c2120; /* Charcoal */
    --light-bg: #F9F9F9; /* Off-white */
    --text-color: #333;
    --white: #ffffff;
    --header-height: 90px;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    padding-top: var(--header-height);
    background-color: #fff;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    color: var(--dark-neutral);
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* Utility Classes */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 80px 0;
}

/* Mobile-First Responsive Padding */
@media (max-width: 768px) {
    .section {
        padding: 50px 0;
    }
}

@media (max-width: 480px) {
    .section {
        padding: 30px 0;
    }
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: var(--primary-color);
    position: relative;
    font-weight: 700;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
        margin-bottom: 35px;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 1.6rem;
        margin-bottom: 25px;
    }
}

.text-center { text-align: center; }
.mt-2 { margin-top: 2rem; }
.bg-light { background-color: var(--light-bg); }
.text-white { color: var(--white); }
.relative { position: relative; }
.z-10 { z-index: 10; }
.flex { display: flex; }
.flex-wrap { flex-wrap: wrap; }
.justify-between { justify-content: space-between; }
.items-center { align-items: center; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-20 { padding-top: 5rem; padding-bottom: 5rem; }

/* Buttons */
.btn-primary, .btn-secondary, .btn-quote, .btn-small-white {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .btn-primary, .btn-secondary, .btn-quote, .btn-small-white {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .btn-primary, .btn-secondary, .btn-quote, .btn-small-white {
        padding: 8px 16px;
        font-size: 0.8rem;
    }
}

.btn-primary {
    background: var(--primary-color);
    color: var(--white);
    border: 2px solid var(--primary-color);
}

.btn-primary:hover {
    background: transparent;
    color: var(--primary-color);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--white);
}

.btn-quote {
    background: var(--secondary-color);
    color: var(--dark-neutral);
    font-weight: 700;
}

.btn-quote:hover {
    background: #b5952f;
}

.btn-small-white {
    padding: 8px 20px;
    font-size: 0.9rem;
    background: transparent;
    border: 1px solid var(--white);
    color: var(--white);
}

.btn-small-white:hover {
    background: var(--white);
    color: var(--primary-color);
}

.btn-text {
    color: var(--primary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.btn-text:hover {
    gap: 10px;
}

/* Header */
.header {
    background: var(--white);
    height: var(--header-height);
    display: flex;
    align-items: center;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.nav {
    display: flex;
    align-items: center;
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

@media (max-width: 992px) {
    .nav-links {
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        gap: 15px;
    }
}

.nav-links a {
    color: var(--dark-neutral);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
}

@media (max-width: 768px) {
    .nav-links a {
        font-size: 0.8rem;
    }
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-color);
}

.btn-quote-mobile {
    display: none;
}

.hamburger {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
    color: var(--primary-color);
}

/* Hero Slider */
.hero-slider {
    height: 85vh;
    position: relative;
    overflow: hidden;
}

@media (max-width: 768px) {
    .hero-slider {
        height: 70vh;
    }
}

@media (max-width: 480px) {
    .hero-slider {
        height: 50vh;
    }
}

.slider-wrapper {
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.slide.active {
    opacity: 1;
}

/* Page Header (Inner Pages) */
.page-header {
    height: 40vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-size: cover !important;
    background-position: center !important;
}

@media (max-width: 768px) {
    .page-header {
        height: 30vh;
    }
}

@media (max-width: 480px) {
    .page-header {
        height: 25vh;
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: var(--white);
    text-shadow: 2px 2px 5px rgba(0,0,0,0.3);
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2rem;
        margin-bottom: 15px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.5rem;
        margin-bottom: 10px;
    }
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    color: #f0f0f0;
}

@media (max-width: 768px) {
    .hero-content p {
        font-size: 1rem;
        margin-bottom: 25px;
    }
}

@media (max-width: 480px) {
    .hero-content p {
        font-size: 0.85rem;
        margin-bottom: 15px;
    }
}

.prev-slide, .next-slide {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    color: white;
    border: none;
    padding: 15px;
    cursor: pointer;
    font-size: 1.5rem;
    z-index: 2;
    transition: background 0.3s;
}

.prev-slide { left: 20px; }
.next-slide { right: 20px; }

@media (max-width: 768px) {
    .prev-slide, .next-slide {
        padding: 10px;
        font-size: 1.2rem;
    }
    .prev-slide { left: 10px; }
    .next-slide { right: 10px; }
}

@media (max-width: 480px) {
    .prev-slide, .next-slide {
        padding: 8px;
        font-size: 1rem;
    }
    .prev-slide { left: 5px; }
    .next-slide { right: 5px; }
}

.prev-slide:hover, .next-slide:hover {
    background: var(--primary-color);
}

/* Quick Contact */
.quick-contact {
    background: var(--primary-color);
    margin-top: -5px; /* ensure no gap */
    padding: 20px 0;
    color: var(--white);
}

.qc-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: var(--white);
}

.qc-item a {
    color: var(--white);
}

@media (max-width: 768px) {
    .quick-contact {
        padding: 15px 0;
    }
    
    .qc-item {
        font-size: 0.85rem;
        flex: 1 1 100%;
        justify-content: flex-start;
        padding: 8px 0;
    }
}

@media (max-width: 480px) {
    .quick-contact {
        padding: 10px 0;
    }
    
    .qc-item {
        font-size: 0.8rem;
        width: 100%;
        padding: 6px 0;
    }
}

/* Why Choose Us */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

@media (max-width: 992px) {
    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .grid-3 {
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .grid-3 {
        gap: 15px;
    }
}

.feature-card {
    text-align: center;
    padding: 40px 30px;
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s;
    border-bottom: 3px solid transparent;
}

@media (max-width: 768px) {
    .feature-card {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .feature-card {
        padding: 20px 15px;
    }
}

.feature-card:hover {
    transform: translateY(-10px);
    border-bottom-color: var(--primary-color);
}

.feature-card i {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 25px;
}

.feature-card h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
}

/* About Home Grid */
.grid-2-about-home {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

@media (max-width: 768px) {
    .grid-2-about-home {
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .grid-2-about-home {
        gap: 20px;
    }
}

.about-text p {
    margin-bottom: 20px;
    color: #555;
    font-size: 1.05rem;
}

.section-title::after {
    margin: 15px 0 0; /* Reset for left align in about */
}

.why-us .section-title::after, .testimonials .section-title::after, .page-header + .section .section-title::after {
    margin: 15px auto 0; /* Center align for centered titles */
}

/* Projects Grid */
.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

@media (max-width: 768px) {
    .grid-2 {
        gap: 25px;
    }
}

@media (max-width: 480px) {
    .grid-2 {
        gap: 15px;
    }
}

.project-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: transform 0.3s;
}

.project-card:hover {
    transform: translateY(-5px);
}

.project-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

@media (max-width: 768px) {
    .project-card img {
        height: 250px;
    }
}

@media (max-width: 480px) {
    .project-card img {
        height: 200px;
    }
}

.card-content {
    padding: 25px;
}

@media (max-width: 768px) {
    .card-content {
        padding: 18px;
    }
}

@media (max-width: 480px) {
    .card-content {
        padding: 12px;
    }
}

.card-content h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.card-content .location {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.card-content .location i {
    color: var(--secondary-color);
}

/* Testimonials */
.testimonials {
    text-align: center;
}

.testimonial-card {
    background: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    position: relative;
}

@media (max-width: 768px) {
    .testimonial-card {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .testimonial-card {
        padding: 15px;
    }
}

.testimonial-card p {
    font-style: italic;
    color: #555;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.client-info h4 {
    color: var(--primary-color);
    font-size: 1rem;
    margin-bottom: 2px;
}

.client-info span {
    font-size: 0.85rem;
    color: #777;
}

/* Footer */
.footer {
    background: var(--dark-neutral);
    color: #ccc;
    padding: 70px 0 20px;
}

.footer-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 40px;
}

@media (max-width: 992px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 35px;
    }
}

@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }
}

.footer h3 {
    color: var(--white);
    margin-bottom: 25px;
    font-size: 1.2rem;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--secondary-color);
    display: inline-block;
}

@media (max-width: 768px) {
    .footer h3 {
        margin-top: 20px;
    }
    
    .footer-col:first-child h3 {
        margin-top: 0;
    }
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

.footer-col p {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding-right: 20px;
}

.footer-col img {
    display: block;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .footer-col p {
        justify-content: center;
    }
}

.footer-col p i {
    color: var(--secondary-color);
    margin-top: 5px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    width: 35px;
    height: 35px;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--white);
    transition: all 0.3s;
}

.social-links a:hover {
    background: var(--primary-color);
}

.copyright {
    text-align: center;
    padding-top: 25px;
    border-top: 1px solid rgba(255,255,255,0.05);
    font-size: 0.9rem;
}

/* About Page Specifics */
.grid-2-about {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.grid-2-mission {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.mission-box, .vision-box {
    background: var(--white);
    padding: 40px;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}

.mission-box:hover, .vision-box:hover {
    transform: translateY(-5px);
}

.mission-box i, .vision-box i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.mission-box h3, .vision-box h3 {
    margin-bottom: 15px;
}

/* Projects Page Specifics */
.grid-2-projects {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.wide-card img {
    height: 350px;
}

@media (max-width: 768px) {
    .wide-card img {
        height: 250px;
    }
}

@media (max-width: 480px) {
    .wide-card img {
        height: 200px;
    }
}

.project-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.badge {
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.badge.ongoing { background: #ffc107; color: #333; }
.badge.completed { background: #28a745; color: white; }
.badge.upcoming { background: #007bff; color: white; }

/* Project bullet points */
.project-bullets {
    list-style: none;
    padding: 0;
    margin: 15px 0 20px;
}

.project-bullets li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.95rem;
    color: #444;
    margin-bottom: 8px;
    line-height: 1.5;
}

.project-bullets li i {
    color: var(--secondary-color);
    margin-top: 3px;
    flex-shrink: 0;
}

.project-desc {
    margin: 20px 0;
    font-size: 1rem;
    color: #555;
    line-height: 1.7;
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    background: var(--light-bg);
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 25px;
}

.amenity {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: #555;
}

.amenity i {
    color: var(--secondary-color);
}

.project-actions {
    display: flex;
    gap: 15px;
}

/* Contact Page Specifics */
.grid-2-contact {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 60px;
}

@media (max-width: 992px) {
    .grid-2-contact {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .grid-2-contact {
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .grid-2-contact {
        gap: 20px;
    }
}

.contact-form-wrapper {
    background: var(--light-bg);
    padding: 40px;
    border-radius: 8px;
}

@media (max-width: 768px) {
    .contact-form-wrapper {
        padding: 25px;
    }
}

@media (max-width: 480px) {
    .contact-form-wrapper {
        padding: 15px;
    }
}

.form-group {
    margin-bottom: 20px;
}

@media (max-width: 480px) {
    .form-group {
        margin-bottom: 15px;
    }
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 0.95rem;
}

@media (max-width: 480px) {
    .form-group label {
        font-size: 0.9rem;
    }
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s;
}

@media (max-width: 480px) {
    .form-group input, .form-group textarea {
        padding: 10px;
        font-size: 0.95rem;
    }
}

.form-group input:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.social-connect h4 {
    margin-bottom: 15px;
}

.social-links-contact {
    display: flex;
    gap: 15px;
}

.social-links-contact a {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    transition: background 0.3s;
}

.social-links-contact a:hover {
    background: var(--dark-neutral);
}

/* Tablet Responsive Design (768px - 992px) */
@media (max-width: 992px) and (min-width: 769px) {
    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .grid-2, .grid-2-about-home {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .grid-2-projects {
        grid-template-columns: 1fr;
    }
    
    .grid-2-about-home {
        align-items: flex-start;
    }
    
    .feature-card {
        padding: 30px 20px;
    }
    
    .grid-2-contact {
        grid-template-columns: 1fr;
    }
}

/* Small Tablet & Large Mobile (480px - 768px) */
@media (max-width: 768px) {
    .grid-3, .grid-2, .grid-2-about-home, .grid-2-projects {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .grid-2-mission {
        grid-template-columns: 1fr;
    }
    
    .grid-2-contact {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .grid-2-about {
        grid-template-columns: 1fr;
    }
}

/* Mobile Phones (Below 480px) */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .grid-3, .grid-2, .grid-2-about-home, .grid-2-projects, .grid-2-mission, .grid-2-contact, .grid-2-about {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .feature-card i {
        font-size: 2.5rem;
    }
    
    .card-content h3 {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: var(--header-height);
        right: -100%;
        width: 80%;
        height: calc(100vh - var(--header-height));
        background: var(--white);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.3s ease;
        box-shadow: -5px 0 20px rgba(0,0,0,0.1);
    }

    .nav-links.active {
        right: 0;
    }

    .hamburger {
        display: block;
    }

    .btn-quote { display: none; }
    
    .btn-quote-mobile {
        display: inline-block;
        background: var(--secondary-color);
        padding: 12px 25px;
        color: var(--dark-neutral) !important;
        border-radius: 4px;
        margin-top: 20px;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }
    
    .footer-col p {
        justify-content: center;
    }
    
    .footer h3 {
        margin-top: 30px;
    }
    
    .footer-col:first-child h3 {
        margin-top: 0;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .amenities-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .header {
        height: 70px;
    }
    
    body {
        padding-top: 70px;
    }
    
    .logo img {
        height: 40px !important;
    }
    
    .hamburger {
        font-size: 1.3rem;
    }
    
    .nav-links {
        width: 100%;
    }
    
    .amenities-grid {
        grid-template-columns: 1fr;
    }
    
    .project-actions {
        flex-direction: column;
    }
    
    .project-actions .btn-primary, .project-actions .btn-secondary {
        width: 100%;
        text-align: center;
    }
}

.info-item {
    margin-top: 10px;
}

/* Map Container */
.map-container {
    width: 100%;
    overflow: hidden;
    border-radius: 8px;
}

.map-container iframe {
    width: 100%;
    height: 450px;
    border: 0;
    display: block;
}

@media (max-width: 768px) {
    .map-container iframe {
        height: 350px;
    }
}

@media (max-width: 480px) {
    .map-container iframe {
        height: 250px;
    }
}

/* Inner page header h1 responsive */
.page-header h1 {
    font-size: 3rem;
    color: #fff;
}

@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .page-header h1 {
        font-size: 1.5rem;
    }
    .page-header p {
        font-size: 0.9rem;
    }
}

/* Filter buttons wrap on mobile */
.filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

@media (max-width: 480px) {
    .filters .btn-secondary {
        flex: 1 1 auto;
        text-align: center;
    }
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 9999;
    width: 56px;
    height: 56px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.7);
    color: #fff;
}

@media (max-width: 480px) {
    .whatsapp-float {
        width: 48px;
        height: 48px;
        font-size: 1.5rem;
        bottom: 20px;
        left: 20px;
    }
}
