/*
Theme Name: Nova - Child
Version: 587
Description: A child theme of DMM by Almina
Template: mts_schema
Text Domain: schema
*/

/* Carousel */
@import url("../mts_schema/style.css");

/* general */

/* New */
.top-bar * {
    color: inherit !important;
}


#header .logo-wrap {
    float: none;
}

.logo-wrap {
    margin: 0px !important;
}

.logo-wrap img {
    max-width: 300px;
    display: block;
}

:root {
	--text-dark: #13253e;       
	--text-light: #5a6b7c;      
	--white: #ffffff;
	--light-bg: #f4f7fa;         
	--shadow: 0 10px 30px rgba(19, 37, 62, 0.08);
	--radius: 16px;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	line-height: 1.6;
	background-color: var(--white);
	overflow-x: hidden;
}

a {
	text-decoration: none;
	color: inherit;
	transition: 0.3s;
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

/* Utility Classes */
.text-center { text-align: center; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }

/* Animation Classes */
.reveal {
	opacity: 0;
	transform: translateY(30px);
	transition: all 0.8s ease-out;
}
.reveal.active { opacity: 1; transform: translateY(0); }

.reveal-left {
	opacity: 0;
	transform: translateX(-50px);
	transition: all 0.8s ease-out;
}
.reveal-left.active { opacity: 1; transform: translateX(0); }

.reveal-right {
	opacity: 0;
	transform: translateX(50px);
	transition: all 0.8s ease-out;
}
.reveal-right.active { opacity: 1; transform: translateX(0); }

/* Buttons */
html .btn {
	display: inline-block;
	padding: 14px 32px;
	border-radius: 50px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	text-transform: uppercase;
	font-size: 0.85rem;
	letter-spacing: 1px;
	border: none;
	color: #fff;
	text-align: center;
}

html .btn-primary {
	background: linear-gradient(135deg, var(--pColor), var(--aColor));
	color: var(
	--white);
	box-shadow: 0 4px 15px rgba(50, 97, 163, 0.3);
}

.btn-primary:hover {
	background: linear-gradient(135deg, var(--sColor), var(--pColor));
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(50, 97, 163, 0.4);
	color: #fff;
}

.btn-outline {
	background-color: transparent;
	color: var(--white);
	border: 2px solid var(--white);
}

.btn-outline:hover {
	background-color: var(--white);
	color: var(--pColor);
}

/* Top Bar */
.top-bar {
	background-color: var(--sColor);
	color: var(--white);
	padding: 8px 0;
	font-size: 1.1rem;
}

.top-bar .container {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.contact-info span {
	margin-right: 25px;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	opacity: 0.9;
}

.contact-info i { color: var(--aColor); }

/* Navbar */
.navbar {
	background: var(--white);
	box-shadow: 0 4px 20px rgba(0,0,0,0.05);
	position: sticky;
	top: 0;
	z-index: 1000;
	padding: 1rem 0;
}

.navbar .container {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.logo {
	font-size: 1.5rem;
	font-weight: 800;
	color: var(--sColor);
	display: flex;
	align-items: center;
	gap: 12px;
	letter-spacing: -0.5px;
}

.logo i {
	color: var(--pColor);
	font-size: 1.8rem;
}

.nav-menu {
	display: flex;
	list-style: none;
	align-items: center;
	gap: 30px;
	margin: 0px;
	padding: 0px;
}

.nav-menu a {
	font-weight: 600;
	color: var(--text-dark);
	font-size: 0.95rem;
	position: relative;
}

/* Nav link hover effect */
.nav-menu > li > a:not(.btn)::after {
	content: '';
	position: absolute;
	width: 0;
	height: 2px;
	bottom: -4px;
	left: 0;
	background-color: var(--aColor);
	transition: width 0.3s;
}

.nav-menu > li > a:not(.btn):hover::after {
	width: 100%;
}

.nav-menu a:hover {
	color: var(--pColor);
}

/* Dropdown Menu Styles */
.dropdown {
	position: relative;
}

.dropdown-menu {
	position: absolute;
	top: 100%;
	left: 0;
	background: var(--white);
	width: 240px;
	box-shadow: 0 10px 30px rgba(0,0,0,0.1);
	border-radius: 8px;
	opacity: 0;
	visibility: hidden;
	transform: translateY(15px);
	transition: all 0.3s ease;
	list-style: none;
	padding: 10px 0;
	z-index: 1100;
}

.dropdown:hover .dropdown-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.dropdown-menu li {
	margin: 0;
}

.dropdown-menu a {
	display: block;
	padding: 12px 20px;
	color: var(--text-dark);
	font-size: 0.9rem;
	border-bottom: 1px solid rgba(0,0,0,0.03);
	transition: all 0.2s;
}

.dropdown-menu a:last-child {
	border-bottom: none;
}

.dropdown-menu a:hover {
	background-color: var(--light-bg);
	color: var(--pColor);
	padding-left: 25px;
}

/* Dropdown arrow rotation */
.dropdown > a i {
	transition: transform 0.3s;
}
.dropdown:hover > a i {
	transform: rotate(180deg);
}

/* Mobile Menu */
.hamburger {
	display: none;
	cursor: pointer;
}

.bar {
	display: block;
	width: 25px;
	height: 3px;
	margin: 5px auto;
	background-color: var(--sColor);
	transition: all 0.3s ease;
}

/* Hero Section */
.hero {
	position: relative;
	background: #000;
	background-size: cover;
	background-position: center;
	height: 85vh;
	min-height: 600px;
	display: flex;
	align-items: center;
	color: var(
	--white);
}

.hero-content {
	max-width: 800px;
	animation: fadeIn 1s ease-out;
}

.hero h2 {
	font-size: 3.8rem;
	line-height: 1.1;
	margin-bottom: 25px;
	color: var(--white);
	text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.hero p {
	font-size: 1.25rem;
	margin-bottom: 30px;
	opacity: 0.95;
	max-width: 600px;
	font-weight: 300;
	margin-top: 15px;
}

/* Services Grid - Modern Image Cards */
.services {
	padding: 100px 0;
	background-color: #ff96a71a;
}

.section-header {
	margin-bottom: 70px;
}

.section-header h2 {
	font-size: 2.8rem;
	margin-bottom: 15px;
	color: var(--sColor);
}

.section-header .subtitle {
	display: block;
	color: var(--aColor);
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 2px;
	font-size: 0.9rem;
	margin-bottom: 10px;
}

.section-header p {
	color: var(--text-light);
	font-size: 1.1rem;
	max-width: 600px;
	margin: 0 auto;
}

.services-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 30px;
}

/* Modern Image Service Card */
.service-card {
	background: var(--white);
	border-radius: var(--radius);
	box-shadow: var(--shadow);
	transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	overflow: hidden;
	position: relative;
	display: flex;
	flex-direction: column;
	border: 1px solid rgba(0,0,0,0.03);
}

.service-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 20px 40px rgba(19, 37, 62, 0.15);
}

.service-img-wrapper {
	height: 220px;
	overflow: hidden;
	position: relative;
}

.service-img-wrapper img {
	width: 100%;
	height: 100% !important;
	object-fit: cover;
	transition: transform 0.6s ease;
}

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

.service-overlay {
	position: absolute;
	top: 0; left: 0; width: 100%; height: 100%;
	background: linear-gradient(to top, rgba(19, 37, 62, 0.4), transparent);
}

.service-content {
	padding: 30px;
	flex-grow: 1;
	display: flex;
	flex-direction: column;
}

.service-card h3 {
	font-size: 1.5rem;
	margin-bottom: 15px;
	color: var(--sColor);
}

.service-card p {
	color: var(--text-light);
	margin-bottom: 25px;
	font-size: 0.95rem;
	flex-grow: 1;
}

.service-link {
	color: var(--pColor);
	font-weight: 700;
	font-size: 0.9rem;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.service-link i {
	font-size: 0.8rem;
	transition: transform 0.3s;
}

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

/* About Section */
.about {
	padding: 120px 0;
	position: relative;
	/* Simple yet impactful background pattern - Modern Dot Grid */
	background-color: #ff96a71a;
	background-image: radial-gradient(rgb(0 0 0 / 15%) 1.5px, transparent 1.5px);
	background-size: 30px 30px;
}

.about-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0; /* Removing gap for seamless look, or keep small gap for card look */
	align-items: stretch; /* CRITICAL: Forces equal height for image and text */
	border-radius: var(--radius);
	box-shadow: 0 20px 50px rgba(0,0,0,0.1);
	overflow: hidden; /* Round corners for children */
}

.about-img {
	position: relative;
	height: 100%;
	min-height: 450px; /* Ensure height on mobile */
}

.about-img img {
	width: 100%;
	height: 100% !important; /* Stretch to fill container */
	object-fit: cover; /* Crop to fit */
	display: block;
	object-position: 70% 50%;
}

.about-text {
	padding: 60px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	background: var(--white);
}

.about-text h4 {
	color: var(--aColor);
	text-transform: uppercase;
	font-size: 0.9rem;
	letter-spacing: 2px;
	margin-bottom: 15px;
}

.about-text h2 {
	margin-bottom: 25px;
	line-height: 1.2;
}

.about-text .lead {
	font-size: 1.15rem;
	color: var(--pColor);
	font-weight: 600;
	margin-bottom: 20px;
}

.about-text p {
	color: var(--text-light);
	margin-bottom: 15px;
}

.check-list {
	list-style: none;
	margin: 30px 0;
	padding: 0px;
}

.check-list li {
	margin-bottom: 15px;
	display: flex;
	align-items: center;
	gap: 15px;
	color: var(--text-dark);
	font-weight: 500;
	font-size: 14px;
}

.check-list i {
	color: var(--aColor);
	background: rgba(14, 151, 125, 0.1);
	padding: 5px;
	border-radius: 50%;
}

/* Testimonials Section */
.testimonials {
	padding: 100px 0;
	background-color: var(--sColor); /* Dark Navy BG */
	color: var(--white);
	text-align: center;
}

.testimonials h2 { color: var(--white); }
.testimonials p { color: rgba(255,255,255,0.7); }

.testimonial-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 30px;
	margin-top: 60px;
}

.testimonial-card {
	background: rgba(255,255,255,0.05); /* Glassmorphism effect */
	backdrop-filter: blur(10px);
	padding: 40px;
	border-radius: var(--radius);
	border: 1px solid rgba(255,255,255,0.1);
	text-align: left;
}

.testimonial-card i.quote-icon {
	font-size: 2rem;
	color: var(--aColor);
	margin-bottom: 20px;
	display: block;
}

.testimonial-text {
	font-style: italic;
	font-size: 1.1rem;
	margin-bottom: 25px;
	color: rgba(255,255,255,0.9);
	line-height: 1.7;
}

.client-info .testimonialname{
	font-size: 1.1rem;
	margin-bottom: 5px;
	color: var(--white);
}

.client-info span {
	color: var(--aColor);
	font-size: 0.9rem;
	font-weight: 600;
}

/* Contact Section & Form */
.contact-section {
	padding: 100px 0;
	background-color: var(--light-bg);
}

.contact-wrapper {
	display: grid;
	grid-template-columns: 1fr 1.5fr;
	background: var(--white);
	border-radius: var(--radius);
	overflow: hidden;
	box-shadow: var(--shadow);
}

.contact-info-panel {
	background-color: var(--pColor);
	color: var(--white);
	padding: 60px;
	position: relative;
	overflow: hidden;
}

.contact-info-panel::after {
	content: '';
	position: absolute;
	bottom: -50px;
	right: -50px;
	width: 200px;
	height: 200px;
	background: rgba(255,255,255,0.1);
	border-radius: 50%;
}

.contact-info-panel h3 {
	color: var(--white);
	margin-bottom: 20px;
	font-size: 1.8rem;
}

.info-item {
	display: flex;
	align-items: flex-start;
	gap: 20px;
	margin-bottom: 30px;
}

.info-item i {
	font-size: 1.4rem;
	color: var(--aColor);
	background: rgba(255,255,255,0.1);
	width: 50px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 12px;
	margin-top: -5px;
}

.info-item h4 {
	color: var(--white);
	margin-bottom: 5px;
	font-size: 1.1rem;
}

.info-item p {
	color: rgba(255,255,255,0.8);
	font-size: 0.95rem;
	margin-bottom: 0;
}

.contact-form-panel {
	padding: 40px;
}

.form-group {
	margin-bottom: 25px;
}

.form-group label {
	display: block;
	margin-bottom: 10px;
	font-weight: 600;
	color: var(--sColor);
	font-size: 0.9rem;
}

.form-control {
	width: 100%;
	padding: 15px 20px;
	border: 2px solid #edf2f7;
	border-radius: 10px;
	font-family: var(--font-body);
	font-size: 1rem;
	transition: 0.3s;
	background-color: #fcfcfc;
}

.form-control:focus {
	outline: none;
	border-color: var(--pColor);
	background-color: var(--white);
	box-shadow: 0 0 0 4px rgba(50, 97, 163, 0.1);
}

textarea.form-control {
	resize: vertical;
	min-height: 140px;
}

/* Footer */
footer {
	background-color: var(--sColor) !important;
	color: #bdc3c7;
	padding: 80px 0 20px;
}

.footer-content {
	/* display: flex; */
	/* gap: 50px; */
	margin-bottom: 60px;
	align-items: flex-start;
}

.footer-col h3 {
	color: var(--white);
	font-size: 1.3rem;
	margin-bottom: 25px;
	position: relative;
	display: inline-block;
}

.footer-col h3::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: -8px;
	width: 40px;
	height: 3px;
	background-color: var(--aColor);
}

