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

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


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


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

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

:root {
	--color-primary: #15622A;
	--color-secondary: #58B64E;
	--color-dark-bg: #151520;
	--color-text-dark: #343a40;
	--color-accent: #f0fdf4;
	--color-text-light: #f4f6f9;
	--color-white: #ffffff;
	--color-shadow-light: rgba(0, 0, 0, 0.08);
	--color-shadow-heavy: rgba(0, 0, 0, 0.4);

	--color-pink: #ffc0cb;
	--color-yellow: #fdd835;
	--color-purple: #9370DB;
	--color-light-bg: #f9f9f9;

	--font-heading: 'Figtree', sans-serif;
	--font-body: 'Figtree', sans-serif;
	--font-size-section-heading: 3.5rem;
	--font-size-body: 1.125rem;
	--section-padding: 32px 0;
	--border-radius-large: 1.5rem;
	--border-radius-xl: 2rem;
	--border-radius-mega: 3rem;
	--border-radius-mobile: 1rem;
}

body {
	font-family: var(--font-body);
	color: var(--color-text-dark);
	background-color: var(--color-white);
	line-height: 1.6;
	margin: 0;
	padding: 0;
	overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
	font-family: var(--font-heading);
	font-weight: 800;
}

p,
a,
li,
label,
input,
textarea,
button,
select {
	font-size: var(--font-size-body);
}

.section-heading {
	font-size: var(--font-size-section-heading);
	font-weight: 600;
	color: var(--color-text-dark);
	margin-bottom: 2.5rem;
	text-align: left;
	line-height: 1.1;
}

.container {
	max-width: 1300px;
	margin: 0 auto;
	padding: 0 1.5rem;
}

.content-section {
	padding: var(--section-padding);
}

a {
	text-decoration: none;
}

/* Global button css */
.global_btn {
	font-size: 14px;
	font-weight: 600;
	border: none;
	background-color: var(--color-accent);
	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);

	.text {
		color: var(--color-dark-bg);
		line-height: 1;
		position: relative;
		z-index: 5;
		margin-right: 32px;
	}

	svg {
		display: inline-block;
		position: relative;
		z-index: 5;
		transform: rotate(0deg) translateX(0);
		transform-origin: left;
		transition: all .5s cubic-bezier(.77, 0, .175, 1);
	}

	&::before {
		content: '';
		background-color: var(--color-secondary);
		width: 32px;
		height: 32px;
		display: block;
		position: absolute;
		z-index: 1;
		border-radius: 99px;
		top: 50%;
		right: 16px;
		transform: translateY(-50%);
		transition: all .5s cubic-bezier(.77, 0, .175, 1);
	}

	&.light {
		background-color: var(--color-secondary);

		&::before {
			background-color: var(--color-accent);
		}

	}
}

.global_btn:hover {

	svg {
		transform: rotate(45deg) translateX(-8px);
	}

	span.text {
		color: var(--color-white);
	}

	&::before {
		content: '';
		width: 100%;
		height: 100%;
		right: 0;
	}
}

.header {
	position: absolute;
	top: 0;
	width: 100%;
	z-index: 1000;
	background: rgba(0, 0, 0, 0.45);
	border-radius: 16px;
	box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
	backdrop-filter: blur(6.4px);
	-webkit-backdrop-filter: blur(6.4px);
	padding: 15px 0;
	transition: all 0.3s ease;
}

header.header.navbar-scrolled {
	border-radius: 0 0 16px 16px;
	top: 0;
	position: sticky;
	background: rgba(0, 0, 0, 0.7);
	box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
	backdrop-filter: blur(6.4px);
	-webkit-backdrop-filter: blur(6.4px);
}

.logo {
    height: 100px;
    width: auto;
}
header.header.navbar-scrolled .logo{
	height: 80px;
}
@media (max-width: 767px) {
.logo {
    height: 80px;
}
header.header.navbar-scrolled .logo{
	height: 60px;
}
}

