/*
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.4
Tested up to: 6.8
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
 * ----------------------------------------------------------------------------
 */





* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

/* CSS Variables Start */
:root {
    --primary-color: #123262;
    --secondary-color: #F0F2F5;
    --tertiary-color: #3d82a4;
    --bg-light: #ffffff;
    --text-dark: #212529;
    --text-light: #ffffff;
    --card-border-radius: 1.5rem;
    --button-border-radius: 0.75rem;
    --shadow-medium: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-light: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --divider-color: #e0e0e0;
    --dark-divider-color: #FFFFFF1A;
    --accent-color: var(--primary-color);
    --button-gradient-start: #ff69b4;
    --button-gradient-end: #ffa07a;
    --button-main-color: #E9AB24;
    --dark-color-bg: var(--primary-color);
}

/* CSS Variables End */

/* Global Styles Start */
body {
    font-family: 'Onest', sans-serif;
    background-color: var(--bg-light);
    padding: 0;
    margin: 0;
    position: relative;
}

.container-custom {
    background-color: #fff3f9;
    border-radius: var(--card-border-radius);
    box-shadow: var(--shadow-medium);
    padding: 3rem;
    margin: 0 auto;
    width: 95%;
    max-width: 1300px;
    box-sizing: border-box;
    position: relative;
    z-index: 10;
}
section.about-section.container a {
    margin: 20px 0 44px 0;
}
figure {
    margin: 0;
}

img {
    max-width: 100%;
}

a {
    text-decoration: none;
}

a:hover {
    text-decoration: none;
    outline: 0;
}

a:focus {
    text-decoration: none;
    outline: 0;
}

html,
body {
    width: 100%;
    overflow-x: clip;
}


.section-title {
    margin-bottom: 40px;
    text-align: left;
}

.section-title h3 {
    position: relative;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--tertiary-color);
    display: inline-block;
    padding-left: 20px;
    margin-bottom: 10px;
}

.section-title h3::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    background: var(--tertiary-color);
    border-radius: 50%;
    width: 8px;
    height: 8px;
}

.section-title h2 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.1em;
    margin-bottom: 0;
    color: var(--text-dark);
}

.section-title h2 span {
    color: var(--tertiary-color);
}

.section-title p {
    margin-top: 20px;
    margin-bottom: 0;
    color: #6c757d;
    font-size: 0.95rem;
    line-height: 1.6;
}

.btn-default {
    position: relative;
    display: inline-block;
    background: linear-gradient(to right, #174060, #285e88);
    border-radius: 10px;
    font-size: 16px;
    font-weight: 700;
    line-height: 1em;
    text-transform: capitalize;
    color: var(--text-light);
    border: none;
    padding: 17px 54px 17px 30px;
    transition: all 0.5s ease-in-out;
    overflow: hidden;
    z-index: 0;
    text-decoration: none;
}

.btn-default::before {
    content: '\f061';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 50%;
    right: 30px;
    font-size: 18px;
    color: var(--text-light);
    transform: translateY(-50%) rotate(-45deg);
    transition: all 0.4s ease-in-out;
    z-index: 1;
}

.btn-default:hover::before {
    transform: translateY(-50%) rotate(0deg);
}

.btn-default::after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: -10%;
    right: 0;
    width: 0;
    height: 106%;
    background: var(--button-main-color);
    transform: skew(30deg);
    transition: all 0.4s ease-in-out;
    z-index: -1;
}

.btn-default:hover::after {
    width: 120%;
}

.btn-default.btn-highlighted {
    background: var(--text-light);
    color: var(--primary-color);
}

.btn-default.btn-highlighted::before {
    color: var(--primary-color);
}

.btn-default.btn-highlighted:hover {
    color: var(--text-light);
}

.btn-default.btn-highlighted:hover::before {
    color: var(--text-light);
}
.ernst-world {
  background: #fff;
}

.highlight {
  background: #f6d96b;
  padding: 4px 10px;
  border-radius: 6px;
}

.counter-box {
  padding: 20px;
  position: relative;
}

.counter-box:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: #ddd;
}

.label {
  color: #555;
  font-size: 16px;
}

.counter {
  font-size: 52px;
  font-weight: 700;
  color: #6bb7b5;
}

.sub {
  font-size: 18px;
  color: #333;
}

/* Image Reveal Container Start */
.reveal {
    opacity: 0;
    overflow: hidden;
}

.reveal img {
    transform: scale(1.2);
}

/* Image Reveal Container End */

/* Universal Figure Shimmer Effect Start */
figure {
    position: relative;
    overflow: hidden;
}

figure::after {
    content: "";
    position: absolute;
    width: 200%;
    height: 0%;
    left: 50%;
    top: 50%;
    background-color: rgba(255, 255, 255, .3);
    transform: translate(-50%, -50%) rotate(-45deg);
    z-index: 1;
    transition: all 600ms linear;
}

figure:hover::after {
    height: 250%;
    background-color: transparent;
}

/* Universal Figure Shimmer Effect End */

/* Marquee Section */


.marquee-content {
    display: flex;
    align-items: center;
    white-space: nowrap;
    animation: marquee 30s linear infinite;
}
.marquee-section {
    background: linear-gradient(to right, #133363, #050f1f);
    padding: 1rem 0;
    overflow: hidden;
    position: relative;
    z-index: 11111111;
}
.about-us-content {
    margin: -155px 0 0 0;
}
.marquee-item {
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    margin: 0 2rem;
    display: flex;
    align-items: center;
}

.marquee-item i {
    color: #fff;
    font-size: 1rem;
    margin-right: 0.75rem;
}

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

    100% {
        transform: translateX(-100%);
    }
}

/* About Us Section Start */
.about-us {
    padding: 100px 0;
}

.about-us .container-custom {
    border-radius: unset;
    box-shadow: none;
    padding: 0;
    background-color: unset;
}

.about-us-images {
    position: relative;
    padding: 0 70px 70px 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.about-us-img-1 {
    border-radius: var(--card-border-radius);
    box-shadow: var(--shadow-medium);
    width: 100%;
    max-width: 450px;
    position: relative;
    z-index: 1;
}

.about-us-img-1 img {
    width: 100%;
    aspect-ratio: 1 / 1.26;
    object-fit: cover;
    border-radius: var(--card-border-radius);
}

.about-us-img-2 {
    position: absolute;
    bottom: 0;
    right: 35px;
    border-radius: 20px;
    width: 50%;
    max-width: 200px;
    border: 8px solid var(--bg-light);
    box-shadow: var(--shadow-medium);
    z-index: 2;
}

.about-us-img-2 img {
    width: 100%;
    aspect-ratio: 1 / 1.04;
    object-fit: cover;
    border-radius: 20px;
}

.about-experience-box {
    position: absolute;
    top: 0;
    left: 0;
    transform: translateY(70%);
    background: #FE69B4;
    border-radius: 10px;
    padding: 20px;
    max-width: 178px;
    animation: experiencemoveobject 2s infinite linear alternate;
    box-shadow: var(--shadow-light);
    z-index: 3;
}

@keyframes experiencemoveobject {
    50% {
        left: 30px;
    }
}

.about-experience-box .icon-box {
    margin-bottom: 10px;
    color: var(--text-light);
    font-size: 40px;
}

.about-experience-box .about-experience-content h3 {
    font-size: 20px;
    line-height: 1.3em;
    font-weight: 600;
    color: var(--text-light);
    margin: 0;
}

.about-us-body {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 30px;
    position: relative;
    top: -260px;
}

.about-list-btn {
    width: calc(100% - 220px);
}

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

.about-list ul li {
    position: relative;
    line-height: 1.5em;
    padding-left: 30px;
    margin-bottom: 20px;
    color: #495057;
    font-size: 0.95rem;
}

.about-list ul li:last-child {
    margin-bottom: 0;
}

.about-list ul li:before {
    content: '\f058';
    position: absolute;
    font-family: 'Font Awesome 6 Free';
    top: 0;
    left: 0;
    font-weight: 900;
    font-size: 20px;
    color: var(--primary-color);
}

.about-btn .btn-default {
    margin-top: 20px;
}

.book-consult-circle {
    position: relative;
    flex-shrink: 0;
    margin-left: auto;
}

.book-consult-circle a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    width: 150px;
    height: 150px;
    background: var(--primary-color);
    box-shadow: var(--shadow-medium);
    animation: rotateCircle 10s linear infinite;
    text-decoration: none;
    color: var(--text-light);
    font-weight: 600;
    font-size: 0.9rem;
    line-height: 1.2;
    text-align: center;
}

.book-consult-circle a i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

@keyframes rotateCircle {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* About Us Section End */

/* Our Services Section Start */
.our-services {
    padding: 0;
}

.our-services .container-custom {
    background-position: center center !important;
    background-size: cover !important;
}

.service-item {
    position: relative;
    background: var(--bg-light);
    border: 1px solid var(--divider-color);
    border-radius: 20px;
    height: calc(100% - 30px);
    margin-bottom: 30px;
    padding: 30px;
    overflow: hidden;
}

.service-item:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg-light);
    border-radius: 20px;
    width: 100%;
    height: 100%;
    transition: all 0.4s ease-in-out;
    z-index: 1;
}

.service-item.active::before,
.service-item:hover::before {
    transform: translate(100%, -100%);
}

.service-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    transition: all 0.4s ease-in-out;
    z-index: 0;
}

.service-item.active .service-image,
.service-item:hover .service-image {
    opacity: 1;
}

.service-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-color: #24354e;
    opacity: 0.8;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.service-body {
    position: relative;
    z-index: 2;
}

.service-body .icon-box {
    margin-bottom: 50px;
}

.service-body .icon-box img {
    width: 100%;
    max-width: 50px;
    transition: all 0.4s ease-in-out;
}

.service-item.active .service-body .icon-box img,
.service-item:hover .service-body .icon-box img {
    filter: brightness(0) invert(1);
}

.service-content {
    transform: translateY(55px);
    transition: all 0.4s ease-in-out;
}

.service-item.active .service-content,
.service-item:hover .service-content {
    transform: translateY(0px);
}

.service-content-info h3 {
    font-size: 20px;
    line-height: 1.4em;
    margin-bottom: 10px;
    transition: all 0.4s ease-in-out;
    color: var(--text-dark);
}

.service-content-info a {
    color: inherit;
    text-decoration: none;
}

.service-content-info p {
    margin-bottom: 0;
    transition: all 0.4s ease-in-out;
    color: #6c757d;
}

.service-item.active .service-content p,
.service-item:hover .service-content p,
.service-item.active .service-content h3,
.service-item:hover .service-content h3 {
    color: var(--text-light);
}

.service-readmore-btn {
    opacity: 0;
    visibility: hidden;
    margin-top: 20px;
    transition: all 0.4s ease-in-out;
}

.service-item.active .service-readmore-btn,
.service-item:hover .service-readmore-btn {
    opacity: 1;
    visibility: visible;
}

.service-readmore-btn a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--tertiary-color);
    color: var(--text-light);
    border-radius: 50%;
    transition: all 0.4s ease-in-out;
    text-decoration: none;
}

.service-readmore-btn a:hover {
    color: var(--accent-color);
    background: var(--bg-light);
}

.service-readmore-btn a i {
    font-size: 20px;
    color: inherit;
    transform: rotate(-45deg);
    transition: all 0.4s ease-in-out;
}

.service-readmore-btn a:hover i {
    transform: rotate(0);
}

.section-footer-text {
    margin-top: 30px;
    text-align: center;
}

.section-footer-text p {
    margin-bottom: 0;
    color: var(--text-dark);
}

