

/* --- SECTION STYLES --- */
.manage-explore-section {
    padding: 60px 0;
    background-color: #fff;
    text-align: center;
}

.manage-header {
    font-family: 'Barlow', sans-serif;
    /* Matches your template font */
    font-size: 32px;
    font-weight: 700;
    color: #000;
    margin-bottom: 30px;
}

/* Top Buttons */
.manage-buttons-row {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.manage-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 260px;
    padding: 15px;
    border: 2px solid #2ebbad;
    /* Teal border color from image */
    border-radius: 8px;
    background: #fff;
    color: #2ebbad;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 15px;
    transition: all 0.3s;
    text-decoration: none;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.manage-btn:hover {
    background-color: #2ebbad;
    color: white;
    transform: translateY(-2px);
}

.manage-btn i {
    font-size: 20px;
}

/* Services Grid */
.services-grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    /* Responsive grid */
    gap: 40px 20px;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.service-item-circle {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
}

.circle-icon {
    width: 90px;
    height: 90px;
    background-color: #f0f8ff;
    /* Light blue background */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    font-size: 32px;
    color: #482666;
    /* Carezo Purple */
    transition: transform 0.3s, background-color 0.3s;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.service-item-circle:hover .circle-icon {
    transform: scale(1.1);
    background-color: #482666;
    color: white;
}

.service-label {
    font-size: 15px;
    color: #333;
    line-height: 1.3;
    max-width: 140px;
    font-weight: 500;
}

/* "New" Badge */
.new-badge {
    background-color: #ff4d4d;
    color: white;
    padding: 3px 10px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: bold;
    position: absolute;
    top: -10px;
    left: 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}



/* --- APP DOWNLOAD SECTION STYLES --- */
.app-download-section {
    /* Dark gradient background matching the image */
    background: linear-gradient(105deg, #0e4d68 0%, #2b2e5e 100%);
    padding: 80px 0;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

/* Left Column Content */
.app-text-content {
    padding-right: 20px;
}

.app-headline {
    font-family: 'Barlow', sans-serif;
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 25px;
    color: #fff;
}

/* Features List */
.app-features-list {
    list-style: none;
    padding: 0;
    margin-bottom: 40px;
}

.app-features-list li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 17px;
    font-weight: 500;
    color: #e0e0e0;
}

.app-features-list li i {
    color: #20c997;
    /* Teal checkmark color */
    font-size: 20px;
    margin-right: 12px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    padding: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Input Field & Button */
.app-download-label {
    font-size: 15px;
    margin-bottom: 10px;
    display: block;
    font-weight: 500;
}

.app-input-group {
    display: flex;
    max-width: 500px;
    background: #fff;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 40px;
}

.app-input-group input {
    flex: 1;
    border: none;
    padding: 15px 20px;
    font-size: 15px;
    outline: none;
    color: #333;
}

.app-input-group button {
    background-color: #0f6c82;
    /* Dark Teal button */
    color: white;
    border: none;
    padding: 0 25px;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.3s;
}

.app-input-group button:hover {
    background-color: #0b5566;
}

/* Store Badges */
.store-badge-label {
    font-size: 13px;
    font-weight: 700;
    color: #ffca28;
    /* Yellow accent text */
    text-transform: uppercase;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.store-badges {
    display: flex;
    gap: 15px;
}

.store-badge-img {
    height: 45px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 5px;
    transition: opacity 0.3s;
}

.store-badge-img:hover {
    opacity: 0.8;
}

/* --- CSS PHONE MOCKUP (Right Column) --- */
.phone-mockup-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 20px;
}

.css-phone {
    width: 300px;
    height: 600px;
    background-color: #1a1a1a;
    /* Phone Bezel */
    border-radius: 40px;
    border: 4px solid #333;
    /* Outer Frame */
    position: relative;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.6);
    overflow: hidden;
    z-index: 2;
}

/* The "Notch" at the top */
.css-phone::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 25px;
    background-color: #1a1a1a;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
    z-index: 10;
}

/* The Screen */
.phone-screen {
    width: 100%;
    height: 100%;
    background-color: #f4f6f9;
    /* Simulated App Header */
    background-image: linear-gradient(#fff 50px, #f4f6f9 50px);
    background-size: 100% 100%;
    position: relative;
    overflow: hidden;
}

/* Simulating the App Content (Icons Grid inside phone) */
.simulated-app-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 15px;
    padding: 80px 15px 20px 15px;
    /* Padding top clears the notch/header */
    text-align: center;
}

.sim-app-icon {
    width: 40px;
    height: 40px;
    background: #e1eaf0;
    border-radius: 50%;
    margin: 0 auto 5px auto;
}

.sim-app-text {
    height: 6px;
    background: #ced4da;
    width: 40px;
    margin: 0 auto;
    border-radius: 2px;
}

.sim-banner {
    margin: 20px 15px 0 15px;
    height: 100px;
    background: linear-gradient(90deg, #134e5e, #71b280);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 12px;
    font-weight: bold;
}

/* --- FIX: PRELOADER BACKGROUND COLOR --- */
/* Override the default yellow background */
.preloader .layer .overlay {
    background-color: #482666 !important;
    /* Carezo Purple */
}

/* Ensure the spinner border matches */
.preloader .animation-preloader .spinner {
    border: 3px solid #ffffff;
    border-top-color: #482666;
    /* Carezo Purple */
}

/* Fix the text color */
.preloader .animation-preloader .txt-loading .letters-loading:before {
    color: #482666;
}

.preloader .animation-preloader .txt-loading .letters-loading {
    color: rgba(255, 255, 255, 0.2);
    stroke: #ffffff;

}



/* --- MAIN SLIDER THEME OVERRIDES --- */

/* 1. Add a subtle Purple-to-Teal overlay on the slider images */
.main-slider__image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(72, 38, 102, 0.6) 0%, rgba(15, 76, 117, 0.4) 100%);
    /* Carezo Gradient */
    z-index: 1;
}

/* 2. Style the "Hire us now" Button */
.main-slider__btn {
    background-color: #482666 !important;
    /* Carezo Purple */
    border-color: #482666 !important;
    color: #ffffff !important;
    transition: all 0.3s ease;
}

.main-slider__btn:hover {
    background-color: #0f4c75 !important;
    /* Teal on hover */
    border-color: #0f4c75 !important;
    transform: translateY(-3px);
}

/* 3. Text Colors */
.main-slider__sub-title {
    color: #ffca28 !important;
    /* Gold/Yellow accent (matches badge/highlights) */
    font-weight: 600;
    letter-spacing: 2px;
}

.main-slider__title {
    color: #ffffff;
    /* Keep main title white for readability */
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}

/* 4. Highlighted words (Today, Free) */
.main-slider__text-two span {
    color: #ffca28 !important;
    /* Gold/Yellow for visibility on dark bg */
    font-weight: bold;
}

/* 5. Navigation Arrows (Left/Right) */
.main-slider__nav .swiper-button-prev,
.main-slider__nav .swiper-button-next {
    background-color: rgba(255, 255, 255, 0.1) !important;
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: #ffffff !important;
    transition: all 0.3s ease;
}

.main-slider__nav .swiper-button-prev:hover,
.main-slider__nav .swiper-button-next:hover {
    background-color: #482666 !important;
    /* Carezo Purple */
    border-color: #482666 !important;
    color: #fff !important;
}

/* 6. Slider Badge (if visible) */
.main-slider__badge {
    filter: drop-shadow(0px 5px 15px rgba(0, 0, 0, 0.3));
}



/* --- SIDEBAR WIDGET THEME OVERRIDES --- */

/* 1. Headings (Purple) */
.sidebar-textwidget .content-box h3,
.sidebar-contact-info h3,
.side-content-newsletter-box h3 {
    color: #482666 !important;
    /* Carezo Purple */
    font-weight: 700;
}

/* 2. Icons (Teal Background with White Icon) */
.sidebar-contact-info ul li .inner .icon {
    background-color: rgba(15, 76, 117, 0.1);
    /* Light Teal BG */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* If icons are images, we can't easily recolor them with CSS alone, 
       but we can add a border or tint. If you switch to FontAwesome icons later, 
       color: #0f4c75; would work. For now, let's style the container. */
.sidebar-contact-info ul li .inner .icon img {
    filter: brightness(0) saturate(100%) invert(18%) sepia(35%) saturate(3660%) hue-rotate(250deg) brightness(91%) contrast(96%);
    /* This filter approximates the #482666 Purple color for black icons */
}

/* 3. Links and Text */
.sidebar-contact-info ul li .inner .text p a:hover {
    color: #0f4c75 !important;
    /* Teal Hover */
}

/* 4. Newsletter Button */
.side-content-newsletter-box .thm-btn {
    background-color: #482666 !important;
    /* Carezo Purple */
    color: #fff !important;
    border: none;
    transition: all 0.3s ease;
}

.side-content-newsletter-box .thm-btn:hover {
    background-color: #0f4c75 !important;
    /* Teal Hover */
}

/* 5. Input Field Focus */
.side-content-newsletter-box input:focus {
    border-color: #482666 !important;
}











/* --- MANAGE & EXPLORE SECTION STYLES --- */
.manage-explore-section {
    padding: 60px 0;
    background-color: #fff;
    text-align: center;
}

.manage-header {
    font-size: 32px;
    font-weight: 700;
    color: #000;
    margin-bottom: 30px;
    font-family: 'Barlow', sans-serif;
}

/* Manage Buttons */
.manage-buttons-row {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.manage-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 260px;
    padding: 15px;
    border: 2px solid #2ebbad;
    /* Teal Border */
    border-radius: 8px;
    background: #fff;
    color: #2ebbad;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 15px;
    transition: all 0.3s;
    text-decoration: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.manage-btn:hover {
    background-color: #2ebbad;
    color: white;
    transform: translateY(-2px);
}

/* Services Grid */
.services-grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 40px 20px;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.service-item-circle {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    transition: transform 0.3s;
}

.service-item-circle:hover {
    transform: translateY(-5px);
}

.circle-icon {
    width: 90px;
    height: 90px;
    background-color: #f4f8fb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    font-size: 32px;
    color: #482666;
    /* Carezo Purple */
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.service-item-circle:hover .circle-icon {
    background-color: #482666;
    color: white;
    box-shadow: 0 8px 20px rgba(72, 38, 102, 0.3);
}

.service-label {
    font-size: 15px;
    color: #333;
    line-height: 1.3;
    max-width: 140px;
    font-weight: 500;
}

.new-badge {
    background-color: #ff4d4d;
    color: white;
    padding: 3px 10px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: bold;
    position: absolute;
    top: -10px;
    left: 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}




:root {
    --carezo-purple: #482666;
    /* Primary Brand Color */
    --carezo-dark-purple: #2a103c;
    /* Darker shade for hovers/footer */
    --carezo-teal: #2ebbad;
    /* Accent Teal */
    --carezo-dark-teal: #0f4c75;
    /* Darker Teal */
    --text-white: #ffffff;
}




/* --- APP DOWNLOAD SECTION (CAREZO THEME) --- */
.app-download-section {
    /* Gradient Background: Carezo Purple to Dark Teal */
    background: linear-gradient(135deg, #482666 0%, #0f4c75 100%);
    padding: 80px 0;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.app-headline {
    font-family: 'Barlow', sans-serif;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #ffffff;
}

/* Feature List Styling */
.app-features-list {
    list-style: none;
    padding: 0;
    margin-bottom: 40px;
}

.app-features-list li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: 500;
    color: #f0f0f0;
}

/* Checkmark Icons - Teal with White BG */
.app-features-list li i {
    color: #2ebbad;
    /* Carezo Teal */
    background-color: #ffffff;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 16px;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
}

/* Input Form Styling */
.app-download-label {
    display: block;
    margin-bottom: 12px;
    font-size: 16px;
    font-weight: 600;
    color: #ffca28;
    /* Gold Accent for instruction text */
}

.app-input-group {
    display: flex;
    max-width: 500px;
    background: #ffffff;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.app-input-group input {
    flex: 1;
    border: none;
    padding: 18px 20px;
    font-size: 16px;
    outline: none;
    color: #333;
}

.app-input-group button {
    background-color: #2ebbad;
    /* Carezo Teal Button */
    color: #ffffff;
    border: none;
    padding: 0 35px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.app-input-group button:hover {
    background-color: #228b81;
    /* Darker Teal on Hover */
}

/* Store Badges */
.store-badge-label {
    margin-top: 35px;
    margin-bottom: 15px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
}

.store-badges {
    display: flex;
    gap: 15px;
}

.store-badge-img {
    height: 50px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    transition: transform 0.3s;
}

.store-badge-img:hover {
    transform: translateY(-3px);
    border-color: #fff;
}

/* --- CSS PHONE MOCKUP --- */
.phone-mockup-wrapper {
    display: flex;
    justify-content: center;
    padding-top: 20px;
}

.css-phone {
    width: 300px;
    height: 600px;
    background-color: #1a1a1a;
    border: 4px solid #444;
    border-radius: 40px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.7);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

/* Phone Notch */
.css-phone::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 25px;
    background-color: #1a1a1a;
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px;
    z-index: 10;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background-color: #f4f6f9;
    padding-top: 40px;
    position: relative;
}

/* Simulated App Screen Elements */
.sim-banner {
    margin: 20px 15px;
    height: 120px;
    /* Gradient matching brand inside the phone */
    background: linear-gradient(135deg, #482666, #2ebbad);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 20px;
    text-align: center;
    line-height: 1.3;
    box-shadow: 0 5px 15px rgba(72, 38, 102, 0.2);
}

.simulated-app-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    padding: 0 15px;
}

.sim-app-icon {
    width: 50px;
    height: 50px;
    background-color: #e1eaf0;
    border-radius: 12px;
    margin: 0 auto 8px;
}

.sim-app-text {
    width: 40px;
    height: 6px;
    background-color: #cbd5e0;
    border-radius: 3px;
    margin: 0 auto;
}
/* CAREZO SPECIFIC STYLES */

/* The Blue Box becomes the Carezo Purple Box */
.about-one__satisfaction.carezo-badge {
    background-color: var(--assimox-primary) !important;
    /* Purple */
    border-left: 8px solid var(--assimox-base);
    /* Black Border like logo */
    border-bottom: 8px solid var(--assimox-base);
    border-radius: 0px 15px 0px 15px;
    /* Sharp edges to look like a stamp/logo */
    box-shadow: 0px 10px 30px rgba(81, 45, 109, 0.4);
}

/* Update the Icon Colors to Purple */
.about-one__points-icon span {
    color: var(--assimox-primary) !important;
    font-size: 24px;
}

/* Ensure the Tagline (ABOUT COMPANY) matches */
.section-title__tagline {
    color: var(--assimox-primary) !important;
}

.section-title__tagline:before {
    background-color: var(--assimox-primary) !important;
}



/* 1. Background Color: Change from Blue to Carezo Purple */
.why-choose-one {
    background-color: var(--assimox-primary) !important;
    /* Deep Purple */
}

/* 2. The Decorative Skew Shape: Change to Carezo Black */
.why-choose-one__img-1:before {
    background-color: var(--assimox-base) !important;
    /* Black/Dark Slate */
}

/* 3. Icon Colors: Remove the old blue gradient and make them White */
.why-choose-one__points li .icon span {
    background: none !important;
    -webkit-text-fill-color: #ffffff !important;
    /* Solid White */
    color: #ffffff !important;
    font-size: 50px;
    /* Adjust size for FontAwesome */
}

/* 4. Icon Hover Effect: Slight pulse instead of scaling */
.why-choose-one__points li:hover .icon span {
    transform: scale(1.1);
    text-shadow: 0px 0px 15px rgba(255, 255, 255, 0.6);
}

/* 5. Update Text Colors for readability on Purple */
.why-choose-one__text {
    color: #e6e6e6 !important;
    /* Light Grey text */
}

.why-choose-one__content .section-title__tagline {
    color: #ffffff !important;
    /* White Tagline */
}

.why-choose-one__content .section-title__tagline:before {
    background-color: #ffffff !important;
    /* White Line */
}


/* --- Manage & Explore Section Styling --- */

.manage-explore-section {
    padding: 80px 0;
    background-color: #f8f9fa;
    /* Light grey background to separate from white sections */
}

/* Headers */
.manage-header {
    color: var(--assimox-base);
    /* Carezo Black */
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 40px;
    position: relative;
    display: inline-block;
}

/* Action Buttons */
.manage-buttons-row {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.manage-btn {
    background-color: var(--assimox-primary);
    /* Carezo Purple */
    color: #ffffff !important;
    padding: 18px 40px;
    border-radius: 50px;
    /* Pill shape */
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 10px 20px rgba(81, 45, 109, 0.3);
    transition: all 0.3s ease;
    border: 2px solid var(--assimox-primary);
    display: inline-flex;
    align-items: center;
}

.manage-btn i {
    margin-right: 10px;
    font-size: 20px;
}

.manage-btn:hover {
    background-color: #fff;
    color: var(--assimox-primary) !important;
    transform: translateY(-3px);
}

/* Alternate Dark Button for "Activate Plan" */
.manage-btn.manage-btn--dark {
    background-color: var(--assimox-base);
    /* Carezo Black */
    border-color: var(--assimox-base);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.manage-btn.manage-btn--dark:hover {
    background-color: #fff;
    color: var(--assimox-base) !important;
}

/* --- Service Grid Styling --- */

.services-grid-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-item-circle {
    text-align: center;
    width: 140px;
    cursor: pointer;
}

.icon-wrapper {
    position: relative;
    width: 100px;
    height: 100px;
    margin: 0 auto 15px;
}

.circle-icon {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #ffffff;
    border: 2px solid #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    color: var(--assimox-primary);
    /* Purple Icon */
    transition: all 0.4s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

/* Hover Effect: Turns Purple */
.service-item-circle:hover .circle-icon {
    background-color: var(--assimox-primary);
    color: #ffffff;
    border-color: var(--assimox-primary);
    transform: rotateY(180deg);
    /* 3D flip effect */
}

/* Labels */
.service-label {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
    color: var(--assimox-black);
    transition: color 0.3s;
}

.service-item-circle:hover .service-label {
    color: var(--assimox-primary);
}

/* New Badge */
.new-badge {
    position: absolute;
    top: -5px;
    right: -10px;
    background-color: #d90429;
    /* Red for alert */
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 4px 8px;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    z-index: 2;
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}


/* --- Process Section Theme Update --- */

/* 1. Make the Icons Carezo Purple */
.process__icon i {
    font-size: 50px;
    color: var(--assimox-primary) !important;
    /* Purple */
    transition: all 500ms linear;
}

/* 2. Hover Effect: Icon scales up */
.process__single:hover .process__icon i {
    transform: scale(0.9);
}

/* 3. The Step Counter Tag (Top Right) - Make it Black like the Shield Border */
.process__count {
    background-color: var(--assimox-base) !important;
    /* Black */
}

/* 4. Process Card Styling */
.process__single {
    border-bottom: 3px solid transparent;
    /* Prepare for hover border */
    transition: all 0.3s ease;
}

/* 5. Add a Purple bottom border on hover */
.process__single:hover {
    border-bottom: 3px solid var(--assimox-primary);
    transform: translateY(-5px);
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.05);
}

/* 6. Tagline Color */
.section-title__tagline {
    color: var(--assimox-primary) !important;
}

.section-title__tagline:before {
    background-color: var(--assimox-primary) !important;
}

/* --- FAQ Section Theme Override --- */

/* 1. Main Background: Switch from Blue to Dark Slate */
.faq-one {
    background-color: var(--assimox-base) !important;
    /* #1A1A1A */
}

/* 2. Form Box: Switch from Yellow to Carezo Purple */
.faq-one__form-box.carezo-form {
    background-color: var(--assimox-primary) !important;
    /* #512D6D */
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* 3. Input Fields: Switch from Light Yellow to Clean White */
.faq-one__form-input-box input,
.faq-one__form-input-box textarea {
    background-color: #ffffff !important;
    border: 1px solid #e5e5e5 !important;
    color: #333 !important;
}

/* Input Placeholder Text Color */
.faq-one__form-input-box input::placeholder,
.faq-one__form-input-box textarea::placeholder {
    color: #888 !important;
}

/* 4. Submit Button: Switch from Dark Blue to Black for contrast */
.faq-one__form-btn {
    background-color: var(--assimox-base) !important;
    /* Black */
    color: #fff !important;
    border: 2px solid var(--assimox-base);
}

.faq-one__form-btn:hover {
    background-color: #fff !important;
    color: var(--assimox-base) !important;
    /* Black Text on White */
}

/* 5. Accordion Styles (Left Side) */
/* Title Text Color */
.faq-one-accrodion .accrodion-title h4 {
    color: #ffffff !important;
    /* White text on Dark bg */
}

/* Active Item Icon Color */
.faq-one-accrodion .accrodion.active .accrodion-title h4::before {
    color: var(--assimox-primary) !important;
    /* Purple Minus Icon */
    background-color: #fff !important;
}

/* Inactive Item Icon Color */
.faq-one-accrodion .accrodion-title h4::before {
    background-color: var(--assimox-primary) !important;
    /* Purple Plus Icon */
    color: #fff !important;
}



/* --- Blog Section Theme Override --- */

/* 1. Date Badge: Change to Carezo Purple */
.blog-one__date p {
    background-color: var(--assimox-primary) !important;
    /* Deep Purple */
    color: #ffffff;
    font-weight: 700;
    box-shadow: 0px 5px 15px rgba(81, 45, 109, 0.4);
}

/* 2. Blog Title Hover: Change to Carezo Purple */
.blog-one__title a:hover {
    color: var(--assimox-primary) !important;
}

/* 3. Card Hover Effect: Add a purple tinted shadow */
.blog-one__single:hover {
    box-shadow: 0px 15px 40px rgba(81, 45, 109, 0.15);
    transform: translateY(-10px);
}

/* 4. Ensure the Active Card (Middle one) matches the theme */
.blog-one__single.active .blog-one__content-box {
    border-bottom: 3px solid var(--assimox-primary);
}

/* 5. Tagline Color */
.section-title__tagline {
    color: var(--assimox-primary) !important;
}

.section-title__tagline:before {
   background-color: #fff  !important;
}


/* --- Footer Theme Override --- */

/* 1. Top Bar: Carezo Purple Background */
.site-footer__top {
    background-color: var(--assimox-primary) !important;
    /* Deep Purple */
    padding: 35px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* 2. Top Bar Icons: White and Scaled */
.site-footer__contact-points li .icon {
    background-color: rgba(255, 255, 255, 0.1) !important;
    /* Semi-transparent white circle */
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.site-footer__contact-points li .icon i {
    font-size: 24px;
    color: #ffffff;
}

.site-footer__contact-points li .content h4,
.site-footer__contact-points li .content p,
.site-footer__contact-points li .content a {
    color: #ffffff !important;
}

/* 3. Middle Section: Carezo Black Background */
.site-footer__middle {
    background-color: var(--assimox-base) !important;
    /* Black */
    padding-top: 80px;
    padding-bottom: 70px;
}

/* 4. Link Hover Effects: Purple */
.footer-widget__useful-links-list li a:hover {
    color: var(--assimox-primary) !important;
    padding-left: 5px;
    /* Slight movement on hover */
}

/* 5. Social Icons */
.site-footer__social a {
    background-color: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    transition: all 0.3s ease;
}

.site-footer__social a:hover {
    background-color: var(--assimox-primary) !important;
    /* Purple on hover */
    transform: translateY(-3px);
}

/* 6. Newsletter Button */
.footer-widget__subscribe-btn {
    background-color: var(--assimox-primary) !important;
}

.footer-widget__subscribe-btn:hover {
    background-color: #ffffff !important;
    color: var(--assimox-primary);
}

.footer-widget__subscribe-btn i {
    color: #ffffff;
}


/* --- Hero Slider Theme Override --- */

/* 1. Highlight Text (Make "Protection" and "Home" pop) */
.main-slider__title .carezo-highlight {
    color: var(--assimox-primary);
    /* Carezo Purple */
    position: relative;
    display: inline-block;
}

/* 2. Subtitle Styling */
.main-slider__sub-title {
    color: #ffffff !important;
    background-color: var(--assimox-primary);
    /* Purple background pill */
    display: inline-block;
    padding: 5px 20px;
    border-radius: 30px;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

/* 3. Button Styling */
.main-slider__btn {
    background-color: var(--assimox-primary) !important;
    border-color: var(--assimox-primary) !important;
    color: #ffffff !important;
}

.main-slider__btn:hover {
    background-color: var(--assimox-base) !important;
    /* Black on hover */
    border-color: var(--assimox-base) !important;
}

/* 4. Navigation Arrows */
.main-slider__nav .swiper-button-prev,
.main-slider__nav .swiper-button-next {
    background-color: rgba(26, 26, 26, 0.5) !important;
    /* Semi-transparent Black */
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.main-slider__nav .swiper-button-prev:hover,
.main-slider__nav .swiper-button-next:hover {
    background-color: var(--assimox-primary) !important;
    /* Purple on Hover */
}

/* --- Custom CSS Shield Badge (No Image Needed) --- */
.carezo-hero-badge {
    width: 120px;
    height: 120px;
    background-color: var(--assimox-primary);
    /* Purple Circle */
    border: 5px solid #ffffff;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    animation: pulse-purple 2s infinite;
}

.carezo-hero-badge .badge-icon {
    font-size: 30px;
    margin-bottom: 5px;
}

.carezo-hero-badge .badge-text {
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    line-height: 1.2;
    text-align: center;
}

/* Badge Pulse Animation */
@keyframes pulse-purple {
    0% {
        box-shadow: 0 0 0 0 rgba(81, 45, 109, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(81, 45, 109, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(81, 45, 109, 0);
    }
}


/* --- Header Transparency Fix --- */

.main-header.main-header--dark {
    background-color: #ffffff !important;
    /* Force Solid White */
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.05);
    /* Adds a subtle shadow for depth */
}

/* Ensure the Call Box (Phone number) looks distinct */
.main-menu__call {
    background-color: #f4f4f4 !important;
    /* Light grey to separate from white header */
}


/* --- Carezo Mobile Menu Theme --- */

/* 1. Main Background: Deep Royal Purple */
.mobile-nav__content.carezo-mobile-nav {
    background-color: var(--assimox-primary) !important; /* #512D6D */
    border-right: 5px solid var(--assimox-base); /* Dark border on the edge */
}

/* 2. Close Button: White with Red Hover */
.mobile-nav__close {
    color: #ffffff !important;
    background-color: rgba(0,0,0,0.2); /* Slight dark circle behind X */
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}
.mobile-nav__close:hover {
    background-color: #ff3b30; /* Alert Red for closing */
}

/* 3. Menu Links (Generated by JS usually): Force White */
.mobile-nav__content .main-menu__list > li > a {
    color: #ffffff !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
}
.mobile-nav__content .main-menu__list > li > a:hover {
    color: var(--assimox-base) !important; /* Black/Dark Slate on hover */
    background-color: #ffffff;
    padding-left: 10px; /* Slide effect */
}

/* 4. Contact Info Styling */
.mobile-nav__contact li {
    color: #ffffff !important;
}
.mobile-nav__contact li a {
    color: rgba(255, 255, 255, 0.9) !important;
    font-weight: 500;
}
.mobile-nav__contact li a:hover {
    color: #ffffff !important;
    text-decoration: underline;
}
.mobile-nav__contact li > i {
    background-color: #ffffff !important; /* White circle */
    color: var(--assimox-primary) !important; /* Purple Icon inside */
}

/* 5. Social Icons */
.mobile-nav__social a {
    color: #ffffff !important;
    font-size: 20px;
    transition: all 0.3s ease;
}
.mobile-nav__social a:hover {
    color: var(--assimox-base) !important;
    transform: translateY(-3px);
}
/* --- FIX: Footer Icon Alignment --- */

/* 1. Force Vertical Centering for all views (PC & Mobile) */
.site-footer__contact-points li {
    align-items: center !important; /* Fixes displacement */
    display: flex !important;
}

/* 2. Reset the Icon Container */
.site-footer__contact-points li .icon {
    display: flex !important;
    align-items: center;
    justify-content: center;
    /* Optional: Ensure consistent width if you want perfect alignment */
    min-width: 60px; 
    height: 60px;
}

/* 3. Mobile Specific Override (Fixes the 'Baseline' issue seen in screenshot) */
@media only screen and (max-width: 767px) {
    .site-footer__contact-points {
        flex-direction: column !important; /* Stack items vertically */
        align-items: flex-start !important; /* Align everything to left */
        gap: 20px; /* Add space between the stacked items */
    }

    .site-footer__contact-points li {
        width: 100%;
        justify-content: flex-start; /* Ensure content starts from left */
        margin-bottom: 15px; /* Add spacing between rows */
        align-items: center !important; /* Keep icon centered with text */
    }
    
    /* Remove the old side borders on mobile */
    .site-footer__contact-points li:before {
        display: none; 
    }
}


/* --- Product Categories Section (3-Column Fixed Layout) --- */

.product-categories-section {
    padding: 60px 0;
    background-color: #f4f7fc;
}

/* The Grid Container - Strict 3 Columns */
.category-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 Equal Columns always */
    gap: 30px; /* Space between items */
    max-width: 1000px; /* Restrict width so circles don't get too far apart */
    margin: 40px auto 0;
    justify-items: center; /* Center items in their grid cells */
}

/* Individual Item Link */
.category-item {
    text-align: center;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

/* The White Circle - Responsive Size */
.category-circle {
    width: 150px;       /* Desktop Size */
    height: 150px;      /* Desktop Size */
    background-color: #ffffff;
    border-radius: 50%;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.05);
    border: 3px solid transparent;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

/* Image inside the circle */
.category-circle img {
    max-width: 60%;
    max-height: 60%;
    object-fit: contain;
    transition: transform 0.4s ease;
}

/* Text Label */
.category-item h5 {
    font-size: 18px;
    font-weight: 700;
    color: var(--assimox-black);
    margin: 0;
    transition: color 0.3s ease;
}

/* --- Hover Effects --- */
.category-item:hover .category-circle {
    border-color: var(--assimox-primary);
    transform: translateY(-10px);
    box-shadow: 0px 15px 30px rgba(81, 45, 109, 0.2);
}

.category-item:hover .category-circle img {
    transform: scale(1.1);
}

.category-item:hover h5 {
    color: var(--assimox-primary);
}

/* --- Mobile Specifics (Keep 3 Columns but shrink sizes) --- */
@media (max-width: 767px) {
    .category-grid {
        gap: 15px; /* Smaller gaps on phone */
        padding: 0 10px;
    }

    .category-circle {
        /* On mobile, 150px is too big for 3 columns. 
           We use 'vw' (viewport width) to scale dynamically. */
        width: 26vw;  
        height: 26vw;
        max-width: 100px; /* Cap size so it doesn't look huge on tablets */
        max-height: 100px;
        margin-bottom: 10px;
        border-width: 2px; /* Thinner border for small screens */
    }

    .category-item h5 {
        font-size: 13px; /* Smaller text for mobile */
        line-height: 1.3;
    }
}

html, body {
  height: auto !important;
  overflow-y: auto !important;
}

section {
  scroll-margin-top: 120px; /* adjust to your header height */
}

/* 1. Target the slider container to reduce its height */
.main-slider .swiper-slide {
    /* Change 60vh to whatever size you want: 
       - 50vh = Half the screen 
       - 70vh = 70% of the screen 
       - 400px = A fixed height like a banner 
    */
    height: 100vh !important; 
    min-height: 0 !important; /* Overrides template defaults */
    padding: 0 !important;    /* Removes extra spacing */
}

/* 2. Ensure the image fills this new smaller box */
div.main-slider__image {
    height: 100% !important;
    width: 100% !important;
    
    /* 'cover' will crop the sides to fill the height.
       '100% 100%' will stretch/squash it to fit.
       Try both to see which you prefer. */
    background-size: 100% 100% !important; 
    background-position: center center !important;
}

/* 3. Center the text in the new smaller space */
.container {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}



.toast-success {
    position: fixed;
    top: 20px;
    right: 20px;
    background: #28a745;
    color: #fff;
    padding: 14px 22px;
    border-radius: 6px;
    font-size: 15px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition: all 0.4s ease;
    z-index: 9999;
}

.toast-success.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}



/* Targets the plain text list items */
#footer-li-list li {
    color: #ffffff;
}

/* Targets the link in the last list item */
#footer-li-list li a {
    color: #ffffff;
    text-decoration: none; /* Optional: removes the underline */
}

/* Optional: Add a hover effect for the link to make it interactive */
#footer-li-list li a:hover {
    color: #e2e8f0; /* Changes to a light gray on hover */
}