@import url('https://fonts.googleapis.com/css?family=Raleway:700,900');

* {
	margin: 0;
	padding: 0;
	border: none;
}

.client-logo {
	height: 60px;
	flex-shrink: 0;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.client-logo:hover {
	transform: scale(1.2);
	z-index: 1;
}

body {
	font-size: 14px;
	font-family: 'Raleway', sans-serif;
}

a {
	text-decoration: none !important;
	-webkit-transition: .3s all ease;
	-o-transition: .3s all ease;
	transition: .3s all ease;
	color: inherit !important;
}

a,
a:hover,
a:focus,
a:active {
	text-decoration: none;
	outline: none;
	color: #333;
	transition-timing-function: ease-in-out;
	-ms-transition-timing-function: ease-in-out;
	-moz-transition-timing-function: ease-in-out;
	-webkit-transition-timing-function: ease-in-out;
	-o-transition-timing-function: ease-in-out;
	transition-duration: .2s;
	-ms-transition-duration: .2s;
	-moz-transition-duration: .2s;
	-webkit-transition-duration: .2s;
	-o-transition-duration: .2s;
}

.animated-bg {
	background: linear-gradient(270deg, #e6375d, #278fca);
	background-size: 400% 400%;
	animation: gradientMove 6s ease-in-out infinite;
	transition: background 1s ease-in-out;
}

@keyframes gradientMove {
	0% {
		background-position: 0% 50%;
	}

	50% {
		background-position: 100% 50%;
	}

	100% {
		background-position: 0% 50%;
	}
}


.wave-wrapper {
	position: relative;
	height: 82px;
	overflow: hidden;
	z-index: 1;
}

.wave {
	position: absolute;
	width: 200%;
	height: 100%;
	animation: waveShake 3s ease-in-out infinite alternate;
}

.client-scrollbar {
	overflow: hidden;
	position: relative;
}

.scroll-wrapper {
	white-space: nowrap;
	overflow: hidden;
}

.logos-track {
	display: flex;
	gap: 2rem;
	animation: scroll-left 25s linear infinite;
}

.client-logo {
	height: 60px;
	flex-shrink: 0;
	width: auto;
}

.client-logo {
	width: 120px;
	/* adjust width as needed */
	object-fit: contain;
}


/* Auto-scroll animation */
@keyframes scroll-left {
	0% {
		transform: translateX(0);
	}

	100% {
		transform: translateX(-50%);
	}
}


@keyframes waveShake {
	0% {
		transform: translateX(0) translateY(0) scaleY(1);
	}

	25% {
		transform: translateX(-10%) translateY(2px) scaleY(1.02);
	}

	50% {
		transform: translateX(-20%) translateY(-2px) scaleY(0.98);
	}

	75% {
		transform: translateX(-10%) translateY(1px) scaleY(1.01);
	}

	100% {
		transform: translateX(0) translateY(0) scaleY(1);
	}
}


.footer-dark {
	background: linear-gradient(to right, #000000, #434343) !important;
}

.footer-light {
	background: linear-gradient(to right, #003973, #e5e5be) !important;
}

.wave-dark stop:first-child {
	stop-color: #434343;
}

.wave-dark stop:last-child {
	stop-color: #000000;
}

.wave-light stop:first-child {
	stop-color: #00f2fe;
}

.wave-light stop:last-child {
	stop-color: #4facfe;
}

ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

img {
	max-width: 100%;
	height: auto;
}

span,
a,
a:hover {
	display: inline-block;
	text-decoration: none;
	color: inherit;
}

.section-head {
	margin-bottom: 60px;
}

.section-head h4 {
	position: relative;
	padding: 0;
	color: #f91942;
	line-height: 1;
	letter-spacing: 0.3px;
	font-size: 34px;
	font-weight: 700;
	text-align: center;
	text-transform: none;
	margin-bottom: 30px;
}

.section-head h4:before {
	content: '';
	width: 60px;
	height: 3px;
	background: #f91942;
	position: absolute;
	left: 0px;
	bottom: -10px;
	right: 0;
	margin: 0 auto;
}

.section-head h4 span {
	font-weight: 700;
	padding-bottom: 5px;
	color: #2f2f2f
}

p.service_text {
	color: #cccccc !important;
	font-size: 16px;
	line-height: 28px;
	text-align: center;
}

.section-head p,
p.awesome_line {
	color: #818181;
	font-size: 16px;
	line-height: 28px;
	text-align: center;
}

.extra-text {
	font-size: 34px;
	font-weight: 700;
	color: #2f2f2f;
	margin-bottom: 25px;
	position: relative;
	text-transform: none;
}

.extra-text::before {
	content: '';
	width: 60px;
	height: 3px;
	background: #f91942;
	position: absolute;
	left: 0px;
	bottom: -10px;
	right: 0;
	margin: 0 auto;
}

.extra-text span {
	font-weight: 700;
	color: #f91942;
}

.item {
	background: #fff;
	text-align: center;
	padding: 30px 25px;
	-webkit-box-shadow: 0 0px 25px rgba(0, 0, 0, 0.07);
	box-shadow: 0 0px 25px rgba(0, 0, 0, 0.07);
	border-radius: 20px;
	border: 5px solid rgba(0, 0, 0, 0.07);
	margin-bottom: 30px;
	-webkit-transition: all .5s ease 0;
	transition: all .5s ease 0;
}

.item:hover {
	background: #db1f48;
	box-shadow: 0 8px 20px 0px rgba(0, 0, 0, 0.2);
}

.item:hover .item,
.item:hover span.icon {
	background: #fff;
	border-radius: 10px;
}

.item:hover h6,
.item:hover p {
	color: #fff;
}

.item .icon {
	font-size: 40px;
	margin-bottom: 25px;
	color: #db1f48;
	width: 90px;
	height: 90px;
	line-height: 96px;
	border-radius: 50px;
}


.item .feature_box_col_one {
	background: rgba(247, 198, 5, 0.20);
	color: #db1f48
}

.item .feature_box_col_two {
	background: rgba(255, 77, 28, 0.15);
	color: #db1f48
}

.item .feature_box_col_three {
	background: rgba(0, 147, 38, 0.15);
	color: #db1f48
}

.item .feature_box_col_four {
	background: rgba(0, 108, 255, 0.15);
	color: #db1f48
}

.item .feature_box_col_five {
	background: rgba(146, 39, 255, 0.15);
	color: #db1f48
}

.item .feature_box_col_six {
	background: rgba(23, 39, 246, 0.15);
	color: #db1f48
}

.item p {
	font-size: 15px;
	line-height: 26px;
}

.item h6 {
	margin-bottom: 20px;
	color: #2f2f2f;
}

.mission p {
	margin-bottom: 10px;
	font-size: 15px;
	line-height: 28px;
	font-weight: 500;
}

.mission i {
	display: inline-block;
	width: 50px;
	height: 50px;
	line-height: 50px;
	text-align: center;
	background: #f91942;
	border-radius: 50%;
	color: #fff;
	font-size: 25px;
}

.mission .small-text {
	margin-left: 10px;
	font-size: 13px;
	color: #666;
}

.skills {
	padding-top: 0px;
}

.skills .prog-item {
	margin-bottom: 25px;
}

.skills .prog-item:last-child {
	margin-bottom: 0;
}

.skills .prog-item p {
	font-weight: 500;
	font-size: 15px;
	margin-bottom: 10px;
}

.skills .prog-item .skills-progress {
	width: 100%;
	height: 10px;
	background: #e0e0e0;
	border-radius: 20px;
	position: relative;
}

.skills .prog-item .skills-progress span {
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	background: #f91942;
	width: 10%;
	border-radius: 10px;
	-webkit-transition: all 1s;
	transition: all 1s;
}

.skills .prog-item .skills-progress span:after {
	content: attr(data-value);
	position: absolute;
	top: -5px;
	right: 0;
	font-size: 10px;
	font-weight: 600;
	color: #fff;
	background: rgba(0, 0, 0, 0.9);
	padding: 3px 7px;
	border-radius: 30px;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
	font-family: "Poppins", sans-serif;
}

.content {
	padding: 7rem 0;
}

h2 {
	font-size: 3.5rem;
	font-weight: 700;
}

h3 {
	font-size: 2rem;
	font-weight: 700;
}

.form-control {
	border: none;
	border-bottom: 1px solid #d9d9d9;
	padding-left: 0;
	padding-right: 0;
	border-radius: 0;
}

.form-control:active,
.form-control:focus {
	outline: none;
	-webkit-box-shadow: none;
	box-shadow: none;
	border-color: #000;
}

.form-control {
	height: 55px;
}

form.border-right {
	padding-right: 6rem !important;
}

@media (max-width: 991.98px) {
	form.border-right {
		padding-right: 0 !important;
		border-right: none !important;
	}

	.navbar .container {
		margin-top: -2px !important;
		margin-bottom: -1px !important;
	}

	.logos-track {
		animation: scroll-left 10s linear infinite !important;
	}

	.email {
		display: none !important;
	}

	.phone {
		display: none !important;
	}

	.address {
		display: none !important;
	}
}

/* Responsive Styles */
@media (max-width: 768px) {
	.section {
		padding: 80px 40px;
	}

	.content-center h1 {
		font-size: 3rem;
	}

	.content-center p {
		font-size: 1.25rem;
	}

	.border-right {
		border-right: none !important;
		padding-right: 0 !important;
	}
}

label.error {
	font-size: 12px;
	color: red;
}


.project-section-glass {
	padding: 4rem 2rem;
	position: relative;
	background: linear-gradient(to right, #004369, #db1f48);
}

.section-head-glass {
	text-align: center;
	margin-bottom: 3rem;
}

.section-head-glass h4 {
	font-size: 34px;
	font-weight: 700;
	color: #fff;
}


.section-head-glass p {
	max-width: 600px;
	margin: 1rem auto;
	font-size: 1rem;
	color: #f0f0f0;
}

.glass-scroll {
	display: flex;
	overflow-x: auto;
	gap: 1.5rem;
	padding: 1rem 0;
	/* scroll-snap-type: x mandatory; */
	scrollbar-width: none;
}

.glass-scroll::-webkit-scrollbar {
	display: none;
}

.glass-card {
	scroll-snap-align: start;
	min-width: 260px;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 20px;
	backdrop-filter: blur(15px);
	-webkit-backdrop-filter: blur(15px);
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
	overflow: hidden;
	/* transition: transform 0.3s ease, background 0.3s ease; */
	cursor: pointer;
}

.glass-card:hover {
	background: #db1f48;
	transform: scale(1.05);
}

.glass-card img {
	width: 100%;
	height: 140px;
	object-fit: cover;
}

.card-content {
	padding: 1rem;
}

.card-content h4 {
	margin: 0.5rem 0;
	font-size: 1.1rem;
	color: #fff;
}

.card-content p {
	font-size: 0.9rem;
	color: #eee;
}

#message {
	resize: vertical;
}

#form-message-warning,
#form-message-success {
	display: none;
}

#form-message-warning {
	color: #B90B0B;
}

#form-message-success {
	color: #55A44E;
	font-size: 18px;
	font-weight: bold;
}

.submitting {
	float: left;
	width: 100%;
	padding: 10px 0;
	display: none;
	font-weight: bold;
	font-size: 12px;
	color: #000;
}

.post .article-v2 .entry-title {
	font-size: 16px;
	color: #666666;
	font-weight: 600;
}

.post .article-v2 .article-header {
	margin-bottom: 15px;
}

.post .article-v2 .article-content-main {
	-webkit-box-shadow: 1px 0px 20px 1px rgba(0, 0, 0, 0.15);
	box-shadow: 1px 0px 20px 1px rgba(0, 0, 0, 0.15);
	padding: 30px;
	position: relative;
	background: #fff;
	margin-top: -75px;
}

@media only screen and (max-width: 1024px) {
	.post .article-v2 .article-content-main {
		padding: 15px;
		margin-bottom: 30px;
	}
}

.post .article-v2 .article-content p:last-of-type {
	margin-bottom: 0;
}

.post .article-v2 .article-thumb {
	position: relative;
	left: 25px;
	margin-bottom: 0;
}

.post .article-v2 .article-footer {
	border-top: 1px solid #ebebeb;
	padding-top: 15px;
	margin-top: 20px;
}

.post .article-v2 .article-footer .more-link {
	color: #ffa800;
}

.post .article-v2 .article-footer .footer-meta a {
	color: #aaa;
	font-size: 15px;
	margin-right: 5px;
}

.post .article-v2 .article-footer .footer-meta a i {
	font-size: 16px;
	margin-left: 2px;
}

/* Sections */
.section {
	height: 100vh;
	min-height: 500px;
	position: relative;
}

/* Containers */
.content-container {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 2;
	clip: rect(auto, auto, auto, auto);
	pointer-events: none;
}

.content-inner {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	height: 100%;
	padding: 0;
	z-index: 99;
	-webkit-transform: translateZ(0);
	transform: translateZ(0);
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	will-change: transform;
	-webkit-perspective: 1000;
	perspective: 1000;
	pointer-events: all;
}

.content-center {
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
}

/* Aesthetics */
.top-section {
	background: linear-gradient(135deg, #d7d7d7 0%, #e6e6e6 100%);
}

.bottom-section {
	background: #004369;
}

.section h1 {
	font-size: 200px;
	font-weight: 900;
	text-transform: uppercase;
	text-align: center;
}

.section p,
.section a {
	font-weight: 700;
	letter-spacing: 7px;
	text-transform: uppercase;
	text-align: center;
}

.content-theme-dark h1 {
	color: #db1f48;
	text-shadow: 0 20px 40px rgba(0, 0, 0, .5);
}

.content-theme-dark p,
.content-theme-dark a {
	color: #FEA98D;
}

.content-theme-light h1 {
	color: #db1f48;
	text-shadow: 0 20px 40px rgba(0, 0, 0, .5);
}

.content-theme-light p,
.content-theme-light a {
	color: #728E93;
}

/* Existing styles (keep your original styles above this) */

@media (max-width: 768px) {
	.project-section-glass {
		padding: 2rem 1rem;
	}

	.section-head-glass h4 {
		font-size: 1.8rem;
	}

	.section-head-glass p {
		font-size: 0.9rem;
	}

	.glass-scroll {
		gap: 1rem;
		padding: 0.5rem 0;
	}

	.glass-card {
		min-width: 220px;
		border-radius: 16px;
	}

	.glass-card img {
		height: 120px;
	}

	.card-content {
		padding: 0.8rem;
	}

	.card-content h4 {
		font-size: 1rem;
	}

	.card-content p {
		font-size: 0.85rem;
	}
}

@media (max-width: 480px) {
	.glass-card {
		min-width: 180px;
	}

	.glass-card img {
		height: 100px;
	}

	.card-content h4 {
		font-size: 0.95rem;
	}

	.card-content p {
		font-size: 0.8rem;
	}
}