* {
    font-family: 'NotoSans', sans-serif !important;
}

.product-section {
    display: flex;
    position: relative;
    justify-content: center;
    align-items: start;
    width: 100%;
    gap: 1rem;
}

.products-row {
    display: grid;
    gap: 3rem;
    grid-template-columns: repeat(3, 1fr);
}

.relatedProducts-row {
    display: grid;
    gap: 3rem;
    grid-template-columns: repeat(4, 1fr);
}

/* Product Card */
.product-card {
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    max-width: 100%;
    overflow: hidden;
}

/* Image Handling: Set Fixed Height and Maintain Aspect Ratio */
.product-card img {
    width: 100%;
    height: 250px;
    object-fit: contain;
}

/* Hover Effect on Card */
.product-card:hover {
    transform: translateY(-5px);
}

/* Product Description Wrapper */
.product-card-description-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: center;
}


.product-title {
    font-size: 24px;
    line-height: 120%;
    margin-bottom: 1rem;
    font-weight: bold;
}

.product-subtitle {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.5;
    text-transform: none;
}


.product-sub-title {
    font-size: 1.25rem;
    color: var(--secondary) !important;
    font-weight: bold !important;
}

.tab-container {
    min-width: 25%;
    /* border: 2px solid var(--white); */
    /* border-radius: 8px; */
    position: sticky;
    top: 2rem;
    overflow: hidden;
}

.timeline-block h5 {
    font-size: 1.25rem;
    font-weight: bold;
    color: var(--black) !important;
}

.timeline-block p {
    font-size: 1rem;
    font-weight: 500;
    color: var(--black) !important;
}

/* === Tab, Sub, and Nested Buttons === */
.tab-button,
.sub-button,
.sub-sub-button {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 0.75rem;
    background-color: transparent;
    /* border-bottom: 2px solid var(--white); */
    text-align: left;
    color: var(--white);
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
}

.tab-button {
    /* border-bottom: 2px solid var(--white); */
}

.tab-button:hover,
.sub-button:hover,
.sub-sub-button:hover {
    background-color: var(--white);
    color: var(--black);
}

/* === Expandable Arrow Styles === */
.tab-button.expandable::after,
.sub-button.expandable::after,
.sub-sub-button.expandable::after {
    content: "▼";
    font-size: 1rem;
    margin-left: auto;
    transition: transform 0.3s ease;
    display: inline-block;
}

/* Rotate arrow on active */
.tab-button.expandable.active::after,
.sub-button.expandable.active::after,
.sub-sub-button.expandable.active::after {
    transform: rotate(180deg);
}

/* Hide arrow if not expandable */
.tab-button:not(.expandable)::after,
.sub-button:not(.expandable)::after,
.sub-sub-button:not(.expandable)::after {
    content: none;
}

/* === List Containers === */
.sub-list,
.sub-sub-list,
.sub-sub-sub-list {
    display: none;
    position: relative;
}

.sub-list.active,
.sub-sub-list.active,
.sub-sub-sub-list.active,
.tab-button.active+.sub-list,
.sub-button.active+.sub-sub-list {
    display: block;
}

/* === Layout container for products === */
.list-container {
    flex-grow: 1;
    max-width: 75%;
}

.productList-container {
    flex-grow: 1;
    max-width: 100%;
}

button.expandable.active {
    background-color: var(--white);
    color: var(--black);
}

/* .sub-item {
    position: relative;
}
.sub-list::before,
.sub-item::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    border-bottom: 2px solid #ccc;
    width: 100%;
} */
/* end container */
.packages-row .price-card.new-list-card {
    padding: 2rem;
    min-width: max-content;
    max-width: max-content;
}

.price-card.new-list-card .price-card-description-wrapper {
    gap: 1rem;
}

.packages-row .price-card.new-list-card img {
    /* object-fit: contain;
    object-position: left;
    aspect-ratio: 1/1; */
    max-height: 345px;
    width: 100%;
}

.packages-row .price-card.new-list-card h4 {
    font-size: 1.11vw;
    line-height: 150%;
}

.w-full {
    width: 100%;
}

.price-card.new-list-card a.button.w-button.w-full {
    font-size: 18px;
    line-height: 120%;
}

.product-section .packages-row {
    flex-flow: row;
    flex-wrap: wrap;
    gap: 1rem;
}

.product-bg {
    z-index: -1;
    background-image: linear-gradient(180deg, #050505, var(--primary));
    opacity: .1;
    background-repeat: repeat;
    background-size: auto;
    position: absolute;
    inset: 0%;
}

.hero-text {
    color: var(--yellow);
}

/* table css*/
/* Minimalist Black-Themed Table */
.table-minimalist {
    display: table;
    width: 100%;
    position: relative;
}

.table-minimalist table {
    /* width: 100% !important; */
    border-collapse: collapse;
    font-family: 'NotoSans', sans-serif;
    color: var(--white);
    background-color: transparent;
    /* margin: 2rem 0; */
}

.table-minimalist table th,
.table-minimalist table td {
    border: 1px solid var(--white);
    padding: 12px 15px !important;
    text-align: left !important;
    vertical-align: middle !important;
	 font-size: 1rem !important;
}

.table-minimalist table thead th {
    background-color: rgba(255, 255, 255, 0.05);
    /* subtle contrast */
    font-weight: 600 !important;
    letter-spacing: 1px !important;
}

.table-minimalist table tbody tr:nth-child(even) {
    background-color: rgba(255, 255, 255, 0.02);
}

.table-minimalist table tbody tr:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transition: background-color 0.2s ease;
}

