:root {
    --primary: #2ECC71;
    --primary-dark: #27AE60;
    --secondary: #E8F8F0;
    --dark: #014d4e;
    --light: #FFFFFF;
    --accent: #F57E57;
}

.text-footer{
color: var(--light) !important;
}

body {
    font-family: 'Mulish', sans-serif;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6, .navbar-brand {
    font-family: 'Caladea', serif;
}

.bg-primary {
    background-color: var(--primary) !important;
}

.text-primary {
    color: var(--primary) !important;
}

.btn-primary {
    background-color: var(--primary);
    border-color: var(--primary);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
}

.btn-outline-primary {
    color: var(--primary);
    border-color: var(--primary);
}

.btn-outline-primary:hover {
    background-color: var(--primary);
    color: white;
}

/* ==================== */
/* Enhanced Navbar Styles */
/* ==================== */
.navbar {
    background-color: var(--dark) !important;
    transition: all 0.3s ease;
    padding: 15px 0;
}

.navbar.scrolled {
    padding: 10px 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    font-family: 'Caladea', serif;
    letter-spacing: 1px;
    font-size: 1.8rem;
}

.logo {
    height: 60px;
    width: auto;
    display: block;
}

.navbar-nav .nav-link {
    font-weight: 500;
    padding: 8px 15px;
    margin: 0 3px;
    border-radius: 5px;
    transition: all 0.3s ease;
    position: relative;
}

.navbar-nav .nav-link:not(.active):hover {
    /*background-color: rgba(46, 204, 113, 0.1);*/
    color: var(--primary) !important;
    font-weight: bold;
}

.navbar-nav .nav-link.active {
    /*background-color: var(--primary);*/
    color: white !important;
    font-weight: bold;
}

.navbar-toggler {
    border: none;
    padding: 8px;
    margin-right: 1.5em;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 3px rgba(46, 204, 113, 0.3);
}

@media (max-width: 768px) {
    .logo-img{
    height:45px;
    }
}

/* Mobile Menu Styles */
@media (max-width: 991px) {
    .navbar-collapse {
        background-color: var(--dark);
        padding: 20px;
        margin-top: 15px;
        border-radius: 10px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    }
    
    .navbar-nav .nav-link {
        padding: 10px 15px;
        margin: 5px 0;
    }
    
    .btn-primary {
        margin-top: 10px;
        width: 100%;
    }

    body {
        padding-top: 70px;
    }
}

/* ==================== */
/* Existing Styles Below */
/* ==================== */

/* Hero Slider */
.hero-slider {
    position: relative;
}

.hero-slide {
    height: 100vh;
    background-size: cover;
    background-position: center;
}

.hero-slide .container {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(46, 204, 113, 0.7));
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
    text-align:center;
    width:100%;
}

/* Slider Navigation Arrows */
.slick-prev, .slick-next {
    width: 50px;
    height: 50px;
    z-index: 10;
}

.slick-prev {
    left: 20px;
}

.slick-next {
    right: 20px;
}

.slick-prev:before, .slick-next:before {
    font-size: 40px;
    color: white;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.slick-prev:hover:before, .slick-next:hover:before {
    opacity: 1;
    color: var(--primary);
}

/* Slider Dots */
.slick-dots {
    bottom: 30px;
}

.slick-dots li button:before {
    font-size: 12px;
    color: white;
    opacity: 0.5;
}

.slick-dots li.slick-active button:before {
    color: var(--primary);
    opacity: 1;
}

/* Animations */
.animate-up {
    transform: translateY(50px);
    opacity: 0;
    transition: all 0.8s ease;
}

.animate-up.show {
    transform: translateY(0);
    opacity: 1;
}

.animate-left {
    transform: translateX(-50px);
    opacity: 0;
    transition: all 0.8s ease;
}

.animate-left.show {
    transform: translateX(0);
    opacity: 1;
}

.animate-right {
    transform: translateX(50px);
    opacity: 0;
    transition: all 0.8s ease;
}

.animate-right.show {
    transform: translateX(0);
    opacity: 1;
}

.animate-scale {
    transform: scale(0.9);
    opacity: 0;
    transition: all 0.8s ease;
}

.animate-scale.show {
    transform: scale(1);
    opacity: 1;
}

/* Hover Effects */
.service-card {
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transform: perspective(1000px) rotateY(0deg);
}

.service-card:hover {
    transform: perspective(1000px) rotateY(5deg) translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.service-icon {
    width: 80px;
    height: 80px;
    background-color: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 30px;
    color: var(--primary);
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    background-color: var(--primary);
    color: white;
    transform: rotateY(180deg);
}

.pricing-card {
    border: none;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.pricing-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.pricing-header {
    background-color: var(--primary);
    color: white;
    padding: 20px 0;
    transition: all 0.3s ease;
}

.pricing-card:hover .pricing-header {
    background-color: var(--primary-dark);
}

.popular-tag {
    position: absolute;
    top: -3px;
    right: 0px;
    background-color: var(--accent);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.testimonial-card {
    border: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 30px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    transform: translateY(-5px);
}

.testimonial-img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary);
    transition: all 0.3s ease;
}

.testimonial-card:hover .testimonial-img {
    border-color: var(--primary-dark);
    transform: rotate(10deg);
}

.gallery-item {
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    position: relative;
}

.gallery-item img {
    transition: all 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(46, 204, 113, 0.3);
    opacity: 0;
    transition: all 0.3s ease;
}

.gallery-item:hover::after {
    opacity: 1;
}

.contact-info-box {
    padding: 30px;
    border-radius: 10px;
    background-color: var(--secondary);
    height: 100%;
    transition: all 0.3s ease;
}

.contact-info-box:hover {
    background-color: var(--primary);
    color: white;
}

.contact-info-box:hover .contact-icon {
    background-color: white;
    color: var(--primary);
}

.contact-info-box:hover p {
    color: white !important;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background-color: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon:hover {
    background-color: var(--primary);
    transform: translateY(-5px) rotate(10deg);
}

/* Floating Animation */
.floating {
    animation: floating 3s ease-in-out infinite;
}

@keyframes floating {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

/* Button Animation */
.btn-animate {
    position: relative;
    overflow: hidden;
}

.btn-animate::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 5px;
    height: 5px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 0;
    border-radius: 100%;
    transform: scale(1, 1) translate(-50%);
    transform-origin: 50% 50%;
}

.btn-animate:focus:not(:active)::after {
    animation: ripple 1s ease-out;
}

@keyframes ripple {
    0% {
        transform: scale(0, 0);
        opacity: 0.5;
    }
    100% {
        transform: scale(20, 20);
        opacity: 0;
    }
}

/* Footer */
.footer {
    background-color: var(--dark);
    color: white;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary);
    padding-left: 5px;
}