/* ===== GLOBAL STYLES ===== */
:root {
    --dark-green: #033f19;
    --mango-yellow:#FF9900;
    --light-green: #dcfce7;
    --light-yellow: #fef9c3;
    --text-dark: #334155;
    --text-light: #64748b;
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --medium-gray: #e2e8f0;
    --border-radius: 10px;
    --box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    --medium-gap: 15px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Quicksand', sans-serif;
    font-weight: 400;
}

body {
    background-color: var(--white);
    color: var(--text-dark);
    line-height: 1.5;
    padding-top: 80px;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex: 1;
}

/* ===== HEADER STYLES ===== */
header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 0 15px;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
}

/* Logo Styles */
.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-icon {
    background-color: var(--dark-green);
    color: var(--white);
    width: 36px;
    height: 36px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 500;
    margin-right: 10px;
}

.logo-text {
    font-size: 20px;
    font-weight: 500;
    color: var(--text-dark);
}

.logo-text span {
    color: var(--dark-green);
}

/* Navigation Menu Styles */
.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
}

.nav-item {
    margin-left: 25px;
    position: relative;
}

.nav-link {
    text-decoration: none;
    color: var(--dark-green);
    font-weight: 700;
    font-size: 18px;
    padding: 6px 0;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
}

.nav-link i {
    margin-right: 6px;
    font-size: 22px;
    font-weight: 700;
}

/* Hover for ALL links */
.nav-link:hover {
    color: #FF9900 !important;
}

/* Active state */
.nav-link.active {
    color: var(--dark-green);
}

/* Make sure hover works for active links too */
.nav-link.active:hover {
    color: #FF9900 !important;
}

/* Button Styles */
.btn-outline-success {
    color: var(--dark-green);
    border: 1px solid var(--dark-green);
    padding: 6px 15px;
    font-weight: 500;
    border-radius: 6px;
    transition: all 0.3s ease;
    font-size: 14px;
    background: var(--white);
}

.btn-outline-success:hover {
    background-color: var(--dark-green);
    color: var(--white);
    transform: translateY(-1px);
    box-shadow: 0 3px 8px rgba(6, 83, 34, 0.2);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    font-size: 20px;
    color: var(--text-dark);
    cursor: pointer;
    background: none;
    border: none;
}

/* ===== HERO SECTION ===== */
.hero-section {
    background-color: #f0f7d4;
    min-height: 80vh;
    padding: 40px 0;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    font-family: 'Quicksand', sans-serif;
    
    /* ADD THESE 3 LINES: */
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw; /* Full viewport width */
}



.hero-content {
    padding-right: 10px;
}

.hero-title {
    font-weight: 700;
    font-size: 4.1rem;
    margin-bottom: 8px;
    color: var(--dark-green);
    line-height: 1.2;
}

.hero-1click {
    font-weight: 500;
    font-size: 1.5rem;
    margin-bottom: 25px;
    color: #092834;
    line-height: 1.2;
    font-style: italic; /* Add this line */
}

.hero-titlespan {
     font-weight: 700;
    font-size: 3.1rem;
    margin-bottom: 5px;
    color:#FF9900;
    line-height: 1.2;
    position: relative;
}

.hero-title span:after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background-color: rgba(40, 167, 69, 0.2);
    z-index: -1;
}

.typewriter-container {
    font-family: 'Quicksand', sans-serif;
    font-size: 2.1rem;
    font-weight: 700;
    margin-bottom: 5px;
    min-height: 100px;
}

.typewriter-line {
    margin-bottom: 5px;
    color:#092834;
    display: none;
}

.typewriter-line.active {
    display: block;
}