.footer-col ul {
	list-style: none;
}

.footer-col ul li {
	margin-bottom: 15px;
}

.footer-col ul li a {
	color: #a0aec0;
	transition: 0.3s;
}

.footer-col ul li a:hover {
	color: var(--aColor);
	padding-left: 5px;
}

.social-links a {
	display: inline-flex;
	width: 40px;
	height: 40px;
	background: rgba(255,255,255,0.1);
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	margin-right: 10px;
	transition: 0.3s;
	color: var(--white);
}

.social-links a:hover {
	background: var(--pColor);
	transform: translateY(-3px);
}

.footer-bottom {
	border-top: 1px solid rgba(255,255,255,0.1);
	padding-top: 30px;
	text-align: center;
	font-size: 0.9rem;
	color: #718096;
}

/* Responsive */
@media (max-width: 768px) {
	.hero h1 { font-size: 2.8rem; }
	.about-content { grid-template-columns: 1fr; gap: 0; box-shadow: none; background: transparent; }
	.about-content > div { border-radius: var(--radius); }
	.about-img { height: 300px; min-height: 0; margin-bottom: 20px; }
	.about-text { padding: 30px; box-shadow: var(--shadow); }

	.contact-wrapper { grid-template-columns: 1fr; }
	.contact-info-panel, .contact-form-panel { padding: 40px 20px; }
	.top-bar .container { justify-content: center; flex-direction: column; gap: 8px; }
	.contact-info { display: none; }
	.hamburger { display: block; }

	.nav-menu {
		position: fixed;
		left: -100%;
		top: 104px;
		flex-direction: column;
		background-color: var(--white);
		width: 100%;
		text-align: center;
		transition: 0.3s;
		padding: 30px 0;
		box-shadow: 0 15px 30px rgba(0,0,0,0.1);
		border-top: 1px solid #eee;
		overflow-y: auto;
		padding: 0px;
		height: calc(100vh - 104px);
	}

	.nav-menu.active { left: 0; }

	/* Mobile Dropdown styles */
	.nav-menu { gap: 0; }
	.nav-menu > li {width: 100%;text-align: left;}
	.nav-menu > li > a { 
		display: block; 
		padding: 15px; 
		border-bottom: 1px solid #eee;
	}
	.nav-menu > li > a:not(.btn)::after { display: none; } /* Remove hover underline on mobile */

	.dropdown-menu {
		position: static;
		visibility: visible;
		opacity: 1;
		transform: none;
		box-shadow: none;
		width: 100%;
		padding: 0;
		background-color: #f9f9f9;
		display: block; /* Show default for now on mobile */
	}

	.dropdown-menu a {
		padding-left: 30px;
		font-size: 0.85rem;
	}
}

