.contact-page {
    --primary-color: #214948;
    --secondary-color: #4a7c7b;
    --accent-color: #f0f0f0;
}

.contact-page body {
    background-color: #f8f9fa;
    color: #333;
    font-family: 'Arial', sans-serif;
}



@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-20px);
    }
    60% {
        transform: translateY(-10px);
    }
}

.contact-page .animate-fadeInUp {
    animation: fadeInUp 0.5s ease-out forwards;
}

.contact-page .animate-slideInLeft {
    animation: slideInLeft 0.5s ease-out forwards;
}

.contact-page .animate-slideInRight {
    animation: slideInRight 0.5s ease-out forwards;
}

.contact-page .animate-bounce {
    animation: bounce 2s infinite;
}

.contact-page .animate-rotateIn {
    animation: rotateIn 0.5s ease-out forwards;
}

.contact-page .delay-1 { animation-delay: 0.1s; }
.contact-page .delay-2 { animation-delay: 0.2s; }
.contact-page .delay-3 { animation-delay: 0.3s; }
.contact-page .delay-4 { animation-delay: 0.4s; }

.contact-page .contact-form input,
.contact-page .contact-form textarea,
.contact-page .contact-form select {
    transition: all 0.3s ease;
    border: 2px solid #ced4da;
    border-radius: 8px;
}

.contact-page .contact-form input:focus,
.contact-page .contact-form textarea:focus,
.contact-page .contact-form select:focus {
    border-color: var(--primary-color);
    box-shadow: none;
}

.contact-page .map-container {
    position: relative;
    padding-bottom: 31%;
    height: 0;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.contact-page .map-container:hover {
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
    transform: translateY(-5px);
}

.contact-page .map-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 400px !important;
    border-radius: 15px;
}

.contact-page .contact-info-item {
    transition: all 0.3s ease;
    padding: 20px;
    border-radius: 15px;
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    height: 100%;
}

.contact-page .contact-info-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.contact-page .contact-info-item i {
    color: var(--primary-color);
    font-size: 28px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.contact-page .contact-info-item:hover i {
    transform: scale(1.2);
}

.contact-page .btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    transition: all 0.3s ease;
    border-radius: 8px;
    padding: 10px 30px;
}

.contact-page .btn-primary:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.contact-page .section-title {
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.contact-page .section-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.contact-page .section-title:hover::after {
    width: 100%;
}

.contact-page .social-icons {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.contact-page .social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: #fff;
    margin: 0 10px;
    transition: all 0.3s ease;
}

.contact-page .social-icons a:hover {
    background-color: var(--secondary-color);
    transform: translateY(-5px);
}

.contact-page .testimonial-carousel {
    padding: 20px 0;
}

.contact-page .testimonial {
    background-color: #fff;
    border-radius: 10px;
    /* padding: 15px; */
    margin: 5px;
    height: 18rem;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    text-align: center;
}

.contact-page .testimonial:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.contact-page .testimonial-image {
    width: 120px;
    height: 120px;
    margin: 0 auto;
    border-radius: 50%;
    overflow: hidden;
}

.contact-page .testimonial img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-page .testimonial h4 {
    color: #333;
    font-size: 20px;
    margin-bottom: 10px;
}

.contact-page .testimonial p {
    color: #666;
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
}

.contact-page .owl-nav {
    display: none;
}

.contact-page .owl-dots {
    text-align: center;
    margin-top: 30px;
}

.contact-page .owl-dots .owl-dot {
    display: inline-block;
    margin: 0 5px;
}

.contact-page .owl-dots .owl-dot span {
    width: 10px;
    height: 10px;
    background-color: #ccc;
    border-radius: 50%;
    display: block;
    transition: all 0.3s ease;
}

.contact-page .owl-dots .owl-dot.active span,
.contact-page .owl-dots .owl-dot:hover span {
    background-color: var(--primary-color);
}

/* Mobile Devices (max-width: 767px) */
@media screen and (max-width: 767px) {
    /* Styles for Mobile Devices */
    .contact-page {
        margin: 4rem 0px;
    }
}

/* Tablet Devices (min-width: 768px and max-width: 1024px) */
@media screen and (min-width: 768px) and (max-width: 1024px) {
    
}

/* Laptop Devices (min-width: 1025px and max-width: 1440px) */
@media screen and (min-width: 1025px) and (max-width: 1440px) {
    
}

/* Desktop Devices (min-width: 1441px) */
@media screen and (min-width: 1441px) {
    
}