.section-footer-text span {
    font-size: 14px;
    font-weight: 600;
    text-transform: capitalize;
    color: var(--text-light);
    background: var(--accent-color);
    padding: 3px 10px;
    border-radius: 100px;
    margin-right: 10px;
}

.section-footer-text p a {
    font-weight: 700;
    text-transform: capitalize;
    text-decoration: underline;
    color: var(--accent-color);
    transition: all 0.3s ease-in-out;
}

.section-footer-text p a:hover {
    color: var(--primary-color);
}

/* Our Services Section End */

/* Our Commitment Section Start */
.our-commitment {
    padding: 100px 0;
}

.our-commitment .container-custom {
    border-radius: unset;
    box-shadow: none;
    padding: 0;
    background-color: unset !important;
}

.our-commitment-content {

    display: flex;
    flex-direction: column;
    justify-content: center;
}

.our-commitment-content,
.our-commitment-image {
    height: 100%;
}

.our-commitment-image {
    align-items: flex-end;
    margin: 0 52px;
}

.our-commitment-image figure {
    display: block;
    width: 100%;
    overflow: unset !important;
}

.our-commitment-image img {
    width: 100%;
    aspect-ratio: 1 / 1.415;
    object-fit: cover;
    margin-bottom: -100px;
}

.commitment-list ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px 30px;
}

.commitment-list ul li {
    position: relative;
    width: calc(50% - 15px);
    line-height: 1.5em;
    padding-left: 30px;
}

.commitment-list ul li:before {
    content: '\f058';
    position: absolute;
    font-family: 'Font Awesome 6 Free';
    top: 0;
    left: 0;
    font-weight: 900;
    font-size: 20px;
    color: var(--primary-color);
}

.commitment-item-list {
    border-top: 1px solid var(--divider-color);
    margin-top: 30px;
    padding-top: 30px;
}

.commitment-item-list h3 {
    position: relative;
    font-size: 20px;
    margin-bottom: 15px;
    padding-left: 30px;
    color: var(--text-dark);
}

.commitment-item-list h3::before {
    position: absolute;
    content: '\f058';
    font-family: 'Font Awesome 6 Free';
    top: 0;
    left: 0;
    font-weight: 900;
    font-size: 20px;
    color: var(--primary-color);
}

.commitment-item-list p {
    margin-bottom: 0;
    color: #6c757d;
    font-size: 0.95rem;
    line-height: 1.6;
}

.commitment-btn {
    margin-top: 30px;
}

/* Our Commitment Section End */

/* How It Works Section Start */
.how-it-work {
    max-width: 100%;
    padding: 100px 0;
    position: relative;
    z-index: 99;
}

.how-it-work .container-custom {
    background-color: unset;
    box-shadow: none;
    padding: 0;
}
.container-custom {
    max-width: 92% !important;
}
.dark-section {
    background: linear-gradient(to right, #133363, #050f1f) !important;
}

.dark-section .section-title-content p,
.dark-section .section-title p,
.dark-section .section-title h2,
.dark-section .section-title h1,
.dark-section .work-step-item h3,
.dark-section .work-step-item h2,
.dark-section .work-step-item p {
    color: var(--text-light);
}

.dark-section .section-title h3 {
    color: var(--tertiary-color);
}

.dark-section .section-title h3::before {
    background: var(--text-light);
}

.dark-section .section-title h2 span {
    color: var(--text-light);
}

.section-row {
    margin-bottom: 80px;
}

.work-step-nav {
    margin-bottom: 60px;
}

.work-step-nav .nav-tabs {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 30px;
    border: none;
}

.work-step-nav ul li {
    width: calc(33.33% - 20px);
}

.work-step-nav ul li .nav-link {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: var(--dark-divider-color);
    border: none;
    color: var(--text-light);
    font-size: 20px;
    font-weight: 600;
    line-height: 1.2em;
    padding: 25px;
    border-radius: 20px;
    text-transform: capitalize;
    transition: all 0.3s ease-in-out;
    text-decoration: none;
}

.work-step-nav ul li .nav-link.active,
.work-step-nav ul li .nav-link:hover {
    background: var(--tertiary-color);
    color: var(--text-light);
}

.work-step-nav ul li .nav-link i {
    font-size: 30px;
    margin-bottom: 10px;
    transition: all 0.3s ease-in-out;
}

.work-step-nav ul li .nav-link.active i,
.work-step-nav ul li .nav-link:hover i {
    filter: brightness(0) invert(1);
}

.work-step-content {
    padding-left: 50px;
}

.work-step-item {
    position: relative;
    margin-bottom: 40px;
}

.work-step-item::before {
    position: absolute;
    content: '\f192';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    left: -33px;
    top: 15px;
    font-size: 18px;
    color: var(--tertiary-color);
    z-index: 1;
}

.work-step-item h3 {
    font-size: 16px;
    font-weight: 400;
    opacity: 0.8;
    margin-bottom: 10px;
}

.work-step-item h2 {
    font-size: 20px;
    margin-bottom: 10px;
}

.work-step-item p {
    margin-bottom: 0;
}

.work-step-item::after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
    transform: translate(-25px, 55px);
    border-left: 1px solid var(--tertiary-color);
    width: 1px;
    height: calc(100% + 25px);
}

.work-step-item:last-child::after {
    display: none;
}

.work-step-item:last-child {
    margin-bottom: 0;
}

.work-step-image figure {
    display: block;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
}

.work-step-image img {
    width: 100%;
    aspect-ratio: 1 / 0.646;
    object-fit: cover;
    border-radius: 20px;
}

.work-step-btn {
    margin-top: 30px;
}

/* How It Works Section End */

/* Why Choose Us Section Start */
.why-choose-us {
    padding: 100px 0;
}

.why-choose-us .container-custom {
    background-color: unset;
    border-radius: unset;
    box-shadow: none;
    padding: 0;
}