@keyframes fadeIn {
	from { opacity: 0; transform: translateY(20px); }
	to { opacity: 1; transform: translateY(0); }
}

/**/

.info-item a {
    color: #fff;
}

ul#menu-main-menu .btn > a {
    color: #fff !important;
}

header.hero > video {
    height: 100% !important;
    width: 100% !important;
    position: absolute;
    top: 0px;
    left: 0px;
    object-fit: cover;
    opacity: 0.2;
    object-position: 100% 50%;
}

html #blog div#page {
    padding: 0px !important;
}

header {
    float: none;
}

.mobile_cta_buttons.hide-d.mobile-btn {
    padding: 20px;
    text-align: center;
    @media (min-width: 881px) {
        display: none;
    }
}

.mobile_cta_buttons.hide-d.mobile-btn p a {
    display: block;
    color: #fff;
    padding: 10px 20px;
    border-radius: 50px;
    text-align: center;
}

.dm-flex.footer-content h3 {
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
    color: #fff;
}

.dm-flex.footer-content a {
    color: #fff;
}

.dm-flex.footer-content p {
    margin-bottom: 10px;
}

footer#site-footer {
    margin: 0px;
}

.dm-flex.footer-content .social-icons a {
    display: inline-flex;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 10px;
    transition: 0.3s;
    color: var(--white);
}

