body {
    font-family: 'Poppins', sans-serif;
    color: #555;
    background-color: #f8f9fa;
}

#main {
    margin-top: 80px; 
}

.contact-header {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://th.bing.com/th/id/OIP.LYaSPkUCz1A3oWZ2UHT2yQHaDF?rs=1&pid=ImgDetMain');
    background-size: cover;
    background-position: center;
    padding: 60px 0;
    color: white;
    margin-bottom: 40px;
    position: relative;
}
.display-4{
    color: white;
}
.contact-form {
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
    padding: 30px;
    margin-bottom: 30px;
}

.contact-info {
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
    padding: 30px;
    height: 100%;
}

.form-control {
    border: 1px solid #e1e1e1;
    padding: 12px 15px;
    border-radius: 6px;
    font-size: 14px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: #6c63ff;
    box-shadow: 0 0 0 0.2rem rgba(108, 99, 255, 0.25);
}

.btn-primary {
    background: #6c63ff;
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #5a52d5;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(108, 99, 255, 0.4);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: rgba(108, 99, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.contact-icon i {
    font-size: 24px;
    color: #6c63ff;
}

.info-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
}

.info-content {
    font-size: 15px;
    color: #666;
    margin-bottom: 5px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f4f4f4;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: #6c63ff;
    transform: translateY(-5px);
}

.social-icon:hover i {
    color: white;
}

.social-icon i {
    font-size: 16px;
    color: #333;
}

.breadcrumb {
    background: transparent;
    padding: 0;
}

.breadcrumb-item a {
    color: #6c63ff;
    text-decoration: none;
}

.breadcrumb-item.active {
    color: #666;
}

.breadcrumb-item+.breadcrumb-item::before {
    content: ">";
}

.section-title {
    position: relative;
    margin-bottom: 40px;
}

.section-title h2 {
    font-size: 32px;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

.section-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -15px;
    width: 50px;
    height: 3px;
    background: #6c63ff;
}

.contact-map {
    border-radius: 10px;
    overflow: hidden;
    margin-top: 40px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
}