.hero {
    background: linear-gradient(135deg, #b91c1c 0%, #dc2626 50%, #ea580c 100%);
    color: white;
    padding: 1rem 0;
    width: 100%;
    float: left;
    background-image: linear-gradient(to bottom, rgb(255 255 255), rgb(255 249 231));
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

.profile-section {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}
.grid-2 {
    grid-template-columns: repeat(2, 1fr) !important;
}
.profile-img {
    width: 155px;
    height: 155px;
    border-radius: 50%;
    border: 4px solid white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    object-fit: cover;
    object-position: top;
    background: linear-gradient(to right, #f0cb356e, #c0242585);
}
.pooja-img img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: none;
    margin-bottom: 25px;
}
.profile-info .title {
    font-size: 26px;
    margin-bottom: 0.5rem;
    font-weight: bold;
    text-transform: uppercase;
    color: #ad2a00;
}
.profile-info .subtitle {
    font-size: 1.1rem;
    color: #6d6a6a;
}
.profile-info .designation {
    color: #ff9800;
    font-size: 0.95rem;
    margin-top: 0.3rem;
    font-style: italic;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

.stat-card {
    background: rgb(173 42 0);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 20px 0 12px 0;
    text-align: center;
}

.stat-card .number {
    font-size: 20px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.3rem;
}

.stat-card .label {
    color: #fed7aa;
    font-size: 11px;
    margin-top: 9px;
    display: block;
    font-weight: 600;
}

.info-box {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 1.5rem;
}

.info-box h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.info-item {
    display: flex;
    justify-content: space-between;
    padding: 0.7rem 0;
}

.info-item span:first-child {
    color: #fed7aa;
}

/* Main Content */
.main-content {
    padding: 0 1rem;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    margin-top: 50px;
    float: left;
}

.card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 1.5rem;
}

.card h2 {
    color: #b91c1c;
    font-size: 25px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
}

.card p {
    color: #4b5563;
    line-height: 1.8;
}

/* Skills */
.skills-container {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
}

.skill-tag {
    background: linear-gradient(135deg, #fed7aa 0%, #fecaca 100%);
    color: #b91c1c;
    padding: 0.7rem 1.2rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 2px solid #fecaca;
}

/* Expertise */
.expertise-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.expertise-item {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    color: #4b5563;
    font-size: 0.9rem;
}

.expertise-item i {
    color: #16a34a;
}

/* Services Card */
.services-card {
    background: linear-gradient(135deg, #fff7ed 0%, #fee2e2 100%);
    border: 2px solid #fed7aa;
}

.service-item {
    background: white;
    border-radius: 10px;
    padding: 1.2rem;
    margin-bottom: 1rem;
    border-left: 4px solid #b91c1c;
}

.service-item h4 {
    color: #b91c1c;
    margin-bottom: 0.5rem;
    font-size: 18px;
    font-weight: 600;
}

.service-item .price-list {
    list-style: none;
    color: #4b5563;
}

.service-item .price-list li {
    padding: 0.4rem 0;
    display: flex;
    justify-content: space-between;
}

.service-item .price-list li span:last-child {
    font-weight: bold;
    color: #b91c1c;
}

/* Booking Form */
.booking-form {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    position: sticky;
    top: 1rem;
}

.booking-form h2 {
    color: #b91c1c;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.form-section {
    margin-bottom: 2rem;
}

.form-label {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    font-weight: 600;
    color: #4b5563;
    margin-bottom: 1rem;
}

.step-number {
    background: #b91c1c;
    color: white;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

.session-buttons {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.session-btn {
    border: 2px solid #d1d5db;
    background: white;
    padding: 1.2rem;
    border-radius: 10px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-weight: 600;
    transition: all 0.3s;
}

.session-btn:hover {
    border-color: #ef4444;
}

.session-btn.active {
    border-color: #b91c1c;
    background: #fef2f2;
    color: #b91c1c;
}

.duration-buttons {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.7rem;
}

.duration-btn {
    border: 2px solid #d1d5db;
    background: white;
    padding: 1rem;
    border-radius: 10px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s;
}

.duration-btn:hover {
    border-color: #ef4444;
}

.duration-btn.active {
    border-color: #b91c1c;
    background: #b91c1c;
    color: white;
}

.duration-btn .time {
    font-weight: bold;
    font-size: 1rem;
}

.duration-btn .price {
    font-size: 1rem;
    font-weight: bold;
}

.date-input {
    width: 100%;
    padding: 1rem;
    border: 2px solid #d1d5db;
    border-radius: 10px;
    font-size: 1rem;
    margin-top: 0.5rem;
}

.date-input:focus {
    border-color: #b91c1c;
    outline: none;
}

.time-slots {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.7rem;
    max-height: 200px;
    overflow-y: auto;
    margin-top: 0.5rem;
}

.time-slot {
    border: 2px solid #d1d5db;
    background: white;
    padding: 1rem;
    border-radius: 10px;
    cursor: pointer;
    text-align: center;
    font-weight: 600;
    transition: all 0.3s;
}

.time-slot:hover {
    border-color: #ef4444;
}

.time-slot.active {
    border-color: #b91c1c;
    background: #b91c1c;
    color: white;
}

.book-btn {
    width: 100%;
    background: linear-gradient(135deg, #b91c1c 0%, #ea580c 100%);
    color: white;
    border: none;
    padding: 1.2rem;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.7rem;
    transition: all 0.3s;
}

.book-btn:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 30px rgba(185, 28, 28, 0.3);
}

.status-text {
    text-align: center;
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #6b7280;
}

.star-filled {
    color: #fbbf24;
    font-size: 22px;
}
/* Responsive */
@media (max-width: 968px) {
    .hero-content {
        grid-template-columns: 1fr;
    }

    .main-content {
        grid-template-columns: 1fr;
    }

    .profile-section {
        flex-direction: column;
        text-align: center;
    }

    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .expertise-grid {
        grid-template-columns: 1fr;
    }
}

@media only screen and (max-width: 767px) {
    .profile-info h1 {
        font-size: 1.8rem;
    }
    .profile-info .title {
        font-size: 23px;
    }
    .profile-info .subtitle {
        font-size: 16px;
        color: #6d6a6a;
    }
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .session-buttons {
        grid-template-columns: repeat(3, 1fr);
    }
    .info-box {
        padding: 0;
    }
    .card h2 {
        font-size: 20px;
        margin-bottom: 10px;
    }
    .card {
        padding: 20px;
    }
    .main-content {
        padding: 0;
        gap: 0;
        margin-top: 20px;
    }
    .skill-tag {
        padding: 5px 9px;
        font-size: 13px;
    }
    .service-item .price-list li {
        font-size: 14px;
    }
    .service-item h4 {
        font-size: 15px;
    }
    .service-item {
        padding: 12px;
    }
    .booking-form h2 {
        font-size: 23px;
        font-weight: bold;
    }
    .booking-form {
        padding: 20px 15px;
    }
    .profile-img {
        width: 205px;
        height: 205px;
    }
}
