/*
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.5
Tested up to: 6.9
Requires at least: 3.6
Requires PHP: 5.2.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: blog, one-column, two-columns, right-sidebar, custom-header, custom-menu, editor-style, featured-images, footer-widgets, microformats, post-formats, rtl-language-support, sticky-post, translation-ready, accessibility-ready, block-patterns
Text Domain: twentythirteen

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


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


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

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


:root {
	--blue-color: #050E3C;
	--red-color: #EC1F24;
}
h1, h2, h3, h4, h5{
	font-family: 'Quicksand', sans-serif;
}
body{
	font-family: 'DM Sans', sans-serif;
}
.container-fluid{
	width: 95%;
}
section{
	padding: 60px 0;
	overflow: hidden;
}
/* header css */
header.aarvi-header {
	position: absolute;
	z-index: 9;
	width: 100%;
	padding: 0px 20px;
	transition: all 0.3s ease;
	border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

header.aarvi-header .border-right {
	transition: all 0.3s ease;
	border-right: 1px solid rgba(255, 255, 255, 0.2);
}

header.aarvi-header .border-left {
	transition: all 0.3s ease;
	border-left: 1px solid rgba(255, 255, 255, 0.2);
}

header.aarvi-header .contact-head {
	transition: all 0.3s ease;
	text-align: end;
	padding: 15px 0;
}

header.aarvi-header .logo-head {
	transition: all 0.3s ease;
	padding: 15px 0;
}
a.home-link img {
    height: 70px;
}
header.aarvi-header.navbar-scrolled {
	position: fixed;
	top: 0;
	background: #fff;
	z-index: 1024;
	padding: 0 10px;
	border-bottom: 1px solid rgb(106 106 106 / 15%);
}
/* .navbar-scrolled #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item > a.mega-menu-link{
	color: var(--blue-color) !important;
} */

header.aarvi-header.navbar-scrolled .border-right {
	border-right: 1px solid rgb(106 106 106 / 15%);
}

header.aarvi-header .border-left {
	border-left: 1px solid rgb(106 106 106 / 15%);
}

header.aarvi-header.navbar-scrolled .contact-head {
	text-align: end;
	padding: 10px 0;
}

header.aarvi-header.navbar-scrolled .logo-head {
	padding: 10px 0;
}

@media (max-width:767px) {

	header.aarvi-header .border-right,
	header.aarvi-header.navbar-scrolled .border-right {
		border-right: none;
	}

	header.aarvi-header .border-left,
	header.aarvi-header.navbar-scrolled .border-left {
		border-left: none;
	}
}





/* Hero section */
.hero-section {
	position: relative;
	height: 100vh;
	min-height: 700px;
	width: 100%;
	background-color: #1a1a1a;
	color: #fff;
}

.hero-section h1 {
	font-family: var(--font-heading);
}

.hero-section .hero-swiper,
.hero-section .swiper-slide {
	width: 100%;
	height: 100%;
}

.hero-section .slide-bg {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 0;
}

.hero-section .slide-bg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.hero-section .bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgb(0 0 0 / 66%) 0%, rgb(0 0 0 / 50%) 50%, rgba(237, 221, 83, 0) 100%);
    z-index: 1;
}

.hero-section .slide-content-wrapper {
	height: 100%;
	display: flex;
	align-items: center;
	/* padding-bottom: var(--nav-height); */
	position: relative;
	/* max-width: 90%; */
	margin: 0 auto;
	z-index: 2;
}

.mt-80 {
	margin-top: 80px;
}

.hero-section .banner-badge {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-weight: 500;
	letter-spacing: 0.5px;
	margin-bottom: 1rem;
	opacity: 0;
	transform: translateY(20px);
	color: #fff;
	padding: 5px 10px;
	border-radius: 25px;
}

.hero-section .subheading-bg {
    background-color: rgba(247, 249, 252, 0.219);
    border: none;
}

.hero-section .banner-title {
	font-family: 'Quicksand', sans-serif;
	color: #fff;
	font-size: 3.5rem;
	font-weight: 700;
	line-height: 1.1;
	margin-bottom: 1.5rem;
	opacity: 0;
	transform: translateY(30px);
}

.hero-section .hero-text-script {
	font-family:'Marck Script', cursive;;
	font-weight: 400;
	font-size: 4.5rem;
	line-height: 0.8;
	display: inline-block;
	margin-right: 10px;
	color: var(--red-color);
}

.hero-section .banner-description {
	font-size: 1.125rem;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.9);
	margin-bottom: 2.5rem;
	max-width: 700px;
	opacity: 0;
	transform: translateY(30px);
}

.hero-section .btn-wrapper {
	opacity: 0;
	transform: translateY(30px);
}

