* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bs-primary: #008080;
    /* Teal/Greenish from logo */
    --bs-primary-rgb: 0, 128, 128;
    --bs-info: #00b4d8;
    /* Light blue for accents */
    --bs-body-font-family: 'Outfit', sans-serif;
}

body {
    font-family: 'Outfit', sans-serif;
    color: #333;
}

.text-info {
    color: #4cc9f0 !important;
}

.bg-info-subtle {
    background-color: #e0faff !important;
}

.text-info-emphasis {
    color: #0077b6 !important;
}

.btn-info {
    background-color: #00b4d8;
    border-color: #00b4d8;
}

.btn-info:hover {
    background-color: #0096c7;
    border-color: #0096c7;
}

.btn-primary {
    background-color:#268080;
    border-color: #268080;
}

.btn-outline-primary {
    background-color: #ffffff;
    border-color: #268080;
    color: #268080;
}

.btn-outline-primary:hover {
    background-color: #268080;
    border-color: #268080;
    color: #ffffff;
}

.btn-primary:hover {
    background-color: #268080;
    /* Darker teal */
    border-color: #268080;
}

.hero-section {
    background-color: #f8fafc;
    /* Very light subtle blue/gray */
    min-height: 90vh;
}

/* Rounded corners for branding */
.rounded-4 {
    border-radius: 1.5rem !important;
}

.rounded-5 {
    border-radius: 2rem !important;
}

/* Stats Section */
.stats-section {
    background: linear-gradient(90deg, #0e5c6d 0%, #0a4a58 100%);
}

.border-end-md {
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}

@media (max-width: 767px) {
    .border-end-md {
        border-right: none;
    }
}

/* CTA Section */
.cta-section {
    background-color: #0f172a;
    /* Dark navy */
}

/* Service Card Hover */
.service-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, .1) !important;
}

/* Hover effects */
.nav-link {
    font-weight: 500;
    color: #555;
    transition: color 0.3s;
}

.nav-link:hover {
    color: var(--bs-primary);
}

.hover-primary:hover {
    color: var(--bs-primary) !important;
}

.f-18 {
    font-size: 18px;
}

.f-20 {
    font-size: 20px;
}

.tracking-wide {
    letter-spacing: 2px;
}

.ls-1 {
    letter-spacing: 1px;
}

/* Animations */
@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

.animate-flower {
    animation: float 4s ease-in-out infinite;
}

.counter {
    font-variant-numeric: tabular-nums;
}

/* Swiper Configuration */
.testimonialSwiper {
    padding-bottom: 50px !important;
}

.swiper-pagination-bullet {
    background: var(--bs-primary) !important;
    opacity: 0.5;
    width: 10px;
    height: 10px;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    width: 25px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.swiper-slide {
    height: auto;
    display: flex;
}

.swiper-slide .card {
    width: 100%;
}

.footer-logo {
    width: 70%;
    height: auto;
    border-radius: 10px;
}

.nav-logo {
    width: 200px;
    border-radius: 10px;
}

@media (max-width: 767px) {
    .footer-logo {
        width: 50%;
    }

    .nav-logo {
        width: 150px;
    }
}


.whatsapp-float {
    position: fixed;
    left: 30px;
    bottom: 90px;
    height: 50px;
    width: 50px;
    color: white !important;
    text-align: center;
    font-size: 40px;
    line-height: 50px;
    z-index: 10;
    cursor: pointer;
    box-shadow: rgba(0, 0, 0, 0.2) 0px 5px 10px;
    background: rgb(37, 211, 102);
    border-radius: 50%;
    transition: 300ms ease-in-out;
}

.call-float {
    position: fixed;
    left: 30px;
    bottom: 30px;
    height: 50px;
    width: 50px;
    color: white !important;
    text-align: center;
    font-size: 26px;
    line-height: 50px;
    z-index: 100;
    cursor: pointer;
    box-shadow: rgba(0, 0, 0, 0.2) 0px 5px 10px;
    background: rgb(0, 123, 255);
    border-radius: 50%;
    transition: 300ms ease-in-out;
}

.connect-btn {
    position: fixed;
    right: 0px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 999;
}

.connect-btn button {
    transform: rotate(90deg);
    background-color: rgb(255, 255, 255);
    color: rgb(0, 0, 0);
    font-weight: bold;
    cursor: pointer;
    box-shadow: rgba(0, 0, 0, 0.2) 0px 2px 6px;
    margin-right: -36px;
    border-width: initial;
    border-style: none;
    border-color: initial;
    border-image: initial;
    padding: 15px 10px;
    border-radius: 0px 0px 10px 10px;
    transition: background-color 0.3s, box-shadow 0.3s;
}

.connect-btn button:hover {
    color: var(--bs-primary);
    background-color: white !important;
}
