/*
Theme Name: Twenty Thirteen
Theme URI: https://wordpress.org/themes/twentythirteen/
Author: the WordPress team
Author URI: https://wordpress.org/
Description: The 2013 theme for WordPress takes us back to the blog, featuring a full range of post formats, each displayed beautifully in their own unique way. Design details abound, starting with a vibrant color scheme and matching header images, beautiful typography and icons, and a flexible layout that looks great on any device, big or small.
Version: 4.95
Tested up to: 6.9
Requires at least: 3.6
Requires PHP: 5.2.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: blog, one-column, two-columns, right-sidebar, custom-header, custom-menu, editor-style, featured-images, footer-widgets, microformats, post-formats, rtl-language-support, sticky-post, translation-ready, accessibility-ready, block-patterns
Text Domain: twentythirteen

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.
*/


/**
 * Table of Contents:
 *
 * 1.0 - Reset
 * 2.0 - Repeatable Patterns
 * 3.0 - Basic Structure
 * 4.0 - Header
 *   4.1 - Site Header
 *   4.2 - Navigation
 * 5.0 - Content
 *   5.1 - Entry Header
 *   5.2 - Entry Meta
 *   5.3 - Entry Content
 *   5.4 - Galleries
 *   5.5 - Post Formats
 *   5.6 - Attachments
 *   5.7 - Post/Paging Navigation
 *   5.8 - Author Bio
 *   5.9 - Archives
 *   5.10 - Search Results/No posts
 *   5.11 - 404
 *   5.12 - Comments
 *   5.13 - Multisite
 * 6.0 - Sidebar
 *   6.1 - Widgets
 * 7.0 - Footer
 * 8.0 - Media Queries
 * 9.0 - Print
 * ----------------------------------------------------------------------------
 */


/**
 * 1.0 Reset
 *
 * Modified from Normalize.css to provide cross-browser consistency and a smart
 * default styling of HTML elements.
 *
 * @see http://git.io/normalize
 * ----------------------------------------------------------------------------
 */

:root {
    --primary-color: #1a9c7b;
    /* Teal */
    --primary-hover: #148064;
    --light-primary: rgba(26, 156, 123, 0.1);

    --secondary-dark: #081d3a;
    /* Deep Blue */
    --light-blue: #f0f4f9;
    /* Light background */

    --accent-orange: #e58735;

    --text-muted: #667085;
    --text-dark: #333333;
    /* --- Typography Tokens --- */
    --font-main: 'Inter', sans-serif;
    --font-heading: 'Outfit', sans-serif;

    /* Sizes */
    --fs-hero-title: 64px;
    --fs-section-title: 40px;
    --fs-product-title: 32px;
    --fs-subheading: 24px;
    --fs-body: 18px;
    --fs-label: 14px;
    --fs-button: 16px;

    /* Weights */
    --fw-bold: 800;
    --fw-semibold: 600;
    --fw-medium: 500;

    /* --- Spacing Tokens --- */
    --section-pad-y: 100px;
    --section-pad-x: 15px;

}

@media (max-width: 767.98px) {
    :root {
        --fs-hero-title: 38px;
        --fs-section-title: 28px;
        --fs-product-title: 22px;
        --fs-subheading: 18px;
        --fs-body: 15px;
        --fs-button: 14px;
        --section-pad-y: 60px;
    }
}

/* Apply Global Section Spacing */
section,
.section-pad {
    padding-top: var(--section-pad-y);
    padding-bottom: var(--section-pad-y);
}

/* Global Typography Reset */
body {
    font-family: var(--font-main);
    font-size: var(--fs-body);
    color: var(--text-dark);
    overflow-x: hidden;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Typography Engine mapping CSS Variables systematically */
h1,
h2,
h3,
h4,
h5,
h6,
.display-1,
.display-2,
.display-3,
.display-4,
.display-5,
.display-6 {
    font-family: var(--font-heading) !important;
    color: var(--secondary-dark);
}

/* Hero Titles */
h1,
.display-3 {
    font-size: var(--fs-hero-title) !important;
    font-weight: var(--fw-bold) !important;
}

/* Section Titles */
h2,
h3,
.display-5,
.display-6 {
    font-size: var(--fs-section-title) !important;
    font-weight: var(--fw-bold) !important;
}

/* Product & Category Titles */
.product-card h4,
.portfolio-card h3 {
    font-size: var(--fs-product-title) !important;
    font-weight: var(--fw-bold) !important;
}

/* Subheadings & Card Titles */
h4,
.stat-card h4,
.value-card h4,
.subheading {
    font-size: var(--fs-subheading) !important;
    font-weight: var(--fw-semibold) !important;
}

/* Body Reset */
p,
body,
.body-text,
.text-muted {
    font-family: var(--font-main) !important;
}

/* Interactive Elements */
.btn,
button,
.nav-link,
.inquiry-pill {
    font-size: var(--fs-button) !important;
    font-weight: var(--fw-medium) !important;
}

/* Bootstrap Utility Overrides to strictly conform to Custom Design Tokens */
.fw-bold {
    font-weight: var(--fw-bold) !important;
}

.fw-semibold {
    font-weight: var(--fw-semibold) !important;
}

.fw-medium {
    font-weight: var(--fw-medium) !important;
}

.lead {
    font-size: var(--fs-body) !important;
    font-family: var(--font-main) !important;
}

/* Small labels & descriptions */
.small,
small,
.form-label,
.text-muted.small,
.card-text-muted {
    font-size: var(--fs-body) !important;
}

/* Utilities */
.text-primary {
    color: var(--primary-color) !important;
}

.bg-primary {
    background-color: var(--primary-color) !important;
}

.bg-light-primary {
    background-color: var(--light-primary) !important;
}

.text-secondary-dark {
    color: var(--secondary-dark) !important;
}

.bg-secondary-dark {
    background-color: var(--secondary-dark) !important;
}

.bg-light-blue {
    background-color: var(--light-blue) !important;
}

.tracking-wider {
    letter-spacing: 0.05em;
}

.py-6 {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.transition-all {
    transition: all 0.3s ease;
}

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

.btn-primary:hover {
    background-color: var(--accent-orange);
    border-color: var(--accent-orange);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(26, 156, 123, 0.2);
}

.btn-outline-secondary-dark {
    color: var(--light-blue);
	background:var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline-secondary-dark:hover {
    background-color: var(--accent-orange);
    color: var(--light-blue);
    transform: translateY(-2px);
}

/* Top Bar */
.top-bar {
    background-color: var(--primary-color);
    color: #fff;
    font-size: 0.875rem;
}
.top-bar span{
	font-size: var(--fs-button);
}
.top-bar a {
    color: #fff;
    text-decoration: none;
    transition: opacity 0.3s;
}

.top-bar a:hover {
    opacity: 0.8;
}

/* Navbar */
.navbar {
    padding: 1rem 0;
}


/* Responsive Logo Classes */
.navbar-brand-logo {
/*     width: 50% !important; */
    height: auto;
}

.footer-logo {
/*     width: 20% !important; */
    height: auto;
}

@media (max-width: 767.98px) {
    .navbar-brand-logo {
        width: 95px !important;
    }

    .footer-logo {
        width: 81px !important;
    }
}

.navbar-nav .nav-link {
    color: var(--text-dark);
    padding: 0.5rem 1.25rem !important;
    position: relative;
    transition: color 0.3s;
}

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

/* Navbar Underline Animation */
.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background-color: var(--primary-color);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 60%;
}

/* Hero Section */
.hero-section {
    position: relative;
    padding-bottom: 120px;
    /* Space for overlapping cards */
}

.hero-bg {
    z-index: 1;
}

.hero-bg .overlay {
    background: linear-gradient(90deg, rgba(8, 29, 58, 0.9) 0%, rgba(8, 29, 58, 0.7) 50%, rgba(8, 29, 58, 0.4) 100%);
}

.hero-content {
    z-index: 2;
    padding-top: 1rem;
}

/* Hero Overlapping Cards */
.hero-stats-container {
    position: relative;
    z-index: 3;
    margin-top: -60px;
    /* Pull up to overlap */
}

@media (max-width: 767.98px) {
    .hero-stats-container {
        margin-top: 20px !important;
    }

    .hero-section {
        padding-bottom: 50px !important;
    }
}

/* About Us Experience Badge Positioning & Responsiveness */
.experience-badge {
    bottom: -30px;
    right: -30px;
}

@media (max-width: 991.98px) {
    .experience-badge {
        bottom: 20px;
        right: 20px;
    }
}

.stat-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-bottom: 4px solid transparent;
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1) !important;
    border-bottom-color: var(--primary-color);
}

.icon-circle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
}

.stat-card:hover .icon-circle {
    background-color: var(--primary-color) !important;
    color: #fff !important;
}

