@import url('https://fonts.googleapis.com/css2?family=Heebo:wght@100..900&display=swap');
@import url("global.css");

* {
    font-family: "Heebo", sans-serif;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
    overflow-x: hidden;
}

/* Animation classes */
.fadeInUp-animation {
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Header styles */
header {
    display: flex;
    justify-content: flex-end;
    padding: 20px;
    background-color: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

header ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

header li {
    margin-left: 20px;
}

header a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
    transition: .3s all;
    padding: 8px 12px;
    border-radius: 5px;
}

header a:hover {
    color: #ff6363;
    background-color: rgba(255, 99, 99, 0.1);
}

header a.active {
    color: #ff6363;
    background-color: rgba(255, 99, 99, 0.1);
}

/* Footer styles */
footer {
    text-align: center;
    padding: 40px 20px;
    background-color: #21243D;
    color: white;
    border-radius: 30px 30px 0 0;
    margin-top: 50px;
}

footer .social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

footer .social-links a {
    margin: 0 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: white;
    transition: all 0.3s ease;
}

.social-icon i {
    color: #21243D;
    transition: all 0.3s ease;
}

footer .social-links a:hover {
    transform: translateY(-5px);
    background-color: #ff6363;
}

footer .social-links a:hover i {
    color: white;
}

footer p {
    font-size: 14px;
    color: #e0e0e0;
    margin-top: 10px;
}

/* Page title */
.page-title {
    text-align: center;
    font-size: 40px;
    margin: 40px 0;
    color: #21243D;
}

.highlight {
    color: #ff6363;
    position: relative;
    display: inline-block;
}

.highlight::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 8px;
    background-color: rgba(255, 99, 99, 0.2);
    bottom: 5px;
    left: 0;
    z-index: -1;
}

/* Contact container */
.contact-container {
    display: flex;
    justify-content: center;
    align-items: stretch;
    padding: 30px;
    max-width: 1200px;
    margin: 0 auto 50px;
    background-color: #f5f5f5;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.contact-info {
    background-color: #21243D;
    color: white;
    padding: 40px;
    border-radius: 15px;
    width: 40%;
    text-align: left;
    position: relative;
    overflow: hidden;
}

.pattern-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(255, 255, 255, 0.1) 2px, transparent 2px);
    background-size: 20px 20px;
    z-index: 0;
    opacity: 0.3;
}

