/* ========================================
   GLOBAL STYLES -  ARCHITECTS THEME
   ======================================== */

* {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	-webkit-tap-highlight-color: transparent;
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-size: 100%;
	vertical-align: baseline;
	background: transparent;
}

html,
body {
	height: 100%;
	width: 100%
}

body {
	background-color: #FFF;
	position: relative;
	margin: 0;
	padding: 0;
	font: 400 15px/1.6em 'Oxygen', 'Segoe UI', 'Helvetica Neue', Helvetica, Arial, sans-serif;
	color: #000;
	box-sizing: border-box;
	font-family: 'Oxygen', sans-serif;
	font-size: 15px;
	line-height: 1.5em;
	background-color: #FFFFFF;
	background-size: 16.66% 16.66%;
	background-image: repeating-linear-gradient(to right, #F4F5FA, #F4F5FA 1px, #FFF 1px, #FFF);
}

body.homepage {
	background: #f9f9f9;
}

p {
	letter-spacing: 0.01em;
	line-height: 1.8em;
	color: #000;
	padding: 0 0 20px;
	text-align: left;
}

strong {
	font-weight: 600
}

i,
em {
	font-style: italic;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: 'Roboto Condensed', sans-serif;
	line-height: 1.3em;
	letter-spacing: 0.01em;
	line-height: 1.em;
	font-weight: 600;
	font-style: normal;
	margin: 0;
	padding: 0 0 15px 0;
	color: #000;
}

h1 {
	font-size: 36px;
	font-weight: 300;
	text-transform: uppercase;
	color: #B4B4B8;
	padding-bottom: 40px;
	font-family: 'Roboto Condensed', sans-serif;
}

h1 span {
	display: block;
	text-transform: uppercase;
	font-weight: 200;
	font-size: 18px;
	color: #777;
	line-height: 1.3em;
}

h1 strong {
	color: #dd5122;
	font-weight: 700;
	display: block;
}

h2 {
	font-size: 40px;
	text-transform: uppercase;
	color: #202020;
	position: relative;
	z-index: 1;
	margin-bottom: 20px;
	display: block;
	font-family: 'Roboto Condensed', sans-serif;
}

h2 span {
	display: block;
	text-transform: uppercase;
	font-weight: 200;
	font-size: 100%;
	color: #B4B4B8;
	letter-spacing: 0.1em;
	font-size: 16px;
	line-height: 1.2em;
}

h3 {
	font-size: 18px;
	font-weight: 500;
}

.center {
	text-align: center;
	margin-left: auto;
	margin-right: auto;
}

.center h2:before,
.center h2:after {
	content: "";
	display: block;
	height: 50px;
	width: 1px;
	background-color: #202020;
	margin: 20px auto;
}

.wrapper {
	width: 100%;
	max-width: 1600px;
	margin-left: auto;
	margin-right: auto;
	padding: 30px 50px;
}

/* ========================================
   CONTENT BLOCKS
   ======================================== */

.content-block {
	position: relative;
}

.page-header-block {
	padding: 0;
	margin: 0 auto;
	height: auto;
	min-height: 100vh;
}

/* ========================================
   HOME HEADER / HERO SECTION
   ======================================== */

.home-header {
	position: relative;
	width: 100%;
	height: 100vh;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #000;
}

#header-video {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.down-arrow {
	position: absolute;
	bottom: 50px;
	left: 0;
	right: 0;
	margin: 0 auto;
	width: 150px;
	display: block;
	z-index: 10;
}

.arrow {
	width: 20px;
	height: 40px;
	border: 1px solid #FFF;
	border-radius: 40px;
	position: relative;
	margin: 0 auto;
}

.arrow::before {
	content: "";
	width: 6px;
	height: 6px;
	position: absolute;
	top: 2px;
	left: 50%;
	transform: translateX(-50%);
	background-color: #FFF;
	border-radius: 50%;
	opacity: 1;
	animation: wheel 2s infinite;
	-webkit-animation: wheel 2s infinite;
}

@keyframes wheel {
	to {
		opacity: 0;
		top: 30px;
	}
}

@-webkit-keyframes wheel {
	to {
		opacity: 0;
		top: 30px;
	}
}

/* ========================================
   HEADER AND NAVIGATION
   ======================================== */

#header {
	position: absolute;
	background: transparent;
	color: #FFF;
	border: none;
	padding: 0px 20px;
	width: 100%;
	z-index: 50;
}

.homepage #header {
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 100%);
}

