/* How to Start Page Styles */

.how-to-start-page {
    background-color: #fff;
}

.how-to-start-page .main_menu {
    position: relative;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 999;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.getting-started {
    padding: 80px 0;
    background: #f8f9fa;
    position: relative;
    overflow: hidden;
    margin: 0;
}

.getting-started::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(64, 185, 119, 0.05) 0%, rgba(45, 139, 87, 0.05) 100%);
    z-index: 0;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
    padding: 0;
}

.section-header h2 {
    font-size: 42px;
    color: #333;
    margin-bottom: 15px;
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #40B977, #2D8B57);
    border-radius: 2px;
}

.section-header p {
    font-size: 18px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.steps-container {
    margin-top: 30px;
    align-items: center;
    position: relative;
}

.phone-image {
    position: relative;
    width: 100%;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 15px;
    transform: translateY(0);
    animation: float 6s ease-in-out infinite;
    z-index: 1;
}

.phone-image img {
    width: auto;
    height: 100%;
    object-fit: cover;
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.15));
    transition: all 0.5s ease;
}

.phone-image:hover img {
    transform: scale(1.05);
    filter: drop-shadow(0 25px 35px rgba(0, 0, 0, 0.2));
}

/* Floating Bubbles */
.floating-bubbles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
}

.bubble {
    position: absolute;
    background: rgba(64, 185, 119, 0.1);
    border-radius: 50%;
    animation: floatBubble 15s infinite linear;
}

.bubble-1 {
    width: 100px;
    height: 100px;
    top: 20%;
    left: 10%;
    animation-duration: 20s;
}

.bubble-2 {
    width: 150px;
    height: 150px;
    top: 40%;
    right: 15%;
    animation-duration: 25s;
}

.bubble-3 {
    width: 80px;
    height: 80px;
    bottom: 30%;
    left: 20%;
    animation-duration: 18s;
}

.bubble-4 {
    width: 120px;
    height: 120px;
    bottom: 20%;
    right: 25%;
    animation-duration: 22s;
}

@keyframes floatBubble {
    0% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-100px) rotate(180deg);
    }
    100% {
        transform: translateY(0) rotate(360deg);
    }
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
    100% {
        transform: translateY(0px);
    }
}

.steps-content {
    padding: 0 15px;
    position: relative;
    z-index: 1;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.steps-content::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 2px;
    background: linear-gradient(to bottom, transparent, #40B977, transparent);
    opacity: 0.3;
}

.step-item {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    position: relative;
    transition: all 0.3s ease;
    cursor: pointer;
}

.step-item:last-child {
    margin-bottom: 0;
}

.step-content {
    display: flex;
    align-items: center;
    width: 100%;
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.step-item:hover .step-content {
    transform: translateX(10px);
    box-shadow: 0 8px 25px rgba(64, 185, 119, 0.1);
}

.step-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: rgba(64, 185, 119, 0.1);
    margin-right: 20px;
    min-width: 40px;
}

.step-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #40B977, #2D8B57);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    color: #fff;
    font-size: 24px;
    transition: all 0.3s ease;
}

.step-item:hover .step-icon {
    transform: scale(1.1);
}

.step-text h3 {
    font-size: 24px;
    color: #333;
    margin-bottom: 8px;
    font-weight: 600;
}

.step-text p {
    color: #666;
    font-size: 16px;
    margin: 0;
    line-height: 1.6;
}

/* Detailed Steps Section */
.detailed-steps {
    padding: 80px 0;
    background: #fff;
}

.step-detail {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 12px -2px 10px 6px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
}

.step-detail h3 {
    font-size: 24px;
    color: #333;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.step-detail h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #40B977, #2D8B57);
    border-radius: 2px;
}

.step-detail ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.step-detail ul li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    color: #666;
    line-height: 1.6;
}

.step-detail ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #40B977;
    font-weight: bold;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.faq-section .section-header h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.faq-section .section-header h2::after {
    width: 80px;
    height: 4px;
}

.faq-section .section-header p {
    font-size: 18px;
    color: #666;
}

.faq-column {
    padding: 0 15px;
}

.faq-item {
    background: #fff;
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(64, 185, 119, 0.1);
}

