.evershine-hero {
    padding: 4rem 2rem;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.evershine-hero-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 4rem;
    max-width: 1600px;
    margin: 0 auto;
}

.evershine-hero-text {
    flex: 1;
    max-width: 600px;
}

.evershine-hero-label {
    background-color: rgba(0, 115, 219, 0.1);
    color: var(--evershine-primary);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    font-weight: 500;
}

.evershine-hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--evershine-secondary);
}

.evershine-hero-description {
    color: var(--evershine-text-light);
    font-size: clamp(1rem, 3vw, 1.4rem);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.evershine-hero-benefits {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.evershine-benefit-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.evershine-check-icon {
    color: var(--evershine-primary);
    font-weight: bold;
}

.evershine-cta-button {
    background-color: var(--evershine-primary);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 500;
    font-size: 1.1rem;
    transition: background-color 0.3s ease;
}

.evershine-cta-button:hover {
    background-color: #005cb2;
}

.evershine-hero-media {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.evershine-hero-media::before {
    content: '';
    position: absolute;
    width: 70%;
    height: 165%;
    background-image: radial-gradient(circle at center, rgba(0, 115, 219, 0.4) 1.5px, transparent 1.5px);
    background-size: 25px 10px;
    background-position: -3px -5px;
    z-index: -1;
    transform: scale(1.5);
    mask-image: linear-gradient(to bottom, 
        transparent 0%,
        black 20%,
        black 80%,
        transparent 100%
    );
    -webkit-mask-image: linear-gradient(to bottom,
        transparent 0%,
        black 20%,
        black 80%,
        transparent 100%
    );
}

.evershine-video-container {
    position: relative;
    width: 600px;
    margin: 0 auto;
    border-radius: 50px;
    border: 1px solid #1b1b1b;
    overflow: hidden;
    cursor: pointer;
    background: white;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.evershine-video-container video {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.evershine-video-button {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: #005cb2;
    color: #fffffe;
    border: none;
    padding: 10px 20px;
    border-radius: 35px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    transition: background 0.3s ease;
}

.evershine-video-button:hover {
    background: rgba(0, 0, 0, 0.9);
}

.evershine-video-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.evershine-video-popup.active {
    display: flex;
}

.evershine-video-popup video {
    max-width: 90%;
    max-height: 90vh;
}

.evershine-popup-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: white;
    font-size: 32px;
    cursor: pointer;
    padding: 10px;
}

.services-wrapper {
    text-align: center;
    padding: 4rem 2rem;
}

.trust-statement {
    color: var(--evershine-primary);
    font-size: clamp(1rem, 2vw, 1.2rem);
    font-weight: 500;
    margin-bottom: 1rem;
}

.services-wrapper h2 {
    font-size: clamp(2rem, 4vw, 3.4rem);
    margin-bottom: 1.5rem;
}

.services-wrapper p:nth-of-type(2) {
    color: var(--evershine-text-light);
    max-width: 800px;
    margin: 0 auto;
    font-size: clamp(1rem, 2vw, 1.5rem);
    margin-bottom: 3rem;
    padding: 0 1rem;
}

.services-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Fixed 3 columns for larger screens */
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem;
}

.services-card {
    background-color: #F6F5F3;
    padding: 2rem;
    border-radius: 25px;
    text-align: left;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.services-card:hover {
    transform: translateY(-5px); /* Slight hover lift effect */
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15); /* Enhance hover shadow */
}

.services-cards img {
    color: #005cb2;
    width: 40px; /* Increase the size of the icons for better visibility */
    margin-bottom: 1.2rem; /* Add space between the icon and heading */
}

.services-card h3 {
    font-size: 1.6rem; /* Slightly larger heading font size */
    margin-bottom: 0.5rem; /* Add space below the heading */
    font-weight: 500;
}

.services-card p {
    color: #666666;
    font-size: 1.2rem; /* Slightly larger paragraph text */
}

.why-choose-us {
    padding: 5rem 1rem;
}

.why-us-container {
    max-width: 1200px;
    margin: 0 auto; /* Center the container horizontally */
    text-align: center;
    display: flex; /* Enable Flexbox for centering */
    flex-direction: column; /* Ensure content stacks vertically */
    align-items: center; /* Center-align child elements */
}

.subtitle {
    color: #8B5CF6;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    display: block;
}

.why-us-container h2 {
    color: #1F2937;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.description {
    color: #6B7280;
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 cards for large screens */
    gap: 2rem; /* Space between cards */
    justify-content: center; /* Center grid content */
    max-width: 100%; /* Prevent grid overflow */
    margin: 0 auto; /* Center grid horizontally */
}

.benefit-card {
    padding: 2rem;
    border-radius: 0.5rem;
    text-align: center;
}

.icon-container {
    max-width: 200px;
    max-height: 200px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-container img {
    width: 100%;
    height: 100%;
}

.benefit-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.benefit-card p {
    font-size: 1rem;
    line-height: 1.6;
}

@media (max-width: 1175px) {
    .evershine-video-container {
        width: 100%;
        max-width: 500px;
    }
}

/* Media Queries */
@media (max-width: 1024px) {
    .evershine-hero-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
        margin-top: 4rem;
    }

    .evershine-hero-text {
        max-width: 100%;
    }

    .evershine-hero-benefits {
        display: none;
    }

    .evershine-video-container {
        width: 100%;
        max-width: 600px;
    }

    .evershine-hero-media::before {
        width: 70%;
        height: 100%;
    }

    .services-cards {
        grid-template-columns: repeat(2, 1fr); /* 2 cards for tablets */
        gap: 1.5rem;
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 cards for tablets */
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .services-cards {
        grid-template-columns: 1fr; /* 1 card per row for mobile */
        gap: 1rem;
    }

    .benefits-grid {
        grid-template-columns: 1fr; /* 1 card per row for mobile */
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .evershine-hero-title {
        font-size: 2rem;
    }

    .evershine-hero-description {
        font-size: 1rem;
    }

    .services-card {
        padding: 1.5rem;
    }

    .services-card h3 {
        font-size: 1.2rem;
    }

    .services-card p {
        font-size: 1rem;
    }

    .evershine-hero-label {
        width: 250px;
    }

    .why-us-container h2 {
        font-size: 2rem;
    }
}

/* Utility Classes for Responsive Design */
.hide-mobile {
    display: none;
}

@media (min-width: 768px) {
    .hide-mobile {
        display: block;
    }
}

.content-section {
    display: flex;
    align-items: center;
    max-width: 1600px;
    margin: 0 auto;
    padding: 4rem 2rem;
    gap: 4rem;
}

.content-left {
    flex: 1;
}

.content-right {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.content-image {
    max-width: 100%;
}

.content-title {
    font-size: 2.5rem;
    color: #213547;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.content-subtitle {
    font-size: 1.8rem;
    color: #213547;
    margin: 2rem 0 1rem;
}

.content-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 1.5rem;
}

.service-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.service-list li {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
}

.service-list li::before {
    content: "•";
    color: #4a90e2;
    position: absolute;
    left: 0;
}

.content-left a {
    text-decoration: none;
}

@media (max-width: 768px) {
    .content-section {
        flex-direction: column;
        padding: 2rem 1rem;
        gap: 2rem;
    }
    
    .content-title {
        font-size: 2rem;
    }
    
    .content-subtitle {
        font-size: 1.5rem;
    }
    
    .content-right {
        order: -1;
    }
}