#split-hero {
	padding: 0;
	background-color: var(--color-dark-bg);
	position: relative;
}

.split-hero-wrapper {
	display: flex;
	flex-direction: column;
	position: relative;
}

@media (min-width: 1024px) {
	.split-hero-wrapper {
		flex-direction: row;
		min-height: 700px;
	}
}

.hero-left-col {
	background-image: url('assets/images/banner-samayan.avif');
	background-size: cover;
	background-position: center;
	position: relative;
	padding: 5rem 1.5rem;
	color: var(--color-white);
	display: flex;
	flex-direction: column;
	justify-content: center;
	min-height: 400px;
	flex: 1;
	z-index: 5;
}

.hero-left-col::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.6);
	z-index: 1;
}

.hero-left-content {
	position: relative;
	z-index: 2;
	max-width: 700px;
	text-align: left;
}

.hero-left-content .main-heading-banner {
	font-size: 4.5rem;
	font-weight: 600;
	line-height: 1;
	margin-bottom: 1.5rem;
	color: var(--color-white);
}

@media (max-width:767px) {
	.hero-left-content .main-heading-banner {
		font-size: 42px;
	}

	.hero-left-col {
		padding: 10rem 1rem 5rem 1rem;
	}
}

.hero-left-content p {
	font-size: 1.3rem;
	font-weight: 400;
	margin-bottom: 2rem;
	max-width: 700px;
}

.hero-btn {
	padding: 1rem 2rem;
	background-color: var(--color-white);
	color: var(--color-dark-bg);
	border: none;
	border-radius: 0.5rem;
	font-weight: 700;
	text-decoration: none;
	transition: background-color 0.3s;
}

.hero-btn:hover {
	background-color: var(--color-secondary);
	color: var(--color-white);
}

.hero-right-col {
    position: absolute;
    top: 40%;
    right: 5%;
    transform: translateY(-50%);
    background-color: var(--color-white);
    padding: 30px 40px 20px 40px;
    border-radius: var(--border-radius-xl);
    box-shadow: 0 15px 40px var(--color-shadow-heavy);
    width: 90%;
    max-width: 400px;
    z-index: 10;
}

@media (max-width: 1023px) {
	.hero-right-col {
		position: relative;
		top: auto;
		right: auto;
		transform: none;
		width: auto;
		margin: 2rem auto;
		max-width: 90%;
	}
}

@media (min-width: 1024px) {
	.hero-left-col {
		flex: 2;
	}

	.hero-right-col {
		flex: 1;
	}

}


.hero-right-col .secondary-heading {
    font-size: 24px;
    color: var(--color-text-dark);
    margin-top: 0;
    margin-bottom: 10px;
    font-weight: 700;
}
.hero-right-col .form-group input, .hero-right-col .form-group textarea, .hero-right-col .form-group select {
    padding: 7px 15px;
    font-size: 15px;
}
.hero-right-col  textarea.wpcf7-form-control.wpcf7-textarea.wpcf7-validates-as-required {
    height: 100px;
}
.hero-right-col .btn-submit {
    padding: 10px;
    margin-top: 10px;
}

.hero-right-col p {
  margin: 0;
}

.form-group {
	margin-bottom: 1rem;
}

.form-group label {
	display: none;
}

.form-group input,
.form-group textarea,
.form-group select {
	width: 100%;
	padding: 1rem;
	border: 1px solid #ced4da;
	border-radius: 0.75rem;
	box-sizing: border-box;
	background-color: var(--color-white);
	transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
	outline: none;
	border-color: var(--color-primary);
	box-shadow: 0 0 0 3px rgba(21, 98, 42, 0.2);
}

.btn-form-submit {
	width: 100%;
	padding: 1.1rem;
	background-color: var(--color-primary);
	color: var(--color-white);
	border: 2px solid var(--color-primary);
	border-radius: var(--border-radius-xl);
	cursor: pointer;
	font-weight: 700;
	transition: all 0.3s ease;
	margin-top: 2rem;
}

