/* Background */
body {
    background: linear-gradient(to bottom right, #eef6f7, #ffffff);
    font-family: 'Poppins', sans-serif;
}

/* Glassy Navbar */
.glass-nav {
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(15px);
    border-radius: 50px;
    margin: 20px auto;
    width: 90%;
    height: 70px;
    position: sticky !important;
    top: 20px !important;
    z-index: 1000;
}


/* Nav Links */
.nav-link {
    color: #38656E !important;
    font-weight: 500;
    margin: 0 8px;
}

.nav-link:hover {
    color: #0d3c40 !important;
}

/* Shop Button */
.shop-btn {
    background: #2d6067;
    color: #fff !important;
    padding: 10px 22px;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.15);
}

.shop-btn:hover {
    background: #214b50;
}

/* Hero Section */
.hero {
    margin-top: 100px;
    margin-bottom: 100px;
}

.small-text {
    color: #508c95;
    letter-spacing: 3px;
    font-weight: 500;
}

.highlight {
    color: #1d5f67;
    font-style: italic;
}

.hero-desc {
    max-width: 550px;
    color: #5a7075;
    font-size: 17px;
}

/* Buttons */
.explore-btn {
    background: #1d5f67;
    color: #fff;
    padding: 12px 28px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
}

.explore-btn:hover {
    background: #14484d;
}

.learn-btn {
    background: #ffffff;
    color: #1d5f67;
    padding: 12px 28px;
    border-radius: 50px;
    border: 1px solid #d8e4e5;
    font-size: 16px;
}

.learn-btn:hover {
    background: #eef7f7;
}

/* Responsive */
@media (max-width: 768px) {
    .glass-nav {
        border-radius: 15px;
        width: 100%;
        margin: 0;
    }
}

.floating-section {
    padding: 40px 0;
    display: flex;
    justify-content: center;
}

.floating-wrapper {
    width: 100%;
    max-width: 1100px;
    /* Adjust as you like */
    overflow: hidden;
    border-radius: 20px;
}

.floating-img {
    width: 100%;
    border-radius: 20px;
    animation: float 4s ease-in-out infinite;
}

/* Floating Animation */
@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-18px);
    }

    100% {
        transform: translateY(0px);
    }
}

.glow-border {
    padding: 10px;
    border-radius: 25px;
    position: relative;
    display: inline-block;
    overflow: hidden;
}

/* Border Animation */
.glow-border::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 25px;
    padding: 3px;
    background: linear-gradient(120deg,
            rgba(0, 150, 130, 0.4),
            rgba(0, 190, 160, 0.3),
            rgba(0, 150, 130, 0.4));
    filter: blur(6px);
    animation: glowMove 4s linear infinite;
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

.glow-border img {
    width: 100%;
    border-radius: 20px;
}

/* Glow animation movement */
@keyframes glowMove {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}


/* about */
/* ABOUT SECTION */
.about-section {
    display: flex;
    justify-content: center;
}

.about-box {
    background: rgba(255, 255, 255, 0.40);
    backdrop-filter: blur(12px);
    border-radius: 25px;
    max-width: 100%;
    border: 1px solid rgba(0, 150, 130, 0.25);
    position: relative;
    overflow: hidden;

}

/* Glow border wrapper */
.about-box::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 2px;
    border-radius: 25px;
    background: linear-gradient(120deg,
            rgba(0, 150, 130, 0.5),
            rgba(0, 210, 180, 0.35),
            rgba(0, 150, 130, 0.5));
    filter: blur(8px);
    z-index: -1;
    animation: glowAbout 5s linear infinite;
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