/* Responsive on mobile */
@media screen and (max-width: 768px) {

    table.table.table-bordered,
    .table-minimalist table,
    .table-minimalist table thead,
    .table-minimalist table tbody,
    .table-minimalist table th,
    .table-minimalist table td,
    .table-minimalist table tr {
        /* display: block; */
        width: 100% !important;
    }

    /* .table-minimalist table thead {
        display: none;
    } */

    .table-minimalist table tr {
        /* margin-bottom: 1rem; */
        border: 1px solid var(--white);
        padding: 8px;
        background-color: rgba(255, 255, 255, 0.02);
    }

    .table-minimalist table td {
        text-align: left;
        padding: 8px;
        position: relative;
    }

    .table-minimalist table td::before {
        content: attr(data-label);
        font-weight: bold;
        display: block;
        margin-bottom: 5px;
        color: #ffcc00;
    }

    .product-section .dropdown-container {
        min-width: 100%;
        max-width: 100%;
    }

    .gap {
        gap: 1.5rem;
    }

    .rich-text p,
    .glossary-content li,
    .article-content p,
    .faq-dropdown .dropdown-answer p {
        text-align: left !important;
    }

    .timeline-left p {
        text-align: center !important;
        word-spacing: normal;
        letter-spacing: 0;
    }
	
	.product-hero-content{
		min-height: calc(75dvh - 112px) !important;
	}
	
	.hero-bg-image {
	  background:
		linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
		url('../images/banner/infinity.webp') right center no-repeat !important;
	background-size: contain !important;
	}
	.blog-section{
		padding:1rem !important;
	}
	.article-content h1{
		font-size: 1.75rem !important;
	} 
	.article-image{
		height:auto !important;
	}
	section .m-container.px-1{
		padding: 0 !important;
	}
}

.padding_8 {
    padding-left: 8% !important;
    padding-right: 8% !important;
}

.hero-section {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.search_popup {
    display: none;
}

/* 
.search-container {
    position: absolute;
    top: 0;
    right: 0;
    color: var(--black);
    z-index: 100000;
    pointer-events: none;
    min-width: 20rem;
    display: none;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.3s ease;
}
.nav-item-wrapper:hover .search-container {
    opacity: 1;
    transform: translateX(0);
    display: block;
    pointer-events: auto;
    color: var(--white);
}
.search-container input {
    width: 100%;
    padding: .5rem;
    border: 2px solid var(--white);
    border-radius: 50px;
    background-color: var(--black);
    color: var(--white);
    font-size: 1rem;
    outline: none;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25),
        0 4px 12px rgba(0, 0, 0, 0.15),
        inset 0 0 8px rgba(255, 255, 255, 0.05);
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
} */
/* .search-container input:focus {
    box-shadow: 0 0 0 3px var(--yellow), 0 8px 24px rgba(0, 0, 0, 0.3);
    border-color: var(--yellow);
} */
/* .search-container .search-icon {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--white);
    pointer-events: none;
    filter: drop-shadow(0 0 4px rgba(255, 255, 255, 0.5));
}
.search-container input::placeholder {
    color: var(--white);
    opacity: 0.8;
} */
.search-container {
    position: relative;
    color: var(--primary);
    /* width: 44px; */
    /* height: 44px; */
	width:100%;
	height:100%;
    z-index: 99999;
}

.search-container:focus-within {
    color: var(--secondary);
}

.icon-container {
    pointer-events: none;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    display: flex;
    align-items: center;
    padding-right: 0.75rem;
    z-index: 9999999;
}

.icon-container svg {
    width: 24px;
    height: 24px;
}

.search-input {
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    border-radius: 9999px;
    border: 1px solid var(--primary);
    background: var(--secondary);
    padding: 0.5rem 1.75rem 0.5rem 1rem;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.5;
    color: var(--primary);
    outline: none;
    transition: width 500ms ease-in-out, border-color 0.3s ease;
    z-index: 999999;
	width:100% !important;
}

.search-input::placeholder {
    color: var(--primary);
}

.search-input.open,
.search-input:hover,
.search-input:focus {
    width: calc(100vw - 80px);
    box-shadow: 0 0 0 2px rgba(107, 114, 128, 0.2);
}

@media (min-width: 768px) {


	.search-input.open,
	.search-input:hover,
    .search-input:focus {
        width: 20rem;
    }
}

.search-input:focus {
    outline: none;
}

.search-result {
    position: absolute;
    width: 100%;
    top: 100%;
    right: 0;
    background: var(--black);
    color: var(--white);
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    z-index: 10;
    max-height: 250px;
    overflow-y: auto;
    display: none;
    min-width: 20rem;
    animation: fadeIn 0.2s ease-in-out;
}

.search-result ul {
    list-style: none;
    padding: 10px 0;
    margin: 0;
}

.search-result li {
    padding: 12px 20px;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
    color: var(--white);
}

.search-result li a {
    color: inherit;
    text-decoration: none;
    display: block;
}

.search-result li:hover,
.search-result li:focus {
    background: var(--primary);
    color: var(--white);
}

.search-result li:focus {
    outline: none;
    box-shadow: inset 0 0 0 2px var(--white);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.search-result::-webkit-scrollbar {
    width: 8px;
}

.search-result::-webkit-scrollbar-track {
    background: transparent;
    border-radius: 12px;
}

.search-result::-webkit-scrollbar-thumb {
    background: var(--yellow);
    border-radius: 12px;
    border: 2px solid transparent;
    background-clip: content-box;
    transition: background-color 0.3s ease;
}

.search-result::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

.search-result {
    scrollbar-width: thin;
    scrollbar-color: var(--yellow) transparent;
}

@supports (scrollbar-width: thin) {
    .search-result {
        scrollbar-width: thin;
        scrollbar-color: var(--yellow) transparent;
    }
}

/* Modal styles */
.custom-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    justify-content: center;
    align-items: center;
}

.custom-modal-content {
    position: relative;
    background-color: var(--black);
    width: 90%;
    max-width: 960px;
    height: 700px;
    border-radius: 8px;
    overflow: hidden;
    animation: fadeIn 0.3s ease;
}

.modal-close {
    position: absolute;
    top: 10px;
    right: 15px;
    background: none;
    border: none;
    color: var(--white);
    font-size: 28px;
    cursor: pointer;
    z-index: 10;
}

/* Fade-in animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.toggle-container {
    position: fixed;
    bottom: 0;
    left: 0;
    padding: 1rem;
    z-index: 9;
}

@media (min-width: 768px) {
    .toggle-container {
        padding: 1.25rem;
    }
}

.toggle-button {
    position: relative;
    display: inline-flex;
    height: 2rem;
    width: 4rem;
    align-items: center;
    background-color: #e5e7eb;
    /* Light background */
    border-radius: 9999px;
    padding: 0.25rem;
    transition: background-color 0.3s ease;
    outline: none;
    border: none;
}