.btn-form-submit:hover {
	background-color: var(--color-secondary);
	border-color: var(--color-secondary);
}

#what-we-do {
	background-color: var(--color-accent);
	position: relative;
	overflow: hidden;
	padding-top: 8rem;
	padding-bottom: 8rem;
}

.service-intro-label {
	color: var(--color-primary);
	font-weight: 600;
	font-size: 1.1rem;
	text-transform: uppercase;
	letter-spacing: 2px;
	margin-bottom: 0.5rem;
	display: block;
	text-align: center;
}

.service-section-title {
	font-size: 3rem;
	font-weight: 600;
	line-height: 1.1;
	margin-bottom: 1rem;
	text-align: center;
}

.service-section-subtitle {
	text-align: center;
	font-size: 1.25rem;
	color: #6c757d;
	max-width: 700px;
	margin: 0 auto 4rem auto;
}

.abstract-line {
	position: absolute;
	width: 100vw;
	height: 100%;
	background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(200, 200, 255, 0.1) 50%, rgba(255, 255, 255, 0) 100%);
	top: 0;
	left: 0;
	transform: skewY(-5deg);
	z-index: 0;
	pointer-events: none;
}

.abstract-circle {
	position: absolute;
	border-radius: 50%;
	opacity: 0.5;
	filter: blur(50px);
	z-index: 1;
}

.circle-pink {
	width: 150px;
	height: 150px;
	background-color: var(--color-pink);
	top: 5%;
	left: 5%;
}

.circle-yellow {
	width: 180px;
	height: 180px;
	background-color: var(--color-yellow);
	bottom: 5%;
	right: 5%;
}

.specialization-container {
	position: relative;
	z-index: 2;
}

@media (min-width: 1024px) {
	.specialization-container {
		justify-content: center;
	}
}

.specialization-card {
	background-color: var(--color-white);
	border-radius: var(--border-radius-mega);
	box-shadow: 0 10px 30px var(--color-shadow-light);
	overflow: hidden;
	max-width: 600px;
	width: 100%;
	padding: 2.5rem;
	transition: transform 0.3s ease-in-out;
	border: 1px solid #e9e9e9;
}

.specialization-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.card-content-wrapper {
	display: flex;
	flex-direction: column;
}

@media (min-width: 768px) {
	.card-content-wrapper {
		flex-direction: row;
		gap: 2rem;
	}
}

.card-image-box {
	flex-shrink: 0;
	width: 100%;
	height: 200px;
	margin-bottom: 1.5rem;
	position: relative;
	background-size: cover;
	background-position: center;
	border-radius: 1.5rem;
	overflow: hidden;
}

@media (min-width: 768px) {
	.card-image-box {
		width: 250px;
		height: 250px;
		margin-bottom: 0;
	}
}

.card-text-box {
	flex-grow: 1;
	padding-right: 1rem;
}

.card-text-box h3 {
	font-size: 1.8rem;
	font-weight: 600;
	color: var(--color-primary);
	margin-top: 0;
	line-height: normal;
	margin-bottom: 1rem;
}

.card-text-box p {
	font-size: 1.05rem;
	color: #555;
	margin-bottom: 1.5rem;
}

.learn-more-link {
	display: flex;
	align-items: center;
	color: var(--color-secondary);
	font-weight: 700;
	text-decoration: none;
	font-size: 1.05rem;
	transition: color 0.3s;
}

.learn-more-link:hover {
	color: var(--color-primary);
}

.learn-more-link i {
	margin-left: 0.5rem;
	transition: transform 0.3s;
}

.learn-more-link:hover i {
	transform: translateX(5px);
}

#product-offerings {
	background-color: var(--color-accent);
	position: relative;
	padding: var(--section-padding);
}

#product-offerings .section-heading {
	text-align: center;
	margin-bottom: 3rem;
}

