body {
    font-family: "Montserrat", sans-serif, "Open Sans", sans-serif;
}

.outer-bulge {
    box-shadow:
        0 0 0 2px #f0f0f0,
        6px 6px 16px #d1d9e6,
        -6px -6px 16px #ffffff;
}

.inner-inset {
    box-shadow:
        inset 6px 6px 16px #d1d9e6,
        inset -6px -6px 16px #ffffff;
}

.neumorphic-button {
    box-shadow: 5px 5px 10px #d1d9e6, -5px -5px 10px #ffffff;
}

.neumorphic-button:hover {
    box-shadow: inset 5px 5px 10px #d1d9e6, inset -5px -5px 10px #ffffff;
}

.slide-down {
    animation: slideDown 0.3s ease-out forwards;
}

#mob-nav-logo {
    width: 50px;
    height: 50px;
    margin-right: 10px;
}

@keyframes slideDown {
    0% {
        opacity: 0;
        transform: translateY(-20%);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.ripple-container {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 0;
}

.ripple-circle {
    position: absolute;
    width: 200px;
    height: 200px;
    border: 2px solid #ccc;
    box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.4);
    border-radius: 5000px;
    animation: rippleGroup 1.2s ease-in-out infinite;
    opacity: 0.4;
}

/* Staggered delay + total cycle = 2.2s */
.ripple1 {
    z-index: 20;
    animation-delay: 0s;
    animation-duration: 4.0s;
}

.ripple2 {
    z-index: 21;
    animation-delay: 0.2s;
    animation-duration: 4.0s;
}

.ripple3 {
    z-index: 22;
    animation-delay: 0.4s;
    animation-duration: 4.0s;
}

.ripple4 {
    z-index: 23;
    animation-delay: 0.8s;
    animation-duration: 4.0s;
}

.ripple5 {
    z-index: 24;
    animation-delay: 1.2s;
    animation-duration: 4.0s;
}

.ripple6 {
    z-index: 25;
    animation-delay: 1.4s;
    animation-duration: 4.0s;
}


@keyframes rippleGroup {

    /* 0% {
    opacity: 0;
  } */
    0% {
        transform: scale(0.8);
        opacity: 1;
    }

    70% {
        transform: scale(1.8);
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}



.contact-container {
    width: 90vw;
    max-width: 60vw;
    background: #f0f0f0;
    padding: 40px;
    border-radius: 30px;
    /* box-shadow: 12px 12px 30px #d9d9d9, -12px -12px 30px #ffffff; */
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-title {
    background: #f0f0f0;
    border: none;
    font-weight: bold;
    font-size: 1rem;
    color: #333;
    margin-bottom: 10px;
    padding: 8px 18px;
    border-radius: 20px;
    box-shadow: 4px 4px 10px #d0d0d0, -4px -4px 10px #ffffff;
    cursor: default;
}

.contact-heading {
    font-size: 2rem;
    color: #222;
    margin-bottom: 10px;
    text-align: center;
}

.contact-subtext {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 30px;
    text-align: center;
    max-width: 500px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
}

.contact-form input,
.contact-form textarea {
    padding: 15px;
    font-size: 1rem;
    border-radius: 15px;
    border: 2px solid #e9e9e9;
    outline: none;
    background: #f0f0f0;
    box-shadow: inset 6px 6px 12px #d9d9d9, inset -6px -6px 12px #ffffff;
    resize: none;
    transition: box-shadow 0.2s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    box-shadow: inset 4px 4px 8px #d0d0d0, inset -4px -4px 8px #ffffff;
}

.submit-button {
    width: 80%;
    margin: 1rem auto;
    padding: 15px;
    font-size: 1rem;
    border-radius: 50px;
    background: #f0f0f0;
    border: 2px solid #d0d0d0;
    color: #333;
    font-weight: bold;
    box-shadow: 6px 6px 12px #d9d9d9, -6px -6px 12px #ffffff;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
}

.submit-button:hover {
    background-color: #20c997;
    color: white;
    box-shadow: inset 4px 4px 8px #1aa179, inset -4px -4px 8px #25fdb5;
    transform: scale(0.98);
}

@media (max-width: 768px) {
    .contact-container {
        max-width: 90vw;
        padding: 30px;
    }

    .contact-heading {
        font-size: 1.6rem;
    }

    .contact-subtext {
        font-size: 0.85rem;
    }
}


.footer {
    background-color: #f0f0f0;
    padding: 20px 40px;
    color: #666;
    width: 80vw;
    margin: auto;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.social-links {
    display: flex;
    gap: 25px;
}

.social-icon img {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    padding: 10px;
    background-color: #f0f0f0;
    /* box-shadow: 6px 6px 12px #d9d9d9, -6px -6px 12px #ffffff; */
    transition: all 0.3s ease-in-out;
}

.social-icon img:hover {
    box-shadow: inset 4px 4px 8px #d0d0d0, inset -4px -4px 8px #ffffff;
    transform: scale(0.95);
}


.social-icon {
    position: relative;
    display: inline-block;
}

.social-icon::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 120%;
    left: 50%;
    transform: translateX(-50%);
    background-color: #333;
    color: #fff;
    font-size: 12px;
    padding: 6px 10px;
    border-radius: 6px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 10;
}

.social-icon:hover::after {
    opacity: 1;
}


.shadow-neumorphic {
    box-shadow:
        8px 8px 15px #c5c9ce,
        -8px -8px 15px #ffffff;
}

@media (max-width: 600px) {
    .footer-content {
        display: flex;
        flex-direction: column;
        gap: 15px;
        align-items: center;
        justify-content: space-around;
    }

    .social-links {
        justify-content: space-around;
    }

}



/* Button Styles for Tabs */
.tab-btn {
  padding: 0.5rem 1.5rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
  background-color: #e0e5ec;
  color: #374151;
  box-shadow: 8px 8px 15px #c5c9ce, -8px -8px 15px #ffffff;
  transition: background-color 0.3s ease;
  border: none;
  cursor: pointer;
}

.tab-btn:hover {
  background-color: #d3d8df;
}

.tab-btn-active {
  background-color: #00b07b;
  color: white;
  box-shadow: inset 4px 4px 10px rgba(0, 0, 0, 0.1);
  padding: 10px 25px;
  border-radius: 100px;
  box-shadow: 8px 8px 15px #c5c9ce, -8px -8px 15px #ffffff; 
}

/* Input Field Styles */
.input-field {
  width: 100%;
  padding: 0.5rem 1rem;
  border-radius: 1rem;
  border: 1px solid #d1d5db;
  background-color: #f8fafc;
  box-shadow: inset 2px 2px 5px #cbd5e1;
  outline: none;
  transition: border 0.3s ease, box-shadow 0.3s ease;
}

.input-field:focus {
  border-color: #20c997;
  box-shadow: 0 0 0 1px #20c997;
}

/* Button Style (Submit) */
.btn-primary {
  background-color: #e8fff8;
  color: #009f70;
  padding: 0.5rem 1.5rem;
  border-radius: 9999px;
  font-weight: 600;
  box-shadow: 2px 4px 10px rgba(0, 0, 0, 0.15);
  transition: background-color 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  background-color: #20c997;
  color: white;
}

/* Neumorphic Box Shadow */
.shadow-neumorphic {
  box-shadow: 8px 8px 15px #c5c9ce, -8px -8px 15px #ffffff;
}



.shadow-neumorphic {
    box-shadow:
        8px 8px 15px #c5c9ce,
        -8px -8px 15px #ffffff;
}

#gmaps{
    width: 100%;
    max-width: 90vw;
}

.contact-panel{
    overflow-x: auto;
}

::selection {
    background-color: #14b8a6;
    color: #ffffff;

}