.why-choose-list {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.why-choose-box {
    width: calc(33.33% - 20px);
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.why-choose-box:nth-child(3n + 2) {
    flex-direction: column-reverse;
}

.why-choose-image,
.why-choose-item {
    width: 100%;
}

.why-choose-image figure {
    display: block;
    border-radius: 20px;
}

.why-choose-image img {
    width: 100%;
    aspect-ratio: 1 / 0.944;
    object-fit: cover;
    border-radius: 20px;
}

.why-choose-item {
    background-color: var(--secondary-color);
    border-radius: 20px;
    padding: 40px;
}

.why-choose-box:nth-child(3n + 2) .why-choose-item {
    background-color: var(--tertiary-color);
}

.why-choose-box:nth-child(3n + 3) .why-choose-item {
    background-color: var(--primary-color);
}

.why-choose-item h2 {
    font-size: 48px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.why-choose-item h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.why-choose-item p {
    margin-bottom: 0;
    color: #6c757d;
}

.why-choose-box:nth-child(3n + 2) .why-choose-item h2,
.why-choose-box:nth-child(3n + 3) .why-choose-item h2,
.why-choose-box:nth-child(3n + 2) .why-choose-item h3,
.why-choose-box:nth-child(3n + 3) .why-choose-item h3,
.why-choose-box:nth-child(3n + 2) .why-choose-item p,
.why-choose-box:nth-child(3n + 3) .why-choose-item p {
    color: var(--text-light);
}

.why-choose-btn {
    margin-top: 30px;
}

.why-choose-btn .btn-default {
    width: 100%;
    text-align: center;
    padding: 17px;
}

.why-choose-btn .btn-default::before {
    display: none;
}

.why-choose-box:nth-child(3n + 2) .why-choose-item .why-choose-btn .btn-default {
    background: var(--primary-color);
    color: var(--bg-light);
}

.why-choose-box:nth-child(3n + 3) .why-choose-item .why-choose-btn .btn-default {
    background: var(--tertiary-color);
}

/* Why Choose Us Section End */

/* Our Testimonials Section Start */
.our-testimonials {
    padding: 100px 0;
}

.our-testimonials .container-custom {
    background-repeat: no-repeat;
    background-size: cover;
}

.review-image-box {
    background: var(--dark-divider-color);
    backdrop-filter: blur(50px);
    -webkit-backdrop-filter: blur(50px);
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: end;
    padding: 30px;
}

.review-box {
    display: flex;
    align-items: center;
    border-right: 1px solid var(--dark-divider-color);
    margin-right: 20px;
    padding-right: 20px;
}

.review-icon img {
    width: 100%;
    max-width: 50px;
}

.review-content p {
    font-size: 18px;
    font-weight: 600;
    line-height: normal;
    color: var(--text-light);
    margin-bottom: 5px;
}

.review-content ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
}

.review-content ul li {
    display: inline-block;
    line-height: normal;
    color: var(--text-light);
    margin-right: 2px;
}

.review-content ul li i {
    font-size: 10px;
    color: var(--text-light);
}

.customer-images {
    display: inline-flex;
    align-items: center;
}

.customer-img {
    position: relative;
    display: inline-block;
    border: 1px solid var(--primary-color);
    border-radius: 50%;
    overflow: hidden;
    margin-left: -20px;
    width: 52px;
    height: 52px;
    z-index: 1;
}

.customer-img:first-child {
    margin: 0;
}

.customer-img figure {
    display: block;
    width: 100%;
    height: 100%;
}

.customer-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.customer-img.add-more {
    background-color: var(--bg-light);
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.customer-img.add-more p {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0;
}

.testimonial-slider {
    position: relative;
}

.testimonial-slider .swiper-wrapper {
    cursor: grab;
}

.testimonial-slider .swiper-wrapper:active {
    cursor: grabbing;
}

.testimonial-item {
    position: relative;
    background: var(--dark-divider-color);
    backdrop-filter: blur(50px);
    -webkit-backdrop-filter: blur(50px);
    border-radius: 20px;
    padding: 40px 35px;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.testimonial-item::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    border-radius: 0px;
    background: var(--tertiary-color);
    transition: all 0.5s ease-in-out;
    height: 100%;
    z-index: 0;
}

.testimonial-slider .swiper-slide-active .testimonial-item::before {
    top: 0;
}

.testimonial-header {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    border-bottom: 1px solid var(--dark-divider-color);
    margin-bottom: 30px;
    padding-bottom: 30px;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-image {
    margin-right: 15px;
}

.author-image figure {
    display: block;
    border-radius: 10px;
}

.author-image img {
    width: 100%;
    max-width: 60px;
    border-radius: 10px;
}

.author-content h3 {
    font-size: 20px;
    text-transform: capitalize;
    color: var(--text-light);
    margin-bottom: 2px;
}

.author-content p {
    color: var(--text-light);
    margin-bottom: 0;
}

.testimonial-quote img {
    width: 100%;
    max-width: 30px;
}

.testimonial-content {
    position: relative;
    z-index: 1;
    flex-grow: 1;
}

.testimonial-content h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 10px;
}

.testimonial-content p {
    font-size: 16px;
    font-weight: 400;
    color: var(--text-light);
    margin: 0;
}

.testimonial-slider .swiper-slide-active .testimonial-item .testimonial-content {
    border-color: var(--dark-divider-color);
}

.testimonial-slider .testimonial-pagination {
    position: relative;
    margin-top: 50px;
    text-align: center;
}

.testimonial-slider .testimonial-pagination .swiper-pagination-bullet {
    position: relative;
    height: 6px;
    width: 6px;
    background: var(--dark-divider-color);
    opacity: 1;
    margin: 0 6px;
    transition: all 0.3s ease-in-out;
}

.testimonial-slider .testimonial-pagination .swiper-pagination-bullet:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 0;
    width: 0;
    border-radius: 50%;
    transition: all 0.3s ease-in-out;
}

.testimonial-slider .testimonial-pagination .swiper-pagination-bullet-active {
    background: var(--text-light);
}

.testimonial-slider .testimonial-pagination .swiper-pagination-bullet-active:before {
    border: 1px solid var(--text-light);
    height: 14px;
    width: 14px;
}

/* Our Testimonials Section End */

/* Our FAQs Section Start */
.our-faqs {
    position: relative;
    /* padding: 100px 0; */
    z-index: 1;
}

.our-faqs .container-custom {
    background-color: unset;
    border-radius: unset;
    box-shadow: none;
    padding: 0;
}

.faqs-content {
    position: sticky;
    top: 30px;
    margin-right: 15px;
}

.faqs-contact-box {
    width: 100%;
    max-width: 480px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
}

.faqs-contact-box-title {
    background: var(--tertiary-color);
    text-align: center;
    padding: 15px 30px;
}

.faqs-contact-box-title h3 {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 0;
}

.faqs-contact-item-box {
    background: var(--primary-color);
    display: flex;
    flex-wrap: wrap;
    gap: 20px 0;
    padding: 20px;
}


.cta-contact-item {
    border-right: 1px solid var(--dark-divider-color);
    margin-right: 40px;
    padding-right: 40px;
}

.cta-contact-header {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.cta-contact-header i {
    font-size: 24px;
    color: var(--text-light);
    margin-right: 10px;
}

.cta-contact-item:last-child {
    margin: 0;
    padding: 0;
    border: none;
}

.cta-contact-header h3 {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 0;
}

.cta-contact-item-content p a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s ease;
}

.cta-contact-item-content p a:hover {
    opacity: 0.8;
}

.accordion-item {
    background: var(--bg-light);
    border: 1px solid var(--divider-color);
    border-radius: 10px;
    margin-bottom: 30px;
    padding: 0;
    overflow: hidden;
    box-shadow: var(--shadow-light);
}

.accordion-item:last-child {
    margin-bottom: 0;
}

.accordion-header .accordion-button {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.111em;
    background: var(--tertiary-color);
    color: var(--text-light);
    padding: 20px 45px 20px 20px;
    transition: all 0.3s ease-in-out;
}

.accordion-header .accordion-button.collapsed {
    color: var(--primary-color);
    background: transparent;
    border-radius: 10px;
}

.accordion-item .accordion-button::after {
    content: '\2b';
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    font-size: 18px;
    background-image: none;
    line-height: normal;
    color: var(--text-light);
    transition: all 0.4s ease-in-out;
}
   .about-section {
      padding: 60px 0;
    }
    .about-badge {
      padding: 6px 14px;
      border-radius: 20px;
      background: #e9f0ff;
      font-size: 14px;
      font-weight: 500;
      width: fit-content;
    }
.contact-info p {
  font-size: 15px;
  line-height: 1.5;
}
    .about-heading {
      font-size: 48px;
      font-weight: 700;
    }
    .about-heading span {
      font-family: "Georgia", serif;
      font-style: italic;
      color: #1c335f;
    }
    .overlay-card {
      background: #e6f0ff;
      border-radius: 14px;
      padding: 20px;
      width: 260px;
      position: absolute;
      bottom: 20px;
      left: 20px;
    }
    .overlay-card img {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      object-fit: cover;
      margin-right: 8px;
    }
    .icon-text {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-top: 20px;
    }
    .btn-custom {
      background: #002f6c;
      color: #fff;
      padding: 12px 26px;
      border-radius: 30px;
    }
    .about-img-wrapper {
      position: relative;
    }
    .about-img-wrapper img {
      border-radius: 12px;
      width: 100%;
      height: auto;
    }
        .about-section {
      padding: 60px 0;
    }
    .about-badge {
      padding: 6px 14px;
      border-radius: 20px;
      background: #e9f0ff;
      font-size: 14px;
      font-weight: 500;
      width: fit-content;
    }
    .about-heading {
      font-size: 48px;
      font-weight: 700;
    }
    .about-heading span {
      font-family: "Georgia", serif;
      font-style: italic;
      color: #1c335f;
    }
    .overlay-card {
      background: #e6f0ff;
      border-radius: 14px;
      padding: 20px;
      width: 260px;
      position: absolute;
      bottom: 20px;
      left: 20px;
    }
    .overlay-card img {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      object-fit: cover;
      margin-right: 8px;
    }
    .icon-text {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-top: 20px;
    }
    .btn-custom {
      background: #002f6c;
      color: #fff;
      padding: 12px 26px;
      border-radius: 30px;
    }
    .about-img-wrapper {
      position: relative;
    }
    .about-img-wrapper img {
      border-radius: 12px;
      width: 100%;
      height: auto;
    }
section.faq-section h4 {
    margin: 16px 0 0 0 !important;
}
.accordion-item .accordion-button.collapsed::after {
    transform: translateY(-50%) rotate(0deg);
    color: var(--primary-color);
}

.accordion-item .accordion-body {
    background: #ffffff;
    border-top: 1px solid var(--divider-color);
    padding: 20px;
}

.accordion-item .accordion-body p {
    color: var(--text-light);
    margin: 0;
}

/* Our FAQs Section End */

/* Our Blog Section Start */
.our-blog {
    padding: 0;
}

.our-blog .container-custom {
    background-color: unset;
    border-radius: unset;
    box-shadow: none;
    padding: 0;
}

.post-item {
    height: calc(100% - 30px);
    margin-bottom: 30px;
    background-color: var(--bg-light);
    border-radius: 20px;
    box-shadow: var(--shadow-light);
    overflow: hidden;
}

.post-featured-image {
    margin-bottom: 20px;
}

.post-featured-image a {
    display: block;
    border-radius: 20px;
    overflow: hidden;
}

.post-featured-image figure {
    display: block;
    margin: 0;
}

.post-featured-image img {
    width: 100%;
    aspect-ratio: 1 / 0.695;
    object-fit: cover;
    border-radius: 20px;
    transition: all 0.5s ease-in-out;
}

.post-item:hover .post-featured-image img {
    transform: scale(1.1);
}

.post-item-body {
    margin: 0 15px;
    padding-bottom: 15px;
}

.post-item-content {
    margin-bottom: 15px;
}

.post-item-content h2 {
    font-size: 20px;
    line-height: 1.4em;
    margin-bottom: 0;
    color: var(--text-dark);
}

.post-item-content h2 a {
    display: inline-block;
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.post-item-content h2 a:hover {
    color: var(--primary-color);
}

.post-item-btn {
    margin-top: 15px;
}

.readmore-btn {
    display: inline-flex;
    align-items: center;
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.readmore-btn::after {
    content: '\f061';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    margin-left: 8px;
    font-size: 14px;
    transform: translateX(0);
    transition: transform 0.3s ease;
}

.readmore-btn:hover {
    color: #5a0a99;
}

.readmore-btn:hover::after {
    transform: translateX(5px);
}

/* Our Blog Section End */

/* Our Appointment Section Start */
.our-appointment {
    padding: 100px 0;
}

.our-appointment .container-custom {
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    background-color: unset;
    box-shadow: none;
}

.appointment-form form .form-control {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5em;
    color: var(--text-dark);
    background-color: var(--bg-light);
    border-radius: 10px;
    padding: 17px 20px;
    border: none;
    outline: none;
    box-shadow: none;
}

.appointment-form form .form-control::placeholder {
    text-transform: capitalize;
    color: var(--text-dark);
}

.appointment-form form .form-group select {
    padding: 16px 30px 16px 20px;
}

.appointment-form form .form-group select option {
    color: var(--primary-color);
}

.appointment-form .contact-form-btn {
    margin-top: 20px;
}

.our-appointment-image {
    position: relative;
    border-radius: 20px;
    margin-left: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
}

.our-appointment-image figure {
    display: block;
    margin: 0;
}

.our-appointment-image figure::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, rgba(123, 0, 211, 0) 37.07%, rgba(123, 0, 211, 0.8) 100%);
    width: 100%;
    height: 100%;
}

.our-appointment-image figure img {
    width: 100%;
    aspect-ratio: 1 / 0.967;
    object-fit: cover;
}

.open-time-box {
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 30px;
    display: flex;
    align-items: center;
    z-index: 1;
}

.open-time-box .icon-box {
    background: var(--bg-light);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    transition: all 0.4s ease-in-out;
}

.our-appointment-image:hover .open-time-box .icon-box {
    background: var(--primary-color);
}

.open-time-box .icon-box i {
    font-size: 35px;
    color: var(--primary-color);
    transition: all 0.4s ease-in-out;
}

.our-appointment-image:hover .open-time-box .icon-box i {
    color: var(--text-light);
}

.open-time-box-content {
    width: calc(100% - 80px);
}

.open-time-box-content p {
    color: var(--text-light);
    margin-bottom: 2px;
    font-size: 1rem;
}

.open-time-box-content p:last-child {
    margin-bottom: 0;
}

/* Our Appointment Section End */

/* Main Footer Section Start */
.main-footer-box {
    padding: 80px 0 0;
}

.footer-header {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px 30px;
    border-bottom: 1px solid var(--dark-divider-color);
    margin-bottom: 60px;
    padding-bottom: 60px;
}

.footer-header .section-title {
    width: calc(70% - 15px);
    margin: 0;
}

.footer-header .section-title h2 {
    color: var(--text-light);
}

.footer-header .section-title p {
    color: var(--text-light);
}

.footer-header .book-consult-circle {
    width: calc(30% - 15px);
    text-align: right;
}

.about-footer {
    margin-right: 4.688vw;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo img {
    width: 100%;
    max-width: 152px;
}

.about-footer-content {
    margin-bottom: 30px;
}

.about-footer-content p {
    color: var(--text-light);
    margin-bottom: 0;
}

.footer-social-links ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-social-links ul li {
    display: inline-block;
    margin-right: 12px;
}

.footer-social-links ul li:last-child {
    margin-right: 0;
}

.footer-social-links ul li a {
    width: 38px;
    height: 38px;
    color: var(--text-light);
    border: 1px solid var(--text-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease-in-out;
}

.footer-social-links ul li a:hover {
    color: var(--tertiary-color);
    border-color: var(--tertiary-color);
}

.footer-social-links ul li a i {
    font-size: 18px;
    color: inherit;
}

.footer-links-box {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
}

.footer-links h3 {
    font-size: 20px;
    color: var(--text-light);
    text-transform: capitalize;
    margin-bottom: 30px;
}

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

.footer-links ul li {
    color: var(--text-light);
    line-height: 1.6em;
    margin-bottom: 15px;
}

.footer-links ul li:last-child {
    margin-bottom: 0;
}

.footer-links ul li a {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
}

.footer-links ul li a:hover {
    color: var(--tertiary-color);
}

.footer-newsletter-form .form-group {
    display: flex;
    background: var(--dark-divider-color);
    border-radius: 10px;
    padding: 5px;
}

.footer-newsletter-form .form-group .form-control {
    width: 70%;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.4em;
    color: var(--text-light);
    background: transparent;
    border: none;
    border-radius: 0;
    outline: none;
    box-shadow: none;
    padding: 12px 20px;
}

.footer-newsletter-form .form-group .form-control::placeholder {
    color: var(--text-light);
}

.footer-newsletter-form .form-group .btn-default {
    width: 30%;
    padding: 17px 20px;
}

.footer-newsletter-form .form-group .btn-default::before {
    display: none;
}

.footer-privacy-policy ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 15px 30px;
    border-top: 1px solid var(--dark-divider-color);
    padding-top: 30px;
    margin-top: 30px;
}

.footer-links.footer-privacy-policy ul li {
    position: relative;
    margin: 0;
}
.table-responsive td {
    padding: 12px;
}
.footer-privacy-policy ul li:last-child:before {
    display: none;
}

.footer-privacy-policy ul li a {
    color: inherit;
}

.footer-copyright-text {
    text-align: center;
    padding: 15px 0;
    color: var(--text-dark);
}

.footer-copyright-text p {
    margin-bottom: 0;
}

/* Main Footer Section End */

/* Media Queries Start */
@media (max-width: 1024px) {
    .container-custom {
        padding: 2rem;
    }

    .about-us-images {
        padding: 0 40px 40px 50px;
    }

    .about-experience-box {
        padding: 15px;
        max-width: 150px;
    }

    .about-experience-box .about-experience-content h3 {
        font-size: 18px;
    }

    .about-us-img-2 {
        right: 20px;
        width: 45%;
        max-width: 180px;
        border-width: 6px;
    }

    .book-consult-circle a {
        width: 120px;
        height: 120px;
        font-size: 0.8rem;
    }

    .book-consult-circle a i {
        font-size: 1.5rem;
    }

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

    .service-item {
        padding: 20px;
        height: auto;
    }

    .service-body .icon-box {
        margin-bottom: 30px;
    }

    .service-body .icon-box img {
        max-width: 40px;
    }

    .service-content {
        transform: translateY(0);
    }

    .service-readmore-btn {
        opacity: 1;
        visibility: visible;
    }

    .our-commitment-image {
        margin: 0 30px;
    }

    .our-commitment-image img {
        margin-bottom: -70px;
    }

    .commitment-list ul li {
        width: 100%;
        padding-left: 0;
        text-align: center;
    }

    .commitment-list ul li:before {
        position: static;
        margin-right: 0.5rem;
    }

    .section-row {
        margin-bottom: 40px;
    }

    .work-step-nav {
        margin-bottom: 40px;
    }

    .work-step-nav ul li .nav-link {
        padding: 15px;
        font-size: 16px;
    }

    .work-step-nav ul li .nav-link i {
        font-size: 25px;
    }

    .work-step-content {
        padding-left: 0;
    }

    .work-step-item::before {
        left: 0;
    }

    .work-step-item::after {
        left: 10px;
    }

    .why-choose-box {
        width: calc(50% - 15px);
    }

    .review-image-box {
        padding: 20px;
        justify-content: center;
        flex-wrap: wrap;
    }

    .review-box {
        border-right: none;
        padding-right: 0;
        margin-right: 0;
        margin-bottom: 15px;
    }

    .customer-images {
        justify-content: center;
    }

    .faqs-content {
        position: static;
        margin-right: 0;
        margin-bottom: 3rem;
    }

    .faqs-contact-box {
        max-width: none;
    }

    .post-item-body {
        margin: 0 10px;
    }

    .our-appointment-image {
        margin-left: 0;
        margin-top: 30px;
    }

    .footer-header {
        flex-direction: column;
        text-align: center;
    }

    .footer-header .section-title {
        width: 100%;
    }

    .footer-header .book-consult-circle {
        width: auto;
        text-align: center;
    }

    .about-footer {
        margin-right: 0;
        margin-bottom: 30px;
        text-align: left;
    }

    .footer-social-links ul {
        justify-content: left;
    }

    .footer-links {
        text-align: left;
        margin-bottom: 30px;
    }

    .footer-links h3 {
        text-align: left;
    }

    .footer-links ul {
        align-items: left;
        justify-content: left;
    }

    .footer-newsletter-form .form-group {
        flex-direction: column;
    }

    .footer-newsletter-form .form-group .form-control,
    .footer-newsletter-form .form-group .btn-default {
        width: 100%;
    }

    .footer-newsletter-form .form-group .btn-default {
        margin-top: 10px;
    }

    .footer-privacy-policy ul {
        justify-content: center;
    }

    .footer-privacy-policy ul li::before {
        display: none;
    }

    .marquee-section {
        padding: 15px 0 !important;
    }
}

@media (max-width: 768px) {
   

    .container-custom {
        padding: 1.5rem;
        margin-top: 1rem;
        margin-bottom: 1rem;
    }

    .section-title {
        text-align: center;
    }

    .section-title h3 {
        justify-content: center;
        padding-left: 0;
    }

    .section-title h3::before {
        display: none;
    }

    .section-title h2 {
        font-size: 32px;
    }

    .section-content-btn .section-btn {
        text-align: center;
    }

    .about-us-images {
        padding: 0 20px 20px 30px;
        margin-bottom: 3rem;
    }

    .about-us-img-1 {
        max-width: none;
    }

    .about-experience-box {
        position: static;
        transform: none;
        margin: 1rem auto;
        max-width: 100%;
        text-align: center;
        animation: none;
    }

    .about-experience-box .icon-box {
        display: flex;
        justify-content: center;
    }

    .about-us-img-2 {
        bottom: -1.5rem;
        right: 50%;
        transform: translateX(50%);
        width: 45%;
        max-width: 180px;
        border-width: 5px;
    }

    .about-us-body {
        flex-direction: column;
        gap: 20px;
    }

    .about-list-btn {
        width: 100%;
    }

    .about-list ul li {
        justify-content: center;
        text-align: center;
        padding-left: 0;
    }

    .about-list ul li:before {
        position: static;
        margin-right: 0.5rem;
    }

    .about-btn {
        text-align: center;
    }

    .book-consult-circle {
        position: static;
        margin: 2rem auto 0;
        width: fit-content;
    }

    .book-consult-circle a {
        width: 130px;
        height: 130px;
    }

   .our-services {
    padding: 60px 0 20px 0;
}
.our-commitment {
    padding: 0px 0 !important;
}
.how-it-work {
    padding: 12px 0 !important;
}
.our-testimonials {
    padding: 10px 0 !important;
}
.our-appointment {
    padding: 10px 0 !important;
}
.why-choose-us {
    padding: 0px 0 !important;
}
    .service-item {
        margin-bottom: 20px;
    }

    .service-item:last-child {
        margin-bottom: 0;
    }

    .our-commitment-content {
        text-align: center;
        margin-bottom: 20px;
    }

    .our-commitment-image {
        margin: 0;
        align-items: center;
    }

    .our-commitment-image img {
        margin-bottom: -50px;
    }

    .commitment-list ul li {
        justify-content: center;
    }

    .commitment-item-list h3 {
        padding-left: 0;
        text-align: center;
    }

    .commitment-item-list h3::before {
        position: static;
        margin-right: 0.5rem;
    }

    .commitment-item-list p {
        text-align: center;
    }

    .commitment-btn {
        text-align: center;
    }

    .work-step-nav .nav-tabs {
        flex-direction: column;
        gap: 10px;
    }

    .work-step-nav ul li {
        width: 100%;
    }

    .work-step-nav ul li .nav-link {
        flex-direction: row;
    }

    .work-step-nav ul li .nav-link i {
        margin-bottom: 0;
        margin-right: 10px;
    }

    .work-step-item::before {
        left: -23px;
    }

    .work-step-item::after {
        /* left: 0; */
    }

    .faqs-contact-item-box {
        padding: 20px;
    }

    .cta-contact-item {
        margin-right: 0px;
        padding-right: 5px;
    }

    .cta-contact-item:last-child {
        padding: 0 0 0 15px;
    }

    .why-choose-box {
        width: 100%;
    }

    .review-image-box {
        padding: 15px;
    }

    .review-box {
        flex-direction: column;
        text-align: center;
    }

    .review-icon {
        margin-right: 0;
        margin-bottom: 10px;
    }

    .customer-img {
        width: 45px;
        height: 45px;
    }

    .customer-img.add-more {
        width: 45px;
        height: 45px;
    }

    .customer-img.add-more p {
        font-size: 16px;
    }

    .testimonial-item {
        padding: 30px 25px;
    }

    .testimonial-header {
        flex-direction: column;
        text-align: center;
    }

    .testimonial-author {
        flex-direction: column;
    }

    .author-image {
        margin-right: 0;
        margin-bottom: 10px;
    }

    .author-image img {
        max-width: 50px;
    }

    .testimonial-quote {
        margin-top: 15px;
    }

    .faqs-contact-box-title h3 {
        font-size: 18px;
    }
.section-subtitle {
    text-align: center !important;
    display: block !important;
        font-size: 19px !important;
}
.section-title {
    font-size: 31px !important;
}
.service-content {
    bottom: -9px !important;;
}
.choose-us-content h2 {
    font-size: 26px !important;
}
.choose-us-content h5 {
    margin: 0;
    color: #0b1830;
    font-weight: 600;
    font-size: 15px !important;
}
.choose-us-image {
    height: auto !important;
}
.products-section h2 {
    font-size: 26px !important;
}
.section-badge {
    display: block !important;
    text-align: center !important;
}
.owl-nav {
    display: none !important;
}
.btn-custom {
    margin: 0 0 35px 0 !important;
}
.content-box {
 margin: 0 !important;
}
.accordion-header .accordion-button {
    font-size: 14px !important;
    line-height: 23px !important;
}
.col-lg-6.bg-light-green.p-5.d-flex.align-items-center {
    padding: 20px 20px 20px 20px !important;
}
    .cta-contact-header h3 {
        font-size: 16px;
    }

    .cta-contact-item-content p a {
        font-size: 14px;
    }

    .faq-accordion .accordion-header .accordion-button {
        font-size: 16px;
        padding: 15px 40px 15px 15px;
    }

    .faq-accordion .accordion-item .accordion-button::after {
        font-size: 16px;
        right: 15px;
    }

    .faq-accordion .accordion-item .accordion-body {
        padding: 15px;
    }

    .faq-accordion .accordion-item .accordion-body p {
        font-size: 0.9rem;
    }

    .post-item-body {
        margin: 0;
        padding: 0 10px 10px 10px;
    }

  .our-blog {
    padding: 10px 0 0 0 !important;
}

    .open-time-box {
        flex-direction: column;
        text-align: center;
        left: 15px;
        right: 15px;
        bottom: 15px;
    }

    .main-footer-box {
        padding: 20px 0 0;
    }

    .open-time-box .icon-box {
        margin-right: 0;
        margin-bottom: 10px;
    }

    .open-time-box-content {
        width: 100%;
    }

    .footer-links {
        width: 100%;
    }

    .footer-links.footer-privacy-policy ul {
        flex-direction: column;
        gap: 10px;
        padding-top: 20px;
        margin-top: 20px;
    }
}

@media (max-width: 480px) {
    .section-title h2 {
        font-size: 28px;
    }

    .btn-default {
        padding: 15px 40px 15px 20px;
        font-size: 14px;
    }

    .btn-default::before {
        right: 20px;
        font-size: 16px;
    }

    .main-heading {
        font-size: 1.5rem;
    }

    .about-btn .btn-default {
        padding: 1rem 2.2rem;
        font-size: 0.9rem;
    }

    .service-item {
        padding: 15px;
    }

    .service-body .icon-box {
        margin-bottom: 30px;
    }

    .service-body .icon-box img {
        max-width: 35px;
    }

    .service-content-info h3 {
        font-size: 18px;
    }

    .section-footer-text p {
        font-size: 1rem;
    }

    .commitment-item-list h3 {
        font-size: 18px;
    }

    .commitment-item-list p {
        font-size: 0.9rem;
    }

    .work-step-nav ul li .nav-link {
        font-size: 14px;
        padding: 10px;
    }

    .work-step-nav ul li .nav-link i {
        font-size: 20px;
    }

    .work-step-item h3 {
        font-size: 14px;
    }

    .work-step-item h2 {
        font-size: 18px;
    }

    .work-step-item p {
        font-size: 0.9rem;
    }

    .footer-header .section-title h2 {
        font-size: 28px;
    }

    .footer-links h3 {
        font-size: 18px;
    }

    .footer-links ul li {
        font-size: 0.9rem;
    }

    .footer-newsletter-form .form-group .form-control {
        font-size: 14px;
    }

    .footer-newsletter-form .form-group .btn-default {
        font-size: 14px;
    }

    .footer-copyright-text p {
        font-size: 0.9rem;
    }
}

/* Media Queries End */

#sequence {
    width: 100%;
    float: left;
    background: var(--dark-color-bg);
    position: fixed;
    bottom: 0px;
    z-index: 100;
    padding: 0;
    color: var(--text-light) !important;
    margin: 0 !important;
    box-shadow: var(--shadow-medium);
}

#sequence a {
    width: 33.3333%;
    float: left;
    text-align: center;
    padding: 10px 0;
    font-size: 16px;
    color: var(--text-light) !important;
    font-weight: 600;
    text-decoration: none !important;
    border-right: 1px solid var(--dark-divider-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

#sequence a:last-child {
    border-right: none;
}

#sequence a:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.animated-icon {
    font-size: 24px;
    margin-bottom: 5px;
    animation: bounce 2s infinite ease-in-out;
}

#callll .animated-icon {
    animation-delay: 0s;
}