.faq-question {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.faq-question i {
    font-size: 24px;
    color: #40B977;
    margin-right: 15px;
}

.faq-question h3 {
    font-size: 20px;
    color: #333;
    margin: 0;
    font-weight: 600;
}

.faq-answer {
    padding-left: 39px;
}

.faq-answer p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Responsive Design */
@media (min-width: 1200px) {
    .how-to-start-page .container {
        max-width: 1140px;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .how-to-start-page .container {
        max-width: 960px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .how-to-start-page .container {
        max-width: 720px;
    }
}

@media (min-width: 576px) and (max-width: 767px) {
    .how-to-start-page .container {
        max-width: 540px;
    }
}

@media (max-width: 575px) {
    .how-to-start-page .container {
        width: 100%;
        padding-right: 15px;
        padding-left: 15px;
    }
}

@media (max-width: 991px) {
    .breadcrumb_bg {
        padding: 80px 0;
    }
    
    .breadcrumb_iner_item h2 {
        font-size: 36px;
    }
    
    .getting-started,
    .detailed-steps,
    .faq-section {
        margin: 60px 0;
        padding: 40px 0;
    }
    
    .phone-image {
        height: 500px;
        margin-bottom: 40px;
    }
    
    .step-item {
        margin-bottom: 20px;
    }
    
    .detailed-steps {
        padding: 40px 0;
    }
    
    .faq-section {
        padding: 40px 0;
    }
}

@media (max-width: 767px) {
    .breadcrumb_bg {
        padding: 60px 0;
    }
    
    .breadcrumb_iner_item h2 {
        font-size: 30px;
    }
    
    .breadcrumb_iner_item p {
        font-size: 16px;
    }
    
    .getting-started,
    .detailed-steps,
    .faq-section {
        margin: 40px 0;
        padding: 30px 0;
    }
    
    .section-header {
        margin-bottom: 30px;
    }
    
    .section-header h2 {
        font-size: 28px;
    }
    
    .steps-container {
        flex-direction: column;
        margin-top: 20px;
    }
    
    .phone-image {
        height: 400px;
        margin-bottom: 30px;
    }
    
    .steps-content {
        padding: 0;
    }
    
    .step-item {
        margin-bottom: 15px;
    }
    
    .step-content {
        padding: 15px;
    }
    
    .step-number {
        font-size: 1.2rem;
        margin-right: 15px;
    }
    
    .step-icon {
        width: 40px;
        height: 40px;
        font-size: 20px;
        margin-right: 15px;
    }
    
    .step-text h3 {
        font-size: 20px;
    }
    
    .step-text p {
        font-size: 14px;
    }
    
    .faq-section {
        padding: 30px 0;
    }
    
    .faq-column {
        padding: 0;
    }
    
    .faq-item {
        padding: 20px;
    }
    
    .faq-question {
        margin-bottom: 10px;
    }
    
    .faq-question i {
        font-size: 20px;
    }
    
    .faq-question h3 {
        font-size: 18px;
    }
    
    .faq-answer p {
        font-size: 14px;
    }
    
    .detailed-steps {
        padding: 30px 0;
    }
    
    .step-detail {
        padding: 20px;
    }
}

@media (max-width: 575px) {
    .breadcrumb_bg {
        padding: 50px 0;
    }
    
    .breadcrumb_iner_item h2 {
        font-size: 26px;
    }
    
    .getting-started,
    .detailed-steps,
    .faq-section {
        margin: 30px 0;
        padding: 20px 0;
    }
    
    .section-header h2 {
        font-size: 24px;
    }
    
    .phone-image {
        height: 350px;
    }
    
    .step-item,
    .step-content {
        flex-direction: column;
        text-align: center;
    }
    
    .step-content {
        padding: 15px;
    }
    
    .step-number,
    .step-icon {
        margin-bottom: 10px;
    }
    
    .step-text h3 {
        font-size: 18px;
    }
    
    .step-text p {
        font-size: 14px;
    }
}

/* Page Specific Styles */

.breadcrumb_bg {
    position: relative;
    background-image: url("../img/about-page-cover.png");
    background-repeat: no-repeat;
    background-size: cover;
    overflow: hidden;
    margin-top: 0;
}

.breadcrumb_bg::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(18, 221, 109, 0.6);
    backdrop-filter: blur(4px);
    z-index: 1;
}

.breadcrumb_iner {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 0 15px;
}

.breadcrumb_iner_item h2 {
    font-size: 42px;
    color: #fff;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: capitalize;
}

.breadcrumb_iner_item p {
    color: #fff;
    font-size: 18px;
    margin: 0;
}

.section-header,
.section_tittle {
    margin-bottom: 50px;
}

/* How It Works Section */
.how-it-works {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.how-it-works .work-item {
    text-align: center;
    padding: 30px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    margin-bottom: 30px;
}

.how-it-works .work-item:hover {
    transform: translateY(-5px);
}

.how-it-works .work-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: #40B977;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.how-it-works .work-icon i {
    font-size: 32px;
    color: #fff;
}

.how-it-works .work-item h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #333;
}

.how-it-works .work-item p {
    color: #666;
    margin-bottom: 0;
}