.contact-info h2 {
    font-size: 28px;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.info-subtitle {
    margin-bottom: 30px;
    font-size: 16px;
    opacity: 0.8;
    position: relative;
    z-index: 1;
}

.contact-info ul {
    list-style: none;
    padding: 0;
    position: relative;
    z-index: 1;
}

.info-item {
    margin-bottom: 25px;
    display: flex;
    align-items: center;
}

.info-icon {
    margin-right: 15px;
    font-size: 18px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.phone-icon {
    background-color: rgba(233, 59, 129, 0.2);
    color: #E93B81;
}

.email-icon {
    background-color: rgba(106, 181, 185, 0.2);
    color: #6AB5B9;
}

.location-icon {
    background-color: rgba(253, 117, 144, 0.2);
    color: #FD7590;
}

.info-text {
    flex: 1;
    font-size: 15px;
    word-break: break-word;
}

.social-icons {
    margin-top: 40px;
    position: relative;
    z-index: 1;
    display: flex;
    gap: 15px;
}

.social-btn {
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    background-color: rgba(255, 255, 255, 0.1);
    font-size: 18px;
    transition: all 0.3s ease;
}

.social-btn:hover {
    background-color: #ff6363;
    transform: translateY(-5px);
}

/* Contact form */
.contact-form {
    background-color: white;
    padding: 40px;
    border-radius: 15px;
    width: 60%;
    margin-left: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.contact-form h2 {
    margin-bottom: 25px;
    color: #21243D;
    font-size: 28px;
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    flex: 1;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.form-animate {
    opacity: 1;
    transform: translateY(0);
}

.form-group label {
    margin-bottom: 10px;
    color: #555;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #ff6363;
    box-shadow: 0 0 0 2px rgba(255, 99, 99, 0.2);
    outline: none;
}

.form-group input.error,
.form-group textarea.error {
    border-color: #ff3333;
    background-color: rgba(255, 51, 51, 0.05);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.radio-group {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.radio-item {
    display: flex;
    align-items: center;
    margin-right: 15px;
}

.radio-item input[type="radio"] {
    margin-right: 8px;
    accent-color: #ff6363;
}

.submit-btn {
    padding: 15px;
    border: none;
    background-color: #ff6363;
    color: white;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.submit-btn:hover {
    background-color: #e55a5a;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 99, 99, 0.3);
}

.submit-btn i {
    font-size: 14px;
    transition: all 0.3s ease;
}

.submit-btn:hover i {
    transform: translateX(5px);
}

/* Contact cards section */
.contact-cards-section {
    max-width: 1200px;
    margin: 50px auto;
    padding: 0 30px;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
    color: #21243D;
    font-size: 32px;
    position: relative;
}

.section-title::after {
    content: "";
    position: absolute;
    width: 80px;
    height: 4px;
    background-color: #ff6363;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.contact-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.contact-card {
    flex: 1;
    min-width: 250px;
    max-width: 350px;
    background-color: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.card-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
}

.card-content h3 {
    color: #21243D;
    margin-bottom: 10px;
    font-size: 22px;
}

.card-content p {
    color: #555;
    margin-bottom: 20px;
}

.card-link {
    display: inline-block;
    color: #ff6363;
    text-decoration: none;
    font-weight: 600;
    padding: 8px 20px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.card-link:hover {
    background-color: rgba(255, 99, 99, 0.1);
}

/* CTA section */
.cta-section {
    text-align: center;
    margin: 60px 0;
}

.download-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background-color: #21243D;
    color: white;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.download-btn:hover {
    background-color: #ff6363;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.download-btn i {
    font-size: 16px;
    transition: all 0.3s ease;
}

.download-btn:hover i {
    transform: translateY(2px);
}

/* Responsive styles */
@media screen and (max-width: 992px) {
    .contact-container {
        flex-direction: column;
        padding: 20px;
    }
    
    .contact-info, 
    .contact-form {
        width: 100%;
        margin: 0;
    }
    
    .contact-info {
        margin-bottom: 20px;
    }
    
    .form-row {
        flex-direction: column;
    }
}

@media screen and (max-width: 768px) {
    .page-title {
        font-size: 32px;
    }
    
    .contact-cards {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-card {
        width: 100%;
        max-width: 100%;
    }
    
    header {
        justify-content: center;
    }
    
    .contact-form {
        padding: 30px 20px;
    }
    
    .contact-info {
        padding: 30px 20px;
    }
}

@media screen and (max-width: 480px) {
    .page-title {
        font-size: 28px;
        margin: 30px 0;
    }
    
    .info-item {
        flex-direction: column;
        text-align: center;
    }
    
    .info-icon {
        margin: 0 0 10px 0;
    }
    
    .social-icons {
        justify-content: center;
    }
    
    .download-btn {
        width: 90%;
        margin: 0 auto;
    }
}
.phone-contact{
    display: none;
}
.social-links{
    display: flex;
    justify-content: center;
    gap: 10px;
    align-self: center;
}
/* CSS */
.button-36 {
    display: none;
    background-image: linear-gradient(92.88deg, #455EB5 9.16%, #5643CC 43.89%, #673FD7 64.72%);
    border-radius: 8px;
    border-style: none;
    box-sizing: border-box;
    color: #FFFFFF;
    cursor: pointer;
    flex-shrink: 0;
    font-family: "Inter UI","SF Pro Display",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen,Ubuntu,Cantarell,"Open Sans","Helvetica Neue",sans-serif;
    font-size: 16px;
    font-weight: 500;
    height: 4rem;
    padding: 0 1.6rem;
    text-align: center;
    text-shadow: rgba(0, 0, 0, 0.25) 0 3px 8px;
    transition: all .5s;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    margin: 10px 32.5%;
    width: 150px;
  }
  
  .button-36:hover {
    box-shadow: rgba(80, 63, 205, 0.5) 0 1px 30px;
    transition-duration: .1s;
  }
  