/* Custom Styles for New Pages */

/* Page Title Section */
.page-title {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 100px 0;
    position: relative;
    color: white;
}

.page-title::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
}

.page-title .content-box {
    position: relative;
    z-index: 2;
}

.page-title h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
}

.bread-crumb {
    list-style: none;
    padding: 0;
    margin: 0;
}

.bread-crumb li {
    display: inline-block;
    margin-right: 10px;
}

.bread-crumb li:not(:last-child)::after {
    content: ">";
    margin-left: 10px;
    color: #ccc;
}

.bread-crumb a {
    color: #ccc;
    text-decoration: none;
}

.bread-crumb a:hover {
    color: white;
}

/* Section Padding */
.section-padding {
    padding: 80px 0;
}

.bg-light {
    background-color: #f8f9fa;
}

/* Section Titles */
.sec-title {
    margin-bottom: 50px;
}

.sec-title h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #333;
}

.sec-title p {
    font-size: 18px;
    color: #666;
    margin: 0;
}

/* How It Works Section */
.work-step {
    background: white;
    padding: 30px 20px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    transition: transform 0.3s ease;
}

.work-step:hover {
    transform: translateY(-5px);
}

.work-step .icon-box {
    position: relative;
    margin-bottom: 20px;
}

.work-step .icon {
    width: 80px;
    height: 80px;
    background: #405ff2;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.work-step .icon i {
    color: white;
    font-size: 30px;
}

.work-step .count {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 30px;
    height: 30px;
    background: #ff6b6b;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 14px;
}

.work-step h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.work-step p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Feature List */
.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.feature-list li:last-child {
    border-bottom: none;
}

.feature-list li i {
    color: #28a745;
    margin-right: 15px;
    font-size: 16px;
}

/* Stats Row */
.stats-row {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}

.stat-item {
    text-align: center;
    flex: 1;
}

.stat-item h3 {
    font-size: 36px;
    font-weight: 700;
    color: #405ff2;
    margin-bottom: 5px;
}

.stat-item p {
    color: #666;
    margin: 0;
}

/* Step by Step Guide */
.guide-section {
    margin-bottom: 60px;
}

.guide-section h3 {
    font-size: 28px;
    font-weight: 600;
    color: #333;
    margin-bottom: 30px;
}

.step-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

.step-number {
    width: 50px;
    height: 50px;
    background: #405ff2;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 20px;
    margin-right: 20px;
    flex-shrink: 0;
}

.step-content h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
}

.step-content p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Tips Section */
.tip-box {
    background: white;
    padding: 30px 20px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    margin-bottom: 30px;
    transition: transform 0.3s ease;
}

.tip-box:hover {
    transform: translateY(-5px);
}

.tip-box .icon {
    width: 60px;
    height: 60px;
    background: #405ff2;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.tip-box .icon i {
    color: white;
    font-size: 24px;
}

.tip-box h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.tip-box p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* About Section */
.mission-box,
.vision-box {
    background: white;
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    height: 100%;
}

.mission-box .icon,
.vision-box .icon {
    width: 80px;
    height: 80px;
    background: #405ff2;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.mission-box .icon i,
.vision-box .icon i {
    color: white;
    font-size: 32px;
}

.mission-box h3,
.vision-box h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #333;
}

.mission-box p,
.vision-box p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Values Section */
.value-box {
    background: white;
    padding: 30px 20px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    transition: transform 0.3s ease;
}

.value-box:hover {
    transform: translateY(-5px);
}

.value-box .icon {
    width: 60px;
    height: 60px;
    background: #405ff2;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.value-box .icon i {
    color: white;
    font-size: 24px;
}

.value-box h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.value-box p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Team Section */
.team-member {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
}

.team-member .image {
    height: 250px;
    overflow: hidden;
}

.team-member .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member .content {
    padding: 25px 20px;
}

.team-member h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #333;
}

.team-member .designation {
    color: #405ff2;
    font-weight: 500;
    margin-bottom: 15px;
}

.team-member .description {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* FAQ Section */
.faq-category {
    margin-bottom: 40px;
}

.faq-category h3 {
    font-size: 24px;
    font-weight: 600;
    color: #333;
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 2px solid #405ff2;
}

.accordion-item {
    background: white;
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.accordion-header {
    padding: 20px 25px;
    background: #f8f9fa;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.accordion-header:hover {
    background: #e9ecef;
}

.accordion-header h4 {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin: 0;
}

.accordion-header .icon {
    color: #405ff2;
    font-size: 18px;
}

.accordion-content {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.accordion-item.active .accordion-content {
    padding: 20px 25px;
    max-height: 200px;
}

.accordion-content p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Contact CTA Section */
.contact-cta-section {
    text-align: center;
}

.contact-cta-section h3 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.contact-cta-section p {
    font-size: 18px;
    color: #666;
    margin-bottom: 30px;
}

/* Alert Messages */
.alert {
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid transparent;
    border-radius: 5px;
}

.alert-success {
    color: #155724;
    background-color: #d4edda;
    border-color: #c3e6cb;
}

.alert-danger {
    color: #721c24;
    background-color: #f8d7da;
    border-color: #f5c6cb;
}

.alert ul {
    margin: 0;
    padding-left: 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-title h1 {
        font-size: 36px;
    }

    .sec-title h2 {
        font-size: 28px;
    }

    .stats-row {
        flex-direction: column;
    }

    .stat-item {
        margin-bottom: 20px;
    }

    .step-item {
        flex-direction: column;
        text-align: center;
    }

    .step-number {
        margin: 0 auto 15px;
    }

    .mission-box,
    .vision-box {
        margin-bottom: 30px;
    }
}