.toggle-button:focus {
    box-shadow: 0 0 0 2px #3b82f6;
    /* Blue ring on focus */
}

.toggle-thumb {
    display: inline-flex;
    height: 1.5rem;
    width: 1.5rem;
    align-items: center;
    justify-content: center;
    background-color: #ffffff;
    border-radius: 9999px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}

.toggle-thumb.light-mode {
    transform: translateX(0);
    /* Thumb on the left for light mode */
}

.toggle-thumb.dark-mode {
    transform: translateX(2rem);
    /* Thumb on the right for dark mode */
}

.dark .toggle-button {
    background-color: #374151;
    /* Dark mode switch background */
}

.dark .toggle-thumb {
    background-color: #1f2937;
    /* Dark thumb */
}

/* Glossary Container */
.glossary-container {
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Glossary Card Layout */
.glossary-card {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    height: 100%;
    border: 2px solid var(--white);
}

/* List & Content Layout */
.glossary-list {
    width: 100%;
    flex: 1;
}

.glossary-content {
    flex: 20;
    background-color: transparent;
    color: var(--white);
    max-width: 100%;
    overflow-y: auto;
    border: 1px solid var(--white);
}

/* Alphabet List Styling */
.alphabet-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 0;
}

.alphabet-list li {
    padding: 1rem;
    font-size: 1.5rem;
    font-weight: bold;
    text-align: left;
    border: 1px solid var(--white);
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Hover Effect */
.alphabet-list li:hover,
.alphabet-list li a:hover {
    background-color: var(--white);
    color: var(--black);
}

.alphabet-list li.blink {
    background-color: var(--primary);
    color: var(--secondary) !important;
    animation: blink-fade 3s ease-in-out infinite alternate;
}

@keyframes blink-fade {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.2;
    }

    100% {
        opacity: 1;
    }
}

/* Link Styling */
.alphabet-list li a {
    text-decoration: none;
    color: inherit;
    font-weight: bold;
    /* inherit from li */
    transition: all 0.3s ease;
}

/* Active State */
.alphabet-list li.active {
    background-color: var(--secondary);
    color: var(--primary) !important;
}

.alphabet-list li.active a {
    color: var(--primary) !important;
}

/* Glossary Content List */
.glossary-content ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    gap: 0;
}

.glossary-content li {
    text-align: left;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.6;
    border-bottom: 1px solid var(--white);
    padding: 1rem;
    color: var(--white);
    text-align: justify;
}

.glossary-content li:last-child {
    border-bottom: none;
}

.nav-item-wrapper {
    position: relative;
    display: inline-block;
}

/* header submenu changes */
.submenu {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    background: var(--white);
    color: var(--black);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    z-index: 1000;
    display: none;
    /* padding-top: 0.5rem; */
    border: 1px solid var(--white);
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    pointer-events: none;
    /* margin: 0 1.4vw; */
    min-width: 20rem;
}

.nav-item-wrapper:hover .submenu {
    display: block;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    color: var(--white);
}

.nav-item-wrapper {
    position: relative;
}

.nav-item-wrapper::before {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 5vh;
    background: transparent;
    z-index: 1;
}

.submenu ul {
    margin: 0;
    padding: 0;
    list-style: none;
    gap: 0;
}

.submenu ul li {
    padding: 0.5rem 1rem;
    border-bottom: 1px solid var(--black);
}

.submenu ul li:last-child {
    border-bottom: 0;
}

.submenu ul li a {
    color: var(--black);
    text-decoration: none;
}

.submenu ul li:hover,
.submenu ul li:hover a {
    background: var(--primary);
    color: var(--white);
}

/* blog page */
.blog-section {
    max-width: 1280px;
    margin: auto;
    padding: 4rem 0rem;
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.section-title {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 1rem;
    line-height: 1.5;
    color: var(--white);
}

/* Blog List & Cards */
.blog-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
}

