:root {
    --primary-color: #f39200;
    --secondary-color: #9bc600;
    --accent-color: #7fb069;
    --light-green: #a7c957;
    --text-dark: #2d3436;
    --text-light: #636e72;
    --bg-light: #f8f9fa;
    --pink: #f63160;
}

* {
    font-family: 'Noto Sans Arabic', sans-serif;
}

body {
    background: #f6f4ee;
    color: var(--text-dark);
}
body, html {
    overflow-x: hidden;
}
.text-primary {
    color: #434544 !important;
}
/* Header Styles */
.navbar {
    background: #fffcf8;
    backdrop-filter: blur(10px);
    /* box-shadow: 0 4px 20px rgba(0,0,0,0.1); */
    padding: 1rem 0;
    padding-bottom: 0;
}
.nav-container {
    margin-bottom: -15px;
}
.navbar-brand {
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(45deg, #fff, #a7c957);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-left: 70px;
}

.nav-link {
    color: #333 !important;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
}

/* .nav-link:hover {
    color: var(--light-green) !important;
    transform: translateY(-2px);
} */

/* Hero Section */
.hero-section {
    background: #fff;
    color: white;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    padding-top: 140px;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="80" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}
.navbar-brand {
    position: relative;
}
.hero-title.fade-in-up {
    font-weight: 400;
}
.navbar-brand img {
    position: relative;
    z-index: 999;
}
.navbar-brand::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: #fffcf8;
  border-radius: 50%;
  clip-path: inset(50% 0 0 0); /* cuts circle into half */

}
.hero-content {
    position: relative;
    z-index: 2;
}
.lead.fade-in-up.visible {
    color: #3e403f;
    font-size: 2.2rem;
}
.hero-title {
    font-size: 2.5rem;
    font-weight: 500;
    margin-bottom: 1rem;
    color: #333;
}

.search-box {
    border-radius: 50px;
    padding: 3px;
    margin-top: 2rem;
    border: 1.8px solid #f5a834;
    border-radius: 15px;
}

.search-box input {
    border: none;
    padding: 15px 25px;
    font-size: 1.1rem;
    background: transparent;
    color: var(--text-dark);
}

.search-box input:focus {
    outline: none;
    box-shadow: none;
}

.search-btn {
    border: none;
    border-radius: 50px;
    padding: 10px 20px;
    color: #333;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
    transform: rotatey(180deg);
}

.search-btn:hover {
    background: var(--primary-color);
    transform: scale(1.05);
}

/* Popular Topics */
.topic-tag {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 5px 16px;
    border-radius: 20px;
    margin: 5px;
    display: inline-block;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.3);
    font-style: italic;
}

.topic-tag:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.topic-pink    { background: var(--pink) !important; color: #fff !important; }
.topic-green   { background: #9bc600 !important; color: #fff !important; }
.topic-orange  { background: var(--primary-color) !important; color: #fff !important; }

/* Card Styles */
.article-card {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    background: white;
}

.article-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 20px rgba(0, 0, 0, 0.15);
}

.card-body {
    padding: 0.75rem;
}
.card-img {
    border-radius: 10px;
    width: 100%;
    height: 120px;
    object-fit: cover;
}
.card-title {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-dark);
    line-height: 1.4;
    height: 50px;
    overflow: scroll;
}
.card-title::-webkit-scrollbar {
  display: none;          /* Chrome, Safari, and Edge */
}

.card-meta {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-top: 0.5rem;
    font-style: italic;
    height: 50px;
}

.card-category {
    background: var(--accent-color);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Stats Section */
.stats-section {
    background: var(--primary-color);
    color: white;
    padding: 60px 0;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.2);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    display: block;
    margin-bottom: 0.5rem;
}

.stat-text {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--accent-color), var(--light-green));
    color: white;
    padding: 60px 0;
    text-align: center;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.cta-btn {
    background: white;
    color: var(--primary-color);
    padding: 12px 30px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    margin: 10px;
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    background: var(--bg-light);
}

/* Newsletter */
.newsletter-section {
    background: var(--bg-light);
    padding: 60px 0;
    

}