.typewriter-line .cursor {
    display: inline-block;
    width: 2px;
    height: 1em;
    background-color: var(--mango-yellow);
    margin-left: 4px;
    animation: blink 1s infinite;
    vertical-align: middle;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

.hero-description {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.5;
}

.cta-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.btn-primary-custom {
    background-color: var(--dark-green);
    border: 1px solid var(--dark-green);
    color: var(--white);
    padding: 10px 25px;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-size: 14px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-primary-custom:hover {
    background-color: var(--dark-green);
    border-color: var(--dark-green);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    color: var(--white);
    text-decoration: none;
}

.btn-outline-custom {
    background-color: var(--white);
    border: 1px solid var(--mango-yellow);
    color: var(--text-dark);
    padding: 10px 25px;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-size: 14px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-outline-custom:hover {
    background-color: var(--mango-yellow);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    color: var(--text-dark);
    text-decoration: none;
}

.hero-image-container {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    animation: float 6s ease-in-out infinite;
    transition: transform 0.5s ease;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

.app-download {
    margin-top: 5px;
}

.app-download p {
    margin-bottom: 5px;
    font-weight: 500;
    color: #347b98;
    font-size: 1.1rem;
}

.app-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.app-buttons a {
    display: inline-block;
}

.app-buttons img {
    max-width: 130px;
    height: auto;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.app-buttons img:hover {
    transform: translateY(-3px);
}

/* Hero service icons */
.hero-service-icons {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
    flex-wrap: wrap;
    gap: 8px;
}

.service-icon-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 90px;
}

.icon-circle {
    width: 60px;
    height: 60px;
    background-color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 2px solid var(--dark-green);
}

.icon-circle:hover {
    transform: translateY(-5px);
    background-color: var(--mango-yellow);
    border-color: var(--mango-yellow);
}

.icon-circle i {
    font-size: 1.5rem;
    color: var(--dark-green);
}

.icon-circle:hover i {
    color: var(--text-dark);
}

.service-icon-item span {
    font-size: 0.8rem;
    font-weight: 400;
    color: var(--text-dark);
}

/* ===== ICON CATEGORIES SECTION ===== */
.icon-categories-section {
    padding: 40px 0;
    background-color: var(--white);
}

.section-heading {
    text-align: center;
    margin-bottom: 30px;
}

.section-title {
    font-size: 1.6rem;
    font-weight: 500;
    color: var(--dark-green);
    margin-bottom: 8px;
}

.section-title span {
    color: var(--mango-yellow);
    position: relative;
}

.section-title span:after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    width: 100%;
    height: 5px;
    background-color: var(--light-green);
    z-index: -1;
}

.section-subtitle {
    font-size: 0.85rem;
    color: var(--text-light);
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.4;
}

.container-centered {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 15px;
}

.icon-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: var(--medium-gap);
    justify-items: center;
    align-items: center;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
}

.icon-box {
    width: 120px;
    height: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: var(--border-radius);
    background-color: var(--white);
    border: 1px solid var(--medium-gray);
    transition: all 0.2s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    padding: 10px 5px;
}

.icon-box.green-box {
    border-color: var(--dark-green);
}

.icon-box.yellow-box {
    border-color: var(--mango-yellow);
}

.icon-box:hover {
    transform: translateY(-3px);
    box-shadow: var(--box-shadow);
}

.icon-box.green-box:hover {
    background-color: var(--dark-green);
    border-color: var(--dark-green);
}

.icon-box.yellow-box:hover {
    background-color: var(--mango-yellow);
    border-color: var(--mango-yellow);
}

.icon-box i {
    font-size: 2rem;
    margin-bottom: 6px;
    transition: all 0.2s ease;
}

.icon-box.green-box i {
    color: var(--dark-green);
}

.icon-box.yellow-box i {
    color: var(--mango-yellow);
}

.icon-box.green-box:hover i {
    color: var(--white);
    transform: scale(1.05);
}

.icon-box.yellow-box:hover i {
    color: var(--white);
    transform: scale(1.05);
}

.category-name {
    font-size: 0.7rem;
    font-weight: 500;
    color: var(--text-light);
    text-align: center;
    line-height: 1.2;
    transition: all 0.2s ease;
    margin-top: 2px;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.icon-box:hover .category-name {
    color: var(--white);
    font-weight: 500;
}

.icon-box:before {
    content: '';
    position: absolute;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--light-green);
    opacity: 0;
    transition: all 0.2s ease;
    z-index: 0;
}

.icon-box:hover:before {
    opacity: 0.2;
    transform: scale(2);
}

.icon-box.green-box:before {
    background-color: var(--dark-green);
}

.icon-box.yellow-box:before {
    background-color: var(--mango-yellow);
}

.icon-box i, .category-name {
    position: relative;
    z-index: 1;
}

.section-bottom {
    text-align: center;
    margin-top: 30px;
}

.view-more-btn {
    padding: 8px 20px;
    border-radius: 8px;
    background-color: var(--white);
    border: 1px solid var(--dark-green);
    color: var(--dark-green);
    font-weight: 500;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    cursor: pointer;
}

.view-more-btn:hover {
    background-color: var(--dark-green);
    color: var(--white);
    transform: translateY(-1px);
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.08);
}

.icon-box.active {
    background-color: var(--dark-green);
    border-color: var(--dark-green);
}

.icon-box.active i {
    color: var(--white);
}

.icon-box.active .category-name {
    color: var(--white);
    font-weight: 500;
}

.icon-box.yellow-box.active {
    background-color: var(--mango-yellow);
    border-color: var(--mango-yellow);
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.icon-box {
    animation: fadeInScale 0.3s ease forwards;
    opacity: 0;
}

.icon-box:nth-child(1) { animation-delay: 0.05s; }
.icon-box:nth-child(2) { animation-delay: 0.1s; }
.icon-box:nth-child(3) { animation-delay: 0.15s; }
.icon-box:nth-child(4) { animation-delay: 0.2s; }
.icon-box:nth-child(5) { animation-delay: 0.25s; }
.icon-box:nth-child(6) { animation-delay: 0.3s; }
.icon-box:nth-child(7) { animation-delay: 0.35s; }
.icon-box:nth-child(8) { animation-delay: 0.4s; }
.icon-box:nth-child(9) { animation-delay: 0.45s; }
.icon-box:nth-child(10) { animation-delay: 0.5s; }

/* === Mobile Gridd Fix 4 per row and Category list mobile align Fix for mobile grid alignment ====*/

/* ===== FIX FOR MOBILE GRID ===== */
@media (max-width: 992px) {
    .icon-grid {
        grid-template-columns: repeat(4, 1fr) !important;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .icon-box {
        width: 100px;
        height: 100px;
        animation: none !important;
        opacity: 1 !important;
    }
}

@media (max-width: 768px) {
    .icon-grid {
        grid-template-columns: repeat(4, 1fr) !important;
        gap: 12px;
        max-width: 450px;
    }
    
    .icon-box {
        width: 90px;
        height: 90px;
    }
}

@media (max-width: 576px) {
    .icon-grid {
        grid-template-columns: repeat(4, 1fr) !important;
        gap: 10px;
        max-width: 400px;
    }
    
    .icon-box {
        width: 80px;
        height: 80px;
    }
}

/* ===== MODAL STYLES ===== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    padding: 15px;
}

.modal-overlay.active {
    display: flex;
}

.service-modal {
    background-color: var(--white);
    border-radius: var(--border-radius);
    width: 100%;
    max-width: 900px;
    max-height: 90vh;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    animation: modalSlideUp 0.3s ease;
}

@keyframes modalSlideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid var(--medium-gray);
    background-color: var(--dark-green);
    color: var(--white);
}

.modal-title {
    font-size: 1.3rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
}

.close-modal {
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.close-modal:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.modal-content {
    padding: 20px;
    max-height: 70vh;
    overflow-y: auto;
}

.hidden {
    display: none !important;
}

.view-title {
    font-size: 1.2rem;
    color: var(--dark-green);
    margin-bottom: 20px;
    font-weight: 500;
}

/* Subcategories Grid */
.subcategories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 20px;
}

.subcategory-card {
    background-color: var(--white);
    border: 1px solid var(--medium-gray);
    border-radius: var(--border-radius);
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.subcategory-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow);
}

.subcategory-card.green-card {
    border-color: var(--dark-green);
}

.subcategory-card.yellow-card {
    border-color: var(--mango-yellow);
}

.subcategory-card.green-card:hover {
    background-color: var(--dark-green);
    color: var(--white);
}

.subcategory-card.yellow-card:hover {
    background-color: var(--mango-yellow);
    color: var(--white);
}

.subcategory-icon {
    width: 60px;
    height: 60px;
    background-color: var(--light-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.subcategory-card.green-card .subcategory-icon {
    background-color: var(--light-green);
    color: var(--dark-green);
}

.subcategory-card.yellow-card .subcategory-icon {
    background-color: var(--light-yellow);
    color: var(--mango-yellow);
}

.subcategory-card.green-card:hover .subcategory-icon {
    background-color: var(--white);
    color: var(--dark-green);
}

.subcategory-card.yellow-card:hover .subcategory-icon {
    background-color: var(--white);
    color: var(--mango-yellow);
}

.subcategory-name {
    font-weight: 500;
    font-size: 1rem;
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.subcategory-card:hover .subcategory-name {
    color: var(--white);
}

/* Services View */
.services-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--medium-gray);
}

.back-button {
    background-color: transparent;
    border: 1px solid var(--dark-green);
    color: var(--dark-green);
    padding: 8px 15px;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.back-button:hover {
    background-color: var(--light-green);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.service-card {
    background-color: var(--white);
    border: 1px solid var(--medium-gray);
    border-radius: var(--border-radius);
    padding: 20px;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--box-shadow);
}

.service-card.green-service {
    border-left: 3px solid var(--dark-green);
}

.service-card.yellow-service {
    border-left: 3px solid var(--mango-yellow);
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 10px;
}

.service-name {
    font-weight: 500;
    color: var(--text-dark);
    font-size: 1.1rem;
}

.service-price {
    background-color: var(--light-green);
    color: var(--dark-green);
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: 500;
}

.service-card.yellow-service .service-price {
    background-color: var(--light-yellow);
    color: var(--text-dark);
}

.service-description {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 15px;
}

.service-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.service-duration {
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--text-light);
    font-size: 0.85rem;
}

.book-btn {
    background-color: var(--dark-green);
    color: var(--white);
    border: none;
    padding: 8px 20px;
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.book-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 3px 10px rgba(6, 83, 34, 0.2);
}

.service-card.yellow-service .book-btn {
    background-color: var(--mango-yellow);
    color: var(--text-dark);
}

/* Responsive Modal */
@media (max-width: 768px) {
    .subcategories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .subcategory-card {
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .subcategories-grid {
        grid-template-columns: 1fr;
    }
    
    .modal-content {
        padding: 15px;
    }
}


/*=======category ==subcategory ==list of services END END ====================================*/




/* ===== PROVIDER HIGHLIGHTS SECTION =================================================== */
.provider-highlights-section {
    background-color: var(--white);
    padding: 40px 0;
    margin: 30px 0;
}

.provider-highlight-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Left Side: Provider Image - COMPLETELY CLEAN */
.provider-image-side {
    flex: 0 0 280px;
}

.provider-image-container {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 15px;
    width: 100%;
    min-height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    
    /* REMOVE ALL THESE */
    background: none !important;
    background-color: transparent !important;
    box-shadow: none !important;
    border: none !important;
    outline: none !important;
    
    /* For any possible pseudo-elements */
    content: none;
}

.provider-image-container::before,
.provider-image-container::after {
    display: none !important;
    content: none !important;
    background: none !important;
}

.provider-image {
    width: 200px;
    height: 300px;
    object-fit: contain;
    transition: transform 0.3s ease;
    display: block;
    
    /* REMOVE ALL BACKGROUNDS */
    background: none !important;
    background-color: transparent !important;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
}

#providerImage {
    width: 200px;
    height: 300px;
    object-fit: contain;
    
    /* REMOVE ALL BACKGROUNDS */
    background: none !important;
    background-color: transparent !important;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
}

.provider-image:hover {
    transform: scale(1.02);
}

.provider-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: var(--dark-green);
    color: var(--white);
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.provider-badge i {
    font-size: 14px;
}

.provider-quick-info h3 {
    font-size: 20px;
    font-weight: 500;
    color: var(--dark-green);
    margin-bottom: 4px;
}

.provider-title {
    color: var(--text-light);
    margin-bottom: 12px;
    font-size: 14px;
}

.provider-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.provider-rating .stars {
    color: var(--mango-yellow);
    font-size: 16px;
}

.rating-number {
    font-weight: 500;
    color: var(--dark-green);
    margin-left: 4px;
    font-size: 14px;
}

.review-count {
    color: var(--text-light);
    font-size: 12px;
}

.provider-tag {
    display: inline-block;
    background-color: var(--light-green);
    color: var(--dark-green);
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 500;
    margin-right: 6px;
    margin-bottom: 6px;
}

/* Right Side: Highlights */
.provider-highlights-side {
    flex: 1;
    min-width: 280px;
}

.provider-section-title {
    font-size: 2.3rem;
    font-weight: 700;
    color: #347b98;
    margin-bottom: 8px;
}

.provider-section-subtitle {
    color: #092834;
    font-size: 0.9rem;
    margin-bottom: 25px;
}

/* Tabs Navigation */
.highlights-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 25px;
    border-bottom: 1px solid var(--medium-gray);
    padding-bottom: 12px;
}

.tab-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background-color: var(--white);
    border: 1px solid var(--medium-gray);
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-light);
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

