:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-18285de */.about-hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 7%;
    background: url('https://images.unsplash.com/photo-1604335399105-a0c585fd81a1') center/cover no-repeat;
    border-radius: 30px;
    overflow: hidden;
}

.about-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(15, 23, 42, 0.9),
        rgba(30, 41, 59, 0.75)
    );
}

.about-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    text-align: center;
    color: white;
}

.about-label {
    display: inline-block;
    padding: 8px 18px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 30px;
    font-size: 14px;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
}

.about-content h1 {
    font-size: 58px;
    line-height: 1.2;
    margin-bottom: 25px;
}

.about-content p {
    font-size: 18px;
    line-height: 1.9;
    color: #e2e8f0;
    margin-bottom: 35px;
}

.about-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.about-btn-main {
    padding: 16px 30px;
    background: white;
    color: #0f172a;
    text-decoration: none;
    border-radius: 40px;
    font-weight: 600;
    transition: 0.3s;
}

.about-btn-main:hover {
    transform: translateY(-3px);
}

.about-btn-outline {
    padding: 16px 30px;
    border: 1px solid white;
    color: white;
    text-decoration: none;
    border-radius: 40px;
    transition: 0.3s;
}

.about-btn-outline:hover {
    background: white;
    color: #0f172a;
}

/* Responsive */
@media (max-width: 991px) {
    .about-content h1 {
        font-size: 42px;
    }

    .about-content p {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .about-content h1 {
        font-size: 34px;
    }

    .about-buttons {
        flex-direction: column;
    }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-d52c704 */.story-section {
    padding: 100px 7%;
    background: #ffffff;
}

.story-container {
    display: flex;
    align-items: center;
    gap: 60px;
}

.story-image {
    flex: 1;
}

.story-image img {
    width: 100%;
    border-radius: 25px;
    object-fit: cover;
    box-shadow: 0 25px 50px rgba(0,0,0,0.08);
}

.story-content {
    flex: 1;
}

.story-label {
    display: inline-block;
    padding: 8px 18px;
    background: #f1f5f9;
    border-radius: 30px;
    font-size: 14px;
    color: #0f172a;
    margin-bottom: 20px;
}

.story-content h2 {
    font-size: 42px;
    color: #0f172a;
    line-height: 1.3;
    margin-bottom: 25px;
}

.story-content p {
    font-size: 16px;
    color: #64748b;
    line-height: 1.9;
    margin-bottom: 20px;
}

.story-counter {
    display: flex;
    gap: 20px;
    margin-top: 35px;
}

.counter-box {
    background: #f8fafc;
    padding: 25px;
    border-radius: 20px;
    flex: 1;
    text-align: center;
    border: 1px solid #e2e8f0;
    transition: 0.3s;
}

.counter-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.05);
}

.counter-box h3 {
    font-size: 32px;
    color: #0f172a;
    margin-bottom: 10px;
}

.counter-box span {
    font-size: 14px;
    color: #64748b;
}