.blog-card {
    background-color: transparent;
    /* border: 1px solid var(--light-grey);
    border-radius: var(--border-radius);
    padding: 1rem; */
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
	    max-width: 420px;
    width: 100%;
}

.blog-card:hover {
    /* background-color: var(--white);
    color: var(--black); */
    transform: translateY(-6px);
    /* box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08); */
}

.blog-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.blog-snippet {
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 12px;
}

.blog-header {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    overflow: hidden;
    /* margin-bottom: 1rem; */
    /* border-radius: calc(var(--border-radius) / 1.5); */
    background-color: var(--light-grey);
}

.blog-header img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.blog-body {
    padding: 1rem 0;
}

.blog-desc {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    /* margin-top: 1rem; */
    font-weight: bold;
    color: var(--light-grey);
    font-size: 14px;
}

/* Single Blog Article */
.blog-article {
    padding: 4rem 1rem;
    color: var(--white);
    background: var(--black);
    max-width: 1280px;
    margin: auto;
}

.article-wrapper {
    display: flex;
    flex-direction: column;
    /* gap: 2rem; */
}

.article-title {
    font-size: 3rem;
    line-height: 1.3;
    text-align: center;
    font-weight: bold;
}

.article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.9rem;
    color: var(--light-grey);
    justify-content: space-between;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.article-lead {
    font-size: 1.1rem;
    color: var(--white);
    border-left: 4px solid var(--yellow);
    padding-left: 1rem;
}

.article-image {
    margin: 2rem 0;
    overflow: hidden;
    border-radius: 16px;
    /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15); */
    transition: box-shadow 0.3s ease;
    width: 100%;
    height: 520px;

}

.article-image img {
    width: 100%;
    height: 100%;
    /* aspect-ratio: 4/3; */
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

/* Optional hover effect */
.article-image:hover {
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.25);
}

.article-image:hover img {
    transform: scale(1.03);
}

/* Article Content Typography */
.article-content {
    max-width: 1280px;
    margin: 0 auto;
    font-size: 1rem;
    line-height: 1.8;
    color: var(--white);
}

.article-content h1 {
    font-size: 2.25rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--secondary);
}

.article-content h2 {
    font-size: 1.75rem;
    font-weight: 600;
    line-height: 1.4;
    margin: 2rem 0 1rem;
}

.article-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.4;
    margin: 1.5rem 0 1rem;
}

.article-content h4,
.article-content h5,
.article-content h6 {
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 1.5;
    margin: 1.2rem 0 0.8rem;
}

.article-content p {
    margin: 1rem 0;
    font-weight: 500;
    font-size: 1rem;
    text-align: justify;
    letter-spacing: normal;
}

/* .article-content ul,
.article-content ol {
    margin-left: 1.5rem;
}
.article-content blockquote {
    margin: 1.5rem 0;
    padding-left: 1rem;
    border-left: 4px solid var(--white);
    color: var(--light-grey);
    font-style: italic;
    line-height: 1.7;
} */
.article-content a {
    color: var(--light-grey);
    text-decoration: underline;
    line-height: 1.6;
}

.article-content strong {
    font-weight: bold;
    line-height: inherit;
}

/* .article-content img {
    margin: 2rem 0;
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    line-height: 0;
} */

/* Article Footer */
.article-footer {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    border-top: 1px solid var(--light-grey);
    padding-top: 2rem;
    gap: 1rem;
}

.article-share {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.share-btn {
    padding: 0.3rem 0.75rem;
    border: 1px solid var(--light-grey);
    border-radius: var(--border-radius);
    background: transparent;
    color: var(--white);
    cursor: pointer;
    text-decoration: none;
}

.back-btn {
    color: var(--secondary);
    text-decoration: none;
    font-weight: 500;
}

/* Optional: Author Info if used */
.author-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-icon {
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.icon {
    font-style: normal;
}


/* resources tab */
.resources-container {
    max-width: 1280px;
    margin: 0 auto;
    padding:  0 2rem 3.5rem 2rem;
}

/* Resources Section */
.resources-section {
    /* background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
    overflow: hidden; */
}

.resources-title {
    font-size: 2rem;
    font-weight: 600;
    color: var(--white);
    border-bottom: 1px solid var(--white);
    margin-bottom: 0;
    line-height: normal;
    padding-bottom: 1rem;
}

/* Tab Navigation */
.tab-navigation {
    display: flex;
    background: var(--black);
    border-bottom: 1px solid var(--white);
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.tab-navigation::-webkit-scrollbar {
    display: none;
}

.tab-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 16px 24px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
    color: var(--white);
    transition: all 0.3s ease;
    white-space: nowrap;
    border-bottom: 3px solid transparent;
    min-width: fit-content;
}

.tab-btn:hover {
    background: var(--secondary);
    color: var(--primary);
}

.tab-btn.active {
    background: var(--primary);
    color: var(--secondary);
    border-bottom-color: var(--secondary);
    font-weight: 600;
}

.tab-btn i {
    font-size: 16px;
}

/* Content Area */
.content-area {
    /* padding: 30px 0; */
    min-height: 400px;
    position: relative;
}

/* Loading Spinner */
.loading-spinner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    color: var(--white);
}

.spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #e9ecef;
    border-top: 4px solid var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 16px;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Resources Table */
.resources-table-container {
    display: none;
}

.resources-table-container.show {
    display: block;
}

.resources-table-container .table-header {
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 20px;
    padding: 1rem 0;
    background: var(--black);
    border-radius: 8px;
    /* margin-bottom: 16px; */
    font-weight: 600;
    color: #495057;
    font-size: 1rem;
}

.table-body {
    display: flex;
    flex-direction: column;
    /* gap: 12px; */
}

.resource-item {
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 20px;
    align-items: center;
    padding: 10px 0;
    background: var(--black);
    /* border: 1px solid var(--white); */
    /* border-radius: 8px; */
    transition: all 0.3s ease;
    animation: fadeInUp 0.5s ease forwards;
    opacity: 0;
    transform: translateY(20px);
    color: var(--white);
    font-size: 1rem;
    font-weight: 500;
}

/* .resource-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-color: var(--primary);
} */

.resource-name {
    display: flex;
    align-items: center;
    gap: 12px;
}

.resource-icon {
    width: 40px;
    height: 40px;
    background: #f8f9fa;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #dc3545;
    flex-shrink: 0;
}

.resource-title {
    font-weight: 500;
    color: #2c3e50;
    font-size: 15px;
    line-height: 1.4;
}

.download-info {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--white);
    font-size: 14px;
}

