<style >
/* ==================== GLOBAL STYLES ==================== */
:root {
    --primary: #667eea;
    --primary-dark: #5a67d8;
    --secondary: #764ba2;
    --accent: #ffc107;
    --dark: #2d3748;
    --light: #f7fafc;
}

/* ==================== PAGE HEADER ==================== */
.page-header {
    background: linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.65)), url('/images/map.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

    .page-header::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(135deg, rgba(102,126,234,0.3) 0%, rgba(118,75,162,0.3) 100%);
        animation: shimmer 3s infinite;
    }

@@keyframes shimmer {
    0% {
        opacity: 0.5;
    }

    50% {
        opacity: 0.8;
    }

    100% {
        opacity: 0.5;
    }
}

.page-header .container {
    position: relative;
    z-index: 2;
    animation: slideUp 0.8s ease;
}

@@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


.breadcrumb-custom {
    background: transparent;
    padding: 0;
}

    .breadcrumb-custom a {
        color: rgba(255,255,255,0.9);
        text-decoration: none;
        transition: all 0.3s ease;
    }

        .breadcrumb-custom a:hover {
            color: var(--accent);
            transform: translateX(3px);
        }

    .breadcrumb-custom .active {
        color: var(--accent);
    }

/* ==================== INTRO SECTION ==================== */
.intro-section {
    padding: 30px 0;
    background: white;
}

.experience-badge {
    max-width: 180px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    animation: float 3s ease-in-out infinite;
    border-radius: 20px !important;
}

@@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.feature-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

    .feature-icon:hover {
        transform: scale(1.1) rotate(5deg);
        background: linear-gradient(135deg, var(--primary), var(--secondary)) !important;
    }

        .feature-icon:hover i {
            color: white !important;
            transform: scale(1.1);
        }

/* ==================== MISSION VISION SECTION ==================== */
.mission-vision-section {
    padding: 30px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.mission-card, .vision-card {
    background: white;
    padding: 30px;
    border-radius: 25px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(102,126,234,0.1);
    position: relative;
    overflow: hidden;
}

    .mission-card::before, .vision-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(102,126,234,0.1), transparent);
        transition: left 0.6s ease;
    }

    .mission-card:hover::before, .vision-card:hover::before {
        left: 100%;
    }

    .mission-card:hover, .vision-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(102,126,234,0.2);
        border-color: var(--primary);
    }

.icon-box {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.mission-card:hover .icon-box, .vision-card:hover .icon-box {
    transform: scale(1.1) rotate(10deg);
    background: linear-gradient(135deg, var(--primary), var(--secondary)) !important;
}

    .mission-card:hover .icon-box i, .vision-card:hover .icon-box i {
        color: white !important;
    }

/* ==================== CORE VALUES SECTION ==================== */
.values-section {
    padding: 30px 0;
    background: white;
}

.value-card {
    padding: 35px 25px;
    background: white;
    border-radius: 20px;
    transition: all 0.4s ease;
    border: 1px solid rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

    .value-card::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0;
        height: 4px;
        background: linear-gradient(90deg, var(--primary), var(--secondary));
        transition: width 0.4s ease;
    }

    .value-card:hover::after {
        width: 100%;
    }

    .value-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 35px rgba(102,126,234,0.15);
        border-color: transparent;
    }