.newsletter-box {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.newsletter-input {
    border: 2px solid #e9ecef;
    border-radius: 50px;
    padding: 12px 20px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.newsletter-input:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 0.2rem rgba(127, 176, 105, 0.25);
}
.writer {
    display: block;
    width: 100%;
    font-style: italic;
}
.writer img {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    object-fit: cover;
    display: inline-block!important;
}
.writer span {
    color: #636e72;
}
/* Footer */
.footer {
    background: #f6f4ee;
    color: white;
    padding: 50px 0 20px;
}
.footer-wrapper {
    background-color: var(--primary-color);
     border-radius: 25px;
     padding: 70px;
     position: relative;
     padding-bottom: 0;
}
.footer-section h5 {
    color: #fff;
    margin-bottom: 0.2rem;
    font-weight: 400;
    font-size: 16px;
}
.footer-section img {
    width: 70%;
    filter: brightness(0) invert(1);
}
.social-media i {
    color: #fff;
    border: 2px solid #fff;
    padding: 10px;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    text-align: center;
}
.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 0;
    line-height: 18px;
}

.footer-section ul li a {
    color: #ddd;
    text-decoration: none;
    font-size: 12px;
    font-weight: 300;
    line-height: 10px;
}
.footer-section ul li a:hover {
    color: #fff;
}

.social-icons a {
    color: #adb5bd;
    font-size: 1.5rem;
    margin-left: 15px;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    color: var(--light-green);
    transform: translateY(-2px);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .cta-title {
        font-size: 2rem;
    }
}

