body {
    animation: fadeIn 1s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


.about {
    background: url("../aboutPhotos/about.png");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 250px;
    position: relative;
    bottom: 60px;
    color: white;
    margin-top: 70px;
    text-align: center;


}

.about h1 {
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-size: 50px;
    text-align: start;
    padding: 80px 140px 0;
    /* margin-top: -180px; */
    color: white;
    position: relative;

}



@media screen and (max-width:768px) {
    .about h1 {
        font-size: 30px;
        text-align: center;
        padding: 80px;
    }
}


.purple-0 {
    margin-top: -47px;
    margin-left:20px
}

.about-us {
    display: flex;
    justify-content: center;
    gap: 100px;
    flex-wrap: wrap;
}

.about-us button {
    background-color: rgb(175, 82, 222);
    padding: 8px;
    border-radius: 5px;
    color: white;
    border: none;
    transition: 0.5s;
}

.about-us button:hover {
    background-color: rgb(100, 34, 133);
    transform: matrix(1);
}


.connect img {
    width: 100%;
    max-width: 500px;
}

@media screen and (max-width:768px){
    .about-us{
        padding-inline-start: 40px;
        padding-inline-end: 40px;
    }
}

@media screen and (max-width:1280px){
    .our-service{
        margin-top:-10px
    }
}


#cart-countdown {
    margin-left: 10px;
    color: red;
    font-size: 14px;
    font-weight: bold;
}


.astrologer{
    background: url("../aboutPhotos/image 7.png");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 600px;
    position: relative;
    color: white;
    text-align: center;
}


.horoscope {
    background: url("../Photos/Group 1.png");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 500px;
    position: relative;
    color: white;
    text-align: center;
    margin-top:1px

   
}

.horoscope img{
    
        width: 100%;
        max-width: 450px;
        margin-top: 160px
    
}


@media screen and (max-width:1280px){
    .footer{
        margin-top:0px
    }
}

@media screen and (max-width:410px){
    .footer{
        margin-top:0px;
        
    }
  
}

:root {
    --primary-color: #6a4c93;
    --secondary-color: #f8961e;
    --text-color: #333;
    --light-bg: #f9f4ff;
    --accent-color: #9d4edd;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    /* background-color: #f5f5f5; */
    color: var(--text-color);
    line-height: 1.6;
    padding: 0 !important;
    background-color: white !important;
}

.founder-section {
    max-width: 80%;
    margin: auto;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    position: relative;
    margin-bottom: 50px;
}

.founder-header {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    padding: 30px;
    text-align: center;
    position: relative;
}

.founder-header h1 {
    font-size: 42px;
    margin-bottom: 10px;
    font-weight: 700;
}

.founder-header p {
    font-size: 18px;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto;
}

.founder-content {
    display: flex;
    flex-direction: column;
    padding: 0;
}

.founder-image-container {
    position: relative;
    flex: 1;
    overflow: hidden;
    min-height: 400px;
    background: var(--light-bg);
}

.founder-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.founder-bio {
    flex: 2;
    padding: 40px;
}

.bio-tabs {
    display: flex;
    margin-bottom: 30px;
    border-bottom: 2px solid #eee;
}

.tab {
    padding: 12px 24px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
    color: #777;
}

.tab.active {
    color: var(--primary-color);
    border-bottom: 3px solid var(--secondary-color);
}

.tab:hover:not(.active) {
    color: var(--accent-color);
    background-color: #f9f9f9;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.tab-content p {
    margin-bottom: 20px;
    font-size: 16px;
}

.highlight {
    color: var(--primary-color);
    font-weight: 600;
}

.stats-container {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin: 30px 0;
}

.stat-box {
    flex: 1;
    min-width: 200px;
    background: var(--light-bg);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease;
}

.stat-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.stat-number {
    font-size: 42px;
    font-weight: 700;
    color: var(--accent-color);
    display: block;
}

.stat-label {
    font-size: 16px;
    color: #666;
}

.specialty-list {
    list-style: none;
    margin: 20px 0;
}

.specialty-list li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
}

.specialty-list li:before {
    content: "✨";
    margin-right: 10px;
    color: var(--secondary-color);
}

.mission-statement {
    background: var(--light-bg);
    padding: 25px;
    border-radius: 10px;
    border-left: 5px solid var(--secondary-color);
    margin: 30px 0;
}

.quote {
    font-style: italic;
    font-size: 18px;
    position: relative;
    padding: 20px 40px;
}

.quote:before, .quote:after {
    content: '"';
    font-size: 60px;
    color: var(--accent-color);
    opacity: 0.2;
    position: absolute;
}

.quote:before {
    top: -10px;
    left: 0;
}

.quote:after {
    bottom: -30px;
    right: 0;
}

@media (min-width: 992px) {
    .founder-content {
        flex-direction: row;
    }
    
    .founder-image-container {
        max-width: 40%;
    }
}

@media (max-width: 768px) {
    .founder-header h1 {
        font-size: 32px;
    }
    
    .founder-bio {
        padding: 30px 20px;
    }
    
    .bio-tabs {
        overflow-x: auto;
        white-space: nowrap;
    }
}
.about-section {
    display: flex;
    flex-direction: row;
    align-items: center;
    max-width: 1200px;
    margin: auto;
    padding: 2rem;
    gap: 3rem;
}

.about-image {
    flex: 1;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.about-image:hover {
    transform: scale(1.02);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
}

.about-content {
    flex: 1;
    padding: 1rem;
}

.about-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #333;
    position: relative;
}

.about-content h2::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #a239ca, #4717f6);
    bottom: -10px;
    left: 0;
    border-radius: 2px;
}

.about-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: #555;
}

.connect-btn {
    display: inline-block;
    background: linear-gradient(135deg, #a239ca, #7c4dff);
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(162, 57, 202, 0.4);
}

.connect-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(162, 57, 202, 0.6);
}

/* Responsive design */
@media (max-width: 768px) {
    .about-section {
        flex-direction: column;
        padding: 1.5rem;
        gap: 2rem;
    }
    .about-image {
        margin-bottom: 1rem;
    }
    .about-content h2 {
        font-size: 2rem;
    }
}


