/* ==========================================================================
   Base Styles & Variables
   ========================================================================== */

:root {
    --primary-orange: #f26e21; /* Matches the button and logo orange */
    --hover-orange: #d95d18;
    --dark-bg: #1c2127;
    --card-dark: #23282f;
    --light-gray: #f8f9fa;
    --text-gray: #9ba0a6;
    --success-green: #28a745;
    --light-green: #eaf6ec;
}

body {
    font-family: 'Inter', 'Poppins', sans-serif;
    color: #333;
    overflow-x: hidden;
}

/* Typography for Bengali */
.bengali-font {
    font-family: 'Hind Siliguri', sans-serif;
    line-height: 1.3;
}

/* Custom Colors */
.text-primary-orange { color: var(--primary-orange) !important; }
.bg-primary-orange { background-color: var(--primary-orange) !important; }
.text-gray { color: var(--text-gray) !important; }
.bg-light-gray { background-color: var(--light-gray) !important; }
.bg-card-dark { background-color: var(--card-dark) !important; }
.bg-light-green { background-color: var(--light-green) !important; }
.border-orange { border-color: var(--primary-orange) !important; }

/* Buttons */
.btn-primary-orange {
    background-color: var(--primary-orange);
    border-color: var(--primary-orange);
    transition: all 0.3s ease;
}

.btn-primary-orange:hover {
    background-color: var(--hover-orange);
    border-color: var(--hover-orange);
    color: white !important;
}

.hover-scale {
    transition: transform 0.3s ease;
}

.hover-scale:hover {
    transform: translateY(-2px);
}

/* Utilities */
.line-height-lg { line-height: 1.8; }
.tracking-wide { letter-spacing: 2px; }
.transition-all { transition: all 0.3s ease; }
.hover-color:hover { filter: none !important; opacity: 1 !important; }
.hover-orange:hover { color: var(--primary-orange) !important; }
.hover-bg-orange:hover { background-color: var(--primary-orange) !important; color: white !important; }

/* ==========================================================================
   Section Specific Styles
   ========================================================================== */

/* Navbar */
.navbar .nav-link {
    color: #555;
    transition: color 0.3s ease;
}

.navbar .nav-link:hover, .navbar .nav-link.active {
    color: var(--primary-orange);
}

/* Hero Section */
.hero-section {
	position: relative;
	padding-bottom: 50px;
}
.hero-section,#heroCarousel{
	max-height: 1000px;
	height: 1000px;
	overflow: hidden !important;
}
#heroCarousel iframe{
  
}
@media (max-width: 991px) {
.hero-section, #heroCarousel {
	max-height: 640px;
	height: 640px;
	overflow: hidden !important;
}
}
@media (max-width: 767px) {
.hero-section, #heroCarousel {
	max-height: 450px;
	height: 450px;
	overflow: hidden !important;
}
}
.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 175, 75, 0.4) 0%, rgba(242, 110, 33, 0.1) 100%);
    z-index: 0;
    /* Creating the curved bottom effect */
    border-bottom-left-radius: 50% 15%;
    border-bottom-right-radius: 50% 15%;
}

.hero-title {
    font-size: 3.5rem;
    color: #4a2c0f !important; /* Dark brown honey vibe */
}

.hero-subtitle {
    font-size: 1.8rem;
    color: #6a441e !important;
}

@media (max-width: 768px) {
    .hero-title { font-size: 2.5rem; }
    .hero-subtitle { font-size: 1.4rem; }
}

/* Our Concern */
.concern-section {
    background-color: var(--dark-bg);
}

.concern-card {
    cursor: pointer;
}

.concern-card:hover, .concern-card.active-card {
    border-color: var(--success-green) !important;
}

.concern-card:hover h5, .concern-card.active-card h5 {
    color: white !important;
}

/* About Us Section */
.about-section .badge {
    font-size: 0.85rem;
}

/* Trusted Brands */
.grayscale {
    filter: grayscale(100%);
}

/* Testimonials */
.testimonial-card {
    background: #fff;
    padding: 30px;
    border-radius: 1rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    height: 100%;
    position: relative;
}

/* FAQs */
.accordion-button:not(.collapsed) {
    color: var(--primary-orange);
    background-color: #fff;
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: rgba(0,0,0,.125);
}

/* Blog */
.blog-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1) !important;
}

.line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;  
    overflow: hidden;
}