.pulse {
    animation: pulse 1s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

.navbar.scrolled {
    background: #fffcf8;
    backdrop-filter: blur(20px);
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}


.navbar-toggler {
    background: var(--primary-color);
}

.articles-slider .card {
    margin: 0 10px;
}

.slick-arrow {
    font-size: 0 !important; /* Hide default arrow text */
    width: 48px;
    height: 48px;
    background: #fff !important;
    border-radius: 50%;
    z-index: 2;
}
.slick-list.draggable {
    background: transparent;
}
.slick-prev:before,
.slick-next:before {
    font-size: 36px;
    color: #f39200 !important;
    opacity: 1;
}

.slick-prev {
    left: -60px;
}
.slick-next {
    right: -60px;
}
.main-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.left-section {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    position: relative;
    padding-bottom: 65px;
}

/* .left-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23f0f4f8' fill-opacity='0.3'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
    z-index: 0;
} */

.left-content {
    position: relative;
    z-index: 1;
}

.main-title {
    font-size: 2rem;
    font-weight: 100;
    color: #3e403f;
    margin-bottom: 15px;
    line-height: 1.2;
    padding-left: 40px;
}
.main-title span {
    color: #000;
    font-weight: 800;
    font-size: 2rem;
}
.aboutimg {
position: absolute;
    width: 880px;
    right: 0;
    top: 201px;
    z-index: 99;
}
.subtitle {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 25px;
}
.nav-item {
        transition: all 0.1s ease-in-out;
            border-bottom: 3px solid transparent;

}
.nav-item.active {
        border-bottom: 3px solid #f39c12;

} 
.nav-item:hover {
    border-bottom: 3px solid #f39c12;
    transition: all 0.1s ease-in-out;
}
.description {
    color: #000;
    font-size: 1.05rem;
    line-height: 1.4;
    margin-bottom: 35px;
    font-weight: 400;
}

.trusted-text {
    color: #000;
    font-weight: 400;
    font-size: 1.1rem;
    margin-bottom: 40px;
}
.vitamin-icon {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 50px;
    height: 50px;
    background: #8bc34a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
}


.cta-button {
    background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
    border: none;
    color: white;
    padding: 5px 25px;
    border-radius: 50px;
    font-weight: 400;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(243, 156, 18, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(243, 156, 18, 0.4);
    color: white;
}

.right-section {
    background: var(--primary-color);
    border-radius: 20px;
    padding: 30px;
    color: white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    position: relative;
}
.right-section::after {
        content: '';
    position: absolute;
    top: 100px;
    right: -15px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #ff3364;

}
/* .right-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M20 20c0 11.046-8.954 20-20 20s-20-8.954-20-20 8.954-20 20-20 20 8.954 20 20zm-30 0c0 5.523 4.477 10 10 10s10-4.477 10-10-4.477-10-10-10-10 4.477-10 10z'/%3E%3C/g%3E%3C/svg%3E") repeat;
    z-index: 0;
} */
.right-section.h-100 {
    background: url('../images/bg-index2.png') no-repeat bottom;
    background-color: var(--primary-color);
}
.right-content {
    position: relative;
    z-index: 1;
}

.brand-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 15px;
}
.brand-title img {
    width: 45%;
    filter: brightness(0) invert(1);
}
.brand-subtitle {
    font-size: 1.05rem;
    opacity: 0.9;
    margin-bottom: 30px;
    line-height: 1.3;
    font-weight: 300;
}

.stats-container {
    display: block;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 20px;
}

.stat-card {
    padding: 15px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    text-align: right;
    padding-top: 4px;
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-card.yellow {
    background: rgb(255, 255, 255);
    width: 40%;
    float: left;
    display: inline-block;
}

.stat-card.green {
    background: #9bc600;
    width: 55%;
    display: inline-block;
    float: right;
     padding-right: 40px;
     margin-top: 60px;
     padding-bottom: 50px;
}

.stat-card.pink {
    position: relative;
    display: inline-block;
    width: 40%;
    margin: 15px auto 0;
    margin-right: -60px;
    text-align: right;
    z-index: 1; /* put the pink card above */
    padding: 0;
}
.stat-inner {
    background: #f63160;
    padding: 5px 20px;
    width: 90%;
    border-radius: 25px;
}
.v-iconn {
position: absolute;
    top: -28px;
    right: -24px;
    z-index: 9999;
}
.stat-wrapper::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    background: var(--primary-color);
    border-radius: 25px;
    z-index: -1; /* force behind parent */
}.stat-icon {
    font-size: 2rem;
    margin-bottom: 10px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 5px;
    line-height: 40px;
}

.stat-text {
    font-size: 0.9rem;
    opacity: 0.9;
}

.newsletter-section {
    background: url('../images/bg-index2.png') no-repeat top;
    background-color: #9bc600;
    border-radius: 15px;
    padding: 50px;
    margin-top: 30px;
    color: white;
    position: relative;    
    padding-bottom: 20px;
}
.newsletter-section::after {
    content: '';
    position: absolute;
    top: 50px;
    left: -15px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #ff3364;
 }
.newsletter-title {
    font-weight: 700;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.newsletter-subtitle {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 30px;
}

.newsletter-form {
    position: relative;
}
input::placeholder {
  color: #fff;          /* your color */
  opacity: 1;           /* make sure it’s fully visible */
}

.newsletter-input {
    width: 100%;
    padding: 5px 20px;
    border: none;
    border-radius: 25px;
    font-size: 0.9rem;
    outline: none;
    text-align: right;
    background: transparent;
    border: 1px solid #fff;
    color: #FFF;
}

.newsletter-button {
    position: relative;
    background: var(--primary-color);
    border: none;
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 400;
    float: left;
    display: block;
    margin-top: 26px;
    font-style: italic;
}
.last-footer {
    display: block;
    position: relative;
    width: 100%;
    min-height: 100px;
    padding: 0 50px;
}
.fixed-top {
    z-index:9999999!important;
}

.footerimg2 {
    position: absolute;
    left: -27px;
    top: -21px;
    background: #fff;
    border-radius: 256px;
    width: 140px;
}
.footer-section.social-media {
  display: flex;
  flex-direction: column; /* keep items stacked vertically */
  justify-content: center; /* vertical center */
  height: 100%; /* important so it fills the column */
}

/* Colors */
.bg-orange {
  background-color: #f39200;
}

.bg-green {
  background-color: #9bc600;
}

/* Image overlay text */
.overlay-text {
  position: absolute;
  bottom: 110px;
  right: 20px;
  left: 20px;
  text-align: right;
}

.overlay-text h2 {
  font-size: 2.5rem;
  text-shadow: 0 2px 5px rgba(0,0,0,0.5);
}

.overlay-text p, 
.overlay-text h4 {
  text-shadow: 0 2px 4px rgba(0,0,0,0.4);
}
.myoverlay {
    width: 100%;
    height: 100%;
    background: rgb(179 0 43 / 31%);
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 25px;
}
/* Make image responsive */
.object-fit-cover {
  object-fit: cover;
}
.overlay-about {
    width: 100%;
    height: 100%;
    display: inline;
    position: relative;
    background-color: rgba(0, 0, 0, 0.1);
}
.info-box {
    position: relative;
    border-radius: 25px !important;
}
.info-box.bg-orange::before {
    content: '';
    position: absolute;
    top: -11px;
    left: -10px;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background-color: #ff3364;
}
.info-box.bg-green::before {
    content: '';
    position: absolute;
    top: -11px;
    right: -10px;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background-color: #ff3364;
}
.values-box {
  background-color: #f39200; /* Orange background */
  border-radius: 15px;
}
.values-box h3 {
    text-align: right!important;
}
.values-box p {
    text-align: right;
    font-weight: 400;
}
.value-card {
  background: #fff;
  color: #f18f01;
  border-radius: 15px;
  padding: 15px;
  text-align: center;
  transition: transform 0.3s ease;
}

.value-card:hover {
  transform: translateY(-5px);
}

.story-section {
  background-color: #9bc600; /* Green background */
  border-radius: 30px;
  position: relative;
  direction: rtl!important;
}

.founder-img {
    width: 165%;
    margin-left: -260px;
    margin-right: -150px;
    margin-top: -130px;
}

.icon-circle {
  position: absolute;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  color: #fff;
  font-size: 24px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
}

.green-icon {
  background-color: #87c51e;
  top: 10px;
  left: 30px;
}

.orange-icon {
  background-color: #f18f01;
  bottom: 20px;
  left: 60px;
}

.btn-read-more {
  background-color: #f39200;
  color: #fff;
  padding: 8px 18px;
  border-radius: 25px;
  text-decoration: none;
  transition: 0.3s;
}

.btn-read-more:hover {
  background-color: #f39200;
}
 
.b-hero-image {
    position: relative;
}
.bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(22 78 0 / 63%);
    border-radius: 25px;
    z-index: 98;
}
.b--hero--img {
position: absolute;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    z-index: 99;
    border-radius: 35px;
    background: #fff;
}
.b-hero-data {
    text-align: right;
    position: absolute;
    top: 100px;
    width: 80%;
    right: 40px;
}
/* --- Article Card Styles (Bootstrap 5 compatible) --- */
a {
    text-decoration: none;
}
/* Smooth rounded corners & subtle frame */
.article-card {
  background-color: #fff;
  border-radius: 1rem;
}

/* Keep image neatly cropped and fully covering its side */
.thumbb { 
      background: url('../images/ben.png') no-repeat center  ;
      background-size: cover;
}
.thumb img {
    width: 100%;
    height: calc(100% + 100px);
    object-fit: cover!important;
    border-top-left-radius: 1rem;
    border-top-right-radius: 1rem;
}
.object-fit-cover { 
  object-fit: cover; 
  display: block;
}

/* Tighter, elegant copy */
.article-card p { 
  font-size: 0.975rem;
}

/* Multi-line clamp for preview text (with graceful fallback) */
.line-clamp-4 {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.read-also {
        background: var(--secondary-color);
    padding: 12px;
    width: 100%;
    margin: 0px;
    color: #fff;
    border-radius: 9px;
}
.btn-success, .btn-success:hover, .btn-success:focus, .btn-success:active {
    background-color: var(--primary-color)!important;
    border-radius: 25px!important;
    border: 0!important;
    padding-right: 20px!important;
    padding-left: 20px!important;
}







.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

/* Pill buttons */
.btn-pill {
  border-radius: 999px;
  padding: .55rem 1.1rem;
  font-weight: 600;
  border: none;
  transition: background .2s;
}

.btn-orange {
  background: var(--orange);
  color: #fff;
}
.btn-orange:hover {
  background: var(--orange-dark);
}

.btn-green {
  background: var(--green);
  color: #fff;
}
.btn-green:hover {
  background: var(--green-dark);
}

.btn-outline-orange {
  background: #fff;
  color: var(--orange-dark);
  border: 2px solid var(--orange);
}

/* Absolute dropdown */
.filter-panel {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  width: 300px;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.3s ease, opacity 0.3s ease;
  pointer-events: none;
  z-index: 1000;
}
.btn-pill.btn-orange.d-flex.align-items-center.gap-2 {
    background-color: var(--primary-color);
}
.btn-pill.btn-green.d-flex.align-items-center.gap-2 {
    background-color: var(--secondary-color);
}
/* Show on toggle */
#filter-toggle:checked ~ .filter-panel {
  max-height: 500px;
  opacity: 1;
  pointer-events: auto;
}

/* Inputs */
.input-orange {
  border: 2px solid var(--orange);
  border-radius: 12px;
  padding: .4rem .9rem;
  width: 100%;
  border: 2px solid var(--primary-color);
}
.input-orange::placeholder {
    color: #ccc;
}
.input-orange:focus {
  border-color: var(--orange-dark);
  outline: none;
  box-shadow: 0 0 0 .2rem rgba(243, 156, 18, 0.2);
}
.btn-pill.btn-orange {
    background-color: var(--primary-color);
    float: left;
}
.btn-pill.btn-outline-orange {
      border: 2px solid var(--primary-color);

}

/* Pills (share / reading-time) */
.pill{
  border-radius: 999px;
  padding: .5rem 1rem;
  font-size: .95rem;
  border: 0;
  line-height: 1;
}
.pill-green{
  background: var(--secondary-color);
  color:#fff;
  box-shadow: 0 8px 18px rgba(139,209,70,.25);
}
.pill-pink{
  background: var(--pink);
  color:#fff;
  box-shadow: 0 8px 18px rgba(255,59,134,.22);
  padding: 0px 16px;
}

/* Hero image */
.article-hero{
  border-radius: 26px;
  background: #f8f9fa;
}
.hero-img{
  display:block;
  width:100%;
  height: 520px;          /* adjust to your design */
  object-fit: cover;
  border-radius: 26px;
}

/* Side dots */
.side-dot{
    position: absolute;
    top: 20%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--pink);
    /* box-shadow: 0 0 0 6px #fff; */
    z-index: 2;
}
.side-dot.left{ right: calc(100% - 10px); }   /* appears slightly outside container (RTL) */
.side-dot.right{
  left: calc(100% - 10px);
  background:#424242;   
  top: 60%;       /* gray dot on the right like screenshot */
}