.download-btn {
    background: var(--secondary);
    color: var(--primary);
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 12px;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
}

.download-btn:hover {
    background: var(--primary);
    color: var(--secondary);
    transform: translateY(-1px);
}

.file-type {
    background: var(--white);
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
}

.file-type.pdf {
    background: #dc3545;
}

.file-type.doc {
    background: #007bff;
}

.file-type.xls {
    background: #28a745;
}

/* Messages */
.no-results,
.error-message {
    text-align: center;
    padding: 60px 20px;
    color: var(--white);
}

.no-results i,
.error-message i {
    font-size: 48px;
    margin-bottom: 16px;
    opacity: 0.5;
}

.no-results h3,
.error-message h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
    color: #495057;
}

.retry-btn {
    background: var(--primary);
    color: var(--secondary);
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 500;
    margin-top: 16px;
    transition: all 0.3s ease;
}

.retry-btn:hover {
    background: var(--secondary);
    transform: translateY(-1px);
}

/* Animations */
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.resource-item:nth-child(1) {
    animation-delay: 0.1s;
}

.resource-item:nth-child(2) {
    animation-delay: 0.2s;
}

.resource-item:nth-child(3) {
    animation-delay: 0.3s;
}

.resource-item:nth-child(4) {
    animation-delay: 0.4s;
}

.resource-item:nth-child(5) {
    animation-delay: 0.5s;
}

/* Responsive Design */
@media (max-width: 768px) {
    .resources-container {
        padding: 1rem;
    }

    .resources-title {
        padding-bottom: 1rem;
    }

    .tab-btn {
        padding: 12px 16px;
        /* font-size: 1rem; */
    }

    /* .tab-btn span {
        display: none;
    } */

    .tab-btn i {
        font-size: 18px;
    }

    .content-area {
        padding: 20px 0;
    }

    .table-header {
        grid-template-columns: 1fr auto;
        gap: 15px;
        padding: 12px 15px;
    }

    .table-header .header-item:last-child {
        display: none;
    }

    .resource-item {
        grid-template-columns: 1fr auto;
        gap: 15px;
        padding: 15px 0;
    }

    .file-type {
        display: none;
    }

    .resource-name {
        gap: 10px;
    }

    .resource-icon {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }

    .resource-title {
        font-size: 14px;
    }

    .download-info {
        font-size: 13px;
    }

    .download-btn {
        padding: 6px 12px;
        font-size: 11px;
    }
}

@media (max-width: 480px) {
    .tab-navigation {
        justify-content: space-around;
    }

    .tab-btn {
        flex: 1;
        justify-content: center;
        padding: 10px 6px;
    }

    /* .resource-item {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 12px;
    } */

    /* .resource-name {
        justify-content: center;
    } */

    .download-info {
        justify-content: center;
    }
}

/* loader */
/* Loader Container */
.page-loader {
    position: fixed;
    inset: 0;
    background-color: var(--loader);
    /* light mode background */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.4s ease;
}

/* Logo Style */
.loader-logo {
    width: 350px;
    height: auto;
    animation: pulse 1.2s infinite ease-in-out;
}

/* Simple pulsing animation */
@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.05);
        opacity: 0.8;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Fade-out effect when page is ready */
.page-loader.fade-out {
    opacity: 0;
    pointer-events: none;
}

.faq-dropdown .dropdown-answer p {
    text-align: justify;
}

/* .faq-dropdown h4,
.faq-dropdown p {
    color: var(--black);
} */
/* .full-width-img {
    max-width: 100%;
    height: auto;
    margin: 2rem 0;
} */

.download-button {
    background: var(--secondary);
    color: var(--primary);
    text-align: center;
    letter-spacing: .07vw;
    text-transform: uppercase;
    border-radius: 1.7vw;
    padding: .78vw 2.22vw;
    font-family: 'NotoSans', sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 150%;
    transition: color .3s, background-color .3s;
    margin: 1.5rem 0;
}

.button-icon,
.dark .faq-icon,
.download-btn img {
    filter: invert(0);
}

.dark .button-icon,
.faq-icon,
.download-btn img {
    filter: invert(1);
}

/* case studies */

.case_studies_content h1 {
    font-size: 3rem;
    line-height: 1.3;
    text-align: center;
    font-weight: bold;
}