.product-card {
	background-color: var(--color-white);
	padding: 2.5rem;
	margin: 1rem;
	border-radius: var(--border-radius-large);
	box-shadow: 0 8px 20px var(--color-shadow-light);
	text-align: center;
	border: none;
	min-height: 350px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	transition: all 0.3s;
	border-top: 5px solid var(--color-primary);
}

.product-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.product-card .icon-vial {
	font-size: 3.5rem;
	color: var(--color-secondary);
	/* margin-bottom: 1rem; */
}

.product-card h3 {
	font-size: 1.6rem;
	font-weight: 600;
	color: var(--color-primary);
	margin-bottom: 0.75rem;
}

.product-card p {
	font-size: 1rem;
	color: #6c757d;
	margin-bottom: 1.5rem;
}

.product-card a {
	color: var(--color-primary);
	font-weight: 700;
	text-decoration: none;
	transition: color 0.3s;
	font-size: 1rem;
	margin-top: auto;
}

.product-card a:hover {
	color: var(--color-secondary);
}

#key-features {
	background-color: var(--color-white);
	padding: var(--section-padding);
}

#key-features .section-heading {
	text-align: center;
	margin-bottom: 4rem;
}

.feature-card {
	padding: 30px;
	border-radius: var(--border-radius-large);
	text-align: center;
	transition: all 0.3s ease-in-out;
	background-color: var(--color-text-light);
	box-shadow: 0 4px 15px var(--color-shadow-light);
	border-top: 5px solid var(--color-primary);
}

.feature-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
	background-color: var(--color-white);
}

.feature-icon {
	font-size: 3rem;
	color: var(--color-secondary);
	margin-bottom: 1rem;
}

.feature-card h3 {
	font-family: var(--font-heading);
	font-size: 1.5rem;
	font-weight: 600;
	line-height: normal;
	margin-bottom: 0.75rem;
	color: var(--color-primary);
}

.feature-card p {
	color: var(--color-text-dark);
	font-size: 1rem;
}

#about-us {
	padding: var(--section-padding);
	background-color: var(--color-white);
}

#about-us .section-heading {
	text-align: center !important;
}

.img-content-layout {
	margin-bottom: 5rem;
}

.content-text {
	flex: 1;
}

.content-image {
	flex: 1;
	min-width: 300px;
}

.section-image {
	width: 100%;
	height: auto;
	border-radius: var(--border-radius-large);
	box-shadow: 0 10px 30px var(--color-shadow-light);
}

.content-text p {
	font-size: 1.1rem;
	line-height: 1.7;
	margin-bottom: 1.5rem;
	color: var(--color-text-dark);
}

.counter-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 20px;
	text-align: center;
	padding-top: 3rem;
	border-top: 2px solid var(--color-text-light);
}

.counter-card .number {
	font-size: 3.5rem;
	font-weight: 900;
	color: var(--color-secondary);
	line-height: 1;
	margin-bottom: 0.5rem;
}

.counter-card .label {
	font-size: 1rem;
	font-weight: 700;
	color: var(--color-primary);
	text-transform: uppercase;
	letter-spacing: 1px;
}

#exclusive-focus {
	padding: var(--section-padding);
	background-color: var(--color-text-light);
}

#exclusive-focus p:first-of-type {
	color: var(--color-text-dark);
	font-size: 1.1rem;
	margin-bottom: 1rem;
}

.focus-grid {
	text-align: center;
}

.focus-item {
	padding: 30px 20px;
	background-color: var(--color-white);
	border-radius: var(--border-radius-large);
	box-shadow: 0 5px 20px var(--color-shadow-light);
	transition: all 0.3s;
	height: auto;
}

.focus-item:hover {
	transform: translateY(-5px);
	border-bottom: 5px solid var(--color-primary);
}

.focus-icon-circle {
	width: 70px;
	height: 70px;
	background-color: var(--color-primary);
	color: var(--color-white);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 2rem;
	margin: 0 auto 1.5rem;
	box-shadow: 0 5px 15px rgba(21, 98, 42, 0.4);
}

.focus-item .focus-icon-circle.second {
	background-color: var(--color-secondary);
}