footer#site-footer h3:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 40px;
    height: 3px;
    background-color: var(--aColor);
}

.footer-bottom p {
    margin: 0px 0px 5px;
}

.footer-bottom * {
    color: #fff;
}

.footer-bottom a {
    font-weight: bold;
}

.sub-footer .container {
    width: 100%;
}

span.hiddenRest {
    display: none;
    padding-left: 5px;
}

p.testimonial-text span.read_more {
    font-weight: bold;
}

@media (max-width: 880px) {
	div.header-social-icons {
		background: transparent;
	}

	ul#menu-main-menu .btn {
		padding: 0px;
		border-radius: 0px;
	}
	.top-bar {
	    display: none;
	}
	
	#logo {
	    margin: 0px;
	}
	
	.logo-wrap img {
	    max-width: 250px;
	    margin: 0px auto;
	    margin-left: 0px !important;
	    display: block;
	}
	
	div.header-social-icons {
	    background: transparent;
	    float: none;
	}
	
	a.sticks {
	    border: 0px;
	    background: var(--aColor);
	}
	
	a.sticks + a {
	    background: var(--sColor);
	}
}

.contact-form-panel li input {
    height: 40px;
    border-radius: 20px;
}

.contact-form-panel #field_2_6 input {
    height: auto;
}

.contact-form-panel li textarea {
    border-radius: 20px;
}

html .mobile-menu-active .main-container {
    left: 0px;
}

.trigger-menu {
    position: absolute;
    right: 0px;
    top: 0px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    background: var(--pColor);
    color: #fff;
    cursor: pointer;
    z-index: 10;
}

.nav-menu > li {
    position: relative;
}