/* Tag pills */
.tag-pill {
    display: inline-block;
    padding: .4rem 0.9rem;
    background: #9bc600;
    color: #ffffff;
    border-radius: 999px;
    font-weight: 400;
    white-space: nowrap;
    float: right;
}
.shareandLike button,.shareandLike .align-items-center   {
    display: inline;
}
.btn.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}
.btn.btn-primary:focus, .btn.btn-primary:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}
.article-writer-wrapper {
    background-color: var(--pink);
    color: #fff !important;
    padding: 0;
    border-radius: 25px;
}
.the_writer {

}
.author2_whiteBG {
    position: absolute;
    z-index: 997;
    width: 100%;
    bottom: 50px;
    left: 0;
    filter: brightness(0) invert(1);

}
.author2_greenBG {
    position: absolute;
    z-index: 997;
    width: 100px;
    bottom: 0;
    left: 0;
    top: -17px;
    right: -40px;
    background: #fff;
    border-radius: 45px;
}
.author2_vicon {
    position: absolute;
    z-index: 1000;
    width: 60px;
    bottom: 0;
    left: 10%;
    top: 50%;
    /* right: -40px; */
    background: #fff;
    border-radius: 45px;
}
.author2 {
    height: 128%;
    margin-top: -22%;
    width: 100%;
    z-index: 999;
    position: relative;
}
.read-also-writer .read-also {
    display: inline-block;
    width: unset;
    margin-top: 26px;
    font-size: 1.5rem;
    padding-left: 30px;
}
/* Container Styling */
.calculator-section {
  background-color: #fff;
  border-radius: 20px;
  position: relative;
}
nav ul.pagination {
    display:inline-flex
}
.active>.page-link, .page-link.active {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}
.page-link {
    color: #000;
}
/* Icon at Top Left */
.icon-circle {
    position: absolute;
    top: -9px;
    left: -18px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: #fff;
    font-weight: bold;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}
