﻿body {
    <style> @font-face

{
    font-family: 'B Homa';
    src: url('Fonts/BHoma.ttf') format('truetype');
    font-weight: normal;
}

.feature-card {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    border: 1px solid #eee;
    transition: all 0.4s ease;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
    width: 100%;
    box-sizing: border-box;
}

    .feature-card:hover {
        transform: translateY(-10px);
        background: #e0e0e0;
        box-shadow: 0 15px 30px rgba(15, 48, 87, 0.15);
        border-color: #FF8126;
    }

.feature-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 129, 38, 0.1);
    color: #FF8126;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin: 0 auto 20px;
    transition: 0.4s;
}

.feature-card:hover .feature-icon {
    background: #FF8126;
    color: #fff;
    transform: rotateY(360deg);
}

.feature-card h3 {
    color: #0F3057;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.feature-card p {
    color: #666;
    font-size: 14px;
    line-height: 1.8;
    margin: 0;
}

.contact-header {
    background: linear-gradient(rgba(15, 48, 87, 0.9), rgba(15, 48, 87, 0.9)), url('/images/banner 9.jpg');
    background-size: cover;
    background-position: center;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    border-radius: 0 0 30px 30px;
    position: relative;
}

.contact-title {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 10px;
    text-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.contact-subtitle {
    font-size: 1rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.back-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 10;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(5px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

    .back-btn:hover {
        background: #FF8126;
        border-color: #FF8126;
        transform: translateX(-5px);
    }

.contact-info-section {
    max-width: 1200px;
    margin: 100px auto;
    padding: 0 20px;
    position: relative;
    z-index: 5;
    text-align: center;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    justify-content: center;
    justify-items: center;
    align-items: stretch;
}

@media (max-width: 768px) {
    .contact-header {
        height: 250px;
        border-radius: 0 0 20px 20px;
    }

    .contact-title {
        font-size: 1.8rem;
    }

    .contact-info-section {
        margin-top: 50px;
        margin-bottom: 50px;
    }

    .cards-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
}

</style >
}