#whatsappp .animated-icon {
    animation-delay: 0.2s;
}

.custom-primary .animated-icon {
    animation-delay: 0.4s;
}

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

.modal-content {
    background-color: var(--bg-light);
    color: var(--text-dark);
    border-radius: var(--card-border-radius);
    box-shadow: var(--shadow-medium);
    overflow: hidden;
}

.modal-header {
    border-bottom: 1px solid var(--divider-color);
    color: var(--text-dark);
    background-color: var(--secondary-color);
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-title {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.5rem;
}

.btn-close {
    color: var(--text-dark);
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.btn-close:hover {
    opacity: 1;
    color: var(--primary-color);
}

.modal-body {
    padding: 50px 45px 15px 45px;
}

.custom-primary {
    background-color: var(--accent-color);
    color: var(--text-light) !important;
    border-radius: var(--button-border-radius);
    padding: 10px 0;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.custom-primary:hover {
    background-color: darken(var(--accent-color), 10%);
    transform: translateY(-2px);
}

input.wpcf7-form-control.wpcf7-text,
textarea.wpcf7-form-control.wpcf7-textarea {
    width: 100%;
    padding: 10px 15px;
    border-radius: 8px;
    border: 1px solid var(--divider-color);
    background-color: var(--bg-light);
    color: var(--text-dark);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

input.wpcf7-form-control.wpcf7-text:focus,
textarea.wpcf7-form-control.wpcf7-textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(var(--primary-color-rgb), 0.25);
    outline: none;
}

/* inner-pages css
 */

h1.inner-heading {
    color: #04050a;
    font-weight: bold;
    font-size: 32px;
}
p.inner-text {
    color: #5b6873;
    font-size: 17px;
    line-height: 1.6;
    font-weight: 500;
}
h2.heading-content {
    font-size: 32px;
    font-weight: bold;
    color: #1a2162;
}
.card-body.text-center i {
    color: #182166;
    font-size: 68px;
}
.card {
    box-shadow: 30px 30px 30px rgb(44 44 44 / 8%);
	border:none;
}
span.inner-highlighted {
    color: #5b5a5a;
    font-size: 18px;
    font-weight: bold;
}
 .inner-icons i {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(254, 178, 216, 1) 0%, rgb(242 242 242) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}
.inner-icons i {
    font-size: 40px;
    color: #f153a7;
}
li.lead-text {
    font-size: 17px;
    font-weight: 600;
     color: #5b6873;
}
section.inner-pages {
    margin-top: 50px;
}
@media(max-width:767px){
section.inner-pages {
    margin-top: 15px;
}
	}
/* Breadcrumb css */
section.breadcrumb-section {
    position: relative;
    padding: 65px 0;
    background-image: url(https://hivends.org/wellistics/wp-content/uploads/2025/07/breadcrumb-img.jpg);
    overflow: hidden;
    z-index: 1;
}

section.breadcrumb-section .breadcrumb-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(0 34 54 / 78%);
    z-index: -1;
}
section.breadcrumb-section .heading-text {
  position: relative;
  display: inline-block;
  animation: textReveal 1.5s ease-out forwards;
  opacity: 0;
  transform: translateY(20px);
}

section.breadcrumb-section .heading-underline {
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, #ff6b6b, #ffa502);
  animation: underlineGrow 1.2s 0.5s ease-out forwards;
}

section.breadcrumb-section .breadcrumb {
  background: transparent;
  padding: 0;
  font-size: 1.1rem;
}
span.breadcrumb-current {
    color: #ffffff;
    font-size: 44px;
    font-weight: bolder;
}

section.breadcrumb-section .breadcrumb-item {
  position: relative;
  margin: 0 10px;
}


/* Archive Product Page Styling */
.wellistics-product-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: var(--bg-light);
}

.wellistics-product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.wellistics-product-card .product-image-link {
    display: block;
    position: relative;
    padding-top: 100%;
    overflow: hidden;
}

.wellistics-product-card .wrapper-image,
.wellistics-product-card .product-hover-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: opacity 0.4s ease-in-out;
}

.wellistics-product-card .product-hover-image {
    opacity: 0;
}

.wellistics-product-card .product-image-link:hover .wrapper-image {
    opacity: 0;
}

.wellistics-product-card .product-image-link:hover .product-hover-image {
    opacity: 1;
}

.wellistics-product-card .card-body {
    padding: 1.5rem;
}

.wellistics-product-card .card-title {
    font-weight: 700;
    font-size: 1.25rem;
}

.wellistics-btn-primary {
    background: var(--button-main-color);
    color: var(--text-light);
    border: none;
    border-radius: var(--button-border-radius);
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.wellistics-btn-primary:hover {
    background: darken(var(--button-main-color), 10%);
    background: #d49a1f;
    color: var(--text-light);
    transform: translateY(-2px);
}

/* --- Single Product Page Enhancements --- */

.wellistics-single-product {
    background-color: var(--secondary-color); /* Light background for the section */
    padding: 80px 0; /* More vertical spacing */
}

.wellistics-single-product .container {
    background-color: var(--bg-light); /* White background for the content area */
    border-radius: var(--card-border-radius);
    box-shadow: var(--shadow-medium);
    padding: 3rem; /* Inner padding */
}

@media (max-width: 767.98px) {


    .wellistics-single-product .container {
        padding: 1.5rem; /* Adjust padding for smaller screens */
    }
}

.wellistics-single-product .product-image-container {
    background-color: var(--bg-light);
    border: 1px solid var(--divider-color); /* Subtle border */
    padding: 1.5rem; /* Padding inside the image container */
    display: flex; /* For centering content */
    align-items: center; /* For centering content */
    justify-content: center; /* For centering content */
}

.wellistics-single-product .product-image-container img {
    max-height: 450px; /* Limit image height to prevent excessive size */
    width: auto; /* Allow width to adjust */
}

/* WFI text positioning adjustments for single product */
.wellistics-single-product .wfi-text {
    font-size: 2.2em; /* Slightly larger for single product */
    padding: 15px;
}

.wellistics-single-product .wfi-text.horizontal {
    top: 30px;
    left: 30px;
}

.wellistics-single-product .wfi-text.vertical {
    top: 50%;
    right: 30px; /* Slightly more space from edge */
}

/* Key Highlights Styling */
.key-highlights {
    padding: 1.5rem;
    background-color: var(--secondary-color); /* Light background for highlights */
    border-radius: var(--button-border-radius); /* Softer corners */
    box-shadow: var(--shadow-light);
}
section#manufacturig {
    margin: 50px 0 0 0;
}
.key-highlights h4 {
    border-bottom: 2px solid var(--divider-color);
    padding-bottom: 0.75rem;
    margin-bottom: 1rem;
}

.key-highlights ul li {
    font-size: 1.1rem;
    color: var(--text-dark);
    line-height: 1.6;
}
	.headless h3 {
    font-size: 30px;
    margin: 0 0 15px 0;
    text-align: center;
    font-weight: 700;
    margin: 0 0 30px 0;
}
.key-highlights ul li i {
    font-size: 1.3rem; /* Adjust icon size */
}

/* Custom button for interaction */
.wellistics-btn-primary.btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1.25rem;
    font-weight: 700;
}
.plant-machinery h2 {
  font-size: 2.2rem;
  color: #111;
}