.icon-circle img {
    border-radius: 50%;
}



.green-icon {
  background-color: #87c51e;
}

/* Cards Styling */
.calc-card {
  background-color: #f39200;
  color: white;
  border-radius: 20px;
  transition: transform 0.3s ease;
}

.calc-card:hover {
  transform: translateY(-5px);
}

.calc-icon {
  font-size: 30px;
  height: 130px;
  display :  inline-grid;
  align-items : center;
}
.calc-icon img {
      vertical-align: middle;

}

/* ===== Vitaminati Card (drop after Bootstrap) ===== */
.vitaminati-card {
    position: relative;
    color: #fff;
    background: url(../images/rasha-bg.png) no-repeat center;
    background-size: contain;
    margin-top: 150px;
    height: 850px;
}

 

/* orange smile tab */
.smile-tab{
  position:absolute;
  top:1rem; right:2rem;
  background:#ff8f1f;
  color:#fff;
  border-radius:1.75rem;
  padding:.35rem 1.25rem;
  font-weight:700;
  display:flex; gap:.5rem; align-items:center;
  z-index:3;
}
.smile-tab .smile{font-size:1.15rem; line-height:1;}

/* text column */
.text-wrap{
  position:relative;
  z-index:2;
  padding:1rem 0 1rem 1rem;
  font-size: 1.3rem !important;
}
.logo-line{
  display:flex; align-items:center; gap:.5rem;
}
.brand-mark{
  display:inline-grid; place-items:center;
  width:2.1rem; height:2.1rem; border-radius:50%;
  background:#fff; color:#6db400; font-weight:900;
}
.vitaminati-card .subtitle{opacity:.9}
.vitaminati-card .quote{font-weight:600}

