html, body {
    margin: 0;
    padding: 0;
    height: auto;
    min-height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  

body {

    /* overflow-x: hidden; 
    overflow-y: hidden;  */
        font-family: 'Be Vietnam Pro', sans-serif;

    
}



.map-container {
    height: calc(100vh - 260px);
    width: 100%;
    border-radius: 0.5rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    margin-bottom: 0;
}

.layer-toggle-btn,
.toolbox-toggle-btn {
    position: absolute;
    background: white;
    color: #374151;
    padding: 0.75rem;
    border-radius: 9999px;
    cursor: pointer;
    font-size: 1.125rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all 0.2s;
}

.layer-toggle-btn {
    top: 1rem;
    right: 1rem;
}

.toolbox-toggle-btn {
    margin-top: 20px;
    top: 4rem;
    right: 1rem;
}

.layer-toggle-btn:hover,
.toolbox-toggle-btn:hover {
    background: #f3f4f6;
    transform: scale(1.05);
}

.custom-layer-control,
.sidebar-toolbox {
    position: absolute;
    background: white;
    padding: 1rem;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.custom-layer-control {
    top: 1rem;
    right: 4rem;
    display: none;
}

.sidebar-toolbox {
    top: 1rem;
    right: -300px;
    width: 250px;
    transition: right 0.3s ease;
}

.show-toolbox {
    right: 4rem;
}

.custom-layer-control label,
.sidebar-toolbox label {
    display: block;
    margin: 0.5rem 0;
    color: #374151;
}

.sidebar-toolbox select,
.sidebar-toolbox input {
    width: 100%;
    padding: 0.5rem;
    border: 1px solid #e5e7eb;
    border-radius: 0.375rem;
    margin-top: 0.25rem;
}

.glass-card {
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(209, 213, 219, 1);
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.animate-fade-in {
    animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


.logo{
    width: 140px;
    height: 70px;
 
}

.py-4{
    padding-top: 0rem;
    padding-bottom: 0rem;
}

.title-container {
    margin-bottom: 10px;
    text-align: center;
}

.title {
    font-size: 45px;
    font-weight: bold;
    color: #0031b2;
    margin-bottom: 0px;
}

.subtitle {
    font-size: 45px;
    font-weight: bold;
    color: #0031b2;
}

footer {
    background: white;
}


.contact-card {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    padding: 15px 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:hover {
    transform: scale(1.03);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

/* Profile Image */
.profile-img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 4px solid white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-right: 15px;
}

/* Contact Details */
.contact-details {
    flex: 1;
}

.name {
    font-size: 20px;
    font-weight: 600;
    color: #333;
}

.role {
    font-size: 14px;
    color: #6B7280;
    margin-bottom: 5px;
}

/* Contact Info */
.contact-info {
    font-size: 14px;
    color: #4B5563;
    margin-bottom: 4px;
}

/* Social Icons */
.social-icons {
    display: flex;
    gap: 12px;
    margin-top: 8px;
}

.social-icons a {
    font-size: 20px;
    color: #6B7280;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: #2563EB;
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-card {
        flex-direction: column;
        text-align: center;
    }
    
    .profile-img {
        margin-bottom: 10px;
        margin-right: 0;
    }
    .title-container {
        font-size: clamp(16px, 4vw, 24px); /* Dynamic font size based on viewport width */
        text-align: center;
        margin-bottom: 10px;
    }
    .map-container {
        height: calc(100dvh - 342px); /* shorter height to fit smaller screens */
        border-radius: 0.25rem;      /* slightly smaller rounding for tighter space */
                 /* adds space below on mobile */
      }

}

  .word-container {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 2.5rem; /* or whatever you need */
  }
  



  /**********************
  /* Add this to your CSS file */
.word {
    opacity: 0;
    transition: opacity 1s ease-in-out;
    color: white;
}

.word.animate {
    opacity: 1;
}