.plant-machinery .underline {
  width: 60px;
  height: 4px;
  background-color: #d12727;
  border: none;
}

.plant-machinery p {
  max-width: 900px;
  margin: 0 auto;
  font-size: 1rem;
  color: #444;
}
.section-title p strong {
    font-size: 30px;
    font-weight: 600;
    color: #1b334b;
}
.cta-contact-item p {
    color: #fff;
}
body {
    background: #fff !important;
}
section#contacts {
    margin: 60px 0 0 0;
}
.hettel h6 {
    font-size: 30px;
    font-style: italic;
    font-weight: 700;
    color: #fff;
    background: #000747;
    text-align: center;
    margin: 20px 0 0 0;
    padding: 15px 0 15px 0;
    border-radius: 13px;
}
.our-appointment-image figure img {
    width: 100%;
    aspect-ratio: unset !important;
    object-fit: cover;
}
div#tertiary {
    display: none;
}
body.home.blog.logged-in.admin-bar.wp-embed-responsive.wp-theme-twentythirteen.theme-twentythirteen.woocommerce-js.mega-menu-primary.single-author.sidebar.customize-support.cht-in-desktop.cht-landscape {
    background: #fff !important;
}
img.about-capsule_an {
    height: 150px;
    opacity: .9;
    position: absolute;
    width: 170px;
    z-index: 1;
    top: -140px;
    left: 349px;
}
.floating-img, .floating-img_22 {
    -webkit-animation: floater 2.5s infinite;
    animation: floater 2.5s infinite;
    -webkit-transform: translateY(-25%);
    transform: translateY(-25%);
    transition: .8s ease;
}
.about-us-content {
    position: relative;
}
@keyframes floater {
    0% {
    -webkit-transform: translateY(-25%);
    transform: translateY(-25%);
    transition: .8s ease;
}
50% {
    -webkit-transform: translateY(25%);
    transform: translateY(25%);
    transition: .8s ease;
}
}
.two {
    width: 100%;
    height: 95vh;
    background: url(https://meshcuredrugs.com/wp-content/themes/twentythirteen/images/about-bg.png);
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
}

img#fanta {
    position: absolute;
    z-index: 111;
    width: 100% !important;
}

.right-two h1 {
    font-size: 40px;
    color: #ffffff;
    font-weight: 700;
    text-shadow: 2px 0px #000000;
    line-height: 42px;
}
.right-two {
    margin: 150px 0 0 0;
}
.right-two h3 {
    color: #22296a;
}
.right-two p {
    margin: 0 0 30px 0 !important;
    color: #ffffff !important;
    text-shadow: 1px 0 #000000;
    font-weight: 700;
    text-align: center !important;
}
.right-two .section-title h3::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    background: #232966;
    border-radius: 50%;
    width: 8px;
    height: 8px;
}
.right-four img {
    width: 22%;
}
.bottle {
    position: absolute;
    top: 172px;
    width: 21%;
    right: 450px;
    z-index: 1111111;
}
section#grsaa {
    position: relative;
    top: -166px;
    z-index: 11111111;
}
.man {
    position: absolute;
    width: 14%;
    left: 568px;
    top: 865px;
    z-index: 11111111;
}
.girl {
    position: absolute;
    top: 114px;
    max-width: 28% !important;
    right: 344px;
}
    .right-three h2 {
      font-size: 30px;
      font-weight: 600;
      color: #2d3770;
      margin: 65px 0 0 0;
    }

