/* Hero Section */
.hero-section {
    background: url('../Image/certification.png') center center/cover no-repeat;
}


/* Contact Cards */
.contact-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.contact-card {
    background: white;
    border: 1px solid #e1e8ed;
    border-radius: 12px;
    padding: 30px;
    transition: all 0.3s ease;
    position: relative;
}

.contact-card:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transform: translateY(-3px);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 25px;
}

.card-icon {
    font-size: 24px;
    color: #a29bfe;
}

.card-title {
    font-size: 20px;
    font-weight: 600;
    color: #a29bfe;
}

.contact-info {
    margin-bottom: 20px;
}

.info-item {
    margin-bottom: 15px;
}

.info-label {
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
}

.info-value {
    color: #666;
    line-height: 1.4;
}

.info-value a {
    color: #a29bfe;
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-value a:hover {
    color: #6c5ce7;
}

.send-message-btn {
    background: #a29bfe;
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    width: 100%;
}

.send-message-btn:hover {
    background: #6c5ce7;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(162, 155, 254, 0.3);
}

.send-message-btn.secondary {
    background: #34495e;
}

.send-message-btn.secondary:hover {
    background: #2c3e50;
    box-shadow: 0 6px 20px rgba(52, 73, 94, 0.3);
}

/* Contact Form Modal */
.contact-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 2000;
    justify-content: center;
    align-items: center;
}

.contact-modal.active {
    display: flex;
}

.modal-content {
    background: white;
    border-radius: 15px;
    max-width: 500px;
    width: 90%;
    position: relative;
    animation: modalSlideIn 0.3s ease;
}

.modal-header {
    padding: 25px 25px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
}

.modal-icon {
    font-size: 24px;
    color: #a29bfe;
}

.modal-title {
    font-size: 20px;
    font-weight: 600;
    color: #a29bfe;
    flex: 1;
}

.modal-close {
    position: absolute;
    top: -10px;
    right: -10px;
    background: none;
    border: none;
    color: #666;
    font-size: 24px;
    cursor: pointer;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.modal-close:hover {
    color: #333;
}

.modal-body {
    padding: 0 25px 25px;
}

.form-group {
    margin-bottom: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.form-input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.3s ease;
    background: white;
}

.form-input:focus {
    outline: none;
    border-color: #a29bfe;
    box-shadow: 0 0 0 3px rgba(162, 155, 254, 0.1);
}

.form-input::placeholder {
    color: #999;
}

.form-textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.3s ease;
    background: white;
    min-height: 120px;
    resize: vertical;
    font-family: Arial, sans-serif;
}

.form-textarea:focus {
    outline: none;
    border-color: #a29bfe;
    box-shadow: 0 0 0 3px rgba(162, 155, 254, 0.1);
}

.verification-section {
    margin: 20px 0;
}

.verification-label {
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
    display: block;
}

.recaptcha-container {
    margin-bottom: 15px;
}

.recaptcha-box {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px;
    border: 1px solid #d3d3d3;
    border-radius: 3px;
    background: #f9f9f9;
    cursor: pointer;
    transition: all 0.3s ease;
    max-width: 300px;
}

.recaptcha-box:hover {
    border-color: #a29bfe;
}

.recaptcha-checkbox {
    width: 24px;
    height: 24px;
    border: 2px solid #d3d3d3;
    border-radius: 2px;
    position: relative;
    cursor: pointer;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

.recaptcha-checkbox.checked {
    background: #4285f4;
    border-color: #4285f4;
}

.recaptcha-checkbox.checked::after {
    content: '✓';
    color: white;
    font-size: 16px;
    font-weight: bold;
}

.recaptcha-text {
    font-size: 14px;
    color: #555;
}

.recaptcha-logo {
    margin-left: auto;
    font-size: 10px;
    color: #999;
    text-align: right;
    line-height: 1.2;
}

.terms-text {
    font-size: 11px;
    color: #666;
    line-height: 1.4;
    margin-bottom: 20px;
}

.terms-text a {
    color: #333;
    text-decoration: underline;
}

.terms-text a:hover {
    color: #a29bfe;
}

.submit-btn {
    background: #a29bfe;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    width: 100%;
}

.submit-btn:hover {
    background: #6c5ce7;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(162, 155, 254, 0.3);
}

.submit-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Mobile Navigation */
.mobile-nav {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(5, 15, 25, 0.98);
    backdrop-filter: blur(20px);
    display: flex;
    flex-direction: column;
    padding: 80px 30px 30px;
    transition: left 0.3s ease;
    z-index: 999;
    overflow-y: auto;
}

.mobile-nav.active {
    left: 0;
}

.mobile-nav-section {
    margin-bottom: 25px;
}

.mobile-nav-title {
    color: white;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.mobile-nav-item {
    color: #cbd5e0;
    text-decoration: none;
    font-size: 15px;
    font-weight: 400;
    display: block;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    font-style: italic;
}

.mobile-nav-item:hover {
    color: #a29bfe;
    padding-left: 10px;
}

.mobile-nav-item.active {
    color: #a29bfe;
    border-left: 3px solid #a29bfe;
    padding-left: 15px;
}

.mobile-language-section {
    margin-top: auto;
    padding-top: 20px;
}

.mobile-language-title {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.mobile-flag {
    width: 20px;
    height: 14px;
    background: linear-gradient(to bottom, #012169 33%, white 33%, white 66%, #C8102E 66%);
    position: relative;
}

.mobile-flag::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        linear-gradient(45deg, transparent 45%, #C8102E 45%, #C8102E 55%, transparent 55%),
        linear-gradient(-45deg, transparent 45%, #C8102E 45%, #C8102E 55%, transparent 55%);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-container {
        padding: 0 15px;
    }

    nav ul {
        display: none;
    }

    .mobile-menu {
        display: flex;
    }

    .contact-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .contact-card {
        padding: 25px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .modal-content {
        margin: 20px;
        width: calc(100% - 40px);
    }
}

@media (max-width: 480px) {
    .contact-card {
        padding: 20px;
    }

    .card-title {
        font-size: 18px;
    }
}