.focus-item .focus-icon-circle.third {
	background-color: var(--color-pink);
	color: var(--color-text-dark);
}

.focus-item .focus-icon-circle.forth {
	background-color: var(--color-purple);
}


.focus-item h3 {
	font-family: var(--font-heading);
	font-size: 1.5rem;
	font-weight: 600;
	color: var(--color-primary);
	margin-bottom: 0.25rem;
}

.focus-item p:nth-of-type(1) {
	font-weight: 700;
	color: var(--color-text-dark);
	font-size: 0.9rem;
	text-transform: uppercase;
	margin-bottom: 1rem;
}

.focus-item p:nth-of-type(2) {
	font-size: 1rem;
	line-height: 1.5;
}

#why-choose-us {
	padding: var(--section-padding);
	background-color: var(--color-white);
}

#why-choose-us .section-heading {
	text-align: center;
	margin-bottom: 4rem;
}

.choice-card {
	padding: 30px;
	background-color: var(--color-white);
	border-radius: var(--border-radius-large);
	border-left: 5px solid var(--color-primary);
	box-shadow: 0 5px 20px var(--color-shadow-light);
	transition: background-color 0.3s;
	height: auto;
}

.choice-card:hover {
	background-color: var(--color-text-light);
}

.choice-card h4 {
	font-family: var(--font-heading);
	font-size: 1.4rem;
	color: var(--color-primary);
	display: flex;
	align-items: center;
	margin-bottom: 1rem;
	font-weight: 600;
	line-height: normal;
}

.choice-card .icon {
	font-size: 1.6rem;
	color: var(--color-secondary);
	margin-right: 15px;
}

.choice-card p {
	font-size: 1rem;
	line-height: 1.6;
	color: var(--color-text-dark);
}

#third-party {
	padding: var(--section-padding);
	background-color: var(--color-text-light);
}

#third-party .content-image {
	order: 2;
}

#third-party .content-text {
	order: 1;
}

#third-party .content-text h4 {
	color: var(--color-primary);
	font-weight: 800;
	margin-top: 1.5rem;
}

#third-party .content-text ul {
	list-style-type: none;
	padding-left: 0;
}

#third-party .content-text li {
	padding-left: 1.5rem;
	position: relative;
	margin-bottom: 1.2rem;
	font-size: 1.05rem;
}

#third-party .content-text li strong {
	font-family: var(--font-heading);
	color: var(--color-primary);
	font-weight: 800;
	font-size: 1.1rem;
}

#third-party .content-text li::before {
	content: "•";
	color: var(--color-secondary);
	font-weight: 900;
	font-size: 1.5rem;
	position: absolute;
	left: 0;
	top: -3px;
}

#testimonials {
	padding: var(--section-padding);
	background-color: var(--color-white);
}

#testimonials .section-heading {
	text-align: center;
	margin-bottom: 3rem;
}

.testimonial-card {
	background: var(--color-accent);
	padding: 30px;
	border-radius: var(--border-radius-large);
	box-shadow: 0 5px 15px var(--color-shadow-light);
	min-height: 250px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	margin: 1rem;
	border-top: 5px solid var(--color-secondary);
}

.testimonial-quote {
	font-style: italic;
	font-size: 1.15rem;
	line-height: 1.6;
	color: var(--color-text-dark);
	margin-bottom: 1.5rem;
}

.testimonial-quote i {
	color: var(--color-primary);
	font-size: 1.5rem;
	margin-right: 5px;
}

.testimonial-author {
	font-weight: 700;
	color: var(--color-primary);
	font-size: 1.1rem;
	text-transform: uppercase;
}

.testimonial-author span {
	display: block;
	font-weight: 400;
	font-size: 0.9rem;
	color: #6c757d;
	text-transform: none;
}

#contact-smayan {
	padding: var(--section-padding);
	background-color: var(--color-primary);
	color: var(--color-white);
}

#contact-smayan .section-heading {
	color: var(--color-white);
	text-align: center;
	margin-bottom: 4rem;
}


