@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');

.myAboutPage
{
    padding: 3% 40px 3%;
    background: white;
    text-align: center;
}
.myAboutPage .head-part h2
{
    position: relative;
    font-size: 45px;
    font-family: "Raleway", sans-serif;
    text-transform: uppercase;
}
.myAboutPage .head-part span
{
    display: block;
    width: 500px;
    background: #000000;
    height: 1px;
    margin: 0 auto;
    position: relative;
}
.myAboutPage .head-part span::before
{
    content: '';
    width: 2px;
    height: 20px;
    background: #ff551a;
    position: absolute;
    top: 100%;
    left: 50%;
    margin: -10px -1px 0 0;
}


.myAboutPage  p
{
    font-size: 17px;
    line-height: 30px;
    width: 73%;
    margin: 40px auto 55px auto;
}

.myAboutPage a {
    display: inline-block; /* button jaisa look */
    width: 250px;
    text-align: center;
    text-transform: uppercase;
    font-weight: 600;
    margin: 0 10px;
    padding: 12px 20px; /* proper padding */
    border-radius: 30px;
    border: 1px solid #ff551a;
    background: #ff551a;
    color: #fff;
    text-decoration: none; /* underline hatao */
    transition: all 0.3s ease; /* smooth hover */
}

.myAboutPage a:hover {
    background: #fff;
    color: #ff551a;  /* text color fix */
    border: 1px solid #ff551a;
}

.myAboutPage a.active{
    color: black;
     text-decoration: none; /* underline hatao */
    transition: all 0.3s ease; /* smooth hover */
}
.myAboutPage a.active:hover{
    background: #ff551a;
    color: white;
}

.myJourney {
    padding: 5% 0px 0px;
    background: #fffde7a3;
}

.myJourney .left-section {
    position: relative;
    text-align: center;
}

.myJourney .left-section img {
    max-width: 100%;
    height: auto;
}

.journey-circle {
    width: 170px;
    height: 170px;
    background: #ffffff;
    position: absolute;
    top: -130px;
    left: 10%;
    box-shadow: 0px 4px 8px rgba(0,0,0,0.2);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Small screen adjustments */
@media (max-width: 767px) {
    .myAboutPage
    {
            padding: 3% 5px 3%;
    }
    .myAboutPage .head-part h2
    {
        font-size: 25px;
    }
    .myAboutPage .head-part span
    {
        width: 100%;
    }
    .myJourney{
        padding-top: 20%;
    }
    .journey-circle {
        width: 80px;
        height: 80px;
        top: -40px;
        left: 5%;
    }
    .myAboutPage p
    {
        width: 100%;
    }

    .right-section {
        text-align: center;
        margin-top: 40px;
    }
}

.myAboutPage-2 {
    padding: 60px 20px;
    background: #f9f9f9;
    position: relative;
}

.myAboutPage-2 .head-part {
    max-width: 950px;
    margin: 0 auto;
}

.myAboutPage-2 h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #222;
    position: relative;
    display: inline-block;
}

.myAboutPage-2 h2::after {
    content: "";
    width: 190px;
    height: 3px;
    background: #ff551a;
    display: block;
    margin: 10px auto 0;
    border-radius: 2px;
}

.myAboutPage-2 p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 20px;
}

.myAboutPage-2 strong {
    display: block;
    font-size: 17px;
    color: #333;
    margin: 15px 0;
    font-weight: 600;
}

.myAboutPage-2 ul {
    text-align: left;
    margin: 20px auto;
    padding: 0;
    max-width: 850px;
}

.myAboutPage-2 ul li {
    list-style: none;
    font-size: 16px;
    color: #444;
    margin: 12px 0;
    padding-left: 35px;
    position: relative;
    line-height: 1.6;
}

.myAboutPage-2 ul li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 0;
    color: #ff551a;
    font-size: 18px;
    font-weight: bold;
}

.myAboutPage-2 h4 {
    font-size: 24px;
    font-weight: 600;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #222;
}

/* Responsive */
@media (max-width: 768px) {
    .myAboutPage-2 {
        padding: 40px 15px;
    }
    .myAboutPage-2 h2 {
        font-size: 26px;
    }
    .myAboutPage-2 p, 
    .myAboutPage-2 ul li {
        font-size: 15px;
    }
}


.sps-features-grid
{
    padding: 3% 40px 3%;
}

        .sps-features-grid .grid-title {
            font-family: 'Playfair Display', serif;
                font-size: 40px;
            font-weight: 700;
            margin-bottom: 3rem;
            position: relative;
        }

        .sps-features-grid .grid-title::after {
            content: '';
            display: block;
            width: 60px;
            height: 3px;
            background: var(--secondary-color);
            margin: 1rem auto 0;
        }

        .sps-features-grid .features-wrapper {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }

        .sps-features-grid .feature-card {
            background-color: var(--bg-color);
            padding: 2rem;
            border-radius: 8px;
            box-shadow: 0px 1px 5px 0px gray;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            opacity: 0;
            transform: translateY(20px);
            text-align: center;
        }

        .sps-features-grid .feature-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
        }

        .sps-features-grid .card-icon {
            font-size: 3rem;
            margin-bottom: 1rem;
            color: var(--secondary-color);
        }

        .sps-features-grid .card-heading {
            font-family: 'Playfair Display', serif;
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--primary-color);
            margin-top: 0;
        }

        .sps-features-grid .card-description {
            font-weight: 300;
            color: #666;
        }

        .sps-features-grid .grid-tagline {
            font-size: 1.5rem;
            font-weight: 500;
            font-style: italic;
            color: var(--primary-color);
            margin-top: 4rem;
            padding-top: 2rem;
            border-top: 1px solid var(--border-color);
        }

        @media (max-width: 768px) {
            .sps-features-grid .grid-container {
                padding: 2rem 1rem;
            }
            .sps-features-grid .grid-title {
                font-size: 2rem;
            }
            .sps-features-grid .features-wrapper {
                grid-template-columns: 1fr;
            }
            .sps-features-grid
            {
                padding: 3% 10px 3%;
            }
        }

        /* Keyframes */
        @keyframes fadeIn {
            to { opacity: 1; transform: translateY(0); }
        }

        @keyframes slideUp {
            to { opacity: 1; transform: translateY(0); }
        }