.case_studies_content h2 {
    margin-bottom: 1rem;
    text-align: center;
    /* color: var(--white); */
}

/* .case_studies_content h3 {
    text-align: center;
} */
.case_studies_content p {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: inherit;
}

.case_studies_content strong {
    color: var(--light-grey);
}

.case_studie_img {
    overflow: hidden;
    /* ensures the zoom doesn’t overflow the border-radius */
    margin: 2rem 0;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: box-shadow 0.3s ease;
}

.case_studie_img img.full-width-img {
    width: 100%;
    height: 620px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}


/* Hover effect */
.case_studie_img img.full-width-img:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}


.mx-auto {
    margin: 0 auto;
}


.works-view-more {
    font-size: 1rem;
    font-weight: 700;
    text-transform: none !important;
}


@keyframes lightBounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

.ai-search-label {
    position: fixed;
    bottom: 70px;
    right: 1rem;
    background-color: #000000;
    color: #ffffff;
    padding: 6px 8px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 500;
    z-index: 2147483646;
    box-shadow: rgba(0, 0, 0, 0.2) 0px 4px 8px;
    animation: lightBounce 2s ease-in-out infinite;
    cursor: pointer;
}

.product-card-description-wrapper .product-title-wrapper {
    margin-bottom: 1rem;
}


/* mobile view */
@media screen and (max-width: 480px) {
    .product-section {
        flex-direction: column;
    }

    .products-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .product-card {
        width: 100%;
    }

    .product-card-description-wrapper .product-subtitle {
        display: none;
    }

    .product-card-description-wrapper .product-title-wrapper {
        margin-bottom: 1rem;
    }

    .list-container {
        max-width: 100%
    }

    .tab-container {
        width: 100%;
    }

    .resources_tab {
        display: none;
    }

    .hero-bg {
        opacity: .8;
    }

    /* .search-container input {
        padding: 16px;
        font-size: 1rem;
    } */

    .search-input:hover,
    .search-input:focus {
        /* width: calc(100vw - 160px); */
        box-shadow: 0 0 0 2px rgba(107, 114, 128, 0.2);
    }

    .search-container .search-icon {
        right: 10px;
        background-color: var(--white);
        padding: .5rem;
        border-radius: 50%;
        font-size: 16px;
        display: flex;
        justify-content: center;
        align-items: center;
        height: 36px;
        width: 36px;
    }

    /* .hero-section {
        min-height: 100%;
    } */

    /* .hero-section video {
        height: 100%;
    } */



    .submenu {
        position: relative;
        background: transparent;
        border: 0;
        box-shadow: none;
        display: block;
        opacity: 1;
        transform: unset;
        color: var(--yellow)
    }

    .submenu ul li {
        border: none;
        padding: 0;
        color: var(--yellow)
    }

    .submenu ul li a {
        color: var(--yellow)
    }

    .nav-menu {
        background-color: var(--green);
    }

    .nav-link {
        min-height: 3rem;
        font-size: 22px;
        line-height: 150%;
    }

    .padding_8 {
        padding: 0 !important;
    }

    .works-details {
        max-width: 75vw;
    }

    .cards-wrapper,
    .slide-up-animation.w-dyn-list {
        width: 100%;
    }
}

/* home page banner */
.hero-section-unique {
    position: relative;
    width: 100%;
    height: calc(100dvh - 110px);
    overflow: hidden;
}

.hero-bg-unique {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.background-video-unique {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.hero-overlay-unique {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
            rgba(0, 0, 0, 0.5) 0%,
            rgba(0, 0, 0, 0.3) 50%,
            rgba(0, 0, 0, 0.5) 100%);
    z-index: 2;
}

@media (max-aspect-ratio: 16/9) {
    .background-video-unique {
        width: auto;
        height: 100%;
    }
}

@media (min-aspect-ratio: 16/9) {
    .background-video-unique {
        width: 100%;
        height: auto;
    }
}

footer .container,
.m-container {
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
    padding: 0 2rem !important;
}



.dropdown-container h6 {
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 1rem;
    line-height: 1;
}

.dropdown-container {
    position: relative;
    display: inline-block;
    min-width: 25%;
    max-width: 25%;
}



select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    padding: .5rem 1.5rem .5rem .5rem;
    width: 100%;
    font-size: 1rem;
    border-radius: 5px;
    cursor: pointer;
    line-height: 150%;
}

.dropdown-filters {
    position: relative;
}

.dropdown-filters::after {
    content: "▼";
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    pointer-events: none;
    color: var(--white);
}

select:focus {
    outline: none;
}

.services-3d-card h4 {
    font-size: 2rem;
    font-weight: 600;
    line-height: 1;
}

.packing-grid {
    display: flex;
    flex-wrap: wrap;
    align-items: end;
    gap: 1rem;
}

.packing_Spray500ML {
    width: 80px;
    height: 80px;
}

.packing_Spray700ML {
    width: 100px;
    height: 100px;
}

.packing_1kg,
.packing_1ltr {
    width: 50px;
    height: 50px;
}

.packing_5kg,
.packing_5ltr {
    width: 60px;
    height: 60px;
}

.packing_20kg,
.packing_20ltr {
    width: 70px;
    height: 70px;
}

.packing_180kg,
.packing_180ltr {
    width: 120px;
    height: 120px;
}

.packing_210kg,
.packing_210ltr,
.packing_210lg {
    width: 140px;
    height: 140px;
}