.contact-info-panel,
.contact-form-panel {
	flex: 1;
	padding: 30px;
	border-radius: var(--border-radius-large);
}

.contact-info-panel {
	background-color: var(--color-secondary);
	box-shadow: 0 10px 30px var(--color-shadow-heavy);
	height: 100%;
}

.contact-info-panel h3 {
	font-family: var(--font-heading);
	font-size: 2rem;
	margin-bottom: 1.5rem;
	font-weight: 600;
}

.contact-info-panel p {
	margin-bottom: 2rem;
	font-size: 1rem;
}

.contact-info-item {
	display: flex;
	align-items: center;
	margin-bottom: 25px;
}

.contact-info-item i {
	font-size: 1.5rem;
	margin-right: 20px;
	width: 30px;
	text-align: center;
	color: var(--color-white);
}

.contact-info-item a {
	color: var(--color-white);
	text-decoration: none;
	font-size: 1rem;
	transition: color 0.3s;
}

.contact-info-item a:hover {
	color: var(--color-primary);
}

.contact-form-panel {
	background-color: var(--color-white);
	color: var(--color-text-dark);
	box-shadow: 0 10px 30px var(--color-shadow-heavy);
}

.contact-form-panel h3 {
	font-family: var(--font-heading);
	color: var(--color-primary);
	font-size: 1.8rem;
	margin-bottom: 1.5rem;
	text-align: center;
	font-weight: 600;
}

.contact-form-panel textarea {
	min-height: 100px;
	resize: vertical;
	height: 110px;
}

.btn-submit {
	width: 100%;
	padding: 1.1rem;
	background-color: var(--color-secondary);
	color: var(--color-dark);
	border: none;
	border-radius: 0.5rem;
	cursor: pointer;
	font-weight: 600;
	transition: all 0.3s ease;
	margin-top: 1.5rem;
	text-transform: uppercase;
	box-shadow: 0 4px 10px rgba(88, 182, 78, 0.4);
}

.btn-submit:hover {
	background-color: var(--color-primary);
	color: var(--color-white);
	transform: scale(1.01);
}

.footer {
	background-color: var(--color-dark-bg);
	color: var(--color-text-light);
	padding: 3rem 1.5rem;
	text-align: center;
}

.footer .logo {
	filter: none;
	margin-bottom: 1rem;
	height: 100px;
}

.social-links a {
	color: var(--color-accent);
	text-decoration: none;
	margin: 0 10px;
	font-size: 1.8rem;
	transition: color 0.3s;
}

.social-links a:hover {
	color: var(--color-secondary);
}

@media(max-width:767px) {

	.service-section-title,
	.section-heading {
		font-size: 42px;
	}

	.specialization-card {
		padding: 1.5rem;
		margin-bottom: 15px;
		border-radius: var(--border-radius-mobile);
	}

	.card-image-box {
		border-radius: var(--border-radius-mobile);
	}

	.row.features-grid {
		gap: 30px;
	}

	.focus-item {
		margin-bottom: 15px;
	}

	.contact-info-item {
		display: block;
	}

	.row.contact-layout {
		gap: 20px;
	}

	.content-image {
		margin-top: 15px;
		min-width: 100%;
	}

	body,
	section,
	footer {
		overflow-x: hidden;
	}

	#exclusive-focus {
		overflow-y: hidden;
	}
}

/* sequence */

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

#sequence a {
	width: 33.3333%;
	float: left;
	text-align: center;
	padding: 7px 0;
	font-size: 15px;
	color: var(--color-white) !important;
	font-weight: 600;
	text-decoration: none !important;
	border-right: 1px solid;
}

/* Bread Crumb css */
.page-breadcrumb {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    padding: 120px 0 40px 0;
    color: var(--color-white);
    position: relative;
    overflow: hidden;
}
.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 span.breadcrumb_new a {
    color: var(--color-white);
}

.page-breadcrumb span.breadcrumb_new {
    color: var(--color-white);
}

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