@media (min-width: 881px) {
	#menu-main-menu li .sub-menu li a {
    padding: 10px;
}
	#menu-main-menu li .sub-menu .sub-menu {
    top: 0px;
    left: 100% !important;
}
	.trigger-menu {
		display: none;
	}
  #menu-main-menu li .sub-menu {
    position: absolute;
    left: 0px;
    top: 100%;
    background: #fff;
    padding: 0px;
    margin: 0px;
    width: 200px;
    box-shadow: 0px 1px 10px #0000000d;
    left: 0px !important;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }
  #menu-main-menu li {
    position: relative;
  }
  #menu-main-menu li:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
  }
}
@media (max-width: 880px) {
  .sub-menu {
    background: var(--pColor);
    padding: 10px 20px;
    list-style: none;
    display: none;
  }
  .sub-menu * {
    color: #fff !important;
  }
}

.navbar {
	background: #22333b;}

.top-bar {
	background: #c6ac8f;
}

.social-links a {
    background: var(--pColor);
}

.services {
    background-color: #eae0d5;
}

.about {
	    background-color: #eae0d5;
}



#menu-main-menu li .sub-menu {
	background: #c6ac8f;}

@media (min-width: 881px) {
    #menu-main-menu li:hover > .sub-menu {
        opacity: 1;
        visibility: visible;
        z-index: 100;
    }
	
	.logo-wrap img {max-width: 500px;}
	header#site-header {
  position: fixed !important;
  top: 0 !important;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 99999 !important;
}
	.header-spacer {
		height: 150px;
	}
}

.top-bar * {font-size: 15px;}

@media (min-width: 881px) {
.hero-content {

    position: absolute;
    top: 50px;
    left: 0;
}
	
	.hero h2 {font-size: 40px !important;}
	.hero p {font-size: 18px;}
}



@media (max-width: 881px) {
	.bar {color: white;}
	
	.header-spacer {display: none;}
ul#menu-main-menu {
	background: #22333b;
	}}

.hero h2 {
	font-size: 3.4rem;}

.navbar {
    background:  #14242b;
}

	.top-bar * {font-weight: bold;}



header.hero > video {opacity: 0.7;}

img.alignright.patients {border: unset; outline: unset;}

.service-card h3
{display: none;}
.service-link {display: none;}
.service-card p {text-align: center;}

.about {
    padding: 70px 15px;
}

.about .container {
    max-width: 1400px;
    margin: 0 auto;
}

.about-content {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: stretch;
    border-radius: 20px;
    overflow: hidden;
}

.about-video {
    position: relative;
    min-height: 650px;
    overflow: hidden;
}

.about-video video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100% !important;
    display: block;
    object-fit: cover;
    object-position: center;
}

.about-text {
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-text > *:first-child {
    margin-top: 0;
}

.about-text > *:last-child {
    margin-bottom: 0;
}

@media screen and (max-width: 991px) {
    .about-content {
        grid-template-columns: 1fr;
    }

    .about-video {
        min-height: 450px;
    }

    .about-text {
        padding: 40px 30px;
    }
}

@media screen and (max-width: 600px) {
    .about {
        padding: 40px 15px;
    }

    .about-content {
        border-radius: 14px;
    }

    .about-video {
        min-height: 280px;
    }

    .about-text {
        padding: 30px 22px;
    }
}

.dm-modal-backdrop.show-dm-drop {visibility: hidden;}
.about-content h3 {font-size: 21px;}

.flex-logos {
    display: flex;
    align-content: center;
    justify-content: center;
    flex-wrap: wrap;
}
.flex-logos img {
    margin: 20px;
    text-align: center;
	width: 150px;
	object-fit: contain;
}

.dm-service-section h3 {
	color: var(--pColor);
}

img.logonew.aligncenter {
    border: unset;
    outline: unset;
}

@media (min-width: 881px) {
    .logo-wrap img {
        max-width: 400px;
    }
}

.header-spacer {height: 140px !important;}

h1#logo {margin-bottom: unset !important;}

.about{
    position:relative;
    overflow:hidden;
    min-height:90vh;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:120px 0;
}

/* Full Background Video */
.about-video{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    z-index:1;
    overflow:hidden;
}

.about-video video{
    width:100%;
    height:100%;
    object-fit:cover; /* Covers entire section */
    object-position:center center;
    display:block;
}

/* Dark Overlay */
.video-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.45);
    z-index:2;
}

/* Content */
.about .container{
    position:relative;
    z-index:3;
    width:100%;
}

.about-content{
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
}

.about-text{
    max-width:900px;
    color:#fff;
    padding:40px;
}

.about-text h1,
.about-text h2,
.about-text h3,
.about-text h4,
.about-text p,
.about-text li{
    color:#fff;
}

.about-text h2{
    font-size:clamp(38px,5vw,68px);
    line-height:1.1;
    margin-bottom:25px;
}

.about-text p{
    font-size:20px;
    line-height:1.8;
    margin-bottom:20px;
}