/* About Section */
.about-img-wrapper {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.experience-badge {
    bottom: -20px;
    right: -20px;
    left: auto;
    z-index: 2;
}

@media (max-width: 991px) {
    .experience-badge {
        bottom: 10px;
        right: 10px;
        left: auto;
    }
}

/* Value Propositions */
.value-card {
    border-bottom: 4px solid transparent;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08) !important;
}

.value-card:not(.bg-primary):hover {
    border-bottom-color: var(--primary-color);
}

.value-card.bg-primary:hover {
    box-shadow: 0 15px 30px rgba(26, 156, 123, 0.3) !important;
}

/* Portfolio Section */
.portfolio-card {
    position: relative;
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease !important;
}

.portfolio-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(8, 29, 58, 0) !important;
}

/* Ensure all text and icons sit sharply on top of the glass blur */
.portfolio-card>* {
    position: relative;
    z-index: 2;
}

/* Glass backdrop blur pseudo-element */
.portfolio-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(8, 29, 58, 0);
    backdrop-filter: blur(0px);
    -webkit-backdrop-filter: blur(0px);
    transition: all 0.4s ease;
    z-index: 1;
    pointer-events: none;
}

.portfolio-card:hover::after {
    background: rgba(8, 29, 58, 0.25);
    backdrop-filter: blur(1px) saturate(140%); 
    -webkit-backdrop-filter: blur(1px) saturate(140%);
}

/* megamenu */
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item > a.mega-menu-link {
    line-height: 40px;
    height: 40px;
    padding: 0px 10px;
    vertical-align: baseline;
    width: auto;
    display: block;
    color: black;
    text-transform: none;
    text-decoration: none;
    text-align: left;
    background-color: transparent;
    border: 0;
    border-radius: 0px;
    font-family: inherit;
    font-size: var(--fs-button) !important;
    font-weight: normal;
    outline: none;
}
/* mega menu */

.bg-gradient-dark {
    background: linear-gradient(to top, rgba(8, 29, 58, 0.9) 0%, rgba(8, 29, 58, 0.4) 50%, transparent 100%) !important;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    transition: all 0.3s ease;
}

.portfolio-card:hover .bg-gradient-dark {
    padding-bottom: 3.5rem !important;
    /* Slide up effect for text */
}

/* Featured Products */
.product-card {
    border-bottom: 4px solid transparent;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08) !important;
    border-bottom-color: var(--primary-color);
}

.product-img-wrapper img {
    transition: transform 0.5s ease;
}

.product-card:hover .product-img-wrapper img {
    transform: scale(1.05);
}

/* Divisions & Milestones */
.divisions-section {
    background-color: #eef3fa;
    /* Light background matching mockup */
}

.division-icon {
    transition: all 0.3s ease;
}

.division-item:hover .division-icon {
    background-color: var(--primary-color) !important;
    color: #fff !important;
}

.milestones-wrapper {
    overflow: hidden;
}

.stat-box {
    transition: transform 0.3s ease;
}

.stat-box:hover {
    transform: translateY(-5px);
}

/* FAQ & Accordion (Premium circular toggles override) */
.custom-accordion .accordion-item {
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.custom-accordion .accordion-item:hover {
    box-shadow: 0 10px 30px rgba(8, 29, 58, 0.05) !important;
    transform: translateY(-2px);
}

.custom-accordion .accordion-button {
    font-family: var(--font-heading) !important;
    font-size: var(--fs-body) !important;
    font-weight: var(--fw-semibold) !important;
    padding: 1.25rem 1.5rem;
    color: var(--secondary-dark) !important;
    background-color: #fff !important;
    box-shadow: none !important;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.custom-accordion .accordion-button:not(.collapsed) {
    color: var(--primary-color) !important;
    border-left: 4px solid var(--primary-color) !important;
}

.custom-accordion .accordion-button:focus {
    box-shadow: none !important;
    outline: none !important;
}

.custom-accordion .accordion-button::after {
    content: "+";
    font-family: inherit;
    font-size: 1.35rem;
    font-weight: 500;
    color: var(--primary-color);
    background-color: rgba(26, 156, 123, 0.08);
    /* Soft primary brand highlight */
    border: 1px solid rgba(26, 156, 123, 0.18);
    border-radius: 50%;
    width: 36px;
    height: 36px;
    box-shadow: 0px 4px 0px 0px rgba(26, 156, 123, 0.2), 0 4px 6px rgba(0, 0, 0, 0.06);
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    flex-shrink: 0;
    background-image: none !important;
    /* Completely strip default bootstrap chevron */
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.custom-accordion .accordion-button:not(.collapsed)::after {
    content: "−";
    /* Unicode minus symbol */
    color: var(--accent-orange);
    box-shadow: none;
    background-color: rgba(229, 135, 53, 0.1);
    /* Soft orange accent highlight */
    border-color: rgba(229, 135, 53, 0.25);
    transform: rotate(180deg);
}

.custom-accordion .accordion-body {
    font-family: var(--font-main) !important;
    font-size: var(--fs-label) !important;
    font-weight: 400 !important;
    padding: 1.25rem 1.5rem;
    line-height: 1.6;
    color: var(--text-muted) !important;
}

/* Premium Features (Right-side FAQ) */
.feature-item h2 {
    font-family: var(--font-heading) !important;
    font-weight: var(--fw-bold) !important;
    color: var(--primary-color) !important;
    opacity: 0.25 !important;
}

.feature-item h4 {
    font-family: var(--font-heading) !important;
    font-size: var(--fs-subheading) !important;
    font-weight: var(--fw-bold) !important;
    color: var(--secondary-dark) !important;
}

.feature-item p {
    font-family: var(--font-main) !important;
    font-size: var(--fs-label) !important;
    color: var(--text-muted) !important;
}

/* Results */
.text-shadow {
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), transparent);
}

.result-card {
    transition: transform 0.3s ease;
}

.result-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1) !important;
}

/* Certifications Banner (Endless Smooth Marquee) */
.marquee-container {
    overflow: hidden;
    width: 100%;
    position: relative;
    display: flex;
}

.marquee-content {
    display: flex;
    white-space: nowrap;
    animation: marquee-scroll 35s linear infinite;
    gap: 4rem !important;
    /* Elegant spacing between certification labels */
    padding-left: 0;
}

/* Pause the scrolling animation on hover for seamless readability */
.marquee-container:hover .marquee-content {
    animation-play-state: paused;
}

.marquee-content span {
    position: relative;
    display: inline-flex;
    align-items: center;
}

/* Beautiful teal separation dots between every scrolled element */


@keyframes marquee-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
        /* Seamless endless loop snapping back to duplicate half */
    }
}

/* ==========================================================================
   Premium Glassmorphism Design System
   ========================================================================== */

/* Translucent Frosted Glass Card */
.glass-card {
    background: rgba(255, 255, 255, 0.55) !important;
    backdrop-filter: blur(20px) saturate(180%) !important;
    -webkit-backdrop-filter: blur(20px) saturate(180%) !important;
    border: 1px solid rgba(255, 255, 255, 0.4) !important;
    box-shadow: 0 15px 35px 0 rgba(8, 29, 58, 0.06) !important;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

/* Glassmorphism Hover State */
.glass-card:hover {
    background: rgba(255, 255, 255, 0.7) !important;
    transform: translateY(-10px) scale(1.02) !important;
    box-shadow: 0 20px 40px 0 rgba(8, 29, 58, 0.12) !important;
    border-color: rgba(26, 156, 123, 0.3) !important;
    /* Soft brand border on hover */
}

/* Gemstone Teal Glass Card (For Experience Badge) */
.glass-card-teal {
    background: rgba(26, 156, 123, 0.8) !important;
    backdrop-filter: blur(16px) saturate(150%) !important;
    -webkit-backdrop-filter: blur(16px) saturate(150%) !important;
    border: 1px solid rgba(255, 255, 255, 0.35) !important;
    box-shadow: 0 12px 35px 0 rgba(26, 156, 123, 0.25) !important;
    transition: all 0.3s ease !important;
}

.glass-card-teal:hover {
    background: rgba(26, 156, 123, 0.9) !important;
    transform: translateY(-5px) !important;
    box-shadow: 0 15px 40px 0 rgba(26, 156, 123, 0.35) !important;
}

/* Testimonials */
.testimonial-card {
    transition: transform 0.3s ease;
}

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

/* Blog */
.blog-card img {
    transition: transform 0.5s ease;
}

.blog-card:hover img {
    transform: scale(1.05);
}

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

/* Pre-Footer CTA */
.btn-accent {
    background-color: var(--accent-orange);
    border-color: var(--accent-orange);
    color: #fff;
    transition: all 0.3s ease;
}

.btn-accent:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(229, 135, 53, 0.3);
}

/* Footer */
.hover-primary:hover {
    color: var(--primary-color) !important;
}

.hover-opacity-100:hover {
    opacity: 1 !important;
    color: var(--primary-color) !important;
}

/* Contact Form Pills */
.inquiry-pill {
    border: 1px solid #dee2e6;
    color: var(--text-muted);
    background-color: transparent;
    transition: all 0.2s ease;
    cursor: pointer;
}

