@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Manrope:wght@300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:ital,wght@0,100..700;1,100..700&family=Libre+Baskerville:ital,wght@0,400..700;1,400..700&display=swap');
:root {
  --primary: #2D6A4F;
  --primary-dark: #1B4332;
  --primary-light: #D8F3DC;
  --secondary: #E9C46A;
  --accent: #D95D39;
  --bg-base: #FAF9F6;
  --bg-alt: #F4F1DE;
  --text-primary: #1A1A1A;
  --text-secondary: #4A4A4A;
  --bg-light:#f4f6f8;
}

body {
  font-family: 'Manrope', sans-serif;
  color: var(--text-primary);
  background: var(--bg-base);
  margin: 0;
}
h1,h2,h3,h4,h5,h6 { font-family: 'Outfit', sans-serif; }
p{
    font-family:'Manrope', sans-serif;
    font-size:20px;
    text-align: justify;
    line-height: 2.25rem;
}
/* Bootstrap overrides */
.btn-primary { background-color: var(--primary)!important; border-color: var(--primary)!important; }
.btn-primary:hover { background-color: var(--primary-dark)!important; border-color: var(--primary-dark)!important; }
.btn-outline-primary { color: var(--primary)!important; border-color: var(--primary)!important; }
.btn-outline-primary:hover { background-color: var(--primary)!important; color: #fff!important; }
.btn-warning { background-color: var(--secondary)!important; border-color: var(--secondary)!important; color: var(--text-primary)!important; }
.btn-pill { border-radius: 50px; padding: 10px 28px; font-weight: 600; }

/* Colors */
.text-primary-custom { color: var(--primary)!important; }
.text-secondary-custom { color: var(--text-secondary)!important; font-family:'Outfit', sans-serif; font-size:17px; text-align: justify !important; line-height: 2.25rem; }
.text-accent { color: var(--accent)!important; }
.text-gold { color: var(--secondary)!important; }
.bg-primary-custom { background-color: var(--primary)!important; }
.bg-primary-dark { background-color: var(--primary-dark)!important; }
.bg-primary-light { background-color: var(--primary-light)!important; }
.bg-base { background-color: var(--bg-base)!important; }
.bg-alt { background-color: var(--bg-alt)!important; }

/* Top Bar */
.top-bar { background-color: var(--primary); color: #fff; font-size: 0.85rem; padding: 8px 0; }

/* Navbar */
.navbar-custom { background: rgba(255,255,255,0.95)!important; backdrop-filter: blur(20px); transition: all 0.3s ease; }
.navbar-custom .nav-link { color: var(--text-secondary)!important; font-weight: 500; padding: 8px 16px!important; border-radius: 50px; transition: all 0.3s ease; font-size: 0.9rem; }
.navbar-custom .nav-link:hover, .navbar-custom .nav-link.active { color: #fff!important; background-color: var(--primary); }
.navbar-logo { height: 56px; width: 56px; border-radius: 50%; object-fit: cover; }

/* Hero */
.hero-section { position: relative; min-height: 60vh; display: flex; align-items: center; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; object-fit: cover; width: 100%; height: 100%; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(45,106,79,0.85) 0%, rgba(27,67,50,0.7) 100%); }

/* Page Header */
.page-header { position: relative; padding: 80px 0; overflow: hidden; }
.page-header .hero-bg { position: absolute; inset: 0; object-fit: cover; width: 100%; height: 100%; }
.page-header .hero-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(45,106,79,0.9) 0%, rgba(27,67,50,0.8) 100%); }

/* Sections */
.section-padding { padding: 80px 0; }
.overline { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.2em; font-weight: 600; color: var(--primary); font-family: 'Outfit', sans-serif; }