.about-text a{
    display:inline-block;
    margin-top:20px;
    padding:16px 40px;
    border-radius:50px;
    background:var(--aColor);
    color:#fff;
    text-decoration:none;
    font-weight:700;
    transition:.3s;
	width: 50%;
	margin: 0 auto;
}



.about-text a:hover{
    transform:translateY(-3px);
    opacity:.9;
}

/* Mobile */
@media (max-width:991px){

    .about{
        min-height:70vh;
        padding:90px 0;
    }

    .about-text{
        padding:20px;
    }

    .about-text h2{
        font-size:34px;
    }

    .about-text p{
        font-size:17px;
    }
}

/* Lighter overlay so video is more visible */
.video-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.25); /* Adjust from .15 to .35 as needed */
    z-index:2;
}

/* Transparent text container */
.about-text{
    max-width:900px;
    padding:40px;
    color:#fff;
    background:transparent !important;
    border:none;
    box-shadow:none;
    border-radius:0;
}

/* Make all text white with a subtle shadow for readability */
.about-text,
.about-text h1,
.about-text h2,
.about-text h3,
.about-text h4,
.about-text h5,
.about-text h6,
.about-text p,
.about-text li,
.about-text strong{
    color:#fff;
    text-shadow:0 2px 10px rgba(0,0,0,.6);
}

/* Optional: make button stand out */
.about-text a{
    background:var(--aColor);
    color:#fff;
    box-shadow:0 8px 20px rgba(0,0,0,.3);
}

.video-overlay{
    background:rgb(0 0 0 / 62%);
}

/*-------------------------
VIDEO HERO
--------------------------*/

.hero-video{
    position:relative;
    height:100vh;
    overflow:hidden;
}

.hero-video video{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    object-fit:cover;
}

.hero-video:before{
    content:"";
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.45);
    z-index:1;
}

.hero-video-overlay{
    position:relative;
    z-index:2;
    max-width:1200px;
    margin:auto;
    height:100%;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    text-align:center;
    color:#fff;
    padding:20px;
}

.hero-video-overlay h1{
    font-size:clamp(42px,6vw,80px);
    line-height:1.1;
    margin-bottom:20px;
    color:#fff;
}

.hero-video-overlay p{
    font-size:22px;
    max-width:800px;
    margin-bottom:40px;
    color:#fff;
}

.hero-btn{
    display:inline-block;
    padding:18px 42px;
    background:#fff;
    color:#111;
    text-decoration:none;
    border-radius:50px;
    font-weight:700;
    transition:.3s;
}

.hero-btn:hover{
    background:var(--aColor);
    color:#fff;
}


/*-------------------------
IMAGE HERO
--------------------------*/

.about-hero{
    position:relative;
    min-height:900px;
    overflow:hidden;
}

.about-hero img{
    position:absolute;
    inset:0;
    width:100%;
    height:100% !important;
    object-fit:cover;
}

.about-hero:before{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(
        90deg,
        rgba(0,0,0,.78) 0%,
        rgba(0,0,0,.55) 45%,
        rgba(0,0,0,.2) 100%
    );
    z-index:1;
}

.about-overlay{
    position:relative;
    z-index:2;
    display:flex;
    align-items:center;
    min-height:900px;
}

.about-content{
    max-width:760px;
    padding:120px 8%;
    color:#fff;
}

.about-content h2{
    font-size:clamp(38px,4vw,62px);
    line-height:1.1;
    margin-bottom:35px;
    color:#fff;
}

.about-content p{
    font-size:18px;
    line-height:1.9;
    margin-bottom:25px;
    color:rgba(255,255,255,.95);
}


/*-------------------------
RESPONSIVE
--------------------------*/

@media (max-width:991px){

    .hero-video{
        height:70vh;
    }

    .hero-video-overlay h1{
        font-size:46px;
    }

    .hero-video-overlay p{
        font-size:18px;
    }

    .about-hero,
    .about-overlay{
        min-height:auto;
    }

    .about-hero img{
        position:relative;
        height:450px;
    }

    .about-overlay{
        position:absolute;
        inset:0;
        align-items:center;
    }

    .about-content{
        max-width:100%;
        padding:40px 30px;
    }

    .about-content h2{
        font-size:34px;
    }

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

}

@media (max-width:768px){

    .hero-video{
        height:60vh;
    }

    .hero-video-overlay h1{
        font-size:34px;
    }

    .hero-video-overlay p{
        font-size:17px;
    }

    .hero-btn{
        padding:15px 30px;
    }

    .about-hero img{
        height:700px;
    }

    .about-content{
        text-align:center;
        padding:30px 20px;
    }

}

/* Make the image section shorter */
.about-hero{
    min-height:700px;
}

/* Lighter overlay */
.about-hero:before{
    background:linear-gradient(
        90deg,
        rgba(0,0,0,.58) 0%,
        rgba(0,0,0,.32) 45%,
        rgba(0,0,0,0) 85%
    );
}

/* Better positioning */
.about-overlay{
    align-items:center;
}