.value-icon {
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.value-card:hover .value-icon {
    transform: rotateY(360deg);
    background: linear-gradient(135deg, var(--primary), var(--secondary)) !important;
}

    .value-card:hover .value-icon i {
        color: white !important;
    }

/* ==================== WHY CHOOSE US SECTION ==================== */
.why-choose-section {
    padding: 30px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.check-icon {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.why-item {
    transition: all 0.3s ease;
    cursor: pointer;
}

    .why-item:hover {
        transform: translateX(10px);
    }

        .why-item:hover .check-icon {
            transform: scale(1.1);
            background: linear-gradient(135deg, var(--primary), var(--secondary)) !important;
        }

            .why-item:hover .check-icon i {
                color: white !important;
            }

.stats-card {
    max-width: 220px;
    animation: float 3s ease-in-out infinite;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

/* ==================== TEAM SECTION ==================== */
.team-section {
    padding: 30px 0;
    background: white;
}

.team-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    cursor: pointer;
}

    .team-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(102,126,234,0.2);
    }

.team-image {
    position: relative;
    overflow: hidden;
    border-radius: 20px 20px 0 0;
}

    .team-image img {
        width: 100%;
        transition: transform 0.5s ease;
    }

.team-card:hover .team-image img {
    transform: scale(1.1);
}

.team-social {
    position: absolute;
    bottom: -60px;
    left: 0;
    right: 0;
    padding: 15px;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    text-align: center;
    transition: bottom 0.4s ease;
}

.team-card:hover .team-social {
    bottom: 0;
}

.social-icon {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 5px;
    transition: all 0.3s ease;
    text-decoration: none;
}

    .social-icon:hover {
        transform: translateY(-3px) rotate(360deg);
        background: var(--accent) !important;
        color: white !important;
    }

.team-card h4 {
    margin-top: 20px;
    font-weight: 700;
}

/* ==================== STATISTICS SECTION ==================== */
.stats-section {
    /* background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%); */
    padding: 30px 0;
    position: relative;
    overflow: hidden;
}

    .stats-section::before {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: radial-gradient(circle, rgba(255,255,255,0.1) 1px, transparent 1px);
        background-size: 40px 40px;
        animation: moveGrid 20s linear infinite;
    }

@@keyframes moveGrid {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(40px, 40px);
    }
}

.stat-item {
    padding: 25px;
    border-radius: 20px;
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}

    .stat-item:hover {
        transform: scale(1.05);
        background: rgba(255,255,255,0.1);
        backdrop-filter: blur(10px);
    }

    .stat-item i {
        font-size: 3rem;
        transition: all 0.3s ease;
    }

    .stat-item:hover i {
        transform: scale(1.1);
    }

.counter {
    font-size: 3rem;
    font-weight: 800;
    margin: 15px 0 10px;
}

/* ==================== CTA SECTION ==================== */
.cta-section {
    padding: 30px 0;
    background: white;
}

.cta-wrapper {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 30px;
    border-radius: 30px;
    transition: all 0.4s ease;
}

    .cta-wrapper:hover {
        transform: scale(1.02);
        box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    }

.btn-primary-custom {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border: none;
    padding: 14px 40px;
    font-weight: 600;
    transition: all 0.3s ease;
}

    .btn-primary-custom:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 25px rgba(102,126,234,0.4);
    }

/* ==================== RESPONSIVE STYLES ==================== */
@@media (max-width: 991px) {
    .page-header {
        height: 280px;
    }

        .page-header h1 {
            font-size: 1rem;
        }

    .experience-badge {
        max-width: 140px;
    }

        .experience-badge h2 {
            font-size: 1.8rem;
        }

    .mission-card, .vision-card {
        padding: 30px;
    }
}

@@media (max-width: 767px) {
    .page-header {
        height: 240px;
    }

        .page-header h1 {
            font-size: 2rem;
        }

    .intro-section, .mission-vision-section, .values-section,
    .why-choose-section, .team-section, .stats-section, .cta-section {
        padding: 50px 0;
    }

    .counter {
        font-size: 2.2rem;
    }

    .cta-wrapper {
        padding: 30px;
    }

    .stat-item {
        padding: 15px;
    }
}

@@media (max-width: 575px) {
    .page-header h1 {
        font-size: 1.8rem;
    }

    .breadcrumb-custom {
        font-size: 0.9rem;
    }

    .feature-icon {
        width: 55px;
        height: 55px;
    }

    .value-icon {
        width: 70px;
        height: 70px;
    }

    .stats-card {
        position: static !important;
        margin-top: 20px;
        max-width: 100%;
    }

    .btn-primary-custom {
        padding: 10px 30px;
        font-size: 0.9rem;
    }
}
</style >


html {
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
    position: relative;
    min-height: 100%;
}

body {
    margin-bottom: 60px;
}



/* ================= SERVICES PAGE ================= */

.service-card {
    height: 100%;
}

    .service-card .value-card {
        height: 100%;
    }

    .service-card h4 {
        min-height: 60px;
    }

.process-step h1 {
    font-size: 55px;
    font-weight: 800;
    background: linear-gradient(135deg,#667eea,#764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.process-step:hover {
    transform: translateY(-10px);
}

.process-step {
    transition: .4s;
}

.service-banner-img {
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,.15);
}

    .service-banner-img img {
        width: 100%;
        transition: .5s;
    }

    .service-banner-img:hover img {
        transform: scale(1.05);
    }

/* Counter */

.service-counter {
    background: linear-gradient( 135deg, #667eea, #764ba2 );
    color: white;
    border-radius: 20px;
    padding: 35px;
    text-align: center;
    transition: .4s;
}

    .service-counter:hover {
        transform: translateY(-10px);
    }

    .service-counter h2 {
        font-size: 48px;
        font-weight: 700;
    }

    .service-counter p {
        margin-bottom: 0;
        opacity: .9;
    }

/* Mobile */

@media(max-width:768px) {

    .page-header {
        height: 220px;
    }

        .page-header h1 {
            font-size: 2rem;
        }

    .service-counter {
        margin-bottom: 20px;
    }

    .value-card {
        margin-bottom: 20px;
    }
}