.left-two {
    position: relative;
    overflow: visible;
    height: 100%;
    min-height: 400px;
    right: -128px !important;
    top: 170px !important;
}
#fanta {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    transition: transform 0.3s ease;
    z-index: 10;
}
.right-four {
    animation: 1.7s linear infinite Moveleftright;
    position: relative;
    z-index: 11111111;
    top: 75px !important;
    left: 154px;
}
.tree {
    position: relative;
    width: 30%;
    z-index: 11111;
    left: -129px;
    top: -220px;
}
.Welcome-text {
    position: absolute;
    top: 790px;
    right: -30px;
    width: 53%;
}
.Welcome-text h2 {
    font-size: 30px;
}
.grsslo {
    position: relative;
    top: -294px;
    z-index: 111111111;
    left: -78px;
    width: 110%;
}
.img-fluid {
    max-width: 100%;
    height: auto;
}

@keyframes Moveleftright{
0%, 100% {
    top: 0;
}
	50% {
    top: 15px;
}
}
@media  (min-width: 767px) and (max-width: 1366px) {
	div#mega-menu-wrap-primary a {
    font-size: 14px !important;
}
	.scroll-text {
    font-size: 2.2rem !important;
}
	.scroll-text-bar {
    width: 50px !important;
}
	.btn-book-appointment {
    font-size: 14px !important;
}
.bottle {
    position: absolute;
    top: 160px !important;
    width: 25% !important;
    right: 354px !important;
}
.right-two h1 {
    font-size: 27px !important;
    font-weight: 600;
}
	.right-two {
    margin: 100px 0 0px 0 !important;
}
.right-two h1 {
    line-height: 33px !important;
}
.tree {
    position: relative;
    left: -85px !important;
    top: -50px !important;
}
	.girl {
    position: absolute;
    top: 125px !important;
    max-width: 27% !important;
    right: 344px;
}
img#fanta {
    width: 100% !important;
}
	.left-two {
    position: relative;
    overflow: visible;
    height: 100%;
    min-height: 400px;
    margin: 50px 0 0 0 !important;
}
.grsslo {
    top: -130px !important;
    left: -55px !important;
}
.about-us-body {
    top: -100px !important;
}
.right-four {
    top: 190px !important;
}
.two {
    height: 111vh !important;
}
.about-us-content {
    margin: 60px 0 0 36px !important;
    width: 80% !important;
}
.left-two {
    top: 40px !important;
}
	.section-title h2 {
    font-size: 30px !important;
}

.section-title p {
    margin-top: 5px;
    margin-bottom: 20px;
    color: #000;
    font-size: 14px !important;
    line-height: 25px !important;
}
.right-two p {
    color: #ffffff !important;
}
	section#manufacturig {
    margin: 70px 0 0 0;
}

	.about-list ul li {
    position: relative;
    line-height: 1.3em !important;
    padding-left: 30px;
    margin-bottom: 20px;
    color: #495057;
    font-size: 14px !important;
}
.man {
    position: absolute;
    width: 10% !important;
    left: 521px !important;
    top: 909px !important;
}
.Welcome-text {
    position: absolute !important;
    top: 650px !important;
    width: 100% !important;
    left: 0 !important;
}
.our-services {
    padding: 0;
    margin: 30px 0 0 0 !important;
}
}

    @media (max-width: 991px) {
      .choose-us-content {
        text-align: center;
      }
        .appointment-section .bg-image {
    border-radius: 20px 20px 0 0;
  }
  .bg-light-green {
    border-radius: 0 0 20px 20px;
  }
      .choose-us-content h2 {
        font-size: 36px;
      }
      .choose-us-image {
        height: 400px;
           }
    }
@media  (min-width: 1366px) and (max-width: 1500px) {
	.container {
    max-width: 88% !important;
}
.Welcome-text h2 {
    font-size: 35px !important;
}

.Welcome-text {
    position: absolute;
    top: 720px;
    width: 100% !important;
       left: 0 !important;
}
.right-two h1 {
    font-size: 32px !important;
    font-weight: 600;
}
.left-two {
    margin: 26px 0 0 0 !important;
}
.right-four {
    z-index: 11111111;
    top: 150px !important;
    left: 133px !important;
}
.two {
    height: 100vh !important;
}
.tree {
    top: -82px !important;
}
.grsslo {
    top: -182px !important;
}

.right-four img {
    width: 20% !important;
}
	.scroll-text-bar {
    width: 55px !important;
 
}
	.right-two {
    margin: 130px 0 0 0 !important;
}
.left-two {
    top:130px !important;
}

	.girl {
    position: absolute;
    top: 112px !important;
    max-width: 28% !important;
    right: 344px;
}
.bottle {
    position: absolute;
    top: 190px !important;
    width: 22% !important;
    right: 432px !important;
}
	.scroll-text {
    font-size: 2.5rem !important;
 
}
.man {
    position: absolute;
    width: 10% !important;
    left: 570px;
    top: 938px !important;
}
.about-us-body {
    top: -144px !important;
}
.about-us-content {
    margin: -90px 0 0 0 !important;
}
}
@media (max-width: 767px) {
	div#mega-menu-wrap-primary {
    z-index: 111111111 !important;
}
	.career-diabetic-txt {
    padding: 23px 19px !important;
}
	.container-fluid.dark-section {
    padding: 60px 34px !important;
}
		section.breadcrumb-section .breadcrumb {
    background: transparent;
    padding: 20px 0 20px 0 !important;
    font-size: 1.1rem;
}
.right-two p {
    text-align: left !important;
}
		span.breadcrumb-current {
    color: #ffffff;
    font-size: 30px !important;
    font-weight: bolder;
}
.right-two {
    margin: 114px 0 0 0 !important;
}
	.marquee-section {
    margin: 0px 0px 0 0 !important;
}
.left-two {
    position: relative;
    overflow: visible;
    height: 100%;
    min-height: 400px;
    margin: 0px 0 0 0 !important;
    left: 111px !important;
    top: 98px !important;
}
	#sequence {
    z-index: 124 !important;
}
.about-section {
    padding: 0px 15px !important;
}
  .feature-card {
    padding: 30px 20px;
  }
  .about-heading {
    font-size: 28px !important;
}
  .feature-icon {
    width: 70px;
    height: 70px;
  }
  .feature-icon i {
    font-size: 1.75rem;
  }
  .feature-card h4 {
    font-size: 1.1rem;
  }
.right-four {
    animation: 1.7s linear infinite Moveleftright;
    position: relative;
    z-index: 111 !important;
    top: 120px !important;
    left: 80px !important;
}
.man {
    position: absolute;
    width: 25% !important;
    left: 293px !important;
    top: 771px !important;
}
.bottle {
    position: absolute;
    top: 390px !important;
    width: 49% !important;
    left: 241px !important;
}
img.about-capsule_an {
    height: 80px !important;
    top: -250px !important;
    left: 201px !important;
    width:80px !important;
}
.grsslo {
    top: -100px !important;
}
	.girl {
    position: absolute;
    top: 369px !important;
    max-width: 51% !important;
    left: 192px !important;
    z-index: -11 !important;
}
  .service-img img {
    height: 220px;
  }
.about-us-body {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 30px;
    position: relative;
    top: 10px !important;
}
.about-us-content {
    margin: -120px 0 0 0 !important;
}
.Welcome-text {
    display: none !important;
}
   .products-section h2 {
        font-size: 30px;
      }
	body.home.blog.logged-in.admin-bar.wp-embed-responsive.wp-theme-twentythirteen.theme-twentythirteen.woocommerce-js.mega-menu-primary.single-author.sidebar.customize-support.cht-in-desktop.cht-portrait {
    background: #fff !important;
}
.one {
    width: 100%;
    height: 62vh !important;
    background-size: cover;
    background-position: center;
    background-blend-mode: multiply;
}
img#fanta {
    position: absolute;
    z-index: 111;
    width: 84% !important;
    margin: 0px 0 0 0px;
    left: -25%;
    top: -60px;
}
section#grsaa {
    top: -40px!important;
}
.marquee-section {
    top: -44px !important;
}
	.one .section-title {
    text-align: left !important;
}
.how-it-work .container-custom {
    padding: 19px 0 40px 0 !important;
}
.right-two h1 {
    font-size: 20px !important;
    text-shadow: 0px 0px #000000 !important;
    text-align: left !important;
    line-height: 30px;
}
	.scroll-text {
    font-size: 20px !important;
}
	.scroll-text-bar {
    width: 50px !important;
}
}

  #typewriter-text {
    font-size: 2rem;
    font-weight: bold;
    overflow: hidden;
  }

  @keyframes blinkCursor {
    50% {
      border-color: transparent;
    }
  }
.container-fluid.dark-section {
    padding: 60px 80px;
}
.map iframe {
    width: 100%;
    margin: 45px 0 0 0;
    border-radius: 17px;
}
.table-responsive th {
    background: #e13e94;
    color: #fff;
    padding: 12px;
}
.table-responsive td {
    padding: 12px;
}
.table-responsive {
    margin: 45px 0 45px 0px;
}
.career-diabetic-txt {
    padding: 60px 60px;
    box-shadow: rgba(0, 0, 0, .24) 0 3px 8px;
    background: #f5f5f5;
    transition: 0.4s;
    text-align: justify;
    margin: 60px 0;
}
section#career-form {
    background: #832667;
    border: 4px solid #832667;
    padding: 20px;
    color: #fff;
    border-radius: 5px;
}
input.wpcf7-form-control.wpcf7-submit.has-spinner.submitBtn {
    width: 100%;
    padding: 10px 0;
}
.site-header {
    background: none !important;
}

.features-section {
  background-color: #08284a;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.section-title h2 {
  font-size: 2rem;
}

.section-title p {
  margin: 10px auto 0;
  color: #cfe3f7;
}

.feature-card {
    background: transparent;
    padding: 40px 25px;
    border-radius: 12px;
    transition: all 0.4s ease;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    height: 350px;
}
section.services-section {
    margin: 70px 0;
}
.feature-card:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}
section.features-section {
    padding: 70px 0;
}
.feature-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
}

.feature-card:hover .feature-icon {
  background: #5ba7dc;
  transform: scale(1.1);
  box-shadow: 0 0 15px rgba(91, 167, 220, 0.8);
}

.feature-icon i {
  font-size: 2rem;
  color: #5ba7dc;
  transition: color 0.3s ease;
}

.feature-card:hover .feature-icon i {
  color: #fff;
}

.feature-card h4 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #d6e2f0;
}
.services-section {
  background-color: #f9fafc;
}

.section-subtitle {
  font-size: 0.9rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #6c757d;
  font-weight: 600;
}

.section-title {
  font-size: 2.3rem;
  font-weight: 700;
  color: #111;
  line-height: 1.3;
}

.section-title em {
    font-style: italic;
    color: #4f80a1;
}

