/* ============== Font Imports ================ */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Unbounded:wght@200..900&display=swap');

/* ============== Default Element Style ================ */

body {
	font-family: "DM Sans", serif;
	font-size: clamp(1rem, 2vw, 1.125rem); /* Responsive font size for body */
	background: #eeeeee;
	scroll-behavior: smooth;

}

h1 {
	font-family: "Unbounded", serif;
	font-size: clamp(1.3rem, 6vw, 3rem); /* Responsive font size for h1 */
}

h2 {
	font-family: "Unbounded", serif;
	color: #000;
	font-size: clamp(2.1rem, 5vw, 2.6rem); /* Responsive font size for h2 */
}

h3 {
	font-size: clamp(1.5rem, 4vw, 2.4rem); /* Responsive font size for h3 */
}

h4 {
	font-family: "Unbounded", serif;
	font-size: clamp(1.25rem, 3.5vw, 2rem); /* Responsive font size for h4 */
}

h5 {
	font-size: clamp(1.125rem, 3vw, 1.5rem); /* Responsive font size for h5 */
}

h6 {
	font-size: clamp(1rem, 2.5vw, 1.25rem); /* Responsive font size for h6 */
}

p, a {
	font-style: normal;
	font-weight: 400;
	font-size: clamp(1rem, 2vw, 1.125rem); /* Responsive font size for paragraphs */
}

ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

a, a:hover, a:focus {
	text-decoration: none !important;
}

img {
	border-style: none;
}

.btn_theme {
	font-size: 16px;
	cursor: pointer;
	padding: 9px 18px 9px 20px;
	border: 3px double #fff;
	border-radius: 0;
	background: #df231e;
	color: #fff;
	letter-spacing: 2px;
	text-transform: uppercase;
	appearance: none;
}


	@media (max-width: 576px) {
		.btn_theme {
			padding: 12px 1px 12px 4px;
		}
	}

	.btn_theme:hover {
		color: #000;
		background-position: 100% 0;
		border: 3px double #000;
		transition: all .4s ease-in-out;
		background-color: #fff;
	}

	.btn.color-1 {
		background-image: linear-gradient(to right, #336699, #03478a, #336699, #03478a);
	}

.padding-100 {
	padding: 80px 0px;
}

.padding-top {
	padding-top: 80px;
}

.padding-bottom {
	padding-bottom: 80px;
}


.box_1{
	padding-top:80px;
}
.box_2{
	padding-bottom: 80px;
}
.number-container {
	position: absolute;
	display: inline-block;
	margin: auto;
	left: 0;
	right: 0;	
	width: 70px;
	height: 70px;
	border: 20px solid #eee;
	box-sizing: content-box;
	background-color: #fff;
	border-radius: 50%;
	color: #000;
	font-size: 20px;
	font-weight: 600;
	text-align: center;
	line-height: 70px;
	font-family: "Unbounded", serif;
	cursor: pointer;
	overflow: hidden;
	transition: all 0.3s ease;
}
.box_1_container .number-container {
	top: -55px;
}
.box_2_container .number-container {
	bottom: -55px;
}
.number {
	position: relative;
	z-index: 2; /* Keeps the number above the arrow */
	opacity: 1;
	transition: opacity 0.3s ease;
}

.arrow {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) scale(0) rotate(45deg); /* Diagonal with rotation */
	font-size: 1.25rem;
	opacity: 0;
	transition: transform 0.3s ease, opacity 0.3s ease;
}

.box_1_container:hover .number, .box_2_container:hover .number {
	opacity: 0; /* Hides the number */
}

.box_1_container:hover .arrow, .box_2_container:hover .arrow {
	transform: translate(-50%, -50%) rotate(320deg) !important; /* Shows the arrow diagonally */
	opacity: 1; /* Makes the arrow visible */
}

.box_1_container:hover, .box_2_container:hover {
	box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15); /* Slightly stronger shadow on hover */
}
#portfolios .col{
	margin-bottom:85px;
}
.box_1_container:hover img.img-fluid.rounded-4.border, .box_2_container:hover img.img-fluid.rounded-4.border {
	transform: scale(0.95);
}

#hero-section {
	padding: 200px 0 100px;
	background:  url("../img/portfolio-banner.png") center center no-repeat;
	background-size: cover;
	text-align: center;
	color: #000;
	background-position:bottom;
}

.page_header::after {
	z-index: -1;
	position: absolute;
	top: -10px;
	left: -10px;
	width: calc(100% + 20px);
	height: calc(100% + 20px);
	border: 1px solid rgba(255, 255, 255, .99);
	content: "";
}
.page_header {
	z-index: 2;
	position: relative;
	padding: 80px 40px;
	background-color: rgba(255, 255, 255, .99);
	text-align: center;
}
/*-----------------CONTACT US------------------*/

	/*#contact-us::before {
		content: "";
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background: rgba(0, 0, 0, 0.8);*/ /* Adjust opacity as needed */
		/*z-index: 1;
	}
	#contact-us * {
		z-index: 2;
	}*/
