/* =========================================
   Contact Hero Section
   ========================================= */
.contact-hero-section {
    position: relative;
    padding: 139px 0 100px;
    text-align: center;
    color: #ffffff;
    min-height: 300px;
    display :flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.hero-wrap-2 {
  min-height: 300px;
  display: flex;
  align-items: center;
  /* padding: 60px 0 40px; */
  
}

@media (max-width: 500px) {
    .hero-wrap-2{
        min-height: 250px;

    }
}

.breadcrumb-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 15px;
    font-size: 14px;
}

.breadcrumb-link {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-link:hover {
    color: #FFD416;
}

.breadcrumb-separator {
    color: #cccccc;
}

.breadcrumb-current {
    color: #FFD416;
    font-weight: 600;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    margin: 0;
    text-transform: uppercase;
}

/* =========================================
   Contact Info Section
   ========================================= */
.contact-info-section {
    padding: 80px 0 60px;
    background-color: #ffffff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    text-align: center;
    font-size: 25px;
    font-weight: 700;
    color: #253486;
    text-transform: uppercase;
    margin-bottom: 50px;
    letter-spacing: 1px;
}

.info-cards-wrapper {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.info-card {
    flex: 1;
    min-width: 300px;
    max-width: 550px;
    background: #ffffff;
    border: 2px dashed transparent;  /* Transparent border by default */
    border-radius: 12px;
    padding: 50px 30px;
    text-align: center;
    transition: all 0.3s ease;
}

/* Hover par border show ho */
.info-card:hover {
    border: 2px dashed #253486;
    background-color: rgba(37, 52, 134, 0.02);
    transform: translateY(-5px);
}

.icon-circle {
    width: 70px;
    height: 70px;
    background-color: #ffffff;
    border: 2px dashed transparent;  /* Transparent border by default */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: #253486;
    transition: all 0.3s ease;
}

.info-card:hover .icon-circle {
    border: 2px dashed #253486;
}

.info-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.info-card p {
    font-size: 16px;
    color: #666666;
    margin: 0;
    line-height: 1.6;
}

.info-card p a {
    color: #666666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-card p a:hover {
    color: #253486;
}
.info-border{

    color: gray;

}
/* =========================================
   Contact Form Section
   ========================================= */
.contact-form-section {
    padding: 60px 0 80px;
    background-color: #ffffff;
}

.contact-form {
    max-width: 1000px;
    margin: 0 auto;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    flex: 1;
    position: relative;
    margin-bottom: 20px;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 18px 50px 18px 20px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 15px;
    color: #333333;
    background-color: #ffffff;
    transition: all 0.3s ease;
    outline: none;
    font-family: inherit;
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: #999999;
}

.form-input:focus,
.form-textarea:focus {
    border-color: #253486;
    box-shadow: 0 0 0 3px rgba(37, 52, 134, 0.1);
}

.form-textarea {
    resize: vertical;
    min-height: 150px;
}

.input-icon {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #253486;
    pointer-events: none;
}

.form-textarea + .input-icon {
    top: 20px;
    transform: none;
}

.btn-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 50px;
    background-color: #253486;
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    margin-top: 10px;
    margin-left: 350px;
}

.btn-submit:hover {
    background-color: #1a2566;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 52, 134, 0.3);
}

/* =========================================
   Alerts
   ========================================= */
.alert-success,
.alert-error {
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
}

.alert-success {
    background-color: rgba(40, 167, 69, 0.1);
    color: #28a745;
    border: 1px solid rgba(40, 167, 69, 0.2);
}

.alert-error {
    background-color: rgba(220, 53, 69, 0.1);
    color: #dc3545;
    border: 1px solid rgba(220, 53, 69, 0.2);
    flex-direction: column;
    align-items: flex-start;
}

.alert-error p {
    margin: 0;
}

/* =========================================
   Map Section
   ========================================= */
.map-section {
    width: 100%;
    line-height: 0;
}

.map-section iframe {
    width: 100%;
    height: 500px;
    border: 0;
    display: block;
}

/* =========================================
   Responsive Design
   ========================================= */
@media (max-width: 768px) {
    .form-row {
        flex-direction: column;
        gap: 0;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .section-title {
        font-size: 16px;
    }
    
    .info-cards-wrapper {
        flex-direction: column;
        align-items: center;
    }
    
    .info-card {
        width: 100%;
        max-width: 100%;
    }
    
    .map-section iframe {
        height: 350px;
    }
    
    .btn-submit {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .contact-hero-section {
        padding: 80px 0 60px;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .info-card {
        padding: 40px 20px;
    }
    
    .form-input,
    .form-textarea {
        padding: 15px 45px 15px 15px;
    }
}