@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

.container-xxl {
    position: relative;
    z-index: 2;
}

.section-header {
    position: relative;
    z-index: 2;
}

.section-header h1 {
    color: rgb(26,42,110);
    font-weight: 700;
    animation: slideInDown 1s ease-out;
}

.section-header p {
    color: #666;
    animation: slideInUp 1s ease-out 0.2s both;
}

@keyframes slideInDown {
    from { opacity: 0; transform: translateY(-50px); }
    to { opacity: 1; transform: translateY(0); }
}

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

@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-50px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes slideInRight {
    from { opacity: 0; transform: translateX(50px); }
    to { opacity: 1; transform: translateX(0); }
}

.contact-info-card {
    background: rgb(26,42,110);
    color: white;
    border-radius: 15px;
    padding: 2rem;
    height: 100%;
    animation: slideInLeft 1s ease-out 0.4s both;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(26,42,110,0.15);
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(26,42,110,0.25);
}

.contact-info-card h5 {
    color: rgb(171,157,106);
    margin-bottom: 0.5rem;
    font-weight: 600;
    position: relative;
    z-index: 2;
}

.contact-info-card p {
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.contact-info-card p:hover {
    color: rgb(171,157,106);
}

.contact-info-card i {
    margin-right: 10px;
    color: rgb(171,157,106);
}

.social-btn {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    margin-right: 10px;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.social-btn:hover {
    background: rgb(171,157,106);
    border-color: rgb(171,157,106);
    color: white;
    transform: translateY(-2px);
}

.contact-form-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    animation: slideInRight 1s ease-out 0.6s both;
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.contact-form-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.form-notice {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 1.5rem;
    border-radius: 15px;
    margin-bottom: 2rem;
    border-left: 4px solid rgb(171,157,106);
    position: relative;
    overflow: hidden;
}

.form-notice::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, rgb(171,157,106), rgb(26,42,110));
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.form-control {
    border: 2px solid #e9ecef;
    border-radius: 8px;
    padding: 12px 15px;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.form-control:focus {
    border-color: rgb(26,42,110);
    box-shadow: 0 0 0 3px rgba(26,42,110,0.1);
    background: white;
}

.form-control:hover {
    border-color: rgb(171,157,106);
}

.submit-btn {
    background: rgb(26,42,110);
    border: none;
    color: white;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}

.submit-btn:hover {
    background: rgb(171,157,106);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(26,42,110,0.3);
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    margin-top: 2rem;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    animation: slideInUp 1s ease-out 0.8s both;
    transition: all 0.3s ease;
}

.map-container:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

.map-container iframe {
    width: 100%;
    height: 450px;
    border: none;
    transition: all 0.3s ease;
}

/* Floating animation for contact items */
.contact-item {
    animation: floatItem 3s ease-in-out infinite;
}

.contact-item:nth-child(2) { animation-delay: 0.5s; }
.contact-item:nth-child(3) { animation-delay: 1s; }
.contact-item:nth-child(4) { animation-delay: 1.5s; }

@keyframes floatItem {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-5px); }
}

/* Glowing effect */
.glow {
    position: relative;
}

.glow::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: inherit;
    padding: 2px;
    background: linear-gradient(45deg, rgb(26,42,110), rgb(171,157,106), rgb(26,42,110));
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.glow:hover::after {
    opacity: 1;
    animation: rotate 2s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .contact-info-card, .contact-form-card {
        padding: 2rem;
    }
    
    .particles { display: none; }
}





.hero-section {
    text-align: center;
    padding: 60px 0;
    color: #333;
    background: linear-gradient(135deg, rgb(26,42,110) 0%, rgb(171,157,106) 100%);
    color: white;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    color:#ffffff;
}

.hero-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 40px;
}

#contact-section{
    background-color:#EDEBE4;
}



/* General contact text */
.contact-info-card p {
    margin-bottom: 0.8rem; /* reduce spacing */
    line-height: 1.5;
}

/* Phone numbers tighter */
.contact-info-card .phone {
    margin-bottom: 0.3rem; /* smaller gap between numbers */
    display: flex;
    align-items: center;
}

/* Address styling */
.contact-info-card .address {
    margin-bottom: 1.5rem; /* normal spacing after address */
    display: flex;
    align-items: flex-start;
    line-height: 1.6;
    word-break: break-word; /* wrap long text */
}