.packing-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* Container for the slider */
/* .slider-container {
    position: relative;
    width: 80%;
    max-width: 800px;
    overflow: hidden;
    margin: 0 auto;
}


.slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
    gap: 1rem;
    align-items: center;
}

.slider-item {
    min-width: 100%;
}

.slider-item img {
    max-width: 100%;
    height: auto;
} */
.slider-container {
    margin: 20px 0;
    text-align: center;
}

.slider {
    overflow: hidden;
    width: 100%;
}

.slide-track {
    display: flex;
    width: calc(200px * 12);
    align-items: center;
    gap: 20px;
    animation: scroll 20s linear infinite;
}

.slide {
    flex: 0 0 auto;
    width: 200px;
    height: 120px; /* uniform height for all slides */
    margin: 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
}

.slide img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-200px * 6));
        /* Adjust based on number of slides */
    }
}


.timeline-left h3 {
    font-weight: bold;
}

.timeline-left p {
    font-size: 1rem;
    font-weight: 500 !important;
    text-align: justify;
    /* letter-spacing: normal; */
}

.hero-wrapper h5 {
    color: var(--secondary);
}


.service-image-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    overflow: hidden;
}

.service-image-wrapper img {
    /* border-radius: 12px; */
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.faq-wrapper {
    text-align: justify;
    /* letter-spacing: normal; */
}

.page-title-block h5,
.hero-wrapper h5 {
    font-size: 1.25rem;
    font-weight: bold;
    color: var(--secondary);
}

.gap {
    gap: 3rem;
}

.glossary-desc {
    font-size: 1.3rem;
    font-weight: 600;
}

.font-weight-500 {
    font-size: 1.25rem;
    font-weight: bold;
}


.object-cover {
    object-fit: cover !important;
}

/* Transition the lines */
.faq-icon line {
    stroke: black;
    stroke-width: 2;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.line-vertical {
    transform-origin: center;
}

/* Hide vertical line when open */
.faq-dropdown.open .line-vertical {
    transform: scaleY(0);
    opacity: 0;
}

/* Answer transition */
.dropdown-answer {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.4s ease, opacity 0.4s ease;
}

/* When open, show answer */
.faq-dropdown.open .dropdown-answer {
    max-height: 500px;
    opacity: 1;
}

.rich-text p {
    text-align: justify;
}

.font-large {
    /* font-size: clamp(48px, 9.25vw, 180px); */
    font-size: 90px;

}

.page-title-block h5,
.hero-wrapper h5 {
    text-transform: none !important;
}

.packing-item {
    display: flex;
    justify-content: center;
    align-items: center;
}

#map {
	height: 450px;
	width: 100%;
	max-width: 1280px;
	margin: 0 auto;
}

/* ========== Hero Base Styles ========== */
.product-hero-section {
    position: relative;
    width: 100%;
	/* min-height: calc(100dvh - 112px); */
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    overflow: hidden;
}

/* ========== Background Image Layer ========== */
.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
	background: url('../images/banner/infinity.webp') right center no-repeat;
    /* background: */
      /* linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),  /* semi-transparent black gradient */
      /* url('../images/banner/infinity.webp') right center no-repeat; */
    background-size: contain;
	opacity: 0.6;
    z-index: 1;
}

/* ========== Content Layer ========== */
.product-hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
	padding: 0 2rem !important;
    z-index: 10;
	min-height: calc(100dvh - 112px);
	position:relative;
}

.hero-text {
    max-width: 700px;
}

.hero-text h5 {
    font-size: 1.2rem;
    color: var(--secondary);
	font-weight:bold;
	text-transform: none !important;
}

.hero-text .large-title {
  font-size: clamp(2.5rem, 6vw, 6rem);
  line-height: 1.1;
  font-weight: 700;
   letter-spacing: -0.02em; 
  text-transform: uppercase; 
  color:var(--secondary);
}

/* ========== Responsive Styles ========== */
@media (max-width: 992px) {
    
    .hero-text h5 {
        font-size: 1rem;
    }

    .product-hero-content,.hero-content {
        text-align: center;
    }

    .hero-text {
        margin: 0 auto;
		z-index:999;
    }
}

.footer-footer-bottom p,
.footer-footer-bottom span * {
  font-size: 0.8rem;
}

.about-section .about-banner-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 3rem 0;
      min-height: 320px;
}

.about-section .about-banner-text,
.about-section .about-banner-image {
  width: 50%;
  min-width: 0;
  box-sizing: border-box;
}

.about-section .about-banner-text h1.large-title {
  font-size: 6.5rem;
}


.about-section .about-banner-image img {
  width: 100%;
  /* height: auto; */
  border-radius: 10px;
  display: block;
  object-fit:contain;
}

/* Responsive */
@media (max-width: 768px) {
  .about-section .about-banner-wrapper {
    flex-direction: column;
    text-align: center;
	gap:1rem;
	min-height: 0 !important;
  }

.about-banner-image img{
	
}
  .about-section .about-banner-text,
  .about-section .about-banner-image {
    width: 100%;
  }

  .about-section .about-banner-text h1.large-title {
    font-size: 2rem;
  }
}


.table-minimalist p, .table-minimalist span {
	margin: 0 !important;
	font-family: 'NotoSans', sans-serif !important;
	font-size: 1rem !important;
	text-align:left !important;
}

.contact-card p, .contact-card a {
    font-size: .8rem;
    letter-spacing: normal;
    line-height: 160%;
}