#header.fixed {
	background: #fff;
	position: fixed !important;
	box-shadow: 0 5px 5px -1px rgba(0, 0, 0, .2);
	border-bottom: none;
}

#header.fixed.header-down {
	transition: all .35s ease-out;
	transform: translateY(100%);
}

.logo {
	float: left;
	padding-top: 20px;
}

.logo a {
	display: block;
	text-decoration: none;
}

.logo a span {
	display: none;
}



#header.fixed .logo {
	padding-top: 10px;
}

#header.fixed .logo img {
	transform: scale(0.8);
	padding-top: 5px;
	filter: none;
}

.logo a img {
	vertical-align: middle;
	margin-right: 10px;
}

.top-social {
	list-style: none;
	display: flex;
	padding: 0;
	margin: 0 25px 0;
	justify-content: right;
	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.homepage .top-social {
	border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.top-social ul.social-media-menu {
	list-style: none;
	display: flex;
	padding: 0;
	margin: 0;
	gap: 5px;
}

.top-social ul.social-media-menu li {
	margin: 0;
	padding: 0;
}

.top-social ul.social-media-menu li:last-child {
	margin-right: 0;
}

.top-social ul.social-media-menu li a {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 10px 12px;
	text-decoration: none;
	transition: all 0.3s ease;
}

.top-social ul.social-media-menu li a i {
	font-size: 16px;
	color: #202020;
	transition: all 0.3s ease;
}

.homepage .top-social ul.social-media-menu li a i {
	color: #FFF;
}

.top-social ul.social-media-menu li a:hover i {
	color: #dd5122;
	transform: scale(1.1);
}

.homepage .top-social ul.social-media-menu li a:hover i {
	color: #dd5122;
}

.main-navigation-holder {
	display: flex;
	justify-content: right;
	margin-top: 0.5rem;
	text-align: center;
	margin-top: 10px;
	padding-bottom: 20px;
}

ul.main-navigation,
ul.main-navigation ul {
	margin: 0;
	padding: 0;
	list-style: none;
	transition: all .20s ease-in-out .1s;
}

ul.main-navigation li {
	display: inline-block;
	padding: 0;
	margin: 0;
	position: relative;
	border-right: 1px solid rgba(0, 0, 0, 0.2);
}

.homepage ul.main-navigation li {
	border-right: 1px solid rgba(255, 255, 255, 0.1);
}

ul.main-navigation li:last-child {
	border-right: none;
}

ul.main-navigation li a {
	display: block;
	white-space: nowrap;
	text-decoration: none;
	padding: 5px 25px;
	text-transform: none;
	color: #000;
	text-align: left;
	font-size: 16px;
	font-family: 'Roboto Condensed', sans-serif;
	font-weight: 300;
	position: relative;
}

.homepage ul.main-navigation li a {
	color: #FFF;
}

ul.main-navigation li a:hover {
	opacity: 0.6;
	color: #FFF !important;
	opacity: 1;
}

ul.main-navigation li a:after {
	position: absolute;
	content: '';
	display: block;
	width: 90%;
	height: 100%;
	margin: 0 auto;
	background-color: #202020;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: -1;
	transition: all .25s ease-out;
	transform-origin: bottom;
	transform: scaleY(0);
	border: none;
}

ul.main-navigation li a:hover:after {
	transform: scaleY(1);
}

.navicon-holder {
	cursor: pointer;
	width: 28px;
	height: 28px;
	position: absolute;
	vertical-align: middle;
	top: 30px;
	right: 5%;
	display: none;
	z-index: 101;
	transition: all .25s;
}

.navicon {
	display: block;
	height: 2px;
	width: 100%;
	position: absolute;
	top: 50%;
}

.navicon:before,
.navicon:after {
	display: block;
	content: '';
	height: 2px;
	width: 50%;
	position: absolute;
}

.navicon,
.navicon:before,
.navicon:after {
	background-color: #000;
}

.homepage .navicon,
.homepage .navicon:before,
.homepage .navicon:after,
.homepage .navicon.active,
.homepage .navicon.active:before,
.homepage .navicon.active:after {
	background-color: #FFF;
}

#header.fixed .navicon,
#header.fixed .navicon:before,
#header.fixed .navicon:after,
#header.fixed .navicon.active,
#header.fixed .navicon.active:before,
#header.fixed .navicon.active:after {
	background-color: #202020;
}

.navicon.active,
.navicon.active:before,
.navicon.active:after {
	background-color: #000 !important;
}

.navicon:before {
	top: -8px;
	left: 0;
}

.navicon:after {
	top: 8px;
	right: 0;
}

.navicon.active {
	transform: rotate(-45deg);
}

/* ========================================
   UTILITY CLASSES
   ======================================== */

.flex {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
	padding: 0;
	margin: 0;
}

#body-main {
	position: relative;
	z-index: 1;
}