.btn-pill {
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 12px;
	font-weight: 600;
	transition: all 0.3s ease;
	cursor: pointer;
	background-color: #fff;
	color: var(--clr-black);
	padding: 0.6rem 0.6rem 0.6rem 2rem;
	border-radius: 50px;
	font-size: 1rem;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-icon-circle-hero {
	background-color: var(--clr-black);
	color: #fff;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: transform 0.3s ease, background-color 0.3s ease;
}

.btn-pill:hover {
	background-color: var(--red-color);
	color: var(--clr-black);
}

.btn-pill:hover .btn-icon-circle-hero {
	transform: rotate(45deg);
	background-color: #fff;
	color: var(--clr-black);
}

.hero-section .hero-nav-container {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 80px;
	z-index: 10;
	display: flex;
	border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-section .hero-arrow {
	position: relative;
	margin: 0;
	width: 50%;
	height: 100%;
	top: 0;
	left: 0;

	color: #fff;
	border: none;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: all 0.3s ease;
}

.hero-arrow:last-child {
	border-right: none;
}

.hero-arrow:after {
	display: none;
}

.hero-arrow:hover {
	color: rgba(255, 255, 255, 1);
	background-color: rgba(255, 255, 255, 0.15);
	border-top: rgba(93, 102, 111, 0.5);
}

.hero-arrow svg {
	width: 32px;
	height: 32px;
}

.hero-section .swiper-slide-active .banner-badge {
	animation: fadeUp 0.8s ease forwards 0.2s;
}

.hero-section .swiper-slide-active .banner-title {
	animation: fadeUp 0.8s ease forwards 0.4s;
}

.hero-section .swiper-slide-active .banner-description {
	animation: fadeUp 0.8s ease forwards 0.6s;
}

.hero-section .swiper-slide-active .btn-wrapper {
	animation: fadeUp 0.8s ease forwards 0.8s;
}

@keyframes fadeUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@media (max-width:767px) {
	.hero-section .banner-description {
		font-size: 14px;
	}

	.hero-section .subheading span {
		font-size: 11px;
	}

	.hero-section .hero-nav-container {
		height: 50px;
	}

	.hero-section .slide-content-wrapper {
		padding-bottom: 40px;
	}

	.btn-pill {
		font-size: 14px !important;
		padding: 5px 5px 5px 15px;
	}

	.btn-icon-circle-hero {
		width: 35px;
		height: 35px;
	}

}


.btn-pill {
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    background-color: #fff;
    color: #050E3C;
    padding: 0.6rem 0.6rem 0.6rem 2rem;
    border-radius: 50px;
    font-size: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}
.btn-icon-circle-hero {
    background-color: #050E3C;
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.btn-pill:hover {
	background-color: #050E3C;
	color: #fff;
}

.btn-pill:hover .btn-icon-circle-hero {
	transform: rotate(45deg);
	background-color: #fff;
	color: #050E3C;
}



/* about section */

.section-headline-s2 {
	font-family: 'Quicksand', sans-serif;
	font-weight: 600;
	font-size: 3rem;
	line-height: 1.1;
	/* margin-bottom: 2.5rem; */
	color: var(--blue-color);
}

.text-script-accent-s2 {
	font-family: 'Marck Script', cursive;
	color: var(--red-color);
	font-size: 3.5rem;
	font-weight: 400;
	display: inline;
}
.about-content h4 {
    color: var(--blue-color);
    font-weight: 600;
}
.about-content p {
	font-size: 1.125rem;
	line-height: 1.7;
	color: #555;
	margin-bottom: 1.5rem;
}

.about-image img {
	width: 100%;
	height: auto;
	border-radius: 12px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.btn-custom-pill {
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 12px;
	font-weight: 600;
	transition: all 0.3s ease;
	cursor: pointer;
	background-color: var(--blue-color);
	color: #fff;
	padding: 0.8rem 1.2rem;
	border-radius: 50px;
	font-size: 1rem;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-custom-pill:hover {
	background-color: var(--red-color);
	color: #fff;
}

.btn-custom-pill .btn-icon-circle-s2 {
	background-color: #fff;
	color: var(--blue-color);
	width: 30px;
	height: 30px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: transform 0.3s ease, background-color 0.3s ease;
}

.btn-custom-pill:hover .btn-icon-circle-s2 {
	transform: translateX(3px);
	background-color: #fff;
	color: var(--red-color);
}

.stats-bar {
	background-color: #F2F2F2;
	border-radius: 12px;
	padding: 3rem 0;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.stat-number {
	font-family: var(--font-heading);
	font-weight: 700;
	font-size: 2.5rem;
	line-height: 1;
}

.stat-number.text-accent {
	color: var(--blue-color) !important;
}

.stat-label {
	font-size: 1rem;
	font-weight: 500;
	color: #777;
	margin-top: 0.5rem;
}

@media (max-width: 991px) {
	:root {
		--fs-banner-title: 3.5rem;
		--fs-banner-script: 4rem;
	}
}

@media (max-width: 768px) {
	:root {
		--fs-banner-title: 2.5rem;
		--fs-banner-script: 3rem;
	}

	.hero-text-script {
		display: block;
		margin-bottom: 0.5rem;
	}

	.hero-nav-container {
		height: 60px;
	}

	.hero-arrow svg {
		width: 24px;
		height: 24px;
	}

	.slide-content-wrapper {
		align-items: center;
		padding-top: 40px;
	}

	.section-headline-s2 {
		font-size: 28px;
		margin-bottom: 0;
	}

	.text-script-accent-s2 {
		font-size: 2.5rem;
	}

	.stats-bar {
		padding: 2rem 0;
	}

	.stat-number {
		font-size: 2rem;
	}

	.stat-label {
		font-size: 0.9rem;
	}

	.about-content p {
		font-size: 16px;
	}
}



/* feature section */
.feature-card-1{
	background: #fff;
    border-radius: 25px;
    padding: 35px 30px;
    text-align: center;
    color: var(--blue-color);
	position: relative;
	transition: all 0.4s ease-in-out;
	height: 100%;
}
.feature-card-1:hover{
	background: var(--blue-color);
}
.feature-card-1:hover.feature-card-1 p{
color: #fff;
}
.feature-card-1:hover.feature-card-1 h4{
color: #fff;
}
.feature-card-1:hover.feature-card-1 a{
color: var(--red-color);
border-bottom: 1px solid var(--red-color);
}

.feature-card-1 i {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: #fff;
    color: var(--blue-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    margin: 0 auto 25px;
    border: 2px dashed var(--blue-color);
	transition: all 0.4s ease-in-out;
}
.feature-card-1:hover.feature-card-1 i{
	background-color: var(--red-color);
	color: var(--blue-color);
	border: none;
}
.feature-card-1 p {
    color: #555;
}
.feature-card-1 a{
	color: var(--blue-color);
	text-decoration: none;
	border-bottom: 1px solid var(--blue-color);
}
.feature-card {
    background: var(--blue-color);
    border-radius: 25px;
    padding: 35px 30px;
    text-align: center;
    color: #fff;
	position: relative;
	height: 100%;
}
.feature-card i {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: var(--red-color);
    color: var(--blue-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    margin: 0 auto 25px;
}
.feature-card a{
	color: var(--red-color);
	text-decoration: none;
	border-bottom: 1px solid red;
}
.logo-feature {
    position: absolute;
    width: 100px;
    opacity: 0.1;
    bottom: 20%;
    left: 30%;
}



/* Marquee Section */
.marquee-section {
    background-color: var(--blue-color);
    padding: 2rem 0;
    overflow: hidden;
    width: 90%;
    margin: auto;
    border-radius: 25px;
    margin-top: -120px;
    position: relative;
    border: 10px solid #fff;
    margin-bottom: 60px;
}

.marquee-content {
    display: flex;
    align-items: center;
    white-space: nowrap;
    animation: marquee 30s linear infinite;
}

.marquee-item {
    color: #FFF;
    font-size: 2rem;
    font-weight: 600;
    margin: 0px 2rem 0;
    display: flex;
    align-items: center;
}

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

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

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




/* product section */
.myco-products-section {
    background-color: var(--blue-color);
    color: #fff;
    position: relative;
    border-radius: 20px 20px 0 0;
    margin-top: 70px;
	overflow: unset;
}

.myco-section-header {
    margin-bottom: 3rem;
}

.myco-badge-products {
    background: #fff;
    color: #222;
    padding: 5px 15px;
    border-radius: 50px;
    font-weight: 600;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 0.5rem;
    font-size: 14px;
}

.myco-section-title {
    font-size: 35px;
    font-weight: 800;
    color: #fff;
    margin-top: 10px;
}

.myco-section-description {
    color: #fff;
    font-size: 45px;
}
.product-content{
    color: #ffffffb0;
}

.myco-product-card {
    background-color: var(--red-color);
    border-radius: 25px;
    overflow: hidden;
    position: relative;
    /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3); */
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    /* height: 500px;  */
}

/* .myco-product-card:hover {
    transform: translateY(-5px);
} */

.myco-card-image-wrapper {
    position: relative;
    height: 100%;
}

.myco-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.myco-product-card:hover .myco-card-image {
    transform: scale(1.05);
}

.myco-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgb(0 0 0 / 12%) 50%);
    z-index: 1;
}

.myco-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    z-index: 2;
}

.myco-card-category-badge {
    background-color: var(--red-color);
    /* color: var(--dark-color); */
    padding: 0.25rem 0.75rem;
    border-radius: 50%;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    position: absolute;
    top: -10px;
    left: -10px;
    z-index: 3;
    width: 75px;
    height: 75px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 10px solid var(--blue-color);
}
span.myco-card-category-badge i {
    font-size: 25px;
    color: var(--blue-color);
}
.myco-product-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: #fff;
}

.myco-product-short-desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* .myco-custom-owl-nav {
            position: absolute;
            top: 0;
            right: 1.5rem;
            margin-top: -1rem; 
            z-index: 10;
        } */

.myco-products-section .owl-carousel .owl-nav {
    display: none;
}

.myco-owl-nav-btn {
    width: 55px;
    height: 55px;
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-radius: 50%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin-left: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.myco-owl-nav-btn:hover {
    background-color: var(--yellow-color);
    color: var(--dark-color);
    border-color: var(--yellow-color);
}

.myco-card-content .owl-next,
.myco-card-content .owl-prev {
    position: absolute;
    right: 1.5rem;
    bottom: 2.5rem;
    font-size: 1.5rem;
    color: var(--dark-color);
    transition: color 0.2s ease;
    cursor: pointer;
    width: 45px;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgb(255 255 255 / 28%);
    border-radius: 50%;
}

.myco-card-content .owl-prev {
    right: 4rem;
}

@media (max-width: 992px) {
    .myco-section-title {
        font-size: 2.5rem;
    }

  .myco-section-description {
    font-size: 28px;
}

    .myco-custom-owl-nav {
        position: relative;
        right: auto;
        top: auto;
        text-align: center;
        margin-top: 1rem;
    }

    .myco-products-section {
        padding: 3rem 0;
        overflow: unset;
    }
	.chaty-channels {
    display: none;
}
}




/* pcd section */
.small-badge {
    padding: 5px 15px;
    border-radius: 20px;
    background-color: #fff;
    color: var(--blue-color);
    border: 1px solid #0000005e;
    display: inline;
    align-items: center;
    justify-content: center;
}
.small-badge span {
    width: 10px !important;
    height: 10px !important;
    border-radius: 50%;
    border: 6px solid var(--red-color);
    display: inline-flex;
    margin-right: 10px;
}
.pcd-img-box {
    position: relative;
}
.pcd-img-box img {
    border-radius: 20px;
}
.tag-box {
    position: absolute;
    top: 0;
    width: 255px;
    right: 0;
    background-color: var(--blue-color);
    padding: 20px;
    border-radius: 0px 20px 0px 20px;
	color: #fff;
}
.tag-box a {
    color: var(--red-color);
}
.pcd-content {
    padding-left: 30px;
}
.pcd-content h2 {
       font-weight: 600;
    font-size: 3rem;
    line-height: 1.1;
    margin: 15px 0;
    color: var(--blue-color);
}
.pcd-content h2 span{
	font-family: 'Marck Script', cursive;
    color: var(--red-color);
    font-size: 3.5rem;
    font-weight: 400;
}
.pcd-point-box {
    display: flex;
    align-items: center;
}
.icon-box-pcd i {
    width: 70px;
    height: 70px;
    background-color: var(--red-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    border-radius: 18px;
    margin-right: 30px;
	color: #fff;
}
.pcd-point-1 p {
    color: #5F5F5F;
}




/* Services-section */
.fe-sec{
	overflow: unset;
	height: auto;
	padding: 0 0 250px;
}
.services-section {
    background: url(images/aarvi-bulidibg.png), rgb(5 14 60 / 25%);
	background-blend-mode: multiply;
    position: relative;
    height: 400px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.fea-card {
    margin-top: -180px;
    position: relative;
}
 .services-card {
    background-color: var(--blue-color);
    transition: all 0.3s ease;
    margin: 0 auto;
    width: 100%;
    border-radius: 15px;
    padding: 15px;
    transition: all 0.4s ease-in-out;
}

 .service-card:hover {
    transform: translateY(-3px);
    background-color: var(--red-color);
	border-radius: 15px;
}
 .service-card:hover .icon-box{
background-color: var(--blue-color);
}
 .icon-box {
    background-color: var(--red-color);
    width: 80px;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 49px;
	transition: all 0.4s ease-in-out;
}
 .divider {
    width: 55%;
    height: 2px;
    border-radius: 2px;
    background: linear-gradient(to right, #ffffff 50%, #7e7e7e 50%);
}
.icon-box i {
    font-size: 35px;
}


/* third party section */
.tag-box-2 {
    position: absolute;
	top: unset;
    bottom: 0;
    width: 341px;
    left: 0;
    background-color: var(--blue-color);
    padding: 20px;
    border-radius: 0px 20px 0px 20px;
    color: #fff;
}



/* Why aarvi Section css */

.why-aarvi {
	position: relative;
	padding: 40px 0;
}
.section-heading {
    font-weight: 600;
    font-size: 3rem;
    line-height: 1.1;
    margin: 15px 0;
    color: var(--blue-color);
}
.aarvi-text-highlight{
font-family: 'Marck Script', cursive;
    color: var(--red-color);
    font-size: 3.5rem;
    font-weight: 400;
}
.aarvi-intro-highlight {
    background-color: rgb(255, 255, 255);
    color: var(--blue-color);
    display: inline;
    align-items: center;
    justify-content: center;
    padding: 5px 15px;
    border-radius: 20px;
    border-width: 1px;
    border-style: solid;
    border-color: rgba(0, 0, 0, 0.37);
    border-image: initial;
}

.aarvi-intro-highlight span{
	    width: 10px !important;
    height: 10px !important;
    border-radius: 50%;
    border: 6px solid var(--red-color);
    display: inline-flex;
    margin-right: 10px;
}
.why-aarvi .why-inner {
	border: 1px solid #f0f0f0;
	margin-top: 25px;
}

.why-aarvi .why-content {
	height: 100%;
	min-height: 250px;
	display: flex;
	flex-direction: column;
	padding: 30px 40px;
}

.why-aarvi .why-content i {
	font-size: 45px;
	color: var(--blue-color);
	margin-bottom: 15px;
}

.why-aarvi .why-content .why-heading {
	font-size: 28px;
	font-weight: 600;
	margin-bottom: 15px;
	color: var(--blue-color);
}

.why-aarvi .why-content p {
	flex-grow: 1;
	margin-bottom: 20px;
}

.why-aarvi .why-content a {
	text-decoration: none;
	color: var(--red-color);
	transition: color 0.3s;
}

.why-aarvi .why-content a:hover {
	color: var(--blue-color);
}

.why-aarvi .why-content a i {
	font-size: 14px;
	margin-left: 5px;
	color: var(--red-color);
	transition: margin-left 0.3s;
}

.why-aarvi .why-content a:hover i {
	margin-left: 10px;
}




/* Contact Section Css */


.contact-section .contact-section-inner {
	background: var(--blue-color);
	background-size: cover;
	background-repeat: no-repeat;
	margin: 10px;
	padding: 80px 0;
	color: #fff;
	border-radius: 12px;
}
.contact-section .section-title{
    font-size: 2.8rem;
    font-weight: 500;
    line-height: 1.2;
	margin-top: 15px;
}
   
.contact-section .subtitle-tag {
	background: unset;
	color: #fff;
	border: 2px solid #fff;
	border-style: dashed;
	padding: 5px 10px;
	margin-bottom: 15px;
	border-radius: 25px;
}

.contact-section .contact-form .form-label {
	color: var(--highlight-text);
	font-size: 0.9rem;
	margin-bottom: 8px;
}

.contact-section .contact-form .form-control {
	background-color: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.1);
	color: #fff;
	border-radius: 8px;
	padding: 15px 20px;
	font-size: 1rem;
	transition: var(--transition-4s);
}

.contact-section .contact-form .form-control:focus {
	background-color: rgba(255, 255, 255, 0.1);
	border-color: var(--primary-color);
	box-shadow: 0 0 0 0.25rem rgba(161, 198, 51, 0.3);
	color: #fff;
}

.contact-section .contact-form textarea.form-control {
	min-height: 150px;
	resize: none;
}
.contact-section input.wpcf7-form-control.wpcf7-submit.has-spinner.rk-form-submit {
    font-size: 14px;
    font-weight: 600;
    border: none;
    background-color: var(--red-color);
    padding: 15px 24px 15px 24px;
    display: inline-block;
    align-items: center;
    border-radius: 99px;
    position: relative;
    transition: all .5s cubic-bezier(.77, 0, .175, 1);
	color: #fff;
}
.contact-section .testimonial-card {
	background-color: rgba(255, 255, 255, 0.05);
	border-radius: 12px;
	padding: 50px;
	padding-bottom: 0;
	height: 100%;
	overflow: hidden;
}

.contact-section .testimonial-card h3 {
	color: #fff;
	font-size: 32px;
}

.contact-section .testimonial-card .highlight {
	color: var(--highlight-text);
}

.contact-section .testimonial-quote-icon {
	color: var(--testimonials-quote);
	font-size: 92px;
	font-weight: 900;
	line-height: 1;
	font-family: serif;
}

.contact-section .testimonial-text {
	font-size: 20px;
	line-height: 1.5;
}

.contact-section .author-info {
	display: flex;
	align-items: center;
	justify-content: space-between;
	z-index: 2;
	padding-top: 20px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-section .author-details img {
	width: 50px !important;
	height: 50px;
	border-radius: 50%;
	object-fit: cover;
	margin-right: 15px;
}

.contact-section .author-details h5 {
	font-size: 1rem;
	font-weight: 600;
	color: #fff;
	margin: 0;
}

.contact-section .author-details p {
	font-size: 0.85rem;
	color: var(--highlight-text);
	margin: 0;
	line-height: 1.2;
}

.contact-section .testimonial-nav {
	display: flex;
	gap: 10px;
}

.contact-section .testimonial-nav button {
	width: 38px;
	height: 38px;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 50%;
	background-color: transparent;
	color: #fff;
	border: 1px solid rgba(255, 255, 255, 0.15);
	transition: var(--transition-4s);
	cursor: pointer;
}

.contact-section .testimonial-nav button:hover {
	background-color: var(--primary-color);
	border-color: var(--primary-color);
	color: var(--ancient-color);
}

@media (max-width: 991.98px) {
	.contact-section {
		padding: 30px 0;
	}

	.contact-section .row {
		padding: 0 ;
	}

	.contact-section .testimonial-text {
		font-size: 16px;
	}

	.contact-section .testimonial-card {
		/* margin-top: 40px; */
		padding: 20px;
	}

	.contact-section .testimonial-quote-icon {
		font-size: 6rem;
		margin-bottom: 10px;
	}

	.contact-section .contact-section-inner {
		padding: 40px 0;
	}
}



  .blog-card {
        border: 1px solid #e2e8f0;
        border-radius: 25px;
        overflow: hidden;
        background: #fff;
        transition: 0.3s;
    }

    .blog-card:hover {
        box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    }

    .blog-category {
    background: #ffe2e2;
    color: var(--red-color);
    padding: 5px 14px;
    border-radius: 15px;
    font-size: 14px;
    display: inline-block;
    font-weight: 600;
}

    .blog-title {
    font-size: 26px;
    font-weight: 700;
    color: var(--blue-color);
    line-height: 1.3;
}
.blog-img-box{
	width: 50%;
}
    .blog-meta {
        font-size: 15px;
        margin-bottom: 18px;
    }

    .blog-link {
        color: var(--red-color);
        font-weight: 600;
        text-decoration: none;
        font-size: 17px;
        display: inline-flex;
        align-items: center;
        gap: 8px;
    }

    .blog-link:hover {
        color: var(--blue-color);
    }

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

    .btn-blog {
        background: #2d6a57;
        color: #fff;
        padding: 12px 28px;
        border-radius: 50px;
        font-size: 18px;
        font-weight: 600;
        display: inline-flex;
        align-items: center;
        gap: 12px;
        text-decoration: none;
    }
.blog-heading {
    font-size: 32px !important;
    color: var(--blue-color);
}
.blog-heading span {
    font-family: 'Marck Script', cursive;
    color: var(--red-color);
    font-size: 36px;
    font-weight: 400;
}
    .btn-blog:hover {
        background: #234f43;
        color: #fff;
    }




.scroll-text-bar {
    position: fixed;
    right: 0;
    top: 0;
    width: 60px;
    height: 100vh;
    background: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1111111111;
    overflow: hidden;
}
.scroll-text {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    font-size: 2.2rem;
    font-weight: 900;
    letter-spacing: 4px;
    transform: translateY(0);
    transition: transform 0.2s ease-out;
    color: #00000000;
    -webkit-text-stroke: 1px var(--red-color);
}



.cta-banner {
    background: url('images/cta-bg.webp') center/cover no-repeat;
    border-radius: 25px;
    padding: 50px 70px;
    position: relative;
	background-attachment: fixed !important; 
}
.cta-heading{
	font-size: 32px; 
	line-height: 1.3;
}
    .cta-banner::before {
        content: "";
        position: absolute;
        inset: 0;
        background: rgb(5 14 60 / 74%); 
        border-radius: 25px;
        z-index: 1;
    }

    .cta-content {
        position: relative;
        z-index: 2;
        color: #fff;
    }

   


        .doctor-wrapper {
            position: relative;
            height: 100%;
        }






/* --- Footer Styles --- */
.main-footer {
	background-color: var(--blue-color);
	/* padding: var(--spacing-xl) 0 0; */
	color: #fff;
	overflow: hidden;
}


/* Top CTA Row */
.footer-cta-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 50px 0;
}

.footer-cta-headline {
	font-family: 'Quicksand', sans-serif;
	font-size: 2.8rem;
	font-weight: 800;
	line-height: 1.1;
	color: var(--color-light);
	margin-bottom: 0;
}

.accent-text {
	color: var(--red-color);
}

.btn-contact-us {
	background-color: var(--red-color);
	color: #fff;
	font-weight: 600;
	font-size: 1rem;
	border: none;
	padding: 0.75rem 1.5rem;
	border-radius: 0.5rem;
	transition: background-color 0.3s ease;
	display: flex;
	align-items: center;
	gap: 0.5rem;
	text-transform: uppercase;
}

.btn-contact-us:hover {
	background-color: #fff;
	/* Lighter yellow */
	color: var(--red-color);
}

.btn-contact-us svg {
	width: 20px;
	height: 20px;
	stroke-width: 3;
}

.footer-divider {
	border-color: rgba(255, 255, 255, 0.1);
	margin: 0;
}

/* Bottom Navigation Row */
.footer-nav-row {
	padding: 50px 0;
}





.footer-logo {
	font-size: 1.8rem;
	font-weight: 900;
	color: var(--color-light);
	margin-bottom: 15px;
	height: 130px;
}

.footer-logo img {
	height: 125px;
}

.social-icons {
	display: flex;
	gap: 1.25rem;
	margin-bottom: 15px;
}

.social-icons a {
	color: #adb5bd;
	font-size: 1.1rem;
	transition: color 0.3s ease;
}

.social-icons a:hover {
	color: var(--red-color);
}

.since-text {
	font-family: 'Quicksand', sans-serif;
	font-size: 2rem;
	font-weight: 900;
	line-height: 1;
	color: #fff;
	margin-top: 15px;
}

.footer-heading {
	font-family: 'Quicksand', sans-serif;
	font-size: 1.1rem;
	font-weight: 700;
	color: #fff;
	margin-bottom: 15px;
}

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

.footer-links li {
	margin-bottom: 0.5rem;
}

.footer-links a {
	color: #fff;
	text-decoration: none;
	font-size: 0.95rem;
	transition: color 0.3s ease;
}

.footer-links a:hover {
	color: var(--red-color);
}

/* Copyright Row */
.footer-copyright-row {
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	padding: 15px 0;
	font-size: 0.85rem;
	text-align: center;
}

.copyright-text {
	margin-bottom: 0;
	color: #fff;
}

.policy-links a {
	color: #fff;
	text-decoration: none;
	margin-left: 0.5rem;
	transition: color 0.3s ease;
}

.policy-links a:hover {
	color: var(--red-color);
}









		  #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;
 
}
#sequence a:not(:last-child) {
    border-right: 1px solid #fffdfd;
}
#sequence {
    width: 100%;
    float: left;
    background: var(--red-color);
    position: fixed;
    bottom: 0px;
    z-index: 100;
    padding: 0;
    color: #fff !important;
    margin: 0 !important;
}




@media (max-width: 991px) {
	.container-fluid{
		width: 97%;
	}
	header.aarvi-header .logo-head{
		padding: 8px 0;
	}
	.scroll-text-bar {
    display: none;
}
section {
    padding: 40px 0;
}
.hero-section .banner-title {
    font-size: 32px;
}
.hero-section .hero-text-script {
    font-size: 38px;
}
.pcd-content {
    padding-left: 0;
    padding-top: 40px;
}
.pcd-content h2 {
    font-size: 32px;
    line-height: 1;
}
.pcd-content h2 span {
    font-size: 40px;
}
.tag-box {
    display: none;
}
.icon-box-pcd i {
    width: 60px;
    height: 60px;
    font-size: 32px;
    margin-right: 15px;
}
.service-card {
    border-bottom: 1px solid #fff;
    margin-bottom: 15px;
}
section#why-choose-us {
    padding: 0;
}
.cta-banner {
    padding: 50px 15px;
}
.cta-heading {
    font-size: 25px;
    line-height: 1.3;
    margin-bottom: 25px !important;
}
.section-heading {
    font-size: 32px;
}
.aarvi-text-highlight {
    font-size: 40px;
}
.why-aarvi .why-content {
    padding: 30px 20px;
}
.contact-section .section-title {
    font-size: 32px;
}
.blog-card {
    flex-wrap: wrap;
}
.blog-img-box {
    width: 100%;
}
.footer-cta-row {
    flex-wrap: wrap;
	padding: 40px 0;
}
.footer-cta-headline {
    font-size: 2rem;
}
.btn-contact-us {
    margin-top: 20px;
}
.difference-page .difference-banner h2 {
    font-size: 2rem !important;
}
}


.contact-modal{
	background-color: var(--blue-color);
	color: #fff !important;
}
.contact-modal input.wpcf7-form-control.wpcf7-submit.has-spinner.rk-form-submit {
    font-size: 14px;
    font-weight: 600;
    border: none;
    background-color: var(--red-color);
    padding: 15px 24px 15px 24px;
    display: inline-block;
    align-items: center;
    border-radius: 99px;
    position: relative;
    transition: all .5s cubic-bezier(.77, 0, .175, 1);
    color: #fff;
}

/* Breadcrumb Css */
.page-breadcrumb {
	background: linear-gradient(135deg, var(--blue-color) 0%, var(--red-color) 100%);
	padding: 120px 0 40px 0;
	color: #fff;
	border-bottom-left-radius: 15px;
	border-bottom-right-radius: 15px;
	position: relative;
	overflow: hidden;
}
.page-breadcrumb .container-fluid{
	position: relative;
	z-index: 1;
}

.page-breadcrumb::before {
	content: "";
	position: absolute;
	top: -50px;
	right: -50px;
	width: 200px;
	height: 200px;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 50%;
}

.page-breadcrumb::after {
	content: "";
	position: absolute;
	bottom: -80px;
	left: -80px;
	width: 250px;
	height: 250px;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 50%;
}

.page-breadcrumb .container {
	position: relative;
	z-index: 1;
}

.page-breadcrumb span.breadcrumb_new a {
	color: #fff;
	background: var(--red-color);
	padding: 5px;
	border-radius: 7px;
	text-decoration: none;
}

.page-breadcrumb span.breadcrumb_new {
	color: #fff;
}

.page-breadcrumb .extraa {
	margin: 54px 0;
}

@media(max-width:767px) {
	.page-breadcrumb {
    padding: 110px 0 30px 0;
}

	.page-breadcrumb .extraa {
		margin: 15px 0;
	}
}



/* =========================================
   1. General Page Styling
   ========================================= */

.aarvi-inner-page {
	padding: 60px 0;

}

@media (max-width: 992px) {
	.aarvi-inner-page {
		padding: 40px 0;
	}
}

.section-title-inner {
	font-weight: 500;
	color: var(--blue-color);
	margin-bottom: 2rem;
	position: relative;
	font-size: 2.5rem;
}

@media (max-width: 768px) {
	.section-title-inner {
    font-weight: 500;
    color: var(--blue-color);
    margin-bottom: 2rem;
    position: relative;
    font-size: 2rem;
}
}
.about-aarvi .accordion-button {
    font-weight: 600;
    color: var(--blue-color);
    background-color: #ddd;
    border: none;
    border-bottom: 1px solid #555;
}
.text-accent-inner{
	color: var(--red-color) !important;
}
.section-title-inner::after {
	content: '';
	display: block;
	width: 60px;
	height: 3px;
	background-color: var(--red-color);
	margin-top: 10px;
}

.text-center .section-title-inner::after {
	margin: 10px auto 0;
}

.lead {
	font-size: 1.15rem;
	color: #5D666F;
}

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



.btn-warning {
	background-color: var(--red-color);
	border-color: var(--red-color);
	color: var(--blue-color);
	font-weight: 600;
	/* height: var(--style-button-height); */
	transition: all 0.4s ease-in-out;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0 25px;
	border-radius: 25px;
}

.btn-warning:hover {
	background-color: #d1a54d;
	border-color: #d1a54d;
	color: var(--blue-color);
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}



   /* 2. Director's Message Styling */

.directors-message .image-box img {
	object-fit: cover;
	height: 100%;
	width: 100%;
	min-height: 400px;
	border-radius: 25px !important;
}

.directors-message .overlay {
	position: absolute;
	bottom: 16px;
	left: 0;
	right: 0;
	background: #00000091;
	padding: 1.5rem !important;
	border-bottom-left-radius: 25px;
	border-bottom-right-radius: 25px;
}

.directors-message .signature h4 {
	font-size: 2rem;
	line-height: 1;
}

.directors-message .lead {
	font-style: italic;
	border-left: 4px solid var(--red-color);
	padding-left: 15px;
}


   /* 4. Mission, Vision, Values Styling */


.mission-vision-values .card {
	transition: transform 0.4s, box-shadow 0.4s;
	border: 1px solid #555 !important;
	border-radius: 25px;
}

.mission-vision-values .card:hover {
	transform: translateY(-8px);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15) !important;
}

.mission-vision-values i {
	color: var(--red-color) !important;
	font-size: 35px;
}

.mission-vision-values .list-unstyled i {
	font-size: 1rem;
	color: var(--red-color) !important;
}




   /* 5. R&D Styling */

.research-development .accordion-button {
	font-weight: 600;
	color: var(--blue-color);
	background-color: #f7f9fc;
	border: none;
	border-bottom: 1px solid rgb(106 106 106 / 15%);
}

.research-development .accordion-button:not(.collapsed) {
	color: #fff;
	background-color: var(--blue-color);
	box-shadow: none;
}

.research-development .accordion-body {
	background-color: #fff;
	color: #5D666F;
	border: 1px solid rgb(106 106 106 / 15%);
	border-top: none;
}

.research-development i.fa-vials,
.research-development i.fa-microscope,
.research-development i.fa-balance-scale-left {
	font-size: 1.5rem;
}





   /* 8. What Makes Us Different Styling */
   

.difference-page .difference-banner {
	background-color: var(--blue-color);
	background-image: url('images/company-profile-bg.webp');
	background-size: cover;
	background-position: bottom;
	min-height: 300px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	position: relative;
	z-index: 1;
}

.difference-page .difference-banner::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.25);
	z-index: -1;
	border-radius: inherit;
}