#contact-us, #portfolios-hub {
	background-image: url(../img/Rectangle-16.png);
	background-repeat: no-repeat;
	background-position: center bottom;
	background-size: 100% 100%;
	padding: 100px 0;
}
	@media (max-width: 764px) {
		#contact-us, #portfolios-hub {
			background-image:none;
			background-color: black;
		}
	}
#contact-us .contact-details {
	padding: 30px 10px 30px 25px;
	background: #ffffff26;
	background: linear-gradient(to left, #ffffff26 50%, #df231e 50%) right;
	background-size: 200%;
	transition: .5s ease-out;
}

		#contact-us .contact-details:hover {
			background-position: left;
		}

		#contact-us .contact-details::before {
			content: '';
			position: absolute;
			left: 0;
			top: 0px;
			width: 10px;
			height: 100%;
			background: #df231e;
			border-top-right-radius: 25px;
			border-bottom-right-radius: 25px;
		}

	#contact-us .form-floating > label {
		color: #999;
	}

.nav-link {
	color: #000;
}


/*---------- portfolios-hub-values-------------*/
#portfolios-hub.portfolios-hub-values {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
}

.portfolios-hub-values .glassBox {
	width: 100%;
	height: 250px;
	max-width: 300px;
	border-radius: 10px;
	background: #fff;
	-webkit-backdrop-filter: blur(2px);
	backdrop-filter: blur(2px);
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-right-color: rgba(255, 255, 255, 0.1);
	border-bottom-color: rgba(255, 255, 255, 0.1);
	box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
	padding: 15px;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}

	.portfolios-hub-values .glassBox:hover {
		background: #fff;
		box-shadow: 0 20px 30px rgba(0, 0, 0, 0.1);
	}

	.portfolios-hub-values .glassBox,
	.portfolios-hub-values .glassBox * {
		box-sizing: border-box;
		transition: 400ms;
	}

.portfolios-hub-values .glassBox__imgBox img {
	display: block;
	width: 100%;
	height: auto;
}

/*.portfolios-hub-values .glassBox__title {
	text-align: center;
	margin-top: 15px;
	color: #FFF;
	font-size: 20px;
	font-weight: 400;
	font-family: "Lato";
}*/

/*.portfolios-hub-values .glassBox__content {
	position: absolute;
	right: 15px;
	bottom: 15px;
	left: 15px;
	text-align: center;
	color: #FFF;
	font-size: 14px;
	font-family: "Lato";
	letter-spacing: 0.1em;
	opacity: 0;
}*/

.portfolios-hub-values .glassBox:hover .glassBox__imgBox {
	transform: translateY(-20px);
}

.portfolios-hub-values .glassBox:hover .glassBox__title {
	transform: translateY(-20px);
}

.portfolios-hub-values .glassBox:hover .glassBox__title {
	transform: translateY(-20px);
}

.portfolios-hub-values .glassBox:hover .glassBox__imgBox img {
	transform: translate(0, -40px) rotate(0deg) scale(1.3);
}

@media(max-width:1200px) {
	.portfolios-hub-values .glassBox .glassBox__title {
		font-size: 18px;
	}
}
.glassBox__imgBox img {
	width: 96px !important;
}
#footer a,#footer p{
	color:#000;
}
#footer {
/*	background: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)), url("../img/Rubber-bg.png") center center no-repeat;
*/	background-size: cover;
}
/* HEADER */
header {
	background: #eeeeee;
	position: absolute;
	z-index: 99;
	width: 100%;
	top: 0;
}

	header .navbar-toggler {
		border: none;
	}

	header .navbar .navbar-brand {
		width: 150px;
	}

	header .navbar .nav-top {
		border-bottom: 1px solid white;
	}

@media (max-width: 992px) {
	header .navbar .navbar-nav {
		padding: 50px;
		background: #C7B7AA;
	}
}

@media (min-width: 992px) {
	header .navbar .nav-item {
		padding-left: 40px !important;
	}
}

/* Navbar and Footer Links */
header .navbar .nav-link,
#footer .footer_links a {
	color: #000 !important;
	position: relative;
	text-decoration: none;
	font-weight: 600;
}

	/* Hover & Active State */
	header .navbar .nav-link:hover,
	#footer .footer_links a:hover,
	header .navbar .nav-link.active,
	#footer .footer_links a.active {
		color: #df231e !important;
	}

	/* Underline Effect */
	header .navbar .nav-link::after,
	#footer .footer_links a::after {
		content: "";
		position: absolute;
		bottom: 0;
		left: 50%;
		width: 0%;
		height: 1px;
		background: transparent;
		border-bottom: 2px dotted #df231e; /* Adjust color and thickness */
		transition: width 0.3s ease-in-out, left 0.3s ease-in-out;
	}

	/* Expand underline on hover & active */
	header .navbar .nav-link:hover::after,
	#footer .footer_links a:hover::after,
	header .navbar .nav-link.active::after,
	#footer .footer_links a.active::after {
		opacity: 1;
		width: 100%;
		left: 0;
	}