.tab-btn:hover {
    background-color: var(--light-gray);
    border-color: var(--dark-green);
}

.tab-btn.active {
    background-color: var(--dark-green);
    border-color: var(--dark-green);
    color: var(--white);
}

.tab-btn i {
    font-size: 16px;
}

/* Tab Content */
.tab-content {
    display: none;
    animation: fadeIn 0.5s ease;
}

.tab-content.active {
    display: block;
}

.highlight-point {
    display: flex;
    gap: 15px;
    padding: 15px;
    background-color: var(--white);
    border-radius: 8px;
    margin-bottom: 12px;
    box-shadow: var(--box-shadow);
    border-left: 3px solid var(--dark-green);
    transition: transform 0.3s ease;
}

.highlight-point:hover {
    transform: translateX(5px);
}

.point-icon {
    flex-shrink: 0;
    width: 45px;
    height: 45px;
    background-color: var(--light-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-green);
    font-size: 18px;
}

.point-text h4 {
    font-size: 16px;
    font-weight: 500;
    color: var(--dark-green);
    margin-bottom: 4px;
}

.point-text p {
    color: var(--text-light);
    margin: 0;
    line-height: 1.4;
    font-size: 0.85rem;
}

/* Book Now Section */
.book-now-section {
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid var(--medium-gray);
    text-align: center;
}