/* Responsive */
@media (max-width: 991px) {
    .story-container {
        flex-direction: column;
    }

    .story-content h2 {
        font-size: 34px;
    }

    .story-counter {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .story-content h2 {
        font-size: 30px;
    }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-3e59cda */.vision-section {
    padding: 100px 7%;
    background: #f8fafc;
}

.vision-container {
    display: flex;
    align-items: center;
    gap: 60px;
}

.vision-left {
    flex: 1;
}

.vision-label {
    display: inline-block;
    padding: 8px 18px;
    background: white;
    border-radius: 30px;
    border: 1px solid #e2e8f0;
    font-size: 14px;
    color: #0f172a;
    margin-bottom: 20px;
}

.vision-left h2 {
    font-size: 42px;
    line-height: 1.3;
    color: #0f172a;
    margin-bottom: 25px;
}

.vision-left p {
    font-size: 16px;
    color: #64748b;
    line-height: 1.9;
    margin-bottom: 30px;
}

.vision-btn {
    display: inline-block;
    padding: 15px 28px;
    background: #0f172a;
    color: white;
    text-decoration: none;
    border-radius: 40px;
    font-weight: 600;
    transition: 0.3s;
}

.vision-btn:hover {
    transform: translateY(-3px);
}

.vision-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.vision-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
    transition: 0.3s;
}

.vision-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

.vision-card h3 {
    font-size: 22px;
    color: #0f172a;
    margin-bottom: 15px;
}

.vision-card p {
    color: #64748b;
    line-height: 1.8;
    font-size: 15px;
}

/* Responsive */
@media (max-width: 991px) {
    .vision-container {
        flex-direction: column;
    }

    .vision-left h2 {
        font-size: 34px;
    }
}

@media (max-width: 768px) {
    .vision-left h2 {
        font-size: 30px;
    }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-94e933e */.mission-section {
    padding: 100px 7%;
    background: #ffffff;
}

.mission-container {
    display: flex;
    align-items: center;
    gap: 60px;
}

.mission-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mission-card {
    background: #f8fafc;
    padding: 28px;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
    transition: 0.3s;
}

.mission-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

.mission-card span {
    font-size: 32px;
    font-weight: 300;
    color: #94a3b8;
    display: block;
    margin-bottom: 15px;
}

.mission-card h3 {
    font-size: 22px;
    color: #0f172a;
    margin-bottom: 12px;
}

.mission-card p {
    color: #64748b;
    line-height: 1.8;
    font-size: 15px;
}

.mission-right {
    flex: 1;
}

.mission-label {
    display: inline-block;
    padding: 8px 18px;
    background: #f1f5f9;
    border-radius: 30px;
    font-size: 14px;
    color: #0f172a;
    margin-bottom: 20px;
}

.mission-right h2 {
    font-size: 42px;
    line-height: 1.3;
    color: #0f172a;
    margin-bottom: 25px;
}

.mission-right p {
    font-size: 16px;
    color: #64748b;
    line-height: 1.9;
    margin-bottom: 30px;
}

.mission-btn {
    display: inline-block;
    padding: 15px 28px;
    background: #0f172a;
    color: white;
    text-decoration: none;
    border-radius: 40px;
    font-weight: 600;
    transition: 0.3s;
}

.mission-btn:hover {
    transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 991px) {
    .mission-container {
        flex-direction: column;
    }

    .mission-right h2 {
        font-size: 34px;
    }
}

@media (max-width: 768px) {
    .mission-right h2 {
        font-size: 30px;
    }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-1a9198e */.trusted-section {
    padding: 100px 7%;
    background: #f8fafc;
}

.trusted-header {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 60px;
}

.trusted-label {
    display: inline-block;
    padding: 8px 18px;
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 30px;
    font-size: 14px;
    color: #0f172a;
    margin-bottom: 20px;
}

.trusted-header h2 {
    font-size: 42px;
    color: #0f172a;
    margin-bottom: 20px;
    line-height: 1.3;
}

.trusted-header p {
    font-size: 16px;
    color: #64748b;
    line-height: 1.9;
}

.trusted-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.trusted-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
    transition: 0.3s;
}

.trusted-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

.trusted-icon {
    font-size: 32px;
    margin-bottom: 20px;
}

.trusted-card h3 {
    font-size: 22px;
    color: #0f172a;
    margin-bottom: 15px;
}

.trusted-card p {
    color: #64748b;
    line-height: 1.8;
    font-size: 15px;
}

/* Highlight Card */
.highlight-card {
    background: linear-gradient(135deg, #0f172a, #1e293b);
    color: white;
}

.highlight-card h3 {
    color: white;
}

.highlight-card p {
    color: #cbd5e1;
}

.highlight-card a {
    display: inline-block;
    margin-top: 20px;
    color: white;
    text-decoration: none;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 991px) {
    .trusted-grid {
        grid-template-columns: 1fr;
    }

    .trusted-header h2 {
        font-size: 34px;
    }
}

@media (max-width: 768px) {
    .trusted-header h2 {
        font-size: 30px;
    }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-d5a8358 */.achievement-section {
    padding: 100px 7%;
    background: #ffffff;
}

.achievement-container {
    display: flex;
    align-items: center;
    gap: 60px;
}

.achievement-left {
    flex: 1;
}

.achievement-label {
    display: inline-block;
    padding: 8px 18px;
    background: #f1f5f9;
    border-radius: 30px;
    font-size: 14px;
    color: #0f172a;
    margin-bottom: 20px;
}

.achievement-left h2 {
    font-size: 42px;
    line-height: 1.3;
    color: #0f172a;
    margin-bottom: 25px;
}

.achievement-left p {
    font-size: 16px;
    color: #64748b;
    line-height: 1.9;
    margin-bottom: 30px;
}

.achievement-btn {
    display: inline-block;
    padding: 15px 28px;
    background: #0f172a;
    color: white;
    text-decoration: none;
    border-radius: 40px;
    font-weight: 600;
    transition: 0.3s;
}

.achievement-btn:hover {
    transform: translateY(-3px);
}

.achievement-right {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.achievement-card {
    background: #f8fafc;
    padding: 35px;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
    text-align: center;
    transition: 0.3s;
}

.achievement-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

.achievement-card h3 {
    font-size: 42px;
    color: #0f172a;
    margin-bottom: 12px;
}

.achievement-card p {
    color: #64748b;
    font-size: 15px;
}

/* Responsive */
@media (max-width: 991px) {
    .achievement-container {
        flex-direction: column;
    }

    .achievement-left h2 {
        font-size: 34px;
    }
}

@media (max-width: 768px) {
    .achievement-right {
        grid-template-columns: 1fr;
    }

    .achievement-left h2 {
        font-size: 30px;
    }
}/* End custom CSS */