/* Services Pages Shared Styles */
.service-hero {
    position: relative;
    min-height: 80vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    color: white;
    overflow: hidden;
}

.waivered-services {
    background-image: url('https://images.unsplash.com/photo-1576765608535-5f04d1e3f289?q=80&w=1920');
}

.service-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(0, 169, 157, 0.9) 0%,
        rgba(15, 23, 42, 0.95) 100%
    );
}

.service-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 2rem;
    animation: fadeIn 1s ease-out;
}

.service-hero h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.service-hero p {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.service-hero-buttons {
    display: flex;
    gap: 1rem;
}

.btn {
    display: inline-block;
    padding: 0.875rem 1.75rem;
    font-size: 1.125rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: white;
    color: #00A99D;
}

.btn-primary:hover {
    background-color: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Styles */
@media (max-width: 768px) {
    .service-hero {
        min-height: 70vh;
    }

    .service-hero h1 {
        font-size: 2.5rem;
    }

    .service-hero p {
        font-size: 1.125rem;
    }
}

@media (max-width: 480px) {
    .service-hero h1 {
        font-size: 2rem;
    }

    .service-hero p {
        font-size: 1rem;
    }

    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }
}





/* Add these styles to the existing services.css file */

.services-offered {
    padding: 6rem 0;
    background-color: #fff;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.services-image {
    position: relative;
    border-radius: 7px;
    overflow: hidden;
    box-shadow: 0 0 40px rgba(0, 169, 157, 0.2);
    transition: transform 0.3s ease;
}

.services-image:hover {
    transform: scale(1.02);
}

.rounded-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.services-list {
    padding-left: 2rem;
}

.services-list h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.services-checklist {
    list-style: none;
    padding: 0;
    margin: 0;
}

.services-checklist li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 0.75rem;
    margin-bottom: 0.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.services-checklist li:hover {
    background-color: #f8f9fa;
    transform: translateX(10px);
}

.check-icon {
    width: 24px;
    height: 24px;
    color: #00A99D;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.services-checklist span {
    font-size: 1.125rem;
    line-height: 1.6;
    color: #333;
}

/* Animation classes */
.fade-left {
    opacity: 0;
    transform: translateX(-50px);
    animation: fadeLeft 1s ease forwards;
}

.fade-right {
    opacity: 0;
    transform: translateX(50px);
    animation: fadeRight 1s ease forwards;
}

@keyframes fadeLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive Styles */
@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .services-list {
        padding-left: 0;
    }

    .services-list h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .services-offered {
        padding: 4rem 0;
    }

    .services-list h2 {
        font-size: 1.75rem;
        margin-bottom: 1.5rem;
    }

    .services-checklist span {
        font-size: 1rem;
    }

    .services-checklist li:hover {
        transform: translateX(5px);
    }
}



/* Add these styles to the existing services.css file */

.eligibility-section {
    padding: 1rem 0;
}

.eligibility-content {
  
  
    padding: 3rem;
    color: white;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.eligibility-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 169, 157, 0.2);
}

.eligibility-content h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.eligibility-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.eligibility-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 0.1rem;
    border-radius: 8px;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.eligibility-list li:hover {
    transform: translateX(10px);
    background-color: rgba(255, 255, 255, 0.1);
}

.eligibility-list .check-icon {
    width: 24px;
    height: 24px;
    color: white;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.eligibility-list span {
    font-size: 1.125rem;
    line-height: 1.6;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .eligibility-content {
        padding: 2rem;
    }

    .eligibility-content h2 {
        font-size: 1.75rem;
        margin-bottom: 1.5rem;
    }

    .eligibility-list span {
        font-size: 1rem;
    }

    .eligibility-list li:hover {
        transform: translateX(5px);
    }
}

@media (max-width: 480px) {
    .eligibility-content {
        padding: 1.5rem;
    }

    .eligibility-content h2 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
}




/* Only adding styles that can't be handled by Tailwind */
@media (max-width: 768px) {
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}

/* Add these styles if not already present */
.parallax-bg {
    transform: translateZ(0);
    will-change: transform;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.fade-up {
    opacity: 0;
    animation: fadeUp 1s ease-out forwards;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}