.difference-page .difference-banner h2 {
	color: #fff !important;
	font-size: 3rem;
	position: relative;
}

.difference-page .difference-banner p {
	color: rgba(255, 255, 255, 0.9) !important;
	font-weight: 400;
}

.difference-page .difference-card {
	border: 1px solid #adb5bd !important;
	border-top: 5px solid var(--red-color) !important;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	border-radius: 25px;
}

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

.difference-page .difference-card i {
	color: var(--red-color) !important;
	font-size: 35px;
}

.difference-page .difference-card .card-title {
	font-weight: 600;
	margin-top: 15px;
}


.company-table {
      border: 1px solid #b0bbc5;
    }
    .company-table th,
    .company-table td {
      padding: 14px 16px;
      border: 1px solid #b0bbc5;
      vertical-align: middle;
    }
    .company-table th {
      width: 30%;
      font-weight: 600;
      background-color: #f8f9fa;
    }



	/* contact page */
	.contact-detail-inner i {
    display: flex;
    width: 40px;
    height: 40px;
    background: #fff;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
	color: var(--red-color);
	margin-top: 15px;
}
.contact-detail-inner a {
    text-decoration: none;
    color: #fff;
}
.col-lg-8.single-product-details h1 {
    font-size: 23px;
}
span.text {
    background: #ad3627;
    color: #ffff;
    border-radius: 7px;
    padding: 8px 21px;
    font-size: 16px;
    font-weight: 700;
}
h1.pagetitle {
    font-size: 22px;
}
a.global_btn.enquiry-btn {
    text-decoration: none;
}
.table>:not(caption)>*>* {
    padding: .5rem .5rem;
    color: var(--bs-table-color-state,var(--bs-table-color-type,var(--bs-table-color)));
    background-color: var(--bs-table-bg);
    border-bottom-width: var(--bs-border-width);
    box-shadow: inset 0 0 0 9999px var(--bs-table-bg-state,var(--bs-table-bg-type,var(--bs-table-accent-bg)));
}
thead.product-heading {
    color: #ffffff;
    background: linear-gradient(135deg, #ec1f24 0%, #b1232a 100%);
}
h3.product-title.sub-heading-ancient.mb-2 {
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    text-overflow: ellipsis;
    margin: 0 0 30px 0 !important;
}
a.global_btn.btn-small.mt-3 {
    text-decoration: none;
}