.btn-check:checked+.inquiry-pill {
    border-color: var(--secondary-dark);
    color: var(--secondary-dark);
    font-weight: 600;
    background-color: transparent;
}

.inquiry-pill:hover {
    border-color: #adb5bd;
}

/* ==========================================================================
   Sticky Floating WhatsApp Widget
   ========================================================================= */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: #fff !important;
    border-radius: 50%;
    text-align: center;
    font-size: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.whatsapp-float:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.6);
    background-color: #20ba5a;
}

/* Pulsating conversion outer ring */
.whatsapp-float::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #25d366;
    border-radius: 50%;
    z-index: -1;
    opacity: 0.5;
    animation: whatsapp-pulse 2s infinite;
}

@keyframes whatsapp-pulse {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }

    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

/* Dark glassmorphism chat helper tooltip */
.whatsapp-float .tooltip-text {
    position: absolute;
    right: 75px;
    background: rgba(8, 29, 58, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #fff;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-family: var(--font-main);
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.whatsapp-float:hover .tooltip-text {
    opacity: 1;
    visibility: visible;
}

/* Offcanvas Drawer Premium Styles */
.offcanvas {
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-left: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.offcanvas-body .nav-link {
    color: rgba(255, 255, 255, 0.75) !important;
    font-family: var(--font-heading) !important;
    font-weight: 500;
    transition: all 0.3s ease;
}

.offcanvas-body .nav-link:hover {
    color: var(--primary-color) !important;
    transform: translateX(5px);
}

.border-white-10 {
    border-color: rgba(255, 255, 255, 0.08) !important;
}
/* Contact form */

/* Strips default Contact Form 7 native paragraph wrappers that break alignment flow */
.custom-cosmo-form form p,
.custom-cosmo-form br {
    display: none !important;
}

.custom-cosmo-form form {
    width: 100% !important;
}

/* Connects and formats Contact Form 7 generated input fields */
/* Force CF7 Inputs to adopt Bootstrap Form Control Styles */
.wpcf7-form .wpcf7-text,
.wpcf7-form .wpcf7-tel,
.wpcf7-form .wpcf7-email,
.wpcf7-form .wpcf7-textarea {
    display: block !important;
    width: 100% !important;
    padding: 0.5rem 1rem !important;
    font-size: 1rem !important;
    font-weight: 400 !important;
    line-height: 1.5 !important;
    color: #6c757d !important;
    background-color: #fff !important;
    border: 1px solid #ced4da !important;
    border-radius: 0.375rem !important;
    appearance: none !important;
    -webkit-appearance: none !important;
}

.wpcf7-form .wpcf7-textarea {
    height: 120px !important;
}

/* Transform Radio Buttons into Modern Pills Layout */
.custom-inquiry-pills-wrapper .wpcf7-radio {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 0.5rem !important;
    margin-top: 0.25rem !important;
}

.custom-inquiry-pills-wrapper .wpcf7-list-item {
    margin: 0 !important;
    display: inline-block !important;
}

.custom-inquiry-pills-wrapper .wpcf7-list-item label {
    margin: 0 !important;
    cursor: pointer !important;
    position: relative !important;
    display: inline-block !important;
}

.custom-inquiry-pills-wrapper .wpcf7-list-item-label {
    display: inline-block !important;
    padding: 0.375rem 1rem !important;
    font-size: 0.85rem !important;
    font-weight: 500 !important;
    border-radius: 50rem !important;
    background-color: #f8f9fa !important;
    border: 1px solid #dee2e6 !important;
    color: #495057 !important;
    transition: all 0.2s ease-in-out !important;
}

/* Hide the native standard radio circle */
.custom-inquiry-pills-wrapper input[type="radio"] {
    position: absolute !important;
    opacity: 0 !important;
    width: 0 !important;
    height: 0 !important;
}

/* Active checked pill state */
.custom-inquiry-pills-wrapper input[type="radio"]:checked ~ .wpcf7-list-item-label {
    background-color: #0d6efd !important; 
    border-color: #0d6efd !important;
    color: #ffffff !important;
}

/* Contact form */
 .values-slider {
	 display: flex;
	 overflow-x: auto;
	 gap: 1.5rem;
	 padding-bottom: 1.5rem;
	 
	 scroll-snap-type: x mandatory;
	 -webkit-overflow-scrolling: touch;
	 scrollbar-width: none; /* Firefox */
	 -webkit-user-select: none;
	 -ms-user-select: none;
}
.values-slider::-webkit-scrollbar {
	display: none; /* Safari and Chrome */
}
.values-slider-item {
	flex: 0 0 auto;
	width: 85%;
	scroll-snap-align: center;
}
@media (min-width: 768px) {
	.values-slider-item { width: 45%; }
}
@media (min-width: 992px) {
	.values-slider-item { width: 30%; }
}
@media (min-width: 1200px) {
	.values-slider-item { width: 23%; }
}

#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-flyout ul.mega-sub-menu {
    z-index: 999;
    position: absolute;
    width: 250px;
    max-width: none;
    padding: 0px;
    border: 0;
    background-color: #f1f1f1;
    background-color: var(--light-blue) !important;
    border-radius: 0px;
}
/* Amitson css */

/* Shivam design css */
/* :root{
      --dark:#351818;
      --dark2:#432020;
      --orange:#ea7655;
      --white:#fff;
    }

    body{
      margin:0;
      font-family: Arial, sans-serif;
      background:var(--dark);
      color:#fff;
    } */

/*     .custom-header {
    background: #ffffff;
    border-bottom: 1px solid rgba(255,255,255,.12);
    padding: 14px 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999;
} */

/*     .navbar-brand{
      color:var(--orange)!important;
      font-size:30px;
      font-weight:800;
      letter-spacing:1px;
    } */

/*    .navbar-nav .nav-link {
    color: #000000 !important;
    font-weight: 600;
    margin: 0 10px;
} */
/* .container {
    max-width: 92% !important;
} */

    .navbar-nav .nav-link.active,
    .navbar-nav .nav-link:hover{
      background:rgba(255,255,255,.12);
      border-radius:30px;
    }

    .btn-orange{
      background:var(--orange);
      color:#fff;
      border-radius:40px;
      padding:13px 28px;
      font-weight:700;
      border:0;
      box-shadow:inset -18px -12px 0 rgba(0,0,0,.12);
      text-decoration:none;
    }

    .btn-orange:hover{
      background:#ff8664;
      color:#fff;
    }

    .hero-section{
      min-height:100vh;
      padding-top:120px;
      background:linear-gradient(180deg,#351818 0%,#4b2724 100%);
      overflow:hidden;
      position:relative;
    }

.hero-title {
    font-size: 55px;
    line-height: 1.12;
    font-weight: 800;
    color: #fff;
}

    .hero-title .line-text{
      position:relative;
      display:inline-block;
    }

    .hero-title .line-text:after{
      content:"";
      position:absolute;
      left:0;
      bottom:8px;
      width:100%;
      height:12px;
      background:var(--orange);
      z-index:-1;
    }

    .hero-title .outline{
      color:transparent;
      -webkit-text-stroke:1.5px #fff;
    }

 .hero-text {
    max-width: 650px;
    font-size: 16px;
    line-height: 1.6;
    color: #f5e9e9;
    margin: 25px 0 40px;
}

.hero-img {
    position: relative;
    z-index: 2;
    top: 140px ;
}

    .hero-img img{
      max-width:100%;
      animation:float 4s ease-in-out infinite;
    }

    .leaf{
      position:absolute;
      right:-30px;
      bottom:40px;
      width:260px;
      opacity:.8;
      z-index:1;
    }

    .stats-box{
      display:flex;
      gap:18px;
      margin-top:70px;
      flex-wrap:wrap;
    }

    .stat-card{
/*       width:190px; */
      background:rgba(255,255,255,.08);
      backdrop-filter:blur(8px);
      border-radius:12px;
      padding:30px 25px;
      box-shadow:0 10px 30px rgba(0,0,0,.15);
    }

    .stat-card h2{
      font-size:54px;
      font-weight:800;
      margin:0;
    }

    .stat-card p{
      margin:8px 0 0;
      font-size:16px;
      color:#fff;
    }

    .slider-arrows{
      position:absolute;
      right:35px;
      top:55%;
      transform:translateY(-50%);
      display:flex;
      flex-direction:column;
      gap:14px;
      z-index:5;
    }

    .arrow-btn{
      width:52px;
      height:52px;
      border-radius:50%;
      background:#fff;
      color:#111;
      border:0;
      font-size:22px;
    }

    @keyframes float{
      0%,100%{transform:translateY(0)}
      50%{transform:translateY(-14px)}
    }

    @media(max-width:991px){
      .hero-title{font-size:46px}
      .hero-section{padding-top:110px;text-align:center}
      .hero-text{margin-left:auto;margin-right:auto}
      .stats-box{justify-content:center;margin-top:35px}
      .slider-arrows{display:none}
      .navbar-collapse{
        background:#2b1414;
        padding:20px;
        border-radius:12px;
        margin-top:15px;
      }
    }

    @media(max-width:575px){
      .hero-title{font-size:38px}
      .stat-card{width:100%}
    }
.logo-img{
   max-height: 55px;
   width: auto;
   object-fit: contain;
}
.offer-ticker-section{
    background: var( --primary-color);
    padding: 16px 0;
    overflow: hidden;
    position: relative;
    border-top: 1px solid rgba(255,255,255,0.08);
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.ticker-wrapper{
    width: 100%;
    overflow: hidden;
}

.ticker-track{
    display: flex;
    width: max-content;
    animation: tickerMove 28s linear infinite;
}

.ticker-item{
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: var(--fs-body);
    font-weight: 700;
    color: #fff;
    padding: 0 45px;
    white-space: nowrap;
    letter-spacing: 0.3px;
}

.ticker-item i{
    width: 34px;
    height: 34px;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    backdrop-filter: blur(5px);
}

@keyframes tickerMove{
    0%{
        transform: translateX(0);
    }
    100%{
        transform: translateX(-50%);
    }
}

/* Hover Pause */
.offer-ticker-section:hover .ticker-track{
    animation-play-state: paused;
}

/* Responsive */
@media(max-width:768px){

    .ticker-item{
        font-size: 15px;
        padding: 0 25px;
    }

    .ticker-item i{
        width: 28px;
        height: 28px;
        font-size: 11px;
    }
}
.section-padding{
    padding:100px 0;
    background:var(--light-blue);
    overflow:hidden;
}

.about-images{
    position:relative;
}

.main-img img {
    border-radius: 25px;
    width: 70%;
    box-shadow: 0 15px 50px rgba(0,0,0,0.12);
}

.sub-img {
    position: absolute;
    right: 26px;
	top: -47px;
    width: 220px;
}

.sub-img img{
    border-radius:20px;
    border:8px solid #fff;
    box-shadow:0 10px 40px rgba(0,0,0,0.15);
}

.experience-box{
    position:absolute;
    left: -51px;
    bottom: -64px;
    background:var(--primary-color);
    color:#fff;
    padding:25px 30px;
    border-radius:18px;
    box-shadow:0 10px 40px rgba(234,118,85,0.35);
}

.experience-box h2{
    font-size:var( --fs-section-title);
    font-weight:800;
    margin-bottom:0;
	color: var( --light-blue) !important;
}

.experience-box p{
    margin:0;
    font-size:16px;
}

.experience-box span{
    font-weight:700;
}

.sub-heading{
    color:var( --secondary-dark);
    font-size:18px;
    font-weight:700;
    margin-bottom:12px;
    display:inline-block;
}

.about-content h2{
    font-size:52px;
    font-weight:800;
    line-height:1.2;
    color:var( --secondary-dark);
    margin-bottom:20px;
}

.about-content h2 span{
    color:var( --primary-color);
}

.about-content p{
    font-size:var(--fs-body);
    line-height:1.8;
    color:#666;
}

.about-list{
    padding:0;
    margin:0;
    list-style:none;
}

.about-list li{
    margin-bottom:18px;
    font-size:var(--fs-body);
    color:#333;
    font-weight:600;
    display:flex;
    align-items:center;
    gap:12px;
}

.about-list i{
    color:var(--accent-orange);
    font-size:18px;
}

.theme-btn{
    display:inline-flex;
    align-items:center;
    background:var(--primary-color);
    color:#fff;
    padding:15px 32px;
    border-radius:50px;
    text-decoration:none;
    font-weight:700;
    transition:.3s;
}

.theme-btn:hover{
    background:var(--accent-orange);
    color:#fff;
    transform:translateY(-2px);
}

/* LOGO SLIDER */

.company-slider-section{
    padding:40px 0;
    background:#fff;
    overflow:hidden;
}

.logo-slider{
    width:100%;
    overflow:hidden;
}

.logo-track{
    display:flex;
    width:max-content;
    animation:scrollLogo 22s linear infinite;
}

.logo-item{
    width:220px;
    height:100px;
    margin:0 20px;
    background:#fff7f5;
    border-radius:18px;
    display:flex;
    align-items:center;
    justify-content:center;
    box-shadow:0 8px 25px rgba(0,0,0,0.05);
}

.logo-item img{
    max-width:120px;
    opacity:.8;
    transition:.3s;
}

.logo-item:hover img{
    opacity:1;
    transform:scale(1.05);
}

@keyframes scrollLogo{
    0%{
        transform:translateX(0);
    }
    100%{
        transform:translateX(-50%);
    }
}

@media(max-width:991px){

    .about-content h2{
        font-size:38px;
    }

    .sub-img{
        width:170px;
        right:0;
        bottom:-20px;
    }

    .experience-box{
        left:10px;
        top:10px;
        padding:18px 22px;
    }
}

@media(max-width:576px){

    .about-content h2{
        font-size:30px;
    }

    .sub-img{
        display:none;
    }

    .experience-box h2{
        font-size:30px;
    }

    .logo-item{
        width:160px;
    }
}
.derma-services-section{
    padding:100px 0;
    background:#351818;
    position:relative;
    overflow:hidden;
}

.services-header{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:30px;
    margin-bottom:50px;
}

.services-header h2{
    font-size:54px;
    font-weight:800;
    color:#fff;
    line-height:1.2;
}

.services-header h2 span{
    position:relative;
    z-index:1;
}

.services-header h2 span::after{
    content:"";
    position:absolute;
    left:0;
    bottom:8px;
    width:100%;
    height:12px;
    background:#ea7655;
    z-index:-1;
}

.services-header h2 em{
    display:block;
    font-style:normal;
    color:transparent;
    -webkit-text-stroke:1.2px #fff;
}

.services-btn{
    background:#ea7655;
    color:#fff;
    padding:15px 28px;
    border-radius:50px;
    text-decoration:none;
    font-weight:700;
    box-shadow:inset -16px -10px 0 rgba(0,0,0,.12);
}

.services-btn:hover{
    background:#ff8664;
    color:#fff;
}

.derma-services-wrap{
    display:flex;
    gap:24px;
    min-height:460px;
}

.derma-service-card{
    flex:1;
    min-width:120px;
    border-radius:24px;
    background:#fff;
    overflow:hidden;
    position:relative;
    cursor:pointer;
    transition:all .5s ease;
}

.derma-service-card.active,
.derma-service-card:hover{
    flex:2.4;
}

.side-title {
    position: absolute;
    left: 28px;
    top: 30px;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    font-size: 26px;
    font-weight: 800;
    color: #ffffff;
    z-index: 3;
    transition: .4s;
}

.derma-service-card.active .side-title,
.derma-service-card:hover .side-title{
    opacity:0;
}

.service-info{
    position:absolute;
    left:35px;
    right:35px;
    bottom:35px;
    background:#fff;
    border-radius:18px;
    padding:22px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:20px;
    opacity:0;
    transform:translateY(30px);
    transition:.45s ease;
    z-index:4;
}

.derma-service-card.active .service-info,
.derma-service-card:hover .service-info{
    opacity:1;
    transform:translateY(0);
}

.service-info h3{
    font-size:26px;
    font-weight:800;
    color:#351818;
    margin-bottom:8px;
}

.service-info p{
    color:#666;
    margin:0;
    font-size:15px;
}

.view-icon{
    min-width:50px;
    height:50px;
    border-radius:50%;
    background:#ea7655;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    transform:rotate(-45deg);
    transition:.3s;
}

.view-icon:hover{
    background:#351818;
    color:#fff;
    transform:rotate(0deg);
}

.service-images{
    height:100%;
    width:100%;
}

.service-images img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.thumb-img{
    display:block;
}

.large-img{
    display:none;
}

.derma-service-card.active .thumb-img,
.derma-service-card:hover .thumb-img{
    display:none;
}

.derma-service-card.active .large-img,
.derma-service-card:hover .large-img{
    display:block;
}

.derma-service-card::after{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(to top, rgba(0,0,0,.55), transparent 55%);
    opacity:0;
    transition:.4s;
}

.derma-service-card.active::after,
.derma-service-card:hover::after{
    opacity:1;
}

@media(max-width:991px){
    .services-header{
        flex-direction:column;
        align-items:flex-start;
    }

    .services-header h2{
        font-size:38px;
    }

    .derma-services-wrap{
        flex-direction:column;
        min-height:auto;
    }

    .derma-service-card,
    .derma-service-card.active,
    .derma-service-card:hover{
        flex:none;
        height:420px;
    }

    .side-title{
        writing-mode:horizontal-tb;
        transform:none;
    }
}

@media(max-width:576px){
    .derma-services-section{
        padding:70px 0;
    }

    .services-header h2{
        font-size:30px;
    }

    .service-info{
        left:18px;
        right:18px;
        bottom:18px;
        padding:18px;
    }

    .service-info h3{
        font-size:22px;
    }
}
    .cl-work-section{
      padding:100px 0;
      background:#fff7f5;
      overflow:hidden;
      position:relative;
    }

    .cl-work-heading{
      margin-bottom:70px;
    }

    .cl-work-heading h2{
      font-size:56px;
      font-weight:800;
      color:#351818;
      line-height:1.2;
    }

    .cl-work-heading h2 span{
      position:relative;
      z-index:1;
    }

    .cl-work-heading h2 span::after{
      content:"";
      position:absolute;
      left:0;
      bottom:8px;
      width:100%;
      height:12px;
      background:#ea7655;
      z-index:-1;
    }

    .cl-work-heading h2 em{
      display:block;
      font-style:normal;
      color:transparent;
      -webkit-text-stroke:1px #351818;
    }

    .cl-work-card{
      width:100%;
      position:relative;
      opacity:0;
      transform:translateY(60px);
      transition:all .8s ease;
    }

    .cl-work-card.show{
      opacity:1;
      transform:translateY(0);
    }

    .cl-work-card::after{
      content:"";
      position:absolute;
      top:20px;
      left:58%;
      width:100%;
      border-top:2px dashed #ea7655;
      z-index:0;
    }

    .cl-work-row .col-xl-3:last-child .cl-work-card::after{
      display:none;
    }

    .cl-work-step{
      display:flex;
      align-items:center;
      gap:12px;
      margin-bottom:25px;
      position:relative;
      z-index:2;
    }

    .cl-circle-dot{
      width:24px;
      height:24px;
      border-radius:50%;
      background:#ea7655;
      border:6px solid #fff;
      box-shadow:0 0 0 3px rgba(234,118,85,.25);
      animation:clPulse 1.8s infinite;
    }

    .cl-step-text{
      background:#351818;
      color:#fff;
      padding:8px 18px;
      border-radius:50px;
      font-size:15px;
      font-weight:700;
    }

    .cl-work-box{
      background:#fff;
      border-radius:30px;
      padding:18px;
      overflow:hidden;
      box-shadow:0 12px 40px rgba(0,0,0,.08);
      transition:.4s;
      height:100%;
    }

    .cl-work-box:hover{
      transform:translateY(-12px);
      box-shadow:0 20px 60px rgba(234,118,85,.18);
    }

    .cl-work-img{
      overflow:hidden;
      border-radius:24px;
      margin-bottom:24px;
    }

    .cl-work-img img{
      width:100%;
      height:230px;
      object-fit:cover;
      transition:.5s;
    }

    .cl-work-box:hover img{
      transform:scale(1.08);
    }

    .cl-work-content{
      padding:0 10px 10px;
    }

    .cl-work-content h3{
      font-size:24px;
      font-weight:800;
      color:#351818;
      margin-bottom:14px;
    }

    .cl-work-content p{
      font-size:15px;
      color:#666;
      line-height:1.8;
      margin:0;
    }

    @keyframes clPulse{
      0%{
        box-shadow:0 0 0 0 rgba(234,118,85,.5);
      }

      70%{
        box-shadow:0 0 0 14px rgba(234,118,85,0);
      }

      100%{
        box-shadow:0 0 0 0 rgba(234,118,85,0);
      }
    }

    @media(max-width:1199px){

      .cl-work-card::after{
        display:none;
      }
    }

    @media(max-width:991px){

      .cl-work-section{
        padding:80px 0;
      }

      .cl-work-heading h2{
        font-size:40px;
      }
    }

    @media(max-width:576px){

      .cl-work-heading{
        margin-bottom:45px;
      }

      .cl-work-heading h2{
        font-size:30px;
      }

      .cl-work-img img{
        height:200px;
      }

      .cl-work-content h3{
        font-size:22px;
      }
    }
 .cl-offer-section{
      padding:100px 0;
      background:#fff7f5;
      overflow:hidden;
      position:relative;
    }

    /* TOP CTA BOX */

    .cl-offer-banner{
      background:linear-gradient(135deg,#351818,#5a2a25);
      border-radius:35px;
      padding:60px;
      margin-bottom:90px;
      position:relative;
      overflow:hidden;
      z-index:1;
    }

    .cl-offer-banner::before{
      content:"";
      position:absolute;
      width:450px;
      height:450px;
      background:rgba(255,255,255,0.05);
      border-radius:50%;
      top:-200px;
      right:-100px;
    }

.cl-offer-banner h2 {
    font-size: 45px;
    color: #fff;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 0;
    position: relative;
    z-index: 2;
}

    .cl-contact-wrap{
      display:flex;
      gap:25px;
      justify-content:flex-end;
      flex-wrap:wrap;
      position:relative;
      z-index:2;
    }

    .cl-contact-box{
      display:flex;
      align-items:center;
      gap:18px;
      background:rgba(255,255,255,0.08);
      padding:22px 25px;
      border-radius:20px;
      backdrop-filter:blur(8px);
      min-width:280px;
      transition:.4s;
    }

    .cl-contact-box:hover{
      transform:translateY(-6px);
      background:rgba(255,255,255,0.12);
    }

    .cl-contact-icon{
      width:65px;
      height:65px;
      border-radius:50%;
      background:#ea7655;
      display:flex;
      align-items:center;
      justify-content:center;
      color:#fff;
      font-size:24px;
      flex-shrink:0;
    }

    .cl-contact-box .title{
      color:#d9d9d9;
      margin-bottom:6px;
      font-size:14px;
    }

    .cl-contact-box h4{
      color:#fff;
      font-size:20px;
      margin:0;
      font-weight:700;
    }

    /* HEADING */

    .cl-section-heading{
      margin-bottom:50px;
    }

    .cl-section-heading h2{
      font-size:56px;
      font-weight:800;
      color:#351818;
      line-height:1.2;
    }

    .cl-section-heading h2 span{
      position:relative;
      z-index:1;
    }

    .cl-section-heading h2 span::after{
      content:"";
      position:absolute;
      left:0;
      bottom:8px;
      width:100%;
      height:12px;
      background:#ea7655;
      z-index:-1;
    }

    .cl-section-heading h2 em{
      display:block;
      font-style:normal;
      color:transparent;
      -webkit-text-stroke:1px #351818;
    }

    /* OFFER ITEMS */

    .cl-offer-card{
      background:#fff;
      border-radius:28px;
      padding:35px;
      box-shadow:0 12px 40px rgba(0,0,0,.08);
      transition:.4s;
      position:relative;
      overflow:hidden;
      opacity:0;
      transform:translateY(40px);
    }

    .cl-offer-card.show{
      opacity:1;
      transform:translateY(0);
    }

    .cl-offer-card:hover{
      transform:translateY(-12px);
      box-shadow:0 20px 60px rgba(234,118,85,.18);
    }

    .cl-offer-card::before{
      content:"";
      position:absolute;
      width:180px;
      height:180px;
      background:rgba(234,118,85,.06);
      border-radius:50%;
      right:-70px;
      top:-70px;
    }

    .cl-offer-icon{
      width:80px;
      height:80px;
      border-radius:24px;
      background:linear-gradient(135deg,#ea7655,#ff946d);
      display:flex;
      align-items:center;
      justify-content:center;
      color:#fff;
      font-size:34px;
      margin-bottom:25px;
      position:relative;
      z-index:2;
      box-shadow:0 10px 30px rgba(234,118,85,.35);
    }

    .cl-offer-card h3{
      font-size:28px;
      font-weight:800;
      color:#351818;
      margin-bottom:15px;
      position:relative;
      z-index:2;
    }

    .cl-offer-card p{
      color:#666;
      line-height:1.8;
      margin:0;
      position:relative;
      z-index:2;
      font-size:16px;
    }

    .rotate-1{
      transform:rotate(2deg);
    }

    .rotate-n1{
      transform:rotate(-2deg);
    }

    .rotate-1:hover,
    .rotate-n1:hover{
      transform:rotate(0deg) translateY(-10px);
    }

    /* RESPONSIVE */

    @media(max-width:991px){

      .cl-offer-banner{
        padding:40px;
      }

      .cl-offer-banner h2{
        font-size:38px;
        margin-bottom:35px;
      }

      .cl-contact-wrap{
        justify-content:flex-start;
      }

      .cl-section-heading h2{
        font-size:40px;
      }
    }

    @media(max-width:576px){

      .cl-offer-section{
        padding:70px 0;
      }

      .cl-offer-banner{
        padding:30px;
        border-radius:24px;
        margin-bottom:60px;
      }

      .cl-offer-banner h2{
        font-size:30px;
      }

      .cl-contact-box{
        min-width:100%;
      }

      .cl-section-heading h2{
        font-size:30px;
      }

      .cl-offer-card{
        padding:28px;
      }

      .cl-offer-card h3{
        font-size:24px;
      }
    }
why-section{
      padding:80px 0;
      overflow:hidden;
    }

    .why-title h2 {
    font-size: 55px;
    font-weight: 800;
    color: #3b1718;
    line-height: 1.15;
    margin: 0;
}

    .why-title .line-text{
      position:relative;
      z-index:1;
      display:inline-block;
    }

    .why-title .line-text::after{
      content:"";
      position:absolute;
      left:0;
      bottom:10px;
      width:100%;
      height:14px;
      background:#ef6f4f;
      z-index:-1;
    }

    .why-title .outline-text{
      display:block;
      color:transparent;
      -webkit-text-stroke:1.5px #3b1718;
      font-weight:700;
    }

    .why-card{
      background:#fff;
      border:1px solid #e8eef3;
      border-radius:14px;
      padding:48px;
      min-height:360px;
      box-shadow:0 18px 45px rgba(0,0,0,.04);
      transition:.4s ease;
      opacity:0;
      transform:translateY(35px);
    }

    .why-card.show{
      opacity:1;
      transform:translateY(0);
    }

    .why-card:hover{
      transform:translateY(-8px);
      box-shadow:0 22px 60px rgba(59,23,24,.10);
      border-color:#ef6f4f;
    }

    .why-icon{
      width:84px;
      height:84px;
      border-radius:50%;
      background:#3b1718;
      color:#fff;
      display:flex;
      align-items:center;
      justify-content:center;
      font-size:32px;
      margin-bottom:28px;
      position:relative;
    }

    .why-icon .small-dot{
      position:absolute;
      right:8px;
      bottom:8px;
      width:26px;
      height:26px;
      background:#ef6f4f;
      border-radius:50%;
      display:flex;
      align-items:center;
      justify-content:center;
      font-size:12px;
      border:3px solid #fff;
    }

.why-card h3 {
    font-size: 22px;
    line-height: 1.15;
    font-weight: 800;
    color: #00142d;
    margin-bottom: 18px;
}

    .why-card p{
      font-size:18px;
      line-height:1.6;
      color:#14304b;
      margin:0;
    }

    @media(max-width:991px){
      .why-title{
        margin-bottom:40px;
      }

      .why-title h2{
        font-size:48px;
      }
    }

    @media(max-width:575px){
      .why-section{
        padding:60px 0;
      }

      .why-title h2{
        font-size:38px;
      }

      .why-card{
        padding:30px;
        min-height:auto;
      }

      .why-card h3{
        font-size:24px;
      }

      .why-card p{
        font-size:16px;
      }
    }
section.why-section {
    BACKGROUND: #fff;
    padding: 60px 0 60px 0;
}
.why-title {
    position: sticky;
    top: 125px;
}
 .cl-team-section{
      padding:100px 0;
      background:#351818;
      position:relative;
      overflow:hidden;
    }

    .cl-team-header{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:25px;
      margin-bottom:55px;
    }

    .cl-team-header h2{
      font-size:54px;
      font-weight:800;
      line-height:1.2;
      color:#fff;
      margin:0;
    }

    .cl-team-header h2 span{
      position:relative;
      z-index:1;
    }

    .cl-team-header h2 span::after{
      content:"";
      position:absolute;
      left:0;
      bottom:8px;
      width:100%;
      height:12px;
      background:#ea7655;
      z-index:-1;
    }

    .cl-team-header h2 em{
      display:block;
      font-style:normal;
      color:transparent;
      -webkit-text-stroke:1.2px #fff;
    }

    .cl-team-btn{
      background:#ea7655;
      color:#fff;
      padding:15px 30px;
      border-radius:50px;
      text-decoration:none;
      font-weight:700;
      box-shadow:inset -16px -10px 0 rgba(0,0,0,.12);
      white-space:nowrap;
    }

    .cl-team-btn:hover{
      background:#ff8664;
      color:#fff;
    }

    .cl-team-card{
      width:100%;
      background:#fff;
      border-radius:28px;
      overflow:hidden;
      transition:.4s;
      opacity:0;
      transform:translateY(45px);
    }

    .cl-team-card.show{
      opacity:1;
      transform:translateY(0);
    }

    .cl-team-card:hover{
      transform:translateY(-12px);
      box-shadow:0 25px 60px rgba(0,0,0,.25);
    }

    .cl-team-img{
      position:relative;
      background:#fff7f5;
      overflow:hidden;
      min-height:330px;
      display:flex;
      align-items:flex-end;
      justify-content:center;
    }

    .cl-team-img img{
      width:100%;
      height:330px;
      object-fit:cover;
      transition:.5s;
    }

    .cl-team-card:hover .cl-team-img img{
      transform:scale(1.06);
    }

    .cl-hover-icons{
      position:absolute;
      right:22px;
      bottom:22px;
      z-index:5;
    }

    .cl-add-icon{
      width:48px;
      height:48px;
      border-radius:50%;
      border:0;
      background:#ea7655;
      color:#fff;
      font-size:20px;
      display:flex;
      align-items:center;
      justify-content:center;
      transition:.4s;
    }

    .cl-team-card:hover .cl-add-icon{
      transform:rotate(45deg);
      background:#351818;
    }

    .cl-social-icons{
      position:absolute;
      right:0;
      bottom:60px;
      display:flex;
      flex-direction:column;
      gap:10px;
      opacity:0;
      visibility:hidden;
      transform:translateY(20px);
      transition:.4s;
    }

    .cl-team-card:hover .cl-social-icons{
      opacity:1;
      visibility:visible;
      transform:translateY(0);
    }

    .cl-social-icons a{
      width:42px;
      height:42px;
      border-radius:50%;
      background:#fff;
      color:#351818;
      display:flex;
      align-items:center;
      justify-content:center;
      text-decoration:none;
      box-shadow:0 8px 20px rgba(0,0,0,.15);
      transition:.3s;
    }

    .cl-social-icons a:hover{
      background:#ea7655;
      color:#fff;
      transform:translateX(-5px);
    }

    .cl-team-content{
      padding:28px 20px 32px;
      text-align:center;
    }

    .cl-team-content h3{
      font-size:24px;
      font-weight:800;
      margin-bottom:8px;
    }

    .cl-team-content h3 a{
      color:#351818;
      text-decoration:none;
    }

    .cl-team-content h3 a:hover{
      color:#ea7655;
    }

    .cl-team-content p{
      margin:0;
      color:#666;
      font-size:16px;
      font-weight:500;
    }
	#mega-menu-wrap-primary{
		display: flex;
		align-items:center;
		justify-content: center;
		margin:auto;
	}
	.contact-img{
	border-radius: 15px;
	border-right: 3px solid #ea7655;
	}
	textarea{
	width: 100%;
	}
    @media(max-width:991px){
      .cl-team-header{
        flex-direction:column;
        align-items:flex-start;
      }

      .cl-team-header h2{
        font-size:var(--fs-hero-title);
      }
    }

    @media(max-width:575px){
      .cl-team-section{
        padding:70px 0;
      }

      .cl-team-header h2{
        font-size:var(--fs-hero-title);
      }

      .cl-team-img img{
        height:300px;
      }
    }
.cl-testimonial-header h2 span{
      position:relative;
      z-index:1;
    }

    .cl-testimonial-header h2 span::after{
      content:"";
      position:absolute;
      left:0;
      bottom:8px;
      width:100%;
      height:12px;
      background:#ea7655;
      z-index:-1;
    }

    .cl-testimonial-header h2 em{
      display:block;
      font-style:normal;
      color:transparent;
      -webkit-text-stroke:1px #351818;
    }

    .cl-testimonial-wrapper{
      overflow:hidden;
      position:relative;
    }

    .cl-testimonial-track{
      display:flex;
      transition:transform .6s ease;
    }

    .cl-testimonial-slide{
      min-width:33.3333%;
      padding:0 12px;
    }

    .cl-testimonial-card{
      background:#fff;
      border-radius:26px;
      padding:40px 34px;
      min-height:390px;
      box-shadow:0 12px 40px rgba(0,0,0,.08);
      transition:.4s;
      border:1px solid rgba(0,0,0,.04);
    }

    .cl-testimonial-card:hover{
      transform:translateY(-10px);
      box-shadow:0 20px 60px rgba(234,118,85,.18);
    }

    .cl-testimonial-user{
      width:90px;
      height:90px;
      border-radius:50%;
      overflow:hidden;
      margin-bottom:22px;
      border:5px solid #fff7f5;
    }

    .cl-testimonial-user img{
      width:100%;
      height:100%;
      object-fit:cover;
    }

    .cl-rating{
      color:#f6b800;
      margin-bottom:20px;
      font-size:16px;
    }

    .cl-rating i{
      margin-right:3px;
    }

    .cl-description{
      font-size:17px;
      line-height:1.8;
      color:#555;
      margin-bottom:28px;
    }

    .cl-author-info h3{
      font-size:24px;
      font-weight:800;
      color:#351818;
      margin-bottom:6px;
    }

    .cl-author-info p{
      color:#777;
      margin:0;
      font-size:15px;
    }

    .cl-slide-nav{
      margin-top:45px;
      display:flex;
      justify-content:center;
      gap:15px;
    }

    .cl-slide-btn{
      width:55px;
      height:55px;
      border-radius:50%;
      border:0;
      background:#351818;
      color:#fff;
      font-size:18px;
      transition:.3s;
    }

    .cl-slide-btn:hover{
      background:#ea7655;
      transform:translateY(-3px);
    }

    @media(max-width:991px){
      .cl-testimonial-header h2{
        font-size:40px;
      }

      .cl-testimonial-slide{
        min-width:50%;
      }
    }

    @media(max-width:576px){
      .cl-testimonial-section{
        padding:70px 0;
      }

      .cl-testimonial-header h2{
        font-size:30px;
      }

      .cl-testimonial-slide{
        min-width:100%;
      }

      .cl-testimonial-card{
        padding:30px 24px;
        min-height:auto;
      }
    }
section.cl-testimonial-section {
    background: #fff !important;
}
.cl-testimonial-header h2 {
    color: #000;
    font-size: var(--fs-hero-title);
    font-weight: 700;
}
section.cl-testimonial-section {
    padding: 70px 0;
    position: relative;
}
    .cl-faq-section{
      padding:100px 0;
      background:#fff7f5;
      position:relative;
      overflow:hidden;
    }

    .cl-faq-heading h2{
      font-size:60px;
      font-weight:800;
      color:#351818;
      line-height:1.2;
      margin:0;
    }

    .cl-faq-heading h2 span{
      position:relative;
      z-index:1;
    }

    .cl-faq-heading h2 span::after{
      content:"";
      position:absolute;
      left:0;
      bottom:8px;
      width:100%;
      height:12px;
      background:#ea7655;
      z-index:-1;
    }

    .cl-faq-heading h2 em{
      display:block;
      font-style:normal;
      color:transparent;
      -webkit-text-stroke:1px #351818;
    }

    .cl-faq-box{
      animation:zoomIn .8s ease;
    }

    .cl-faq-box .accordion-item{
      border:0;
      margin-bottom:18px;
      border-radius:18px;
      overflow:hidden;
      box-shadow:0 10px 35px rgba(0,0,0,.06);
      background:#fff;
    }

    .cl-faq-box .accordion-button{
      padding:24px 28px;
      font-size:20px;
      font-weight:800;
      color:#351818;
      background:#fff;
      box-shadow:none;
      border:0;
    }

    .cl-faq-box .accordion-button:not(.collapsed){
      background:#351818;
      color:#fff;
    }

    .cl-faq-box .accordion-button::after{
      display:none;
    }

    .cl-faq-box .accordion-button .faq-icon{
      margin-left:auto;
      width:36px;
      height:36px;
      border-radius:50%;
      background:#ea7655;
      color:#fff;
      display:flex;
      align-items:center;
      justify-content:center;
      font-size:14px;
      transition:.3s;
      flex-shrink:0;
    }

    .cl-faq-box .accordion-button:not(.collapsed) .faq-icon{
      transform:rotate(45deg);
      background:#fff;
      color:#351818;
    }

    .cl-faq-box .accordion-body{
      padding:0 28px 26px;
      background:#351818;
      color:rgba(255,255,255,.85);
    }

    .cl-faq-box .accordion-body p{
      margin:0;
      font-size:16px;
      line-height:1.8;
    }

    @keyframes zoomIn{
      from{
        opacity:0;
        transform:scale(.94);
      }
      to{
        opacity:1;
        transform:scale(1);
      }
    }

    @media(max-width:991px){
      .cl-faq-heading{
        margin-bottom:40px;
      }

      .cl-faq-heading h2{
        font-size:42px;
      }
    }

    @media(max-width:576px){
      .cl-faq-section{
        padding:70px 0;
      }

      .cl-faq-heading h2{
        font-size:32px;
      }

      .cl-faq-box .accordion-button{
        font-size:17px;
        padding:20px;
      }

      .cl-faq-box .accordion-body{
        padding:0 20px 22px;
      }
    }
<section class="cl-blog-section">
  <div class="container">

    <div class="cl-blog-heading text-center">
      <h2>
        Check Out <span>Latest</span>
        <em>News & Articles</em>
      </h2>
    </div>

    <div class="row g-4 justify-content-center">

      <!-- Blog 1 -->
      <div class="col-lg-4 col-md-6">
        <div class="cl-blog-card">
          <div class="cl-blog-img">
            <img src="assets/img/blog/skin-blog-01.jpg" alt="Derma PCD Franchise">
            <div class="cl-blog-date">
              26 <span>Apr</span>
            </div>
          </div>

          <div class="cl-blog-content">
            <div class="cl-blog-tags">
              <a href="#" class="cl-badge">Derma Franchise</a>
              <p><i class="fa-solid fa-comments me-2"></i>Comments (5)</p>
            </div>

            <h3>
              <a href="#">How to Start a Profitable Derma PCD Franchise Business in India</a>
            </h3>
          </div>
        </div>
      </div>

      <!-- Blog 2 -->
      <div class="col-lg-4 col-md-6">
        <div class="cl-blog-card">
          <div class="cl-blog-img">
            <img src="assets/img/blog/skin-blog-02.jpg" alt="Derma Product Range">
            <div class="cl-blog-date">
              30 <span>Mar</span>
            </div>
          </div>

          <div class="cl-blog-content">
            <div class="cl-blog-tags">
              <a href="#" class="cl-badge">Product Range</a>
              <p><i class="fa-solid fa-comments me-2"></i>Comments (2)</p>
            </div>

            <h3>
              <a href="#">Top Derma Products Every Pharma Franchise Partner Should Have</a>
            </h3>
          </div>
        </div>
      </div>

      <!-- Blog 3 -->
      <div class="col-lg-4 col-md-6">
        <div class="cl-blog-card">
          <div class="cl-blog-img">
            <img src="assets/img/blog/skin-blog-03.jpg" alt="PCD Pharma Growth">
            <div class="cl-blog-date">
              28 <span>Mar</span>
            </div>
          </div>

          <div class="cl-blog-content">
            <div class="cl-blog-tags">
              <a href="#" class="cl-badge">Business Growth</a>
              <p><i class="fa-solid fa-comments me-2"></i>Comments (7)</p>
            </div>

            <h3>
              <a href="#">Why Derma PCD Franchise is a Growing Opportunity in Pharma Market</a>
            </h3>
          </div>
        </div>
      </div>

    </div>
  </div>
</section>
.cl-blog-section{
  padding:100px 0;
  background-color:#fff7f5;
  overflow:hidden;
}

.cl-blog-heading{
  margin-bottom:55px;
}

.cl-blog-heading h2{
  font-size:56px;
  font-weight:800;
  color:#351818;
  line-height:1.2;
  margin:0;
}

.cl-blog-heading h2 span{
  position:relative;
  z-index:1;
}

.cl-blog-heading h2 span::after{
  content:"";
  position:absolute;
  left:0;
  bottom:8px;
  width:100%;
  height:12px;
  background:#ea7655;
  z-index:-1;
}

.cl-blog-heading h2 em{
  display:block;
  font-style:normal;
  color:transparent;
  -webkit-text-stroke:1px #351818;
}

.cl-blog-card{
  background:#fff;
  border-radius:28px;
  overflow:hidden;
  box-shadow:0 12px 40px rgba(0,0,0,.08);
  transition:.4s ease;
}

.cl-blog-card:hover{
  transform:translateY(-10px);
  box-shadow:0 22px 60px rgba(234,118,85,.18);
}

.cl-blog-img{
  position:relative;
  overflow:hidden;
}

.cl-blog-img img{
  width:100%;
  height:280px;
  object-fit:cover;
  transition:.5s ease;
}

.cl-blog-card:hover .cl-blog-img img{
  transform:scale(1.08);
}

.cl-blog-date{
  position:absolute;
  top:20px;
  left:20px;
  width:72px;
  height:72px;
  border-radius:16px;
  background:#ea7655;
  color:#fff;
  font-size:28px;
  font-weight:800;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  line-height:1;
  box-shadow:0 10px 30px rgba(234,118,85,.35);
}

.cl-blog-date span{
  font-size:15px;
  font-weight:700;
  margin-top:5px;
}

.cl-blog-content{
  padding:28px;
}

.cl-blog-tags{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  margin-bottom:18px;
  flex-wrap:wrap;
}

.cl-badge{
  background:#fff0eb;
  color:#351818;
  padding:8px 15px;
  border-radius:30px;
  font-size:14px;
  font-weight:700;
  text-decoration:none;
}

.cl-badge:hover{
  background:#ea7655;
  color:#fff;
}

.cl-blog-tags p{
  margin:0;
  color:#666;
  font-size:14px;
}

.cl-blog-content h3{
  font-size:24px;
  font-weight:800;
  line-height:1.35;
  margin:0;
}

.cl-blog-content h3 a{
  color:#351818;
  text-decoration:none;
}

.cl-blog-content h3 a:hover{
  color:#ea7655;
}
.tp-feature {
    background: #ea7655;
    padding: 10px;
    border-radius: 8px; 
}
img.emoji {
	filter: invert(1);
}
.card{
	border-bottom: 2px solid var(--primary-color) !important;
	background-color: var(--light-blue) !important;
    padding: 35px 40px 0 40px !important;
    border-radius: 15px;
}
.card.text-center h5 {
    font-weight: 600;
    color: var(--dark);
    margin: 0 0 10px 0;
}
@media(max-width:991px){
  .cl-blog-heading h2{
    font-size:40px;
  }
}

@media(max-width:576px){
  .cl-blog-section{
    padding:70px 0;
  }

  .cl-blog-heading h2{
    font-size:30px;
  }

  .cl-blog-img img{
    height:230px;
  }

  .cl-blog-content h3{
    font-size:21px;
  }
}
section.cl-blog-section {
    background: #fff;
    padding: 80px 0;
}
.cl-footer{
  background:#351818;
  color:#fff;
  position:relative;
  overflow:hidden;
  padding-top:60px;
}

.cl-animated-text{
  font-size:150px;
  font-weight:900;
  color:transparent;
  -webkit-text-stroke:1px rgba(255,255,255,.12);
  text-align:center;
  line-height:1;
  animation:footerTextMove 6s ease-in-out infinite;
}

@keyframes footerTextMove{
  0%,100%{transform:translateY(0);}
  50%{transform:translateY(-10px);}
}

.cl-footer-top{
  padding:70px 0 50px;
  position:relative;
  z-index:2;
}

.cl-footer-widget h3{
  font-size:24px;
  font-weight:800;
  margin-bottom:25px;
  color:#fff;
}

.cl-footer-widget ul{
  list-style:none;
  padding:0;
  margin:0;
}

.cl-footer-widget ul li{
  margin-bottom:14px;
}

.cl-footer-widget ul li a,
.cl-footer-contact p a{
  color:rgba(255,255,255,.75);
  text-decoration:none;
  transition:.3s;
}

.cl-footer-widget ul li a:hover,
.cl-footer-contact p a:hover{
  color:#ea7655;
  padding-left:5px;
}

.cl-footer-contact{
  margin-bottom:22px;
}

.cl-footer-contact h4{
  color:#ea7655;
  font-size:18px;
  font-weight:800;
  margin-bottom:10px;
}

.cl-footer-contact p{
  margin-bottom:8px;
  color:rgba(255,255,255,.75);
}

.cl-footer-join{
  background:rgba(255,255,255,.08);
  border-radius:28px;
  padding:40px;
}

.cl-footer-join h4{
  font-size:34px;
  font-weight:800;
  margin-bottom:12px;
}

.cl-footer-join p{
  color:rgba(255,255,255,.75);
  margin-bottom:25px;
}

.cl-subscribe-form{
  display:flex;
  background:#fff;
  padding:8px;
  border-radius:50px;
}

.cl-subscribe-form input{
  flex:1;
  border:0;
  outline:none;
  padding:0 20px;
  font-size:15px;
}

.cl-subscribe-form button{
  width:52px;
  height:52px;
  border-radius:50%;
  border:0;
  background:#ea7655;
  color:#fff;
  transition:.3s;
}

.cl-subscribe-form button:hover{
  background:#351818;
}

.cl-footer-bottom{
  border-top:1px solid rgba(255,255,255,.14);
  padding:35px 0;
}

.cl-footer-links{
  display:flex;
  align-items:center;
  justify-content:space-between;
  margin-bottom:30px;
}

.cl-footer-logo{
  color:#fff;
  font-size:30px;
  font-weight:900;
  text-decoration:none;
  letter-spacing:1px;
}

.cl-social-icon{
  display:flex;
  gap:12px;
  list-style:none;
  padding:0;
  margin:0;
}

.cl-social-icon a{
  width:42px;
  height:42px;
  border-radius:50%;
  background:rgba(255,255,255,.1);
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  transition:.3s;
}

.cl-social-icon a:hover{
  background:#ea7655;
  transform:translateY(-4px);
}

.cl-footer-bottom p{
  color:rgba(255,255,255,.72);
  margin:0;
}

.cl-footer-bottom p a{
  color:#ea7655;
  text-decoration:none;
  font-weight:700;
}

.cl-policy-links{
  display:flex;
  justify-content:flex-end;
  gap:20px;
  list-style:none;
  padding:0;
  margin:0;
}

.cl-policy-links a{
  color:rgba(255,255,255,.72);
  text-decoration:none;
}

.cl-policy-links a:hover{
  color:#ea7655;
}
/*  about page */
.cosmotech-inner-title{
    color: var(--secondary-dark);
    font-weight: 400;
    line-height: 1.4;
    margin-bottom: 20px;
}
.text-outline{
	 color: transparent;
    -webkit-text-stroke: 1.5px #fff;

}
.fst-italic{
	font-style: italic !important;
	color: #000000;
}
 .orange-line{
	position: relative;
	z-index: 1;
}
.orange-line::before{
	content: "";
    position: absolute;
    left: 0;
    bottom: 8px;
    width: 100%;
    height: 4px;
    background: #ea7655;
    z-index: -1;
}
.shadow-lg{
	box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
	transition: all 0.5s ease
}
.shadow-lg:hover{
	transform:translatey(-10px);
}

/* breakcrumb */
header.entry-header {
    padding: 28px 0;
    text-align: center;
    /* background-image: url("https://hivends.org/cosmotechlifecare/site/wp-content/uploads/2026/05/background-img.jpg"); */
    background-position-y: 30%;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    background-color: var(--primary-color);
/*     border-bottom-left-radius: 20px; */
    /* border-bottom-right-radius: 20px; */
    margin-bottom: 50px;
    overflow: hidden;
}
.entry-header::before{
	content: "";
	position: absolute;
	left: 0;
	top: 0;
    width: 100%;
    height: 100%;
	z-index:0;
}
.entry-title{
	position: relative;
	z-index:1;
}
/* contact us page */
.wpcf7, .contact-form-section {
    background-color: #ffffff !important; /* Replace #ffffff with your desired hex color code */
    padding: 30px; /* Optional: Adds spacing around the form if needed */
    border-radius: 8px; /* Optional: Rounds the corners of the box */
	color: #222;
}
input{
    margin: 0;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
    border: 2px solid #351818;
    font-family: inherit;
    padding: 16px 10px;
    border-radius: 10px;
	width: 100%;
}
button.submit-btn {
    background: #351818;
    border: none;
    width: 100%;
    padding: 20px 0;
    border-radius: 20px;
}
button.submit-btn a{
	color: #fff;
	text-decoration: none;
}
.cards-section, .third-party-manufacturing{
	overflow: hidden;
}
.light-box{
	border: 2px solid #ea7655;
    background: #fff2f2;
    color: black;
}
/* mission, value page */
.mission-img, .img-border{
	border-left: 3px solid #ea7655;
}
/*  qulatiy policy*/
.bottom-content-policy{
	border-left: 3px solid #ea7655;
	border-radius: 15px;
	color: var(--dark);
}
.why-choose-box{
	background: #fff7f5;
    color: black;
    border-radius: 10px;
    border: 2px solid #ea7655
}

		#navbarNav {
    display: flex !important;
    flex-wrap: nowrap !important;
}

#mega-menu-wrap-primary {
    flex: 1 !important;
    min-width: 0 !important;
}

#mega-menu-primary {
    display: flex !important;
    flex-wrap: nowrap !important;
}

#mega-menu-primary > li > a {
    padding-left: 8px !important;
    padding-right: 8px !important;
}


/* director message. */
.director-content-box{
	background: #fdf8f3;
	color: black;
	border-bottom: 3px solid #ea7655; 
}
/* blog page */
.blog-inner-page{
	overflow:hidden;
}
.orange-text{
	color:#ea7655;
}
.blog-post-card {
	color: black;
	background:white;
	border: 2px solid #d95f3c; 
}
.blog-button{
	background:#ea7655;
	color:white;
	transition: all 0.5s ease;
}
.blog-button:hover{
	background: #d95f3c;
    color: #fff;
    transform: translateY(-2px);
}
.post-excerpt {
    font-size: 0.95rem;
    color: #495057;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.blog-post-card{
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.blog-post-card.show{
    opacity: 1;
    transform: translateY(0);
}
@media(max-width:991px){
  .cl-animated-text{
    font-size:90px;
  }

  .cl-footer-links{
    flex-direction:column;
    gap:20px;
  }

  .cl-policy-links{
    justify-content:flex-start;
  }
}

@media(max-width:576px){
  .cl-animated-text{
    font-size:48px;
  }

  .cl-footer-join{
    padding:28px;
  }

  .cl-footer-join h4{
    font-size:26px;
  }

  .cl-subscribe-form{
    border-radius:20px; 
  }

  .cl-policy-links{
    flex-direction:column;
    gap:8px;
  }
}
.breadca{
	color: white;	
	}
/* Shivam design css */