/* ========================================
   MOBILE RESPONSIVE - TABLET (768px and below)
   ======================================== */

@media screen and (max-width: 768px) {
	.wrapper {
		padding: 20px 15px;
		max-width: 100%;
	}

	h1 {
		font-size: 28px;
		padding-bottom: 20px;
	}

	h2 {
		font-size: 28px;
	}

	.home-header {
		height: 40vh;
	}

	.page-header-block {
		min-height: auto;
	}

	.top-social {
		display: none;
	}



	/* Mobile Dropdown Styles */


	.has-dropdown.active>a i,
	.has-sub-dropdown.active>a i {
		transform: rotate(180deg);
	}

	ul.main-navigation {
		display: flex !important;
		flex-direction: column;
		width: 100%;
		align-items: center;
		justify-content: center;
	}

	ul.main-navigation li {
		display: block;
		border: none;
		margin-bottom: 0;
		border-bottom: 1px solid #e0e0e0;
		width: 100%;
		text-align: center;
	}

	ul.main-navigation li a {
		display: block;
		padding: 20px 20px;
		text-align: center;
		color: #202020 !important;
		font-size: 18px;
		font-weight: 500;
		text-transform: capitalize;
		transition: all 0.3s ease;
	}

	ul.main-navigation li a:hover {
		background-color: #dd5122;
		color: white;
	}

	ul.main-navigation li a:after {
		display: none;
	}

	.navicon-holder {
		display: block;
	}

	.columns-2-60-40,
	.columns-2-40-60 {
		flex-direction: column;
	}

	.columns-2-60-40>div,
	.columns-2-40-60>div {
		width: 100% !important;
		padding: 15px 0;
		margin: 0;
	}

	#uni-stats-list {
		flex-direction: column;
		gap: 15px;
	}

	#uni-stats-list li {
		width: 100%;
		text-align: center;
	}

	.services-box {
		flex-direction: column;
	}

	.services-box li {
		width: 100% !important;
		margin-bottom: 20px;
	}

	.pf-grid-holder {
		width: 100%;
		margin: 20px auto;
	}

	.pf-grid:nth-child(1),
	.pf-grid:nth-child(2),
	.pf-grid:nth-child(3),
	.pf-grid:nth-child(4),
	.pf-grid:nth-child(5),
	.pf-grid:nth-child(6),
	.pf-grid:nth-child(7),
	.pf-grid:nth-child(8) {
		width: 100%;
		height: 200px;
	}

	.testimonials li .tblock {
		flex-direction: column;
	}

	.testimonials li .tblock>div {
		width: 100% !important;
	}

	.testimonials li .tblock:after {
		display: none;
	}

	.vlog {
		flex-direction: column;
	}

	.vlog li {
		width: 100% !important;
	}

	.vlog li h2 {
		padding-left: 0;
		padding-top: 15px;
		font-size: 16px;
	}

	.down-arrow {
		bottom: 30px;
	}

	.pa-stats {
		width: 100%;
		border: 5px solid #202020;
		padding: 30px 15px;
		margin: 40px auto;
	}

	.pa-stats strong {
		font-size: 60px;
	}

	.pa-stats span {
		font-size: 18px;
	}

	.pa-stats:before {
		top: -30px;
		left: -30px;
		width: 100px;
		height: 100px;
	}

	.pa-stats:after {
		bottom: -30px;
		right: -30px;
		width: 100px;
		height: 100px;
	}

	.b1 {
		padding: 50px;
		margin-top: 30px;
	}

	.b1:before {
		width: 50%;
	}

	.btn-c,
	.btn-b {
		width: 100%;
		margin: 10px 0;
	}

	.btn-c span,
	.btn-b span {
		width: 100%;
	}

	.center h2:before,
	.center h2:after {
		display: none;
	}

	.eliteCarousel .ec-slide {
		width: 150px;
		height: 100px;
	}

	.logo {
		padding-top: 10px;
	}

	.logo a img {
		width: 80%;
		max-width: 120px;
	}

	#header {
		padding: 10px 15px;
	}
}

/* ========================================
   MOBILE RESPONSIVE - SMALL DEVICES (480px and below)
   ======================================== */