.btn-view-all {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #3e586d;
    color: #fff;
    padding: 10px 20px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-view-all:hover {
  background: #36625e;
  transform: translateY(-2px);
}

.service-card {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  background: #fff;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: all 0.4s ease;
}

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

.service-img {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
}

.service-img img {
    width: 100%;
    object-fit: cover;
    border-radius: 15px;
    transition: transform 0.5s ease;
}

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

.service-hover {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(4, 17, 91, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.4s ease;
}

.service-hover i {
  color: #fff;
  font-size: 1.2rem;
}

.service-card:hover .service-hover {
  opacity: 1;
  transform: scale(1.1);
}

.service-content {
    position: absolute;
    bottom: 70px;
    left: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.95);
    padding: 15px 20px;
    border-radius: 10px;
}

.service-content h5 {
  font-weight: 700;
  color: #111;
  margin-bottom: 5px;
}

.service-content p {
  font-size: 0.9rem;
  color: #555;
  margin: 0;
}

    .choose-us-section {
      background-color: #fff;
    }

    .choose-us-content h2 {
      font-size: 48px;
      font-weight: 700;
      color: #0b1830;
    }

    .choose-us-content .reason {
      display: flex;
      align-items: center;
      justify-content: space-between;
      border-bottom: 1px solid #e6e6e6;
      padding: 25px 0;
      transition: all 0.3s ease;
      cursor: pointer;
    }

    .choose-us-content .reason:hover {
      background-color: #f8f9fc;
      transform: translateX(5px);
    }

    .choose-us-content .number {
      font-weight: 600;
      color: #a1a1a1;
      margin-right: 20px;
      font-size: 18px;
    }

    .choose-us-content h5 {
      margin: 0;
      color: #0b1830;
      font-weight: 600;
      font-size: 20px;
    }

    .choose-us-content .icon {
      background-color: #f1f3f9;
      border-radius: 50%;
      width: 45px;
      height: 45px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 20px;
      color: #0b1830;
      transition: all 0.3s ease;
    }

    .choose-us-content .reason:hover .icon {
      background-color: #0b1830;
      color: #fff;
    }

    .choose-us-footer {
      background-color: #0b1830;
      color: #fff;
      padding: 15px 0;
    }

    .choose-us-footer .contact-btn {
      background-color: #f0f4ff;
      color: #0b1830;
      border-radius: 30px;
      font-weight: 600;
      padding: 10px 20px;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      text-decoration: none;
    }

    .choose-us-footer .contact-btn:hover {
      background-color: #fff;
    }
.products-section {
    padding: 70px 0;
    text-align: center;
}

    .products-section h6 {
      font-size: 14px;
      display: inline-block;
      padding: 6px 18px;
      border: 1px solid #0b1830;
      border-radius: 25px;
      font-weight: 500;
      color: #0b1830;
      text-transform: uppercase;
      margin-bottom: 20px;
    }

    .products-section h2 {
      font-weight: 700;
      font-size: 42px;
      margin-bottom: 50px;
    }

    .products-section h2 span {
      font-style: italic;
      color: #1a365d;
      font-weight: 400;
    }

    .product-card {
    position: relative;
    background: #fff;
    border-radius: 20px;
    border: 2px solid #E8E8E8;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

    .product-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    }
.owl-stage-outer {
    padding: 20px 0;
}
    .product-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}

    .social-icons {
      position: absolute;
      top: 20px;
      left: 15px;
      display: flex;
      flex-direction: column;
      gap: 10px;
      z-index: 5;
    }

    .social-icons a {
      width: 36px;
      height: 36px;
      background-color: #f1f3f9;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #0b1830;
      font-size: 16px;
      transition: all 0.3s ease;
    }

    .social-icons a:hover {
      background-color: #0b1830;
      color: #fff;
    }

    .product-info {
      padding: 20px;
    }

    .product-info h5 {
      margin: 0;
      font-weight: 600;
      font-size: 18px;
    }

    .owl-carousel .owl-nav {
      position: absolute;
      top: -60px;
      right: 0;
    }

    .owl-carousel .owl-nav button {
      background: #0b1830;
      color: #fff;
      border-radius: 50%;
      width: 38px;
      height: 38px;
      border: none;
      margin: 0 5px;
      transition: all 0.3s ease;
    }

    .owl-carousel .owl-nav button:hover {
      background: #1a365d;
    } 
  .testimonial-section {
    padding: 70px 0;
    background: #e4e4e4;
}

 .section-badge {
    text-transform: uppercase;
    background: #e5f1ea;
    color: #0e182e;
    border-radius: 50px;
    padding: 6px 18px;
    font-size: 13px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 20px;
}
section.hero-section.position-relative .section-title{
      text-align: center !important; 
}
.section-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 10px;
}

.section-subtitle {
    color: #3f6585;
    font-size: 28px;
    margin-bottom: 20px;
}

    .section-desc {
      color: #555;
      max-width: 600px;
      font-size: 16px;
      line-height: 1.6;
    }

.btn-custom {
    background-color: #090909;
    color: #fff;
    padding: 10px 24px;
    border-radius: 30px;
    font-weight: 500;
    border: none;
    transition: all 0.3s;
}

    .btn-custom:hover {
      background-color: #2e7d32;
    }

    .testimonial-card {
      background: #fff;
      border-radius: 20px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.08);
      padding: 25px 25px 15px;
      transition: 0.3s ease;
      height: 100%;
    }

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

.stars {
    color: #376fb4;
    margin-bottom: 12px;
}

    .testimonial-text {
      font-size: 15px;
      color: #444;
      line-height: 1.6;
      margin-bottom: 15px;
    }

    .profile {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .profile img {
      width: 55px;
      height: 55px;
      border-radius: 50%;
      object-fit: cover;
    }

    .profile h6 {
      font-weight: 600;
      margin-bottom: 2px;
      font-size: 16px;
    }

    .profile small {
      color: #6c757d;
    }
.appointment-section {
    border-radius: 20px;
    overflow: hidden;
    margin: 70px 0;
}
input.wpcf7-form-control.wpcf7-submit.has-spinner {
    width: 100%;
    padding: 10px;
    border: navajowhite;
    background: #0e182e;
    color: #fff;
}
.bg-image {
  background: url('./images/contactimage.webp') center center/cover no-repeat;
  min-height: 600px;
}

.bg-light-green {
    background-color: #d7e7ff !important;
    border-radius: 0 20px 20px 0;
}
.faq-contact-box {
    background-color: #dae6fd;
}

.btn-dark-green {
    background-color: #10182c;
    color: #fff;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-dark-green:hover {
    background-color: #142c5d;
    color: #fff;
}
span.badge.bg-light-green.text-dark.px-3.py-2.rounded-pill.mb-3 {
    font-size: 13px;
}
.bg-light-green {
  background-color: #e3f0e1;
}

.accordion-button {
  background-color: #f8f9f8;
  border-radius: 10px !important;
  box-shadow: none;
  font-weight: 600;
  color: #1e3a2f;
}

.accordion-button:not(.collapsed) {
    background-color: #dce6fb;
    color: #030303;
}
.accordion-body {
  color: #4b4b4b;
  font-size: 15px;
  line-height: 1.7;
}

.sticky-box {
  position: sticky;
  top: 90px;
}
.content-box {
    background: rgba(0, 0, 0, 0.4);
    border-radius: 13px;
    max-width: 100%;
    margin: 0 20px 0 20px;
}

.content-box h2,
.content-box h3,
.content-box p {
  color: #fff;
}

.btn-light i {
  transition: transform 0.3s ease;
}

.btn-light:hover i {
  transform: translateX(5px);
}
section.page-breadcrumb {
    background: linear-gradient(90deg, rgb(27 49 93) 0%, rgb(0 0 0) 100%);
    background-position: center;
    width: 100%;
    height: auto;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 130px 0 27px 30px;
    color: #ffffff;
}
section.innerpages {
    margin: 55px 0 0 0;
}
.hero-section {
  position: relative;
  overflow: hidden;
  height: 100vh;
  display: flex;
  align-items: center;
}

.bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.45); /* dark overlay for text contrast */
  z-index: 1;
}

.hero-section .one {
    position: relative;
    z-index: 2;
    width: 100%;
}
header#masthead {
    position: absolute;
    top: 0px;
    z-index: 11111;
    width: 100%;
    background: #ffffffb0 !important;
}
img.alignnone.size-full.wp-image-186 {
    width: 43%;
    height: auto;
}
/* ================ Product Archive Styles ================ */
section.ancient-products {
  background-color: #f9f9f9;
}

section.ancient-products .ancient-page-header {
  margin-bottom: 40px;
}

section.ancient-products .ancient-page-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--brand-primary);
  position: relative;
  display: inline-block;
  margin-bottom: 10px;
}

section.ancient-products .ancient-page-title:after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: var(--brand-secondary);
}

section.ancient-products .ancient-page-subtitle {
  font-size: 1.2rem;
  color: #666;
}

section.ancient-products .ancient-product-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  overflow: hidden;
  position: relative;
}

section.ancient-products .ancient-product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}
section.testimonials.text-center.aos-init.aos-animate {
    margin: 0 0 70px 0;
}
.plant-machinery h2 {
    font-size: 2.2rem;
    color: #111;
}
.plant-machinery .underline {
    width: 60px;
    height: 4px;
    background-color: #d12727;
    border: none;
}
.plant-machinery p {
    max-width: 900px;
    margin: 0 auto;
    font-size: 1rem;
    color: #444;
}
img.img-fluid.rounded.shadow-sm {
    margin: 26px 0 0 0;
}
section.ancient-products .product-badge .badge {
    background:  var(--secondary-color);
    color: #fff;
    padding: 6px 15px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 2;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
}

section.ancient-products .product-image-wrapper {
  position: relative;
  overflow: hidden;
  padding-top: 100%;
}

section.ancient-products .product-image-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

section.ancient-products .product-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgb(161 80 154 / 70%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.btn-outline-primary:not(:disabled):not(.disabled).active, .btn-outline-primary:not(:disabled):not(.disabled):active, .show>.btn-outline-primary.dropdown-toggle {
    color: #fff;
    background-color: var(--secondary-color) !important;
    border-color: var(--secondary-color) !important;
}
.btn-group>.btn-group:not(:first-child), .btn-group>:not(.btn-check:first-child)+.btn {
    margin-left: calc(var(--bs-border-width) * -1);
    background-color: var(--blue-color);
	color:#fff;
}
.products-table-view h5 a {
    color: #0c203d;
}
.products-table-view a.btn {
	background-color: var(--secondary-color);
	border:1px solid var(--secondary-color);
}
.product-share .cta-button {
    background-color: var(--secondary-color);
    padding: 10px 20px;
    border-radius: 5px;
    color: #fff;
    border: 1px solid var(--secondary-color);
}
.product-share .cta-button:hover{
	background-color:transparent;
	color: var(--secondary-color);
}
.meta-item i {
    color: var(--blue-color);
}
.ancient-product-info .product-badge .badge {
    background: #325384;
    color: #fff;
    padding: 6px 15px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 2;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
}
.product-share a {
    background: #325384 !important;
}
section.ancient-products .ancient-product-card:hover .product-overlay {
  opacity: 1;
}

section.ancient-products .quick-view-btn {
  color: #fff;
  background: var(--brand-secondary);
  padding: 10px 20px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

section.ancient-products .ancient-product-card:hover .quick-view-btn {
  transform: translateY(0);
}

section.ancient-products .product-content {
  padding: 20px;
}

.product-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--brand-primary);
  margin-bottom: 1rem;
}

section.ancient-products .product-title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

section.ancient-products .product-title a:hover {
  color: var(--brand-secondary);
}