.book-provider-btn {
    background-color: var(--dark-green);
    color: var(--white);
    border: none;
    padding: 15px 35px;
    font-size: 16px;
    font-weight: 500;
    border-radius: 8px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(6, 83, 34, 0.2);
    font-family: inherit;
}

.book-provider-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(6, 83, 34, 0.3);
}

.booking-note {
    margin-top: 12px;
    color: var(--text-light);
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/* Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== FOOTER STYLES ===== */
footer {
    background-color: #f0f7d4; 
    color: var(--white);
    padding: 40px 0 20px;
    margin-top: auto;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 30px;
}

/* Fix for footer column headings */
.footer-column h3 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: #ff9900;
    position: relative;
    padding-bottom: 8px;
    font-weight: 500;
    padding-left: 0; /* Ensure no left padding */
    margin-left: 0; /* Ensure no left margin */
}

.footer-column h3:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background-color: var(--mango-yellow);
}

/* Fix for footer links list */
.footer-links {
    list-style: none;
    padding-left: 0; /* Remove default list padding */
    margin-left: 0; /* Remove default list margin */
}

.footer-links li {
    margin-bottom: 10px;
    padding-left: 0; /* Remove any padding */
}

/* Fix for footer links alignment */
.footer-links a {
    color: #092834;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex; /* Changed from inline-flex to flex */
    align-items: center;
    gap: 8px;
    font-size: 14px;
    padding: 3px 0;
    width: 100%; /* Make it full width */
    margin-left: 0; /* Remove left margin */
}