@media screen and (max-width: 480px) {
	.wrapper {
		padding: 15px 10px;
	}

	h1 {
		font-size: 22px;
		padding-bottom: 15px;
	}

	h2 {
		font-size: 22px;
		text-transform: capitalize;
	}

	h3 {
		font-size: 16px;
	}

	p {
		font-size: 14px;
		line-height: 1.6em;
		padding: 0 0 15px;
	}

	.home-header {
		height: 35vh;
	}

	#header {
		padding: 8px 10px;
	}

	.logo {
		padding-top: 8px;
	}

	.logo a img {
		width: 70%;
		max-width: 100px;
	}

	.navicon-holder {
		top: 20px;
		right: 10px;
	}

	.mn-inner {
		padding: 50px 15px;
	}

	ul.main-navigation li a {
		padding: 12px 8px;
		font-size: 16px;
	}

	.columns-2-60-40>div,
	.columns-2-40-60>div {
		padding: 10px 0;
	}

	#uni-stats-list {
		gap: 10px;
	}

	#uni-stats-list li strong {
		font-size: 28px;
	}

	#uni-stats-list li span {
		font-size: 12px;
	}

	.services-box li {
		padding: 15px;
	}

	.services-box li img {
		width: 50px;
		height: 50px;
	}

	.services-box li h3 {
		font-size: 16px;
		margin-bottom: 10px;
	}

	.services-box li p {
		font-size: 13px;
		line-height: 1.4em;
	}

	.pf-grid-holder {
		margin: 15px auto;
	}

	.pf-grid {
		margin-bottom: 10px;
	}

	.pf-grid:nth-child(1),
	.pf-grid:nth-child(2),
	.pf-grid:nth-child(3),
	.pf-grid:nth-child(4),
	.pf-grid:nth-child(5),
	.pf-grid:nth-child(6),
	.pf-grid:nth-child(7),
	.pf-grid:nth-child(8) {
		height: 150px;
	}

	.pf-grid-holder .caption fieldset legend {
		font-size: 20px;
	}

	.pf-grid-holder .caption fieldset span {
		font-size: 12px;
	}

	.testimonials {
		padding: 15px;
	}

	.testimonials li {
		padding: 15px 0;
		margin-bottom: 15px;
	}

	.testimonials li .text p {
		padding: 0;
		font-size: 13px;
		line-height: 1.6em;
	}

	.testimonials li .text .name {
		font-size: 14px;
		padding-top: 10px;
	}

	.testimonials-home .testimonials:before {
		font-size: 20px;
		margin-bottom: 15px;
	}

	.vlog li {
		margin-bottom: 20px;
	}

	.vlog li iframe,
	.vlog li .embed-video {
		height: 150px;
	}

	.vlog li h2 {
		font-size: 14px;
		padding: 10px;
	}

	.eliteCarousel .ec-slide {
		width: 120px;
		height: 80px;
		margin: 0 5px;
	}

	.eliteCarousel .ec-slide img {
		max-width: 100%;
		max-height: 100%;
	}

	.pa-stats {
		width: calc(100% - 30px);
		border: 3px solid #202020;
		padding: 20px 10px;
		margin: 30px auto;
	}

	.pa-stats strong {
		font-size: 42px;
		margin: 5px 0;
	}

	.pa-stats span {
		font-size: 14px;
		padding: 0 15px;
	}

	.pa-stats:before {
		top: -20px;
		left: -20px;
		width: 80px;
		height: 80px;
	}

	.pa-stats:after {
		bottom: -20px;
		right: -20px;
		width: 80px;
		height: 80px;
	}

	.b1 {
		padding: 30px;
		margin-top: 20px;
	}

	.b1:before {
		width: 40%;
	}

	.btn-c,
	.btn-b {
		width: 100%;
		font-size: 12px;
		padding: 0;
	}

	.btn-c span,
	.btn-b span {
		width: 100%;
		padding: 8px 0;
	}

	.btn-c:before,
	.btn-c:after,
	.btn-c span:before,
	.btn-c span:after {
		width: 6px;
		height: 6px;
	}

	.btn-c:hover:before,
	.btn-c:hover span:before {
		transform: translateX(100%);
	}

	.btn-c:hover:after,
	.btn-c:hover span:after {
		transform: translateX(-100%);
	}

	.down-arrow {
		bottom: 20px;
		width: 100px;
	}

	.arrow {
		width: 18px;
		height: 30px;
	}

	.parallax {
		height: 250px;
	}

	.intro {
		padding: 30px 15px;
	}

	.services-home {
		padding: 30px 15px;
	}

	.portfolio-home {
		padding: 30px 15px;
	}

	.testimonials-home {
		padding: 30px 15px;
	}

	.vlog-block {
		padding: 30px 15px;
	}

	.clients-logo {
		padding: 30px 15px;
	}

	.testimonials-holder {
		margin: 30px auto 0;
	}

	.strips-bg {
		padding: 15px;
	}
}