/* person column */
.person-wrap{ position:relative; padding:1rem 0 4.25rem; z-index:2; }
.person-img{ border-radius:1.25rem; box-shadow:0 10px 24px rgba(0,0,0,.15); }

/* round V badge */
.v-badge{
  position:absolute; left:0.5rem; bottom:5.25rem;
  width:3.1rem; height:3.1rem; border-radius:50%;
  background:#69ba00; color:#fff; font-weight:900;
  display:grid; place-items:center; font-size:1.4rem;
  box-shadow:0 8px 18px rgba(0,0,0,.15);
}

/* name badge overlapping image */
.name-badge{
  position:absolute; left:2.75rem; bottom:1rem;
  background:#fff; border-radius:1rem;
  padding:.85rem 1.2rem; min-width:220px;
}

/* signature */
.signature{
  font-family:cursive, "Amiri", "Scheherazade", serif;
  font-size:1.6rem;
  margin-top:1.25rem;
  opacity:.95;
}

/* responsive tweaks */


.rashaabout {
    float: left;
    display: inline-block;
    position: relative;
    width: 409px;
    margin-left: -18px;
}

.website {
    background: orange;
    border-radius: 25px;
    padding: 5px 28px;
    color: #fff;
    font-style: italic;
    text-align: center;
    margin: auto;
    display: table;
    margin-right: 42%;
    margin-top: 5%;
    text-decoration: none;
}
.text-center {
    text-align: center!important;
}
.left-section--bg {
    background: url('../images/bg-index.png') no-repeat top;
    background-color: #fff;
    padding-top: 50px;
}




























@media screen and (max-width: 1400px) {
    .founder-img {
        margin-top: -92px;
    }
}

/* Responsive height for the hero */
@media (max-width: 992px){
    .hero-img{ height: 380px; }
    .stat-card.pink {
        margin-right: 190px;
    }
    .stat-inner {
        width: 100%;
    }
}
@media (max-width: 576px){
    .hero-img{ height: 260px; }
}

@media (max-width: 991.98px){
  .vitaminati-card{ padding:1.5rem; border-radius:1.25rem; }
  .name-badge{ left:3.75rem; }
}
@media (max-width: 575.98px){
  .person-wrap{ padding-bottom:5.25rem; }
  .name-badge{ min-width:auto; left:4.25rem; right:1rem; }
}
 

/* Improve visual rhythm at narrow widths */
@media (max-width: 991.98px) {
  .article-card .thumb { min-height: 200px; }
}