.footer-links a i {
    font-size: 14px;
    width: 16px;
    text-align: center;
    flex-shrink: 0; /* Prevent icon from shrinking */
}

.footer-links a:hover {
    color: var(--mango-yellow);
    transform: translateX(5px);
}

/* Rest of your existing styles remain the same */
.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    background-color: #f0f7d4; 
}

.footer-logo img {
    border-radius: 6px;
    background-color: #f0f7d4; 
}

.footer-column p {
    color: #05581a;
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 20px;
    line-height: 1.4;
}

.app-download {
    margin-top: 20px;
}

.app-download p {
    margin-bottom: 12px;
    font-weight: 500;
    color: #347b98;
    font-size: 0.9rem;
}

.app-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.app-buttons a {
    display: inline-block;
}

.app-buttons img {
    max-width: 150px;
    height: auto;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.app-buttons img:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border-color: var(--mango-yellow);
}

.contact-info {
    list-style: none;
    padding-left: 0;
}

.contact-info li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.contact-info i {
    color: #092834;
    margin-top: 3px;
    font-size: 16px;
    min-width: 16px;
}

.contact-info div {
    color: #092834;
    font-size: 14px;
    line-height: 1.5;
}

/* Social icon Special***************************** */

.social-icons {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.1);
    color: #092834;
    border-radius: 50%;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: var(--mango-yellow);
    color: var(--dark-green);
    transform: translateY(-3px);
    animation: spinColor 0.5s ease forwards;
}