/* ========================================
   EXTRA SMALL DEVICES (320px and below)
   ======================================== */

@media screen and (max-width: 320px) {
	.wrapper {
		padding: 10px 8px;
	}

	h1 {
		font-size: 18px;
	}

	h2 {
		font-size: 18px;
	}

	p {
		font-size: 12px;
	}

	.logo a img {
		width: 60%;
		max-width: 80px;
	}

	#uni-stats-list li strong {
		font-size: 24px;
	}

	.pa-stats strong {
		font-size: 36px;
	}

	.services-box li {
		padding: 10px;
	}

	.home-header {
		height: 30vh;
	}
}

/* ============================================================
   HOMEPAGE SECTIONS STYLING
   ============================================================ */

/* Welcome Section */
.welcome-section {
	padding: 100px 0;
	background: linear-gradient(to right, #f8f8f8 0%, #f0f0f0 100%);
	position: relative;
}

.welcome-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-image: repeating-linear-gradient(90deg, transparent, transparent 99px, #e0e0e0 99px, #e0e0e0 100px);
	opacity: 0.3;
	pointer-events: none;
}

.welcome-section .container {
	position: relative;
	z-index: 1;
}

.section-title {
	font-size: 28px;
	font-weight: 700;
	color: #dd5122;
	margin-bottom: 25px;
	letter-spacing: 1px;
}

.welcome-text {
	font-size: 16px;
	line-height: 1.8;
	color: #555;
	margin-bottom: 40px;
	text-align: justify;
}

.statistics-bar {
	display: flex;
	gap: 40px;
	margin-bottom: 40px;
	flex-wrap: wrap;
}

.stat-item {
	flex: 1;
	min-width: 150px;
}

.stat-number {
	font-size: 48px;
	font-weight: 700;
	color: #999;
	line-height: 1;
	margin-bottom: 10px;
}

.stat-label {
	font-size: 14px;
	color: #333;
	font-weight: 500;
}

.btn-read-more {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 12px 30px;
	background-color: transparent;
	border: 2px solid #dd5122;
	color: #dd5122;
	text-decoration: none;
	font-weight: 600;
	font-size: 14px;
	transition: all 0.3s ease;
}

.btn-read-more:hover {
	background-color: #dd5122;
	color: white;
}

.btn-read-more i {
	font-size: 12px;
}

.anniversary-badge {
	background-color: white;
	border: 3px solid #dd5122;
	padding: 40px;
	text-align: center;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.badge-number {
	font-size: 120px;
	font-weight: 700;
	color: #dd5122;
	line-height: 1;
	margin-bottom: 15px;
}

.badge-text {
	font-size: 16px;
	color: #333;
	font-weight: 600;
	line-height: 1.4;
}

/* Our Expertise Section */


.section-subtitle {
	font-size: 20px;
	font-weight: 600;
	color: #333;
	margin-top: 10px;
	margin-bottom: 20px;
}

.expertise-intro {
	font-size: 16px;
	line-height: 1.8;
	color: #666;
	padding-right: 30px;
}

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

.service-card {
	padding: 30px;
	background-color: #f9f9f9;
	border-left: 4px solid #dd5122;
	transition: all 0.3s ease;
}

.service-card:hover {
	background-color: white;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	transform: translateY(-5px);
}

.service-icon {
	font-size: 40px;
	color: #dd5122;
	margin-bottom: 20px;
}

.service-title {
	font-size: 20px;
	font-weight: 700;
	color: #333;
	margin-bottom: 15px;
}

.service-description {
	font-size: 14px;
	line-height: 1.6;
	color: #666;
	margin: 0;
}

.btn-explore {
	display: inline-block;
	padding: 15px 50px;
	background-color: #dd5122;
	color: white;
	text-decoration: none;
	font-weight: 600;
	font-size: 14px;
	letter-spacing: 1px;
	transition: all 0.3s ease;
}

.btn-explore:hover {
	background-color: #c44519;
	transform: translateY(-2px);
	box-shadow: 0 5px 15px rgba(221, 81, 34, 0.3);
}

/* Portfolio Section */
.portfolio-section {
	padding: 100px 0;
	background-color: #f5f5f5;
	position: relative;
}

.portfolio-overlay {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 1;
	pointer-events: none;
}

.portfolio-title {
	font-size: 120px;
	font-weight: 900;
	color: rgba(221, 81, 34, 0.08);
	letter-spacing: 10px;
	text-transform: uppercase;
}

.portfolio-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 20px;
	position: relative;
	z-index: 2;
}

.portfolio-item {
	position: relative;
	overflow: hidden;
	aspect-ratio: 4/3;
	cursor: pointer;
}

.portfolio-item.portfolio-large {
	grid-column: span 2;
}

.portfolio-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.portfolio-item:hover img {
	transform: scale(1.1);
}

.portfolio-overlay-hover {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(221, 81, 34, 0.9);
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.portfolio-item:hover .portfolio-overlay-hover {
	opacity: 1;
}

.portfolio-category {
	color: white;
	font-size: 24px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 2px;
}

/* Testimonials Section */
.testimonials-section {
	padding: 100px 0;
	background-color: white;
}

.testimonial-quote {
	position: relative;
	padding-left: 80px;
}

.quote-icon {
	position: absolute;
	left: 0;
	top: 0;
	font-size: 60px;
	color: #dd5122;
	opacity: 0.3;
}

.quote-text {
	font-size: 16px;
	line-height: 1.8;
	color: #555;
	font-style: italic;
	margin-bottom: 20px;
}

.quote-author {
	font-size: 14px;
	color: #333;
}

.quote-author strong {
	color: #dd5122;
	font-size: 16px;
}

.quote-author span {
	color: #999;
}

.video-testimonial {
	background-color: #f5f5f5;
	border-radius: 10px;
	overflow: hidden;
	height: 100%;
	min-height: 400px;
}

.video-placeholder {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	height: 100%;
	color: #999;
}

.video-placeholder i {
	font-size: 80px;
	color: #dd5122;
	margin-bottom: 20px;
	cursor: pointer;
	transition: all 0.3s ease;
}

.video-placeholder i:hover {
	color: #c44519;
	transform: scale(1.1);
}

.video-placeholder p {
	font-size: 16px;
	font-weight: 600;
}

/* Responsive Styles for Homepage Sections */
@media (max-width: 991px) {
	.welcome-section {
		padding: 60px 0;
	}

	.section-title {
		font-size: 24px;
	}

	.stat-number {
		font-size: 36px;
	}

	.anniversary-badge {
		margin-top: 40px;
		padding: 30px;
	}

	.badge-number {
		font-size: 80px;
	}

	.expertise-section {
		padding: 60px 0;
	}

	.expertise-intro {
		padding-right: 0;
		margin-bottom: 30px;
	}

	.services-grid {
		grid-template-columns: 1fr;
	}

	.portfolio-title {
		font-size: 60px;
	}

	.portfolio-item.portfolio-large {
		grid-column: span 1;
	}

	.testimonials-section {
		padding: 60px 0;
	}

	.video-testimonial {
		margin-top: 40px;
		min-height: 300px;
	}
}

@media (max-width: 767px) {
	.welcome-section {
		padding: 40px 0;
	}

	.section-title {
		font-size: 20px;
	}

	.welcome-text {
		font-size: 14px;
	}

	.statistics-bar {
		gap: 20px;
	}

	.stat-number {
		font-size: 28px;
	}

	.stat-label {
		font-size: 12px;
	}

	.badge-number {
		font-size: 60px;
	}

	.badge-text {
		font-size: 14px;
	}

	.expertise-section {
		padding: 40px 0;
	}

	.section-subtitle {
		font-size: 16px;
	}

	.service-card {
		padding: 20px;
	}

	.service-icon {
		font-size: 30px;
	}

	.service-title {
		font-size: 18px;
	}

	.portfolio-section {
		padding: 40px 0;
	}

	.portfolio-title {
		font-size: 40px;
		letter-spacing: 5px;
	}

	.portfolio-grid {
		grid-template-columns: 1fr;
		gap: 15px;
	}

	.testimonials-section {
		padding: 40px 0;
	}

	.testimonial-quote {
		padding-left: 60px;
		margin-bottom: 30px;
	}

	.quote-icon {
		font-size: 40px;
	}

	.quote-text {
		font-size: 14px;
	}
}