/* Glow animation */
@keyframes glowAbout {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Title */
.about-title {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    color: #1d5f67;
    font-weight: 700;
    letter-spacing: 1px;
}

/* Paragraph text */
.about-text {
    font-size: 17px;
    color: #436b70;
    line-height: 1.8;
    font-weight: 400;
}

/* why choose us */
/* IMAGE + CONTENT SECTION */
.info-section {
    margin-top: 60px;
}

/* Image wrapper with glow border */
.info-img-wrap {
    border-radius: 25px;
    overflow: hidden;
    position: relative;
}

.info-img {
    width: 100%;
    border-radius: 25px;
}

/* Glow Border Animation (2nd style matching theme) */
.glow-border-2::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 3px;
    border-radius: 25px;
    background: linear-gradient(120deg,
            rgba(0, 150, 130, 0.5),
            rgba(0, 210, 180, 0.3),
            rgba(0, 150, 130, 0.5));
    filter: blur(7px);
    z-index: -1;
    animation: rotateGlow 4.5s linear infinite;
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

/* Glow rotation */
@keyframes rotateGlow {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Content Box (Glassmorphism) */
.info-content {
    background: rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(12px);
    border-radius: 25px;
    border: 1px solid rgba(0, 150, 130, 0.25);
}

.info-title {
    font-family: 'Playfair Display', serif;
    font-size: 30px;
    color: #1d5f67;
    font-weight: 700;
    display: inline-block;
    position: relative;
    padding-bottom: 15px;
    /* space for curved underline */
}

.info-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 4px;
    /* thickness of the underline */
    border-bottom: 3px solid #1d5f67;
    /* line color & thickness */
    border-radius: 50% / 100%;
    /* makes the curve like your image */
    transform: scaleX(1.1);
    /* optional: stretch slightly */
}


.info-text {
    color: #436b70;
    font-size: 17px;
    line-height: 1.7;
}

.info-list {
    list-style: none;
    padding-left: 0;
}

.info-list li {
    margin-bottom: 8px;
    color: #1d5f67;
    font-weight: 500;
    font-size: 16px;
}


/* FEATURES SECTION */
.features-section {
    margin-top: 90px;
}

.feature-title {
    font-family: 'Playfair Display', serif;
    font-size: 34px;
    font-weight: 700;
    color: #1d5f67;
}

/* Card Glass Style */
.glass-card {
    background: rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(12px);
    border-radius: 25px;
    padding: 35px 25px;
    border: 1px solid rgba(0, 150, 130, 0.25);
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Glow border animation for cards */
.glass-card::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 2px;
    border-radius: 25px;
    background: linear-gradient(120deg,
            rgba(0, 150, 130, 0.5),
            rgba(0, 210, 180, 0.3),
            rgba(0, 150, 130, 0.5));
    filter: blur(7px);
    z-index: -1;
    animation: rotateCardGlow 6s linear infinite;
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

@keyframes rotateCardGlow {
    100% {
        transform: rotate(360deg);
    }
}

/* Hover effects */
.glass-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 90, 80, 0.18);
}

/* Title */
.feature-card-title {
    font-size: 22px;
    font-weight: 700;
    color: #1d5f67;
    margin-bottom: 12px;
}

/* Text */
.feature-card-text {
    color: #436b70;
    font-size: 16px;
    line-height: 1.7;
}

/* Icon Circle (Elegant style) */
.icon-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(0, 150, 130, 0.1);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0, 150, 130, 0.25);
    backdrop-filter: blur(3px);
}


/* foter */

/* FOOTER GLASS THEME */
.footer-glass {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    border-radius: 40px;
    padding: 40px 30px;
    max-width: 1200px;
    margin: 50px auto;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);
}

/* BRAND NAME */
.footer-brand-name {
    font-size: 20px;
    color: #1e4f56;
}

/* SUBHEADINGS */
.footer-sub {
    font-size: 18px;
    font-weight: 700;
    color: #1d5f67;
    margin-bottom: 12px;
}

/* LINKS */
.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    text-decoration: none;
    color: #2f5f66;
    font-weight: 500;
}

.footer-links a:hover {
    color: #14484d;
}

/* CONTACT TEXT */
.footer-text {
    margin: 5px 0;
    color: #2c4f54;
    line-height: 1.5;
}

/* BUTTON */
.footer-btn {
    background: #235a61;
    color: #fff;
    padding: 10px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(10, 50, 60, 0.25);
    transition: 0.3s;
}