/* Optional: soften the shadow slightly for a card-like feel */
.article-card.shadow-sm {
  box-shadow: 0 8px 22px rgba(0,0,0,0.06);
}
@media (max-width: 768px) {
    .stats-container {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .main-title {
        font-size: 2rem;
    }
    
    .brand-title {
        font-size: 1.8rem;
    }
    .slick-next.slick-arrow {
        left: 0!important
    }
    .slick-prev.slick-arrow {
        right: 0!important;
    }
    .stat-card.yellow,.stat-card.green {
        width: 100%;
        margin-bottom: 10px;
        text-align: center!important;
    }
    .stat-text, .stat-number{
        text-align: center!important;
    }
    .stat-card.pink {
        width: 100%;
        margin-bottom: 10px;
        margin: 0;
        text-align: center!important;
    }
    .stat-wrapper::before {
        display: none;
    }
    .last-footer{
        padding: 0;
        text-align: center!important;
        margin: auto;
    }
    .last-footer p {
        text-align: center!important;
        width: 100%;
        margin: auto;
        font-weight: 700;
    }
    .last-footer img {
        text-align: center!important;
        margin: auto;
        width: 40%!important;
        float: none !important;
    }
    .footerimg2 {
        display: none;
    }
    .footer-wrapper {
        padding: 30px;
    }
    .founder-img {
        width: 120%;
    }
    .story-section {
        border-radius: 0;
    }

}
@media (max-width: 1398px){
}
@media (max-width: 1199px){
    .text-wrap {
        padding: 140px 20px!important;
        font-size: 1rem !important;
    }
    .founder-img {
        margin-top: -45px;
            width: 185%;
    }
    .aboutimg {
        width: 1000px;
    }
    .b-hero-data {
        top: 50px;
    }
    .b-hero-data h2 {
        font-size: 1.6rem;
    }
    .b-hero-data p {
        margin-bottom: 20px!important;
    }
}
@media screen and (max-width: 999px) {
  .founder-img {
    width: 230%;
  }
  .read-also {
    margin-top: 50px;
  }
  .allrashaa {
    height: unset!important;
    display: unset!important;
  }
  .founder-img {
        width: 98%;
    }
  .story-section {
    border-radius: 0;
    border-radius: 25px!important;
    overflow: hidden;
     
  }
  .overlay-text {
    position: absolute;
    bottom: 24px;
    right: 20px;
    left: 20px;
    text-align: right;
  }
  .overlay-about {
    display: block;
    width: 100%;
    height: 400px;
  }
  .overlay-text img {
    width: 300px!important;
  }
  
}
@media (max-width: 991px){
    .vitaminati-card {
        background: #9bc600;
    }
    .vitaminati-card {
        height: unset;
    }
    .text-wrap {
        padding: 30px !important;
    }
    .rashaabout {
        float: unset;
        display: inline-block;
        position: relative;
        width: 409px;
        margin-left: -18px;
        margin: auto;
        display: block;
    }
    .website {
        margin-bottom: 30px;
    }
      .aboutimg {
        display: none;
    }
    .founder-img {
        margin-top: 0;
    }
    .author2_vicon {
        width: 40px;
    } 
}
@media (max-width: 768px){
    .article-writer-wrapper {
        border-radius: 25px;
    }
    .rashaabout {
        width: 90%;
    }
    .website {
        text-align: center;
        margin: auto;
        margin-top: 30px;
        margin-bottom: 30px;
    }
    .stat-card.green {
        padding: 30px;
    }
    .icon-circle {
        left: 35px;
    }
    .navbar-toggler {
        margin-top: -30px;
    }
    .author2_whiteBG, .author2_greenBG, .author2_vicon {
        display: none;
    }
    .article-writer-wrapper {
        text-align: center;
    }
    .article-writer-wrapper .col-md-9 {
        padding-top: 30px;
    }
    .b-hero-data {
        top: 20px;
        width: 96%;
        padding: 15px;
        right: 0;
    }
        .b-hero-data h2 {
        font-size: 1rem;
    }
}

@media (min-width: 1400px) {
    .footer .container, .footer .container-lg, .footer .container-md, 
    .footer .container-sm, .footer .container-xl, .footer .container-xxl {
        max-width: 1420px;
    }
}



.who-we-are {
  background-color: #f39200; 
  border-radius: 20px;
  position: relative;
  margin-top: 100px;
  text-align: right!important;
  margin-bottom: 100px;
}
.text-end {
    text-align: right!important;
    font-size: 1.2rem;
}
.who-we-are h1 {
  color: #fff;
  font-weight: 700!important;
  margin-bottom: 45px!important;
  font-size: 2.5rem;
  font-weight: 900;
}
.fw-bold.text-end.mb-3 {
  font-size: 2rem;

}
.who-we-are p {
  color: #fff;
  line-height: 1.8;
  font-size: 1.09rem;
  line-height: 25px;
  z-index: 99;
  position: relative;
}

.who-we-are::before {
    content: '';
    position: absolute;
    top: 100px;
    left: -10px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: #333;
}
.who-we-are::after {
    content: '';
    position: absolute;
    bottom: 100px;
    right: -15px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #ff3364;
}
