.elementor-69 .elementor-element.elementor-element-59197f9{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-69 .elementor-element.elementor-element-4881dc3{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-69 .elementor-element.elementor-element-1849c3c{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-69 .elementor-element.elementor-element-954d2ff{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}/* Start custom CSS for html, class: .elementor-element-990b576 */<style>
/* Variables for consistent colors */
:root {
    --gold: #c5a059;
    --dark-blue: #1a1a2e;
    --light-bg: #f8f9ff;
    --text-color: #333;
}

.achievements-section {
    background: var(--light-bg);
    padding: 80px 20px;
    text-align: center;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    position: relative;
    overflow: hidden; /* For potential 3D background elements */
}

/* Optional: Add some subtle 3D-like background elements */
.achievements-section::before,
.achievements-section::after {
    content: '';
    position: absolute;
    background: rgba(var(--gold), 0.1);
    border-radius: 50%;
    filter: blur(50px);
    z-index: 0;
}

.achievements-section::before {
    width: 150px;
    height: 150px;
    top: 10%;
    left: -5%;
}

.achievements-section::after {
    width: 200px;
    height: 200px;
    bottom: 5%;
    right: -10%;
}


.achievements-title {
    font-size: 2.8rem;
    color: var(--dark-blue);
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}

.achievements-title span {
    color: var(--gold);
}

.achievements-subtitle {
    font-size: 1.1rem;
    color: var(--text-color);
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); /* Responsive columns */
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.stat-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    border-top: 5px solid var(--gold); /* Golden line at top */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    transform-style: preserve-3d; /* For subtle 3D hover */
    perspective: 1000px; /* For subtle 3D hover */
}

.stat-card:hover {
    transform: translateY(-5px) rotateX(2deg); /* Subtle lift and rotate */
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.stat-icon {
    font-size: 3rem; /* Larger emoji icons */
    margin-bottom: 15px;
    line-height: 1; /* Adjust line height for icons */
}

.stat-number {
    font-size: 3.5rem;
    font-weight: bold;
    color: var(--dark-blue);
    margin-bottom: 10px;
}

.stat-text {
    font-size: 1.1rem;
    color: var(--text-color);
    font-weight: 500;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .achievements-title {
        font-size: 2.2rem;
    }

    .stats-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

    .stat-number {
        font-size: 2.8rem;
    }
    .stat-text {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .achievements-title {
        font-size: 1.8rem;
    }
    .stats-grid {
        grid-template-columns: 1fr; /* Single column on very small screens */
    }
    .achievements-section::before,
    .achievements-section::after {
        display: none; /* Hide background elements on small screens */
    }
}
</style>/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-4974b7e */<style>
:root {
    --gold: #c5a059;
    --dark-blue: #1a1a2e;
}

.testimonial-section {
    background: #f8f9ff;
    padding: 60px 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--dark-blue);
    margin-bottom: 40px;
}

.title span {
    color: var(--gold);
}

.swiper {
    width: 100%;
    padding-top: 50px;
    padding-bottom: 50px;
}

.swiper-slide {
    background-position: center;
    background-size: cover;
    width: 350px; /* Card size */
}

.testimonial-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    border-bottom: 6px solid var(--gold);
    transition: 0.3s;
}

.img-box {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--gold);
}

.img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-card p {
    font-style: italic;
    color: #555;
    line-height: 1.6;
    margin-bottom: 15px;
}

.testimonial-card h3 {
    margin: 10px 0;
    font-size: 1.2rem;
    color: var(--dark-blue);
}

.stars {
    color: #f1c40f;
    font-size: 1.2rem;
}

/* Pagination color customize */
.swiper-pagination-bullet-active {
    background: var(--gold) !important;
}

@media (max-width: 480px) {
    .swiper-slide {
        width: 280px;
    }
}
</style>/* End custom CSS */