.contact-card h5{
	font-size: 1rem;            /* ~16px – appropriate for small headings */
    font-weight: 600;           /* Semi-bold for emphasis */
    letter-spacing: 0.3px;      /* Improves clarity */
    line-height: 1.4;           /* Keeps it tight but readable */
}

.px-1rem{
	padding-left:1rem;
	padding-right:1rem;
	
}
p.max-width-45rem {
    text-align: justify !important;
}



/* Unique CSS for Contact Banner and Modal */
.mosil-contact-sticky {
	position: fixed;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
	background: var(--yellow);
	color: #fff;
	padding: 15px 10px;
	border-radius: 8px 0 0 8px;
	cursor: pointer;
	font-size: 16px;
	font-weight: 600;
	box-shadow: -4px 4px 15px rgba(0, 0, 0, 0.2);
	z-index: 1000;
	transition: transform 0.3s ease, background 0.3s ease;
	writing-mode: vertical-rl;
	text-orientation: mixed;
	text-align: center;
	line-height: 1.5;
	text-transform: uppercase;
}

.mosil-contact-sticky:hover {
	transform: translateY(-50%) scale(1.05);
	background: var(--green);
}

.mosil-modal-header{
	display:flex;
	justify-content:space-between;
	align-items:center;
	margin-bottom: 1rem;
}
.mosil-contact-modal {
	display: none; /* Ensure modal is hidden by default */
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.6);
	z-index: 1001;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.mosil-contact-modal.active {
	opacity: 1;
}

.mosil-modal-content {
	background: #fff;
	border-radius: 12px;
	padding: 30px;
	width: 100%;
	max-width: 500px;
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
	position: relative;
	transform: scale(0.8);
	opacity: 0;
	transition: transform 0.3s ease, opacity 0.3s ease;
}

.mosil-contact-modal.active .mosil-modal-content {
	transform: scale(1);
	opacity: 1;
}

.mosil-modal-title {
	font-size: 24px;
	font-weight: 600;
	color: #1e3a8a;
	text-align: left;
	line-height: normal;
    letter-spacing: normal
}

.mosil-modal-close {
	/* position: absolute; */
	/* top: 15px; */
	/* right: 15px; */
	font-size: 1rem;
	cursor: pointer;
	transition: color 0.3s ease;
	background: var(--green);
	padding: 10px;
	display: flex;
	justify-content: center;
	align-items: center;
	color: var(--yellow);
	border-radius: 50%;
	width: 30px;
    height: 30px;
}

.mosil-modal-close:hover {
	color: #e11d48;
}

.mosil-contact-form .mosil-field-wrapper {
	margin-bottom: 1rem;
}

.mosil-contact-form .mosil-text-field {
	width: 100%;
	padding: 12px;
	border: 1px solid #d1d5db;
	border-radius: 8px;
	font-size: 16px;
	transition: border-color 0.3s ease, box-shadow 0.3s ease;
	background: transparent;
	margin: 0;
}

.mosil-contact-form .mosil-text-field:focus {
	outline: none;
	border-color: #3b82f6;
	box-shadow: 0 0 5px rgba(59, 130, 246, 0.5);
}

.mosil-contact-form .mosil-textarea {
	width: 100%;
	padding: 12px;
	border: 1px solid #d1d5db;
	border-radius: 8px;
	font-size: 16px;
	min-height: 100px;
	resize: vertical;
	background: transparent;
}

.mosil-contact-form .mosil-submit-button {
	width: 100%;
	padding: 12px;
	background: var(--yellow);
	color: #fff;
	border: none;
	border-radius: 8px;
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
	transition: background 0.3s ease;
}

.mosil-contact-form .mosil-submit-button:hover {
	background: var(--green);
}

.mosil-contact-form .mosil-success-message,
.mosil-contact-form .mosil-error-message {
	display: none;
	margin-top: 20px;
	padding: 15px;
	border-radius: 8px;
	font-size: 14px;
}

.mosil-contact-form .mosil-success-message {
	background: #d1fae5;
	color: #065f46;
}

.mosil-contact-form .mosil-error-message {
	background: #fee2e2;
	color: #dc2626;
}

.error {
	color: #dc2626;
	font-size: 12px;
	display: block;
}

@media (max-width: 600px) {
	.mosil-modal-content {
		width: 90%;
		padding: 20px;
	}

	.mosil-contact-sticky {
		padding: 10px 8px;
		font-size: 14px;
	}
}



/* new header */
.search-wrapper-new {
	display:none;
    position: absolute;
    color: var(--primary);
    width: 44px;
    height: 100%;
    z-index: 9;
    top: 100%;
	left:0;
    padding: 2rem;
    width: 100%;
    background: var(--green);
    border-bottom-right-radius: 1rem;
    border-bottom-left-radius: 1rem;
}

.search-wrapper-new.open {
    display: flex;
    justify-content: start;
    align-items: center;
}
        
/* .timeline-right { */
    /* display: grid; */
    /* grid-template-columns: 1fr;  */
    /* grid-row-gap: 2.2vw; */
    /* grid-column-gap: 2.2vw; */
    /* grid-template-rows: auto; */
    /* grid-auto-columns: 1fr; */
    /* flex-flow: column; */
/* } */

/* For desktop and larger screens: 2 columns */
/* @media screen and (min-width: 768px) { */
    /* .timeline-right { */
        /* grid-template-columns: 1fr 1fr; */
    /* } */
/* } */