section.ancient-products .product-meta {
  font-size: 0.9rem;
  color: #555;
  margin-bottom: 15px;
}

section.ancient-products .meta-item {
   margin-bottom: 8px;
        align-items: center;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
}

section.ancient-products .meta-item i {
  color:  var(--blue-color);
  margin-right: 8px;
  width: 20px;
  text-align: center;
}

section.ancient-products .product-footer {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

section.ancient-products .price {
  font-weight: 700;
  color: var(--brand-primary);
}

section.ancient-products .price .amount {
  font-size: 1.2rem;
}

section.ancient-products .add-to-cart a {
    background: #000;
    color: #fff;
    border: none;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

section.ancient-products .add-to-cart a:before {
  content: '\f217';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  margin-right: 8px;
}

section.ancient-products .add-to-cart a:hover {
    background:  var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(139, 194, 74, 0.3);
    text-decoration: none;
}

/* ================ Single Product Styles ================ */
section.ancient-single-product {
    background-color: #f9f9f9;
    padding: 50px 0;
}

section.ancient-single-product .ancient-product-detail {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 30px;
    margin-bottom: 30px;
}

section.ancient-single-product .ancient-product-gallery {
    position: relative;
}

section.ancient-single-product .main-image {
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
}

section.ancient-single-product .main-image img {
    width: 100%;
    height: auto;
    display: block;
}

section.ancient-single-product .thumbnail-slider {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

section.ancient-single-product .thumbnail-img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 5px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

section.ancient-single-product .thumbnail-img:hover {
    border-color: var(--brand-secondary);
}

section.ancient-single-product .ancient-product-info {
    padding-left: 30px;
}

section.ancient-single-product .product-title {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

section.ancient-single-product .product-rating {
    margin-bottom: 15px;
}

section.ancient-single-product .star-rating {
    color: #ffb300;
    font-size: 1.2rem;
}

section.ancient-single-product .product-price {
    font-size: 1.8rem;
    color: var(--brand-primary);
    font-weight: 700;
    margin-bottom: 20px;
}

section.ancient-single-product .meta-box {
    background: rgba(139, 194, 74, 0.05);
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 20px;
}

section.ancient-single-product .meta-title {
    font-size: 1.1rem;
    color: var(--brand-primary);
    margin-bottom: 10px;
    font-weight: 600;
}

section.ancient-single-product .meta-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

section.ancient-single-product .meta-list li {
    margin-bottom: 8px;
    padding-bottom: 8px;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
}

section.ancient-single-product .meta-list li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

section.ancient-single-product .description-title {
    font-size: 1.3rem;
    color:  var(--blue-color);
    margin-bottom: 15px;
    font-weight: 600;
}

section.ancient-single-product .product-share {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

section.ancient-single-product .share-label {
    font-weight: 600;
    margin-right: 15px;
    color: var(--brand-primary);
}

section.ancient-single-product .share-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 10px;
    color: #fff;
    transition: all 0.3s ease;
}

section.ancient-single-product .share-icon.facebook {
    background: #3b5998;
}

section.ancient-single-product .share-icon.twitter {
    background: #1da1f2;
}

section.ancient-single-product .share-icon.linkedin {
    background: #0077b5;
}

section.ancient-single-product .share-icon.whatsapp {
    background: #25d366;
}

section.ancient-single-product .share-icon:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}

@media (max-width: 992px) {
    section.ancient-single-product .ancient-product-info {
        padding-left: 0;
        padding-top: 30px;
    }
    
    section.ancient-single-product .product-title {
        font-size: 1.6rem;
    }
    
    section.ancient-single-product .product-price {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
	.main-imager {
    position: unset !important;
}
    section.ancient-single-product .ancient-product-detail {
        padding: 20px;
    }
    
    section.ancient-single-product .thumbnail-slider {
        flex-wrap: wrap;
    }
}
.ancient-related-products {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.ancient-related-products .section-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--dark-bg);
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 30px;
    text-align: center;
}

.ancient-related-products .section-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--brand-secondary);
}

.ancient-related-products .ancient-product-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    overflow: hidden;
	position: relative;
    
}
.ancient-related-products .ancient-product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
	position: relative;
}

.ancient-related-products .product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 2;
}

.ancient-related-products .product-badge .badge {
    background: var(--brand-secondary);
    color: #001f5e;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 700;
}

.ancient-related-products .product-image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 8px 8px 0 0;
}

.ancient-related-products .product-image-wrapper img {
    width: 100%;
    height: auto;
    transition: all 0.3s ease;
}

.ancient-related-products .product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(106 157 211 / 50%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.ancient-related-products .ancient-product-card:hover .product-overlay {
    opacity: 1;
}

.ancient-related-products .quick-view-btn {
    color: #001f5e;
    background: var(--brand-primary);
    padding: 8px 15px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 700;
}

.ancient-related-products .product-content {
    padding: 15px;
}

.ancient-related-products .product-title {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.ancient-related-products .product-title a {
    color: var(--brand-primary);
    text-decoration: none;
}

.ancient-related-products .product-meta {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 15px;
}

.ancient-related-products .product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ancient-related-products .price {
    font-weight: 700;
    color: var(--brand-primary);
}

@media (max-width: 768px) {
section.page-breadcrumb {
    padding: 85px 0 22px 30px !important;
}
    .ancient-related-products .section-title {
        font-size: 1.5rem;
    }
}

/* Table and grid toggle css */


/* View Toggle Styles */
    .view-toggle {
        background: #fff;
        border-radius: 30px;
        overflow: hidden;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }

    .view-toggle .btn {
        border: none;
        padding: 8px 20px;
        font-weight: 500;
        transition: all 0.3s ease;
    }

    .view-toggle .btn.active {
        background: var(--brand-secondary);
        color: #fff;
    }

    .view-toggle .btn:not(.active):hover {
        background: rgba(139, 194, 74, 0.1);
        color: var(--brand-primary);
    }

    /* Table View Styles */
    .products-table-view .table {
        background: #fff;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    }

  .products-table-view .table th {
    background:  var(--secondary-color) ;
    color: #ffffff;
    font-weight: 600;
    border: none;
    padding: 15px;
}
.btn-outline-primary:not(:disabled):not(.disabled).active, .btn-outline-primary:not(:disabled):not(.disabled):active, .show>.btn-outline-primary.dropdown-toggle {
    color: #fff;
    background-color: var(--secondary-color) !important;
    border-color: var(--secondary-color) !important;
}
    .products-table-view .table td {
        vertical-align: middle;
        padding: 15px;
        border-color: rgba(0, 0, 0, 0.05);
    }

    .products-table-view .table tr:hover td {
        background: rgb(194 74 162 / 5%);
    }

    .products-table-view .badge {
        background: var(--brand-secondary);
        color: #fff;
        padding: 4px 10px;
        border-radius: 30px;
        font-size: 0.7rem;
        font-weight: 600;
        display: inline-block;
        margin-top: 5px;
    }
h3.product-title {
    text-transform: uppercase;
}

textarea.wpcf7-form-control.wpcf7-textarea.wpcf7-validates-as-required {
    width: 100%;
    height: 58vh;
    padding: 10px 10px 10px 10px;
    border-radius: 6px;
    border: 1px solid #c5c5c5;
}
textarea.wpcf7-form-control.wpcf7-textarea.wpcf7-validates-as-required {
    height: 100px;
}
input.wpcf7-form-control.wpcf7-tel.wpcf7-validates-as-required.wpcf7-text.wpcf7-validates-as-tel {
    width: 100%;
}
.modal-content {
    margin: 139px 81px 0 81px;
}
button.btn.btn-contact.mr-4.mb-3 a:hover {
    color: #8a8a8a;
    text-decoration: none;
}
a button.btn.btn-contact.mr-4.mb-3  {
    color: #fff;
}
a button.carousel-control-prev {
    display: none;
}
a.btn.btn-primary.btn-lg.mr-4:hover {
    color: #c7c7c7 !important;
}
input.wpcf7-form-control.wpcf7-text.wpcf7-validates-as-required {
    width: 100%;
}
a.bio-btn:hover {
    color: #d5d5d5;
    text-decoration: none;
}
input.wpcf7-form-control.wpcf7-submit.has-spinner.btn-default {
    width: 100%;
    padding: 10px;
}
input.wpcf7-form-control.wpcf7-tel.wpcf7-validates-as-required.wpcf7-text.wpcf7-validates-as-tel {
    border: 1px solid #a3a3a3;
    padding: 10px;
    border-radius: 4px;
}
input.wpcf7-form-control.wpcf7-text.wpcf7-validates-as-required {
    padding: 8px;
    border-radius: 4px;
    border: 1px solid #c5c5c5;
}
      @media (max-width: 768px) {
     
.banner-content span {
    font-size: 10px !important;
}
.banner-content {
    left: 36% !important;
}
.content-section {
    padding: 24px 0px 0 0 !important;
}
section.faq-section {
    margin: 0px 0 !important;
}
header {
    top: -6px !important;
}
section.why-choose-us-section {
    margin: -40px 0 0 0 !important;
}
.what-we-do-section {
    margin: 5px 0 !important;
}
section.why-choose-us-section {
    margin: 0px 0 0 0 !important;
}
.banner-content h1 {
    font-size: 20px !important;
    line-height: 28px !important;
    margin: 0 0 0 0 !important;
}
	
.header-btn {
    font-size: 10px !important;
}
header {
    padding: 10px 10px !important;
}
.banner-content p {
    margin: 8px 0 29px 0 !important;
    color: #fff !important;
    font-size: 11px !important;
    line-height: 20px !important;
}
        img.w-100.banner-img.img-fluid {
    display: none !important;
}
img.w-100.banner-imger.img-fluid {
    display: block !important;
}
				#sequence a {
    width: 33.3333%;
    float: left;
    text-align: center;
    padding: 5px 0;
    font-size: 15px;
    color: #fff !important;
    font-weight: 600;
    text-decoration: none!important;
    border-right: 1px solid;
}
				#sequence {
    width: 100%;
    float: left;
    background: #000000;
    position: fixed;
    bottom: 0;
    z-index: 100;
    padding: 0;
    color: var(--themeht-light-color)!important;
    margin: 0!important;
}
			.page-breadcrumb .extraa {
    margin: 0px 0 !important; 
    text-align: left !important;
}
input.wpcf7-form-control.wpcf7-text.wpcf7-validates-as-required {
    width: 100%;
				}}
.products-table-view th {
    background: #0c203d !important;
}
.products-table-view h5 {
    margin: 0 0 0 14px;
}
.products-table-view a {
    text-decoration: none !important;
}
.products-table-view a.btn.btn-sm.btn-primary {
    color: #000;
    background: #ff5e00;
}
.table-responsive .products-table-view h5 a {
    color: #000000 !important;
}
ul.page-numbers {
    display: flex;
    font-size: 21px;
    font-weight: 600;
    justify-content: center;
    gap: 25px;
}
ul.page-numbers li {
    list-style: none;
    border: 1px solid #0e192f;
    padding: 3px 13px 4px 10px;
    border-radius: 5px;
}
ul.page-numbers li a {
    color: #0d172b;
}
.modula-item.effect-pufrobo.jg-entry.jg-entry-visible {
    border: 1px solid #1a2f5a;
    border-radius: 5px;
    box-shadow: 4px 4px 6px rgb(47 63 96 / 18%);
    transform: translateY(-20px);
}
.modula-item.effect-pufrobo.jg-entry.jg-entry-visible:hover{
	transform: translateY(-5px);
}
section.page-breadcrumb a {
    color: #fff;
}