.about-content{
    max-width:620px;
    margin-left:8%;
    padding:40px 0;
}

/* Better typography */
.about-content h2{
    font-size:clamp(42px,4vw,68px);
    line-height:1.05;
    margin-bottom:25px;
    color:#fff;
    font-weight:300;
}

.about-content p{
    font-size:18px;
    line-height:1.8;
    color:rgba(255,255,255,.92);
}

/* Video hero */
.hero-video{
    height:85vh;
}

.hero-video:before{
    background:rgba(0,0,0,.25);
}

.page-id-14 .post-content .container {
	
   max-width: unset;
  margin: unset;
 padding: unset !important;
	padding: unset;
	width: 100%;
}

.page-id-14 article.article {padding: 0 !important; margin: 0 !important;}

.about-content{
    display:block;
    max-width:100%;
    width:100%;
    margin:0 0 0 8%;
    padding:60px 0;
    color:#fff;
}

.about-content h2{
    margin:0 0 30px;
}

.about-content p{
    display:block;
    margin:0 0 22px;
    max-width:850px;
}

.about-content p:last-child{
    margin-bottom:0;
}

.about-content {text-align: left;}
.about-content h2 {font-size: 44px;}

.about-hero:before {
    background: linear-gradient(90deg, rgba(0, 0, 0, .58) 0%, rgb(0 0 0 / 45%) 45%, rgb(0 0 0 / 26%) 85%);
}

.hero-video {
    height: 80vh !important;
}

.hero-video video {
	height: 100% !important;
}