@keyframes spinColor {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}



/* Social icon Special***************************** */

.copyright {
    text-align: center;
    padding-top: 5px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #092834;
    font-size: 13px;
    font-weight: 600;
}

.copyright i {
    margin-right: 1px;
    color: var(--mango-yellow);
}

/* Decorative elements for hero */
.green-circle {
    position: absolute;
    width: 50px;
    height: 35px;
    border-radius: 50%;
    background-color: var(--dark-green);
    top: -125px;
    right: -80px;
    z-index: 0;
}

.yellow-circle {
    position: absolute;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background-color: var(--light-yellow);
    bottom: -90px;
    left: -40px;
    z-index: 0;
}

/* Animation for image on hover */
.hero-image:hover {
    animation: none;
    transform: scale(1.03);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1200px) {
    .icon-grid {
        gap: 15px;
    }
    
    .icon-box {
        width: 110px;
        height: 110px;
    }
}

@media (max-width: 992px) {
    .hero-section {
        padding: 30px 0;
    }
    
    .hero-content {
        padding-right: 0;
        margin-bottom: 30px;
    }
    
    .hero-title {
        font-size: 4.1rem;
    }

    .hero-1click {
    font-size: 1.5rem;
   
    }
    
    .typewriter-container {
        font-size: 2.1rem;
        min-height: 90px;
    }
    
    .hero-image-container {
        height: 300px;
    }
    
    .icon-grid {
        grid-template-columns: repeat(5, 1fr);
        gap: 12px;
    }
    
    .icon-box {
        width: 100px;
        height: 100px;
    }
    
    .icon-box i {
        font-size: 1.8rem;
    }
    
    .category-name {
        font-size: 0.65rem;
    }
    
    /* Header responsive */
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--white);
        flex-direction: column;
        align-items: flex-start;
        padding: 15px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-item {
        margin: 0 0 12px 0;
        width: 100%;
    }
    
    .nav-link {
        padding: 10px 12px;
        width: 100%;
        border-radius: 6px;
    }
    
    .nav-link:hover {
        background-color: var(--light-green);
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .provider-highlight-wrapper {
        flex-direction: column;
        gap: 30px;
    }
    
    .provider-image-side {
        flex: 1;
        max-width: 350px;
        margin: 0 auto;
    }
    
    .highlights-tabs {
        justify-content: center;
    }
    
    .provider-section-title {
        font-size: 1.6rem;
    }
    
    .provider-section-subtitle {
        font-size: 0.85rem;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 4.1rem;
    }
    
    .hero-1click {
        font-size: 1.5rem;
   
    }
    .typewriter-container {
        font-size: 2.1rem;
        min-height: 80px;
    }
    
    .cta-buttons {
        justify-content: center;
    }
    
    .hero-service-icons {
        justify-content: center;
    }
    
    .icon-grid {
        gap: 10px;
    }
    
    .icon-box {
        width: 90px;
        height: 90px;
    }
    
    .icon-box i {
        font-size: 1.6rem;
        margin-bottom: 5px;
    }
    
    .category-name {
        font-size: 0.6rem;
    }
    
    .section-title {
        font-size: 1.4rem;
    }
    
    .tab-btn {
        flex: 1;
        min-width: 110px;
        justify-content: center;
        padding: 8px 12px;
        font-size: 12px;
    }
    
    .book-provider-btn {
        width: 100%;
        justify-content: center;
        padding: 12px 20px;
        font-size: 14px;
    }
    
    .highlight-point {
        padding: 12px;
        gap: 12px;
    }
    
    .point-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .point-text h4 {
        font-size: 14px;
    }
    
    .provider-section-title {
        font-size: 1.4rem;
    }
    
    body {
        padding-top: 70px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-column {
        text-align: center;
    }
    
    .footer-column h3:after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-logo {
        justify-content: center;
    }
    
    .app-buttons {
        justify-content: center;
    }
    
    .social-icons {
        justify-content: center;
    }
    
    .contact-info li {
        justify-content: center;
        text-align: center;
    }
    
    .footer-links a {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .icon-grid {
        grid-template-columns: repeat(5, 1fr);
        gap: 10px;
    }
    
    .icon-box {
        width: 85px;
        height: 85px;
        padding: 8px 4px;
    }
    
    .icon-box i {
        font-size: 1.5rem;
        margin-bottom: 4px;
    }
    
    .category-name {
        font-size: 0.55rem;
        margin-top: 0;
    }
    
    .section-title {
        font-size: 1.3rem;
    }
    
    .header-container {
        padding: 10px 0;
    }
    
    .logo-text {
        font-size: 18px;
    }
    
    .logo-icon {
        width: 32px;
        height: 32px;
        font-size: 16px;
    }
    
    .app-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .app-buttons a {
        width: 100%;
        max-width: 200px;
    }
    
    .app-buttons img {
        width: 100%;
        height: auto;
    }
    
    .provider-highlight-wrapper {
        padding: 0 10px;
    }
    
    .provider-image-side {
        width: 100%;
    }
    
    .provider-image {
        height: 220px;
    }
    
    .tab-btn {
        flex: 1 0 calc(50% - 4px);
        min-width: unset;
    }
    
    .booking-note {
        flex-direction: column;
        gap: 4px;
    }
    
    footer {
        padding: 30px 0 15px;
    }
}

@media (max-width: 480px) {
    .icon-grid {
        grid-template-columns: repeat(5, 1fr);
        gap: 8px;
    }
    
    .icon-box {
        width: 80px;
        height: 80px;
    }
    
    .icon-box i {
        font-size: 1.4rem;
    }
    
    .category-name {
        font-size: 0.5rem;
    }
    
    .hero-title {
        font-size: 4.1rem;
    }

    .hero-1click {
    font-size: 1.5rem;
   
    }
    
    .hero-image-container {
        height: 250px;
    }
}

@media (max-width: 400px) {
    .icon-grid {
        gap: 6px;
    }
    
    .icon-box {
        width: 75px;
        height: 75px;
    }
    
    .icon-box i {
        font-size: 1.3rem;
    }
    
    .category-name {
        font-size: 0.45rem;
    }
}


