:root {
    --gold: #D4AF37;
    --green: #037e49;
    --text-dark: #1A1A1A;
    --text-light: #666666;
    --background-light: #F8F9FA;
}


.hero {
    background: var(--background-light);
}

.hero-content {

    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text h2 {

    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.hero-text p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 40px;
    max-width: 500px;
}

.hero-image {
    background: var(--green);
    border-radius: 8px;
    aspect-ratio: 4/3;
    overflow: hidden;
}


.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {

    color: var(--text-dark);
    margin-bottom: 16px;
}

.section-header p {
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

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

.process-card {
    background: white;
    padding: 40px 20px;
    border-radius: 8px;
    border: 1px solid #E5E7EB;
    transition: all 0.2s ease;
}

.process-card:hover {
    border-color: var(--gold);
    transform: translateY(-2px);
}

.step-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 20px;
    opacity: 0.3;
}

.process-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.process-card p {
    color: var(--text-light);
    font-size: 16px;
    line-height: 1.6;
}

.benefits {
    background: white;
}

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

.benefit-card {
    padding: 40px;
    background: var(--background-light);
    border-radius: 8px;
    transition: all 0.2s ease;
}

.benefit-card:hover {
    background: white;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.benefit-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 24px;
    color: var(--green);
}

.benefit-card h3 {
    font-size: 20px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.benefit-card p {
    color: var(--text-light);
    font-size: 16px;
    line-height: 1.6;
}

.cta-button {
    display: inline-block;
    padding: 12px 18px;
    border-radius: 10px;
    background: var(--green);
    color: white;
    text-decoration: none;
    border-radius:10px;
    font-weight: 500;
    transition: all 0.2s ease;
}
.cta-button.gold{
    margin-left: 2%;
    background-color: #D4AF37;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(3, 126, 73, 0.2);
}

@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text p {
        margin: 0 auto 20px;
    }
    .cta-button.gold{
        margin-left: 0px;
        margin-top: 3%;
    }
    
}


      

:root {
    --gold: #D4AF37;
    --green: #037e49;
    --dark: #1a1a1a;
    --light: #f5f5f5;
    --gray: #6b7280;
    --white: #ffffff;
}

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



/* CTA Section */
.cta-section {
    background-color: var(--green);
    color: var(--white);
    padding: 5rem 0;
    text-align: center;
}

.cta-section h2 {
    color: var(--white);
}
.btn-primary {
    background-color: var(--gold);
    color: var(--dark);
}

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.3s ease;
    text-decoration: none;
    border: none;
}
/* Responsive Design */
@media (max-width: 768px) {
    .grid-3, .grid-4, .benefits-grid {
        grid-template-columns: 1fr;
    }

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .container {
        padding: 0 1rem;
    }
}
.savex-container {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.1);
}
.savex-container .sub-heading{
    margin-bottom:1%;
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.feature-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    position: relative;
    transition: all 0.3s ease;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 96, 57, 0.1);
    border-color: var(--gold);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--light-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    color: var(--green);
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    background: var(--green);
    color: var(--gold);
}

.feature-title {
    color: var(--green);
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

.feature-description {
    color: #555;
    line-height: 1.7;
    font-size: 1rem;
}

.highlight {
    color: var(--gold);
    font-weight: 600;
}
.property-management-services{
    background-color: #037e49;
    padding: 80px;
}
.property-management-services .container{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.property-management-services .col1{
    width: 45%;
}
.property-management-services .col2{
    width: 45%;
}
.property-management-services .sub-heading{
    color: white;
    line-height: 1.15;
}
.property-management-services p{
    color: rgb(231, 231, 231);
   font-size:1.15rem;
   margin-top: 2%;
}
@media (max-width: 768px) {
    .savex-container .sub-heading{
        margin-bottom: 8%;
    }
    .features-grid {
        gap: 1.5rem;
    }
    .property-management-services .container{
        display: flex;
       flex-direction: column-reverse;
       row-gap: calc(20px);
    }
    .property-management-services .col1{
        width:100%;
    }
    .property-management-services .col2{
        width:100%;
    }
    .property-management-services{
        background-color: #037e49;
        padding: 60px 0px;
    }
}