/* ==================================================
   TABLET AND MOBILE ONLY
   Desktop styles remain unchanged
================================================== */
@media screen and (max-width: 1199px) {

    /* HERO VIDEO */
    .hero-video {
        position: relative;
        width: 100%;
        min-height: 650px;
        overflow: hidden;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .hero-video video {
        position: absolute;
        top: 50%;
        left: 50%;
        width: 100%;
        height: 100%;
        min-width: 100%;
        min-height: 100%;
        object-fit: cover;
        object-position: center;
        transform: translate(-50%, -50%);
    }

    .hero-video::before {
        content: "";
        position: absolute;
        inset: 0;
        z-index: 1;
        background: rgba(0, 0, 0, 0.42);
    }

    .hero-video-overlay {
        position: relative;
        z-index: 2;
        width: min(90%, 760px);
        padding: 50px 30px;
        color: #fff;
        text-align: center;
    }

    .hero-video-overlay h1 {
        margin: 0 0 18px;
        color: #fff;
        font-size: clamp(38px, 6vw, 64px);
        line-height: 1.08;
    }

    .hero-video-overlay p {
        margin: 0 auto 28px;
        color: #fff;
        font-size: 20px;
        line-height: 1.5;
    }

    .hero-btn {
        display: inline-flex;
        min-height: 52px;
        padding: 14px 28px;
        align-items: center;
        justify-content: center;
        border-radius: 4px;
        text-align: center;
    }


    /* ABOUT IMAGE HERO */
    .about-hero {
        position: relative;
        width: 100%;
        overflow: hidden;
        background: #f4f4f4;
    }

    .about-hero > img {
        display: block;
        width: 100%;
        height: 520px;
        object-fit: cover;
        object-position: center top;
    }

    .about-overlay {
        position: relative;
        inset: auto;
        width: 100%;
        padding: 0;
        background: transparent;
    }

    .about-content {
        display: block !important;
        width: calc(100% - 60px);
        max-width: 900px;
        margin: -90px auto 50px;
        padding: 45px;
        position: relative;
        z-index: 2;
        background: rgba(255, 255, 255, 0.97);
        box-shadow: 0 18px 45px rgba(0, 0, 0, 0.14);
    }

    .about-content h2 {
        margin: 0 0 22px;
        font-size: clamp(34px, 5vw, 48px);
        line-height: 1.15;
    }

    .about-content p {
        margin: 0 0 18px;
        font-size: 17px;
        line-height: 1.75;
    }

    .about-content p:last-child {
        margin-bottom: 0;
    }
}


/* ==================================================
   MOBILE
================================================== */
@media screen and (max-width: 767px) {

    .hero-video {
        min-height: 560px;
    }

    .hero-video video {
        object-position: center center;
    }

    .hero-video-overlay {
        width: 100%;
        padding: 45px 22px;
    }

    .hero-video-overlay h1 {
        font-size: clamp(34px, 10vw, 48px);
        line-height: 1.08;
    }

    .hero-video-overlay p {
        max-width: 420px;
        font-size: 17px;
        line-height: 1.5;
    }

    .hero-btn {
        width: 100%;
        max-width: 320px;
        padding: 14px 20px;
    }


    .about-hero > img {
        height: 390px;
        object-position: center top;
    }

    .about-content {
        width: calc(100% - 30px);
        margin: -45px auto 35px;
        padding: 30px 24px;
    }

    .about-content h2 {
        font-size: 32px;
        line-height: 1.18;
    }

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


/* ==================================================
   SMALL MOBILE
================================================== */
@media screen and (max-width: 480px) {

    .hero-video {
        min-height: 520px;
    }

    .hero-video-overlay {
        padding: 40px 18px;
    }

    .hero-video-overlay h1 {
        font-size: 32px;
    }

    .hero-video-overlay p {
        font-size: 16px;
    }

    .about-hero > img {
        height: 310px;
    }

    .about-content {
        width: calc(100% - 20px);
        margin-top: -30px;
        padding: 26px 20px;
    }

    .about-content h2 {
        font-size: 28px;
    }
}

@media screen and (max-width: 767px) {
	.about-content p { color: black;}
	.about-content h2 {color: black;}

}

.hero-image{
    width:100%;
    height:80vh !important;
    min-height:500px;
    overflow:hidden;
}

.hero-image img{
    width:100%;
    height:100% !important;
    object-fit:cover;
    object-position:center center;
    display:block;
}

@media (max-width:991px){
    .hero-image{
        height:55vh;
        min-height:400px;
    }
}

@media (max-width:767px){
    .hero-image{
        height:40vh;
        min-height:280px;
    }

    .hero-image img{
        object-position:center top;
    }
}

#post-14 > div > div > div > p:nth-child(1) {display: none;}
#post-14 > div > div > div > p:nth-child(3) {display: none;}

.publication-list {
	display: grid;
	gap: 14px;
	margin: 30px 0;
}

.publication-link {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding: 18px 22px;
	color: #23333a;
	background: #ffffff;
	border: 1px solid #dce4e7;
	border-left: 4px solid var(--pColor, #4a6b52);
	border-radius: 8px;
	box-shadow: 0 5px 18px rgba(0, 0, 0, 0.06);
	text-decoration: none !important;
	font-size: 16px;
	line-height: 1.6;
	transition: transform 0.25s ease, box-shadow 0.25s ease,
		background-color 0.25s ease, color 0.25s ease;
}

.publication-link span {
	flex: 1;
}

.publication-link i {
	flex: 0 0 auto;
	font-size: 16px;
	color: var(--pColor, #4a6b52);
	transition: transform 0.25s ease, color 0.25s ease;
}

.publication-link:hover,
.publication-link:focus {
	color: #ffffff;
	background: var(--pColor, #4a6b52);
	border-color: var(--pColor, #4a6b52);
	box-shadow: 0 10px 26px rgba(0, 0, 0, 0.14);
	transform: translateY(-3px);
}

.publication-link:hover i,
.publication-link:focus i {
	color: #ffffff;
	transform: translate(3px, -3px);
}

.publication-link:focus-visible {
	outline: 3px solid rgba(74, 107, 82, 0.3);
	outline-offset: 3px;
}

@media (max-width: 767px) {
	.publication-link {
		align-items: flex-start;
		padding: 15px 17px;
		font-size: 15px;
	}

	.publication-link i {
		margin-top: 5px;
	}
}

h2#logo {margin-bottom: 0 !important;}
.reveal-right.active {text-align: center;}

.about .container{
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.about-content{
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 90vh;
    width: 100%;
    transform: none;
    margin: 0;
}

.about-text{
    max-width: 850px;
    margin: 0 auto;
    text-align: center;
    padding: 40px;
}

.about-text h1,
.about-text h2,
.about-text h3,
.about-text h4,
.about-text p,
.about-text li{
    text-align: center;
}

@media (max-width: 991px){
    .about-content{
        min-height: 70vh;
    }
	
	.about-text, .about-text h1, .about-text h2, .about-text h3, .about-text h4, .about-text h5, .about-text h6, .about-text p, .about-text li, .about-text strong {color: black; text-shadow: unset;}

    .about-text{
        padding: 20px;
    }
}

.page-id-14 .about-content {
    display: block;
    text-align: center;
    justify-content: center;
    min-height: initial;
}

.page-id-14 .about-content p {
    margin: auto auto 20px;
}

@media (min-width: 881px) {
    .hero p {
    font-size: 18px;
    line-height: 1.8;    }
}



.about-content {box-shadow: unset;}
.about-content p {color: white;}

.video-overlay {
    background: rgb(0 0 0 / 12%);
}

@media (min-width: 881px) {

.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
    position: absolute;
    top: 53%;
	}}


.testimonials p {text-align: center;}
.client-info .testimonialname {text-align: center;}

.bottom-of-img {
	padding-top: 50px;
    padding-bottom: 50px;
    text-align: center;
    width: 90%;
    margin: 0 auto;
}

.page-id-14 .about-content p {
	max-width: 853px;
}

.hero-video-overlay h1 {
	font-size: 50px !important;}

.page-id-14 .about-content {position: absolute; top: 0; padding: 20px 0;}


@media (min-width: 881px) {
	#menu-main-menu li .sub-menu { width: 350px !important;}}

.about-content h2 {font-weight: normal;}