/* Cards */
.card-hover { transition: transform 0.3s ease, box-shadow 0.3s ease; border: 1px solid #e5e5e5; }
.card-hover:hover { transform: translateY(-5px); box-shadow: 0 20px 40px rgba(0,0,0,0.08); }

.product-img-wrapper { overflow: hidden; }
.product-img-wrapper img { transition: transform 0.5s ease; }
.product-img-wrapper:hover img { transform: scale(1.05); }

/* Benefit icon */
.benefit-icon { width: 48px; height: 48px; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }

/* Check icon */
.check-icon { color: var(--primary); flex-shrink: 0; margin-top: 3px; width: 18px; height: 18px; }

/* Speciality card */
.speciality-card { background: rgba(255,255,255,0.1); backdrop-filter: blur(8px); border: 1px solid rgba(255,255,255,0.2); border-radius: 16px; padding: 24px; width:100%; }

/* Members */
.member-card { transition: transform 0.3s ease, box-shadow 0.3s ease; }
.member-card:hover { transform: translateY(-5px); box-shadow: 0 15px 30px rgba(0,0,0,0.1); }
.member-img { width: 140px; height: 140px; border-radius: 50%; object-fit: cover; object-position: top; border: 4px solid #fff; box-shadow: 0 4px 15px rgba(0,0,0,0.1); }

/* Gallery */
.gallery-masonry { column-count: 3; column-gap: 16px; }
.gallery-item { cursor: pointer; overflow: hidden; border-radius: 12px; margin-bottom: 16px; break-inside: avoid; }
.gallery-item img { transition: transform 0.5s ease; width: 100%; display: block; }
.gallery-item:hover img { transform: scale(1.05); }

/* Lightbox */
.lightbox-overlay { position: fixed; inset: 0; z-index: 2000; background: rgba(0,0,0,0.9); display: flex; align-items: center; justify-content: center; }
.lightbox-overlay img { max-width: 90%; max-height: 85vh; object-fit: contain; border-radius: 8px; }

/* Floating Socials */
.floating-social { position: fixed; left: 1rem; top: 50%; transform: translateY(-50%); z-index: 50; display: flex; flex-direction: column; gap: 0.75rem; }
.floating-social a { width: 48px; height: 48px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; font-size: 1.25rem; box-shadow: 0 4px 12px rgba(0,0,0,0.15); transition: transform 0.3s; }
.floating-social a:hover { transform: scale(1.1); }

.floating-whatsapp { position: fixed; right: 1rem; bottom: 1.5rem; z-index: 50; }
.floating-whatsapp a { width: 56px; height: 56px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; font-size: 1.5rem; background: #25D366; box-shadow: 0 4px 12px rgba(0,0,0,0.15); transition: transform 0.3s; }
.floating-whatsapp a:hover { transform: scale(1.1); }

/* Footer */
.footer-custom { background-color: var(--primary-dark); color: #fff; }
.footer-custom a { color: rgba(255,255,255,0.7); text-decoration: none; transition: color 0.3s ease; }
.footer-custom a:hover { color: var(--secondary); }

/* Animations */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
.animate-fade-in-up { animation: fadeInUp 0.7s ease-out forwards; }

/* Responsive */
@media (max-width: 767px) { .floating-socials { display: none; } }
@media (max-width: 991px) { .gallery-masonry { column-count: 2; } }
@media (max-width: 575px) { .gallery-masonry { column-count: 1; } }

/* Scroll */
html { scroll-behavior: smooth; }

/* Icon Styling */
.custom-list{
    list-style: none;
    padding: 0;
    margin: 0;
}
.custom-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 14px;
}
.custom-icon {
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;
    background-color: #fff;          /* Only circle is white */
    color: #f77c16;         /* Checkmark color */

    font-size: 16px;
    flex-shrink: 0;
    margin-top: 3px;
}

.custom-list li:hover .custom-icon {
    background-color: #f77c16;
    color: #fff;
    transform: scale(1.15);
    transition: all 0.3s ease;
}

/* Optional: Improve text */
.custom-list span {
    font-size: 1.05rem;
    font-family: 'Outfit', 'Sans-Serif';
    text-align: justify;
    line-height: 2 rem;
    font-weight: 500;
}

/* Remove bullets */
.custom-list1 {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* Apply flex to li (not ul) */
.custom-list1 li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 14px;
}

/* Text */
.custom-list1 li span {
    font-size: 1.05rem;
    font-family: 'Outfit', sans-serif;
    text-align: justify;
    line-height: 2rem; /* fixed */
    font-weight: 500;
}

/* Icon */
.custom-icon1 {
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;
    background-color: #fff;
    color: #2D6A4F;

    font-size: 16px;
    flex-shrink: 0;
    margin-top: 3px;
}

/* Optional hover */
.custom-list1 li:hover .custom-icon1 {
    background-color: #2D6A4F;
    color: #fff;
    transition: 0.3s ease;
}


/* List Container */
.custom-list2 {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* List Item */
.custom-list2 li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 14px;
}

/* Icon */
.custom-list2 li i {
    color: #f5b42a; /* fallback gold */
    font-size: 1rem;
    flex-shrink: 0;
    margin-top: 4px;
}

/* Text */
.custom-list2 li span {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.05rem;
    font-family: 'Outfit', 'Sans-Serif';
    text-align: justify;
    line-height: 2rem;
    font-weight: 500;
    margin-top:4px;
}

/* Optional Hover Effect */
.custom-list2 li:hover span {
    color: #ffffff;
    transition: 0.3s ease;
}

/* Optional Icon Animation */
.custom-list2 li:hover i {
    transform: scale(1.2);
    transition: 0.3s ease;
}


/* Remove bullets */
.custom-list3 {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

/* List Item */
.custom-list3 li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 14px;
}

/* Icon */
.custom-list3 li i {
    color: #2D6A4F;
    font-size: 1rem;
    flex-shrink: 0;
    margin-top: 4px;
}

/* Text */
.custom-list3 li span {
    color: rgba(0, 0, 0, 0.85);
    font-size: 1.05rem;
    font-family: 'Outfit', sans-serif;
    text-align: justify;
    line-height: 2rem; 
    font-weight: 500;
}

/* Hover Effect */
.custom-list3 li:hover span {
    color: #2D6A4F; /* better than white for visibility */
    transition: 0.3s ease;
}

/* Icon Animation */
.custom-list3 li:hover i {
    transform: scale(1.2);
    transition: 0.3s ease;
}

.display-high{
    font-size:1.25rem;
    color:#2D6A4F;
    font-family: 'Josefin Sans';
    text-align: justify;
    font-weight: 500;
}

.bg-high{
    background: #edf0e9;
}

.lead{
    font-family: 'Josefin Sans';
    font-size:1.5rem;
    font-weight: 500;
    text-align: center;
}

.prod-block{
    background:rgba(45,106,79,0.05);
}

.prod-block p{
    font-size:1.05rem;
    font-family: 'Josefin Sans';
    font-weight: 500;
    line-height:2rem;
    color:#2F5233;
}

.benefit-box {
    display: flex;
    gap: 10px;
    background: #fff;
    padding: 10px;
    border-radius: 10px;
    border: 1px solid #dee2e6;
    transition: all 0.3s ease;
    cursor: pointer;
}

/* Hover effect */
.benefit-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    border-color: transparent;
}

/* Icon styling */
.benefit-icon {
    width: 32px;
    height: 32px;
    min-width: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: all 0.3s ease;
}

/* Icon animation on hover */
.benefit-box:hover .benefit-icon {
    transform: scale(1.15) rotate(5deg);
}

/* Icon color animation */
.benefit-box:hover i {
    transform: scale(1.1);
}

/* Title */
.benefit-title {
    font-size: 0.85rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

/* Change title color on hover */
.benefit-box:hover .benefit-title {
    color: #0d6efd;
}

/* Text */
.benefit-text {
    font-size: 0.8rem;
    line-height: 1.25rem;
    margin: 10px 0;
}

/* Optional smooth fade-in animation */
.benefit-box {
    opacity: 0;
    transform: translateY(10px);
    animation: fadeInUp 0.5s ease forwards;
}

/* Stagger effect */
.col-sm-6:nth-child(1) .benefit-box { animation-delay: 0.1s; }
.col-sm-6:nth-child(2) .benefit-box { animation-delay: 0.2s; }
.col-sm-6:nth-child(3) .benefit-box { animation-delay: 0.3s; }
.col-sm-6:nth-child(4) .benefit-box { animation-delay: 0.4s; }
.col-sm-6:nth-child(5) .benefit-box { animation-delay: 0.5s; }

/* Keyframes */
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.pack-container {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 12px;
}

.pack-label {
    font-size: 0.85rem;
    font-weight: 500;
}

.pack-badge {
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
}

.bg-primary-light {
    background-color: rgba(13, 110, 253, 0.1);
}

.text-primary-custom {
    color: #0d6efd;
}

.text-secondary-custom {
    color: #6c757d;
}

/* Product quote block */
.prod-block {
    padding: 15px;
    border-radius: 10px;
    border: 1px solid #dee2e6;
    transition: all 0.3s ease;
    background: #fff;
}

.prod-text {
    text-align: center;
    margin: 0;
    font-size: 0.9rem;
}

/* Hover effect */
.prod-block:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.08);
}
.prod-tag{
   font-weight:500 ; 
   font-size:0.9rem;
   text-transform:uppercase;letter-spacing:0.1em    
}

.product-img {
    width: 100%;
    height: 500px;   /* prevents full height stretch */
    object-fit: contain;
}

/* Badge */
.badge-custom {
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.75rem;
}

/* Typography */
.text-accent {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.text-primary-custom {
    color: #2d6a4f;
}

.text-secondary-custom {
    color: #6c757d;
}

/* Feature List */
.feature-item {
    display: flex;
    gap: 8px;
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.check-icon {
    color: #2d6a4f;
    margin-top: 2px;
}

/* Benefit Box */
.benefit-box {
    display: flex;
    gap: 10px;
    background: #fff;
    padding: 10px;
    border-radius: 10px;
    border: 1px solid #dee2e6;
    transition: all 0.3s ease;
}

.benefit-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.benefit-icon {
    width: 32px;
    height: 32px;
    min-width: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: rgba(45,106,79,0.1);
}

.benefit-title {
    font-size: 0.85rem;
    font-weight: 600;
}

.benefit-text {
    font-size: 0.75rem;
}

/* Pack Sizes */
.pack-container {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 12px;
}

.pack-label {
    font-size: 0.85rem;
    font-weight: 500;
}

.pack-badge {
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    background: rgba(45,106,79,0.1);
    color: #2d6a4f;
}

/* Quote Block */
.prod-block {
    padding: 15px;
    border-radius: 10px;
    border: 1px solid #dee2e6;
    background: rgba(45,106,79,0.05);
    transition: all 0.3s ease;
}

.prod-block:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.08);
}

.prod-text {
    font-size: 0.9rem;
    font-weight: 500;
    margin: 0;
}

.product-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 2; /* ensures it's above image */
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.75rem;
}

.product-image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    padding: 20px;
}


/* Cards */
.card-hover {
    transition: all 0.3s ease;
}

.card-hover:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* Gallery Images */
.gallery-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

/* Utility Colors */
.bg-primary-light {
    background-color: rgba(45,106,79,0.1);
}

.bg-primary-custom {
    background-color: #2d6a4f;
}

/* Responsive */
@media (max-width: 768px) {
    .product-img {
        height: auto;
    }
}

.floating-socials {
    position: fixed;
    right: 15px;
    bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 999;
}

/* Social buttons */
.floating-socials a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    background: #fff; /* default background */
    transition: all 0.3s ease;
}

/* Icon color FIX */
.floating-socials a i {
    color: #333;   /* 👈 change from white to dark */
    font-size: 18px;
}

/* Hover effect (dynamic color) */
.floating-socials a:hover {
    background: var(--hover-color);
}

.floating-socials a:hover i {
    color: #fff;
}

.contact-text {
    font-size: 1rem;
    text-align: center;        /* center text */
    display: flex;             /* ensures proper centering */
    flex-direction: column;
    align-items: center;       /* horizontal center */
    justify-content: center;   /* vertical balance */
    line-height: 1.5rem;
}