.footer-btn:hover {
    background: #1c4a50;
}

/* COPYRIGHT */
.footer-bottom {
    margin-top: 20px;
    color: #255157;
    font-weight: 500;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .footer-glass {
        padding: 35px 20px;
    }

    .footer-links {
        text-align: center;
    }
}


/* BREADCRUMBS */
.breadcrumb-wrapper {
    width: 100%;
    margin: 100px auto 20px auto;
    padding: 12px 25px;
    background: rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(12px);
    border-radius: 50px;
    max-width: 1200px;
    border: 1px solid rgba(0, 150, 130, 0.25);
    box-shadow: 0 4px 12px rgba(0, 60, 50, 0.10);
}

.breadcrumb {
    margin: 0;
}

.breadcrumb-item a {
    color: #1d5f67;
    text-decoration: none;
    font-weight: 600;
}

.breadcrumb-item a:hover {
    color: #14484d;
}

.breadcrumb-item.active {
    color: #2a6f77;
    font-weight: 600;
}

/* Breadcrumb Separator Color */
.breadcrumb-item+.breadcrumb-item::before {
    color: #57989f;
}

.breadcrumb {
    justify-content: center;
    /* centers the text */
}

.breadcrumb-item a {
    color: #1d5f67;
    font-weight: 600;
    text-decoration: none;
}

.breadcrumb-item.active {
    color: #2a6f77;
    font-weight: 600;
}


.hover-effect:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 90, 80, 0.18);
    transition: 0.6s;


}

/* Offcanvas background */
.offcanvas {
    background: #ffffff;
    /* light background */
    padding-top: 20px;
}

/* Nav links left aligned */
.offcanvas .nav-link {
    text-align: left;
    padding: 12px 18px;
    font-size: 17px;
    color: #1c1c1c;
    font-weight: 500;
}

/* Divider lines for each item */
.offcanvas .nav-link {
    border-bottom: 1px solid #e5e5e5;
}

/* Remove last line */
.offcanvas .nav-link:last-child {
    border-bottom: none;
}

/* Hover effect */
.offcanvas .nav-link:hover {
    background: #f3f3f3;
    color: #0b6a74;
}


.card-bg {
    background: rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(12px);
    border-radius: 25px;
    padding: 35px 25px;
    border: 1px solid rgba(0, 150, 130, 0.25);
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.floating-img {
    height: 420px;
    /* Set equal height for all images */
    object-fit: cover;
    /* Crop neatly without distortion */
    width: 100%;
    border-radius: 20px;
}

.carousel-item {
    transition: opacity 0.8s ease-in-out;
    /* smooth fade */
}

#homeCarousel .carousel-inner {
    height: 420px;
    /* FIXED HEIGHT for the slider */
}

#homeCarousel .carousel-item img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    /* Maintain clean crop – no stretch */
    border-radius: 20px;
}

.slider-img {
    object-fit: cover;
    /* No distortion, no zoom jump */
    border-radius: 30px;
    width: 90%;
}

/* Fade speed smooth */
.carousel-item {
    transition: opacity 0.8s ease-in-out;
}

#simpleCarousel {
    padding-left: 20px;
    padding-right: 20px;
}

.border-runner {
    position: relative;
    padding: 25px;
    border-radius: 15px;
    overflow: hidden;
}

.border-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.border-path {
    fill: none;
    stroke: #1B5E67;
    stroke-width: 3;
    stroke-linecap: round;

    /* --- MAGIC --- */
    stroke-dasharray: 300 600;
    /* line length + empty gap */
    animation: borderMove 3s linear infinite;
}

@keyframes borderMove {
    0% {
        stroke-dashoffset: 0;
    }

    100% {
        stroke-dashoffset: -900;
    }
}



/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 9999;
    transition: transform 0.3s ease, filter 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.25));
}

.whatsapp-float img {
    width: 65px;
    height: 65px;
    border-radius: 50%;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    filter: drop-shadow(0 6px 18px rgba(0, 0, 0, 0.35));
}

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-float img {
        width: 55px;
        height: 55px;
    }
}