/* Footer */
.footer-logo {
    filter: brightness(0) invert(1);
}
.footer-links li {
    margin-bottom: 10px;
}

/* Custom Hero Slider Indicators */
.custom-indicator {
    height: 6px;
    background-color: rgba(255, 255, 255, 0.4);
    transition: background-color 0.3s ease;
    cursor: pointer;
}
.custom-indicator:hover, .custom-indicator.active {
    background-color: white !important;
}

/* Mobile Navigation Full Screen */
@media (max-width: 991.98px) {
    #navbarNav.offcanvas {
        background-color: var(--dark-bg);
    }
    #navbarNav .mobile-nav-links .nav-link {
        font-size: 1.75rem;
        color: white !important;
        padding: 0.75rem 0;
        transition: all 0.3s ease;
    }
    #navbarNav .mobile-nav-links .nav-link:hover,
    #navbarNav .mobile-nav-links .nav-link.active {
        color: var(--primary-orange) !important;
        transform: scale(1.05);
    }
}

/* Floating Animation */
@keyframes floatUpDown {
    0% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0); }
}
.floating-element {
    animation: floatUpDown 3s ease-in-out infinite;
}

/* Marquee Slider */
.marquee-wrapper {
    mask-image: linear-gradient(to right, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 10%, rgba(0,0,0,1) 90%, rgba(0,0,0,0) 100%);
    -webkit-mask-image: linear-gradient(to right, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 10%, rgba(0,0,0,1) 90%, rgba(0,0,0,0) 100%);
}

.marquee-content {
    animation: scrollMarquee 20s linear infinite;
    width: max-content;
}

@keyframes scrollMarquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-50% - 0.75rem)); }
}

.marquee-content:hover {
    animation-play-state: paused;
}

/* Shared page hero (inner pages) */
.page-hero-section,
.about-hero-section {
    background-size: cover;
    background-position: center;
}

/* Shared responsive image helpers */
.faq-side-img,
.testimonial-side-img,
.vision-img {
    width: 100%;
    object-fit: cover;
}

@media (max-width: 575.98px) {
    .hero-title { font-size: 2rem; }
    .hero-subtitle { font-size: 1.15rem; }
    .section-title { font-size: 1.6rem; }
    .navbar.rounded-4 { padding-left: 1rem !important; padding-right: 1rem !important; }
    .testimonial-card { padding: 20px; }
}

@media (min-width: 768px) {
    .border-md-end {
        border-right: 2px solid #dee2e6 !important;
    }
}


.product-card{
    background:#242930;
    border-radius:22px;
    overflow:hidden;
    transition:.35s;
    border:1px solid rgba(255,255,255,.05);
    height:100%;
}

.product-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 45px rgba(0,0,0,.35);
}

.product-thumb{
    background:#fff;
    height:240px;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:30px;
}

.product-thumb img{
    width:100%;
    height:100%;
    object-fit:contain;
}

.product-content{
    padding:30px;
}

.product-title {
	color: #fff;
	font-size: 22px;
	font-weight: 700;
	margin-bottom: 15px;
}
.product-description{
    color:#a5aab2;
    line-height:1.8;
    margin-bottom:25px;
}

.product-badge{
    background:#17a86b;
    color:#fff;
    font-size:13px;
    padding:8px 16px;
}

.product-card .btn{
    align-self:flex-start;
    padding:12px 28px;
    font-weight:600;
}
.product-badge {
	background: #22594c;
	color: #fff;
	font-size: 13px;
	padding: 8px 16px;
	position: absolute;
	bottom: -13px;
	border: 1px solid #1f523f;
}
.product-thumb {
	position: relative;
}
.brand-item {
	border: 1px solid #cccccc80;
}
.brand-item img {
	height: 90%;
	object-fit: contain;
	max-width: 100%;
	opacity: 1 !important;
}


.certification-card {
  padding: 0 !important;
  height: auto !important;
}
.certification-card img {
  margin: 0 !important;
}
.certification-card h5 {
  background: #F26522;
  padding: 10px;
  color: #fff;
}
.py-5.bg-orange-gray {
	background: #f265221f;
}

.player-controls-middle.prevent-controls-collision {
  width:-moz-fit-content;
  width:fit-content;
  left:50%;
  transform:translate(-50%,-50%);
  display: none !important;
}.hero-section .player-controls-middle-core-buttons {
	display: none !important;
}
#player-controls {
	display: none;
}