/* Smooth scroll behavior */
html {
	scroll-behavior: smooth;
	scroll-padding-top: 0;
}

body
{
	background: #032B35;
background: -webkit-linear-gradient(90deg, rgba(3, 43, 53, 1) 0%, rgba(6, 77, 99, 1) 39%, rgba(3, 43, 53, 1) 99%);
background: -moz-linear-gradient(90deg, rgba(3, 43, 53, 1) 0%, rgba(6, 77, 99, 1) 39%, rgba(3, 43, 53, 1) 99%);
background: linear-gradient(90deg, rgba(3, 43, 53, 1) 0%, rgba(6, 77, 99, 1) 39%, rgba(3, 43, 53, 1) 99%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#032B35", endColorstr="#032B35", GradientType=1);

	margin: 0;
	padding: 0;
	overflow-x: hidden;
	overflow-y: auto;
}


.oswald-200{
  font-family: "Oswald", sans-serif;
  font-optical-sizing: auto;
  font-weight: 200;
  font-style: normal;
}

.oswald-300{
  font-family: "Oswald", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
}

.oswald-400{
  font-family: "Oswald", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

.oswald-500{
  font-family: "Oswald", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
}


.oswald-600{
  font-family: "Oswald", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
}


.oswald-700{
  font-family: "Oswald", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
}


.heading6{font-size:50px;text-align:center;color:white;margin-bottom:40px;}
.heading6 a{color:white}

/* Wrapper for snap scrolling */
.scroll-container {
	scroll-snap-type: y proximity;
	overflow-y: scroll;
	height: 100vh;
	scroll-behavior: smooth;
}

/* Fullscreen container class */
.fullscreen-container {
	width: 100%;
	min-height: 100vh;
	scroll-snap-align: start;
	scroll-snap-stop: normal;
	position: relative;
	box-sizing: border-box;
}
#website_menu{}
#website_menu ul{
	list-style:none;
	margin:0;
	padding:0;
	text-align:right;
}
#website_menu ul li{
	display:inline-block;
	margin-left:10px;
	background:#A6A6A6;
	padding:10px 20px;
	border-radius:0 0 10px 10px;
}
#website_menu ul li a{
	color:#fff;
	font-size:14px;
	text-transform:uppercase;
	text-decoration:none;
	letter-spacing:2px;
	padding:10px 0;
	transition:color 0.3s;
	font-family: "Courier Prime", monospace;
  font-weight: 400;
  font-style: normal;
}
#website_menu ul li:hover{
	background: #e91c35;;
}


	#website_logo{text-align:left;margin-top:60px;}
	#website_logo h1{
		font-family: 'Anton', sans-serif;
		font-size: 140px;
		color: #fff;
	
		margin: 0;
		padding: 0;
		letter-spacing: 5px;
		transition: all 0.3s ease;
	}
	
	#main_logo.scrolled {
		    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    font-size: 40px !important;
    z-index: 1000;
    background: rgb(4 48 60);
    padding: 10px 20px;
    /* border-radius: 10px; */
    /* box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);*/
	}
	
	#main_logo.scrolled img {
		width: 30px;
		height: auto;
	}
	#website_logo h2{
		font-size: 30px;
		color: #fff;
	
		margin: 0;

		letter-spacing: 2px;
		text-transform:uppercase
	}
	
	.search-container {
		position: relative;
		display: inline-block;
		font-size:18px;
	}
	
	.search-input {
		width: 300px;
		padding: 12px 20px 12px 45px;
		border-radius: 50px;
		border: none;
		font-size: 16px;
		outline: none;
		background: #fff;
		color: #333;
		transition: all 0.3s ease;
		box-shadow: 0 2px 8px rgba(0,0,0,0.1);
		font-family: Anton, sans-serif;
		text-transform:uppercase;	
	}
	
	.search-input:focus {
		box-shadow: 0 4px 12px rgba(0,0,0,0.2);
		width: 350px;
	}
	
	.search-icon {
		position: absolute;
		left: 15px;
		top: 50%;
		transform: translateY(-50%);
		color: #999;
		pointer-events: none;
		display: flex;
		align-items: center;
		justify-content: center;
	}
	
	.search-input:focus + .search-icon {
		color: #e91c35;
	}
	
	/* Prominent Email Button */
	.button3 {
		display: inline-flex;
		align-items: center;
		gap: 10px;
		padding: 15px 30px;
		background: linear-gradient(135deg, #e91c35 0%, #c71828 100%);
		color: #fff;
		font-size: 18px;
		
		text-decoration: none;
		text-transform: uppercase;
		letter-spacing: 1px;
		border-radius: 50px;
		
		transition: all 0.3s ease;
		font-family: 'Anton', sans-serif;
		position: relative;
		overflow: hidden;
	}
	
	.button3::before {
		content: '';
		position: absolute;
		top: 50%;
		left: 50%;
		width: 0;
		height: 0;
		border-radius: 50%;
		background: rgba(255, 255, 255, 0.2);
		transform: translate(-50%, -50%);
		transition: width 0.6s, height 0.6s;
	}
	
	.button3:hover::before {
		width: 300px;
		height: 300px;
	}
	
	.button3:hover {
		box-shadow: 0 6px 25px rgba(233, 28, 53, 0.6);
		transform: translateY(-2px);
	}
	
	.button3 svg {
		z-index: 1;
		position: relative;
	}
	
	.button3:active {
		transform: translateY(0);
		box-shadow: 0 2px 10px rgba(233, 28, 53, 0.4);
	}

	#fp_slide_2 {
    font-family: 'Anton', sans-serif;
    font-size: 84px;
    color: #fff;
    padding: 90px 0px 60px;
    letter-spacing: 3px;
    /* background: url(/media/v6/bg1.jpg) center bottom repeat-x; */
    background-size: cover;
    min-height: 658px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8), 4px 4px 15px rgba(0, 0, 0, 0.6);
}
	#fp_slide_2 i{font-family:Times New Roman, serif;  font-weight:bold; color:#e91c35;}
	#fp_row_v6_wrapper{
	height:100vh;
	position: relative;
	}
	
	/* Scroll Indicator */
	.scroll-indicator {
		position: absolute;
		bottom: 30px;
		left: 50%;
		transform: translateX(-50%);
		display: flex;
		flex-direction: column;
		align-items: center;
		gap: 10px;
		z-index: 100;
		opacity: 1;
		transition: opacity 0.3s ease;
	}
	
	.scroll-indicator.hidden {
		opacity: 0;
		pointer-events: none;
	}
	
	.scroll-arrow {
		animation: bounce 2s infinite;
		color: #fff;
	}
	
	.scroll-indicator span {
		color: #fff;
		font-size: 14px;
		text-transform: uppercase;
		letter-spacing: 2px;
		font-family: 'Anton', sans-serif;
	}
	
	@keyframes bounce {
		0%, 20%, 50%, 80%, 100% {
			transform: translateY(0);
		}
		40% {
			transform: translateY(-10px);
		}
		60% {
			transform: translateY(-5px);
		}
	}

#footer_2 a{
	color:#fff;
	font-size:24px;
	text-decoration:none;
	letter-spacing:2px;
	padding:10px 0;

}

#fp_slide_footer {
    font-family: 'Anton', sans-serif;
    font-size: 84px;
    color: #fff;
    padding: 60px 20px;
    letter-spacing: 3px;
    /* background: url(/media/v6/bg1.jpg) center top repeat-x; */

	line-height:1.2
   
}

#fp_slide_footer h2{font-size:100px}
#fp_slide_footer h3{font-size:84px}
#fp_slide_footer h4{font-size:64px}
#fp_slide_footer  img{width:35px;}
	#fp_slide_footer i{font-family:Times New Roman, serif; font-style:normal; font-weight:bold; color:#e91c35;}
	#fp_slide_footer{
/* background: url(/media/v6/bg0.jpg) center top repeat-x;
	background-size: cover; */
	}












#fp_row_v6 {
	overflow: hidden;
	padding: 40px 0;
	
	margin: 0 auto;
	
}

.js_caroucel {
	display: grid;
	grid-template-columns: repeat(auto-fill, 200px);
	grid-template-rows: repeat(2, 200px);
	gap: 20px;
	list-style: none;
	padding: 0;
	margin: 0;
	grid-auto-flow: column;
	width: max-content;
}

.js_caroucel li {
	width: 200px;
	height: 200px;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	background: #f5f5f5;
	border-radius: 20px;
	position: relative;
}

.js_caroucel li::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
	background-size: 200% 100%;
	animation: skeleton-loading 1.5s infinite;
	z-index: 1;
}

.js_caroucel li.loaded::before {
	display: none;
}

@keyframes skeleton-loading {
	0% {
		background-position: 200% 0;
	}
	100% {
		background-position: -200% 0;
	}
}

.js_caroucel li img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	opacity: 0;
	transition: opacity 0.3s ease-in-out;
	position: relative;
	z-index: 2;
}

.js_caroucel li.loaded img {
	opacity: 1;
}

/* Responsive */
@media (max-width: 1200px) {
	.js_caroucel {
		grid-template-columns: repeat(auto-fill, 180px);
		grid-template-rows: repeat(2, 180px);
	}
	.js_caroucel li {
		width: 180px;
		height: 180px;
	}
}

@media (max-width: 768px) {
	.js_caroucel {
		grid-template-columns: repeat(auto-fill, 150px);
		grid-template-rows: repeat(2, 150px);
	}
	.js_caroucel li {
		width: 150px;
		height: 150px;
	}
}

/* Third carousel styles - single row */
#logo_scroller {
	overflow: hidden;
	background:white;
	margin: 100px -50px 0 auto;
	width: 98%;
	padding:30px 0;
	position: relative;
	    transform: skew(329deg);
}



#logo_scroller_footer {
	background: url(/media/v6/rip2c.png) top center;
	background-size:cover;
	height:150px;
}


.rip_bar{overflow: hidden;
	padding: 70px 0 0;
	margin: 0 auto;
	width: 100%;
		background: url(/media/v6/rip1c.png) top center;
	background-size:cover;}
.rip_bar_footer{background: url(/media/v6/rip2c.png) top center;
	background-size:cover;
	height:150px;
margin-top: -75px;}


.js_caroucel_3 {
	display: flex;
	gap: 20px;
	list-style: none;
	padding: 0;
	margin: 0;
	flex-wrap: nowrap;
	width: max-content;
}

.js_caroucel_3 li {
	width: 170px;
    height: 80px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
	/*
    background: #fff;
    border-radius: 20px;
	padding: 15px;*/
    position: relative;
	    transform: skew(-329deg);
    
}

.js_caroucel_3 li::before {
	display: none;
}

.js_caroucel_3 li img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	display: block;
	opacity: 1;
	position: relative;
	z-index: 2;
}

/* Responsive for third carousel */
@media (max-width: 1200px) {
	.js_caroucel_3 li {
		width: 180px;
		height: 90px;
	}
}

@media (max-width: 768px) {
	.js_caroucel_3 li {
		width: 150px;
		height: 75px;
	}
}

/* Second carousel styles */
#fp_slide_3_wrapper
{
/* background: url(/media/v6/bg2.jpg) top center repeat-x; */
    background-size: cover;
	padding:100px 0;
}


#fp_slide_3 {
	overflow: hidden;
	padding: 40px 0;
	max-width: 1400px;
	margin: 0 auto;

	

}


#fp_slide_3 h1{
	color:#fff;
	text-align:center;
	font-family: 'Anton', sans-serif;
	font-size:178px;
	margin-bottom:20px;
}

#fp_slide_3 h2{
	color:#fff;
	text-align:center;
	
	font-size:32px;
	margin-top:0;
	margin-bottom:60px;
	
}

#fp_slide_4
{
	/* background: url(/media/v6/bg1.jpg) top center repeat-x; */
    background-size: cover;
	padding:100px 0;
}

#fp_slide_4 h1{
	color:#fff;
	text-align:center;
	font-family: 'Anton', sans-serif;
	font-size:178px;
	margin-bottom:20px;
}

#fp_slide_4 h2{
	color:#fff;
	
	
	font-size:52px;
	margin-top:0;

	font-family: 'Anton', sans-serif;
}
#fp_slide_4 h2 i{    font-size: 24px;
    margin-right: 10px;
    display: inline-block;
}
#fp_slide_5
{
	/* background: url(/media/v6/bg3.png) top center repeat-x; */
    background-size: cover;
	padding:100px 0;
	position:relative;
}

#fp_slide_5 h1{
	color:#fff;
	text-align:center;
	font-family: 'Anton', sans-serif;
	font-size:178px;
	margin-bottom:20px;
}

#fp_slide_5 h2{
	color:#fff;
	text-align:center;
	
	font-size:32px;
	margin-top:0;
	margin-bottom:60px;
	
}

#image1{
	position:absolute;
	bottom:100;
	left:0;
	width:350px;
}
#image2{
	position:absolute;
	bottom:0;
	right:0;
	width:350px;
}


#image1{
	position:absolute;
	bottom:100px;
	left:0;
	width:350px;
}
#image3{
	position:absolute;
	top:0;
	right:0;
	width:350px;
}
#image4{
	position:absolute;
	bottom:100px;
	left:0;
	width:350px;
}
#image5{
	position:absolute;
	bottom:-100px;
	right:0;
	width:450px;
}



#fp_slide_6{display:none;}

#fp_slide_7{position:relative;
/* background: url(/media/v6/bg2.jpg) top center repeat-x; */
    background-size: cover;
	padding:0 0;
	position:relative;}
.js_caroucel_2 {
	display: grid;
	grid-template-columns: repeat(auto-fit, 200px);
	gap: 20px;
	list-style: none;
	padding: 0;
	margin: 0;
	max-width: 1400px;
	margin-left: auto;
	margin-right: auto;
	justify-content: center;
}

.js_caroucel_2 li {
	width: 200px;
	height: 200px;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	background: #f5f5f5;
	border-radius: 20px;
	position: relative;
}

.js_caroucel_2 li::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
	background-size: 200% 100%;
	animation: skeleton-loading 1.5s infinite;
	z-index: 1;
}

.js_caroucel_2 li.loaded::before {
	display: none;
}

.js_caroucel_2 li img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
	opacity: 0;
	transition: opacity 0.3s ease-in-out;
}

.js_caroucel_2 li.loaded img {
	opacity: 1;
}

.js_caroucel_2 li a {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	z-index: 3;
	text-decoration: none;
	color: #fff;
	font-size: 24px;
	letter-spacing:1px;

	font-family: "Oswald", sans-serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;


	text-align: center;
	background: rgba(0,0,0,0.3);
	transition: background 0.3s;
	text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
}

.js_caroucel_2 li a:hover {
	background: rgba(233, 28, 53, 0.8);
}

@media (max-width: 1200px) {
	.js_caroucel_2 {
		grid-template-columns: repeat(auto-fill, 180px);
		grid-template-rows: repeat(2, 180px);
	}
	.js_caroucel_2 li {
		width: 180px;
		height: 180px;
	}
}

@media (max-width: 768px) {
	.js_caroucel_2 {
		grid-template-columns: repeat(auto-fill, 150px);
		grid-template-rows: repeat(2, 150px);
	}
	.js_caroucel_2 li {
		width: 150px;
		height: 150px;
	}
}

/* Staff Members Styles - Clean Grid Design */
.staff-members-container {
	display: flex;
	flex-direction: column;
	gap: 40px;
	margin: 60px auto;
	max-width: 1400px;
	padding: 0 20px;
}

.staff-members-grid {
	display: flex;
	justify-content: center;
	gap: 30px;
	flex-wrap: nowrap;
}

.staff-member {
	cursor: pointer;
	text-align: center;
	transition: all 0.3s ease;
	position: relative;
}

.staff-member:hover {
	transform: scale(1.05);
}

.staff-member.active .staff-thumbnail img {
	border: 3px solid #e91c35;
}

.staff-name {
	font-size: 30px;
	color: #fff;
	text-transform: uppercase;
	
	margin-bottom: 15px;

	font-family: "Oswald", sans-serif;
	font-optical-sizing: auto;
	font-weight: 600;
	font-style: normal;

	
}

.staff-thumbnail {
	width: 150px;
	height: 150px;
	border-radius: 50%;
	overflow: hidden;
	margin: 0 auto;
	position: relative;
}

.staff-thumbnail img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 50%;
	transition: all 0.3s ease;
	aspect-ratio: 1 / 1;
}

.staff-description-container {
	min-height: 250px;
	padding: 40px;
	position: relative;
}

.staff-description {
	display: none;
	animation: fadeIn 0.5s ease;
}

.staff-description>span {
	display: block;
	padding: 20px;
	
}

.staff-description>span img{
	float:right;
	margin:0 100px 0px 150px;
	height:400px;
	width:auto;
	background: linear-gradient(135deg, rgba(233, 28, 53, 0.3) 0%, rgba(6, 77, 99, 0.4) 50%, rgba(233, 28, 53, 0.3) 100%);
	border-radius:20px;
	padding:15px;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), 
	            0 0 0 2px rgba(255, 255, 255, 0.1),
	            inset 0 0 40px rgba(233, 28, 53, 0.2);
	border: 2px solid rgba(255, 255, 255, 0.15);
	transition: all 0.4s ease;
}
.staff-description>span img:hover{
	transform: scale(1.05) rotate(-2deg);
	box-shadow: 0 12px 48px rgba(233, 28, 53, 0.5), 
	            0 0 0 3px rgba(233, 28, 53, 0.3),
	            inset 0 0 60px rgba(233, 28, 53, 0.3);
}

.staff-description.active {
	display: block;
}

.staff-description h3 {
	color: #fff;
	font-size: 44px;
	margin: 0 0 15px 0;
	font-family: "Oswald", sans-serif;
	font-optical-sizing: auto;
	font-weight: 600;
	font-style: normal;
}

.staff-description p {
	color: #fff;
	font-size: 16px;
	line-height: 1.6;
	margin: 0;
}

#bar3{background: #cc9623;
background: linear-gradient(90deg, rgba(204, 150, 35, 1) 0%, rgba(209, 209, 201, 1) 48%, rgba(204, 150, 35, 1) 99%);;
font-size:40px;color:#000;text-align:center;padding:50px;margin-top:100px;font-family: "Lora", serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;}
@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(10px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@media (max-width: 1400px) {
	.staff-members-container {
		max-width: 1200px;
	}
}

@media (max-width: 850px) {
	.staff-members-grid {
		gap: 20px;
		overflow-x: auto;
		justify-content: flex-start;
	}
	
	.staff-thumbnail {
		width: 120px;
		height: 120px;
		flex-shrink: 0;
	}
	
	.staff-name {
		font-size: 16px;
	}
	
	.staff-member {
		flex-shrink: 0;
	}
}

@media (max-width: 520px) {
	.staff-members-grid {
		gap: 15px;
	}
	
	.staff-thumbnail {
		width: 100px;
		height: 100px;
	}
	
	.staff-name {
		font-size: 14px;
		margin-bottom: 10px;
	}
	
	.staff-description-container {
		padding: 25px;
	}
	
	.staff-description h3 {
		font-size: 20px;
	}
	
	.staff-description p {
		font-size: 14px;
	}
}

/* Testimonials Styles - Twisted Paper Effect */
.testimonial-container {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 40px;
	padding: 40px 20px;
	max-width: 1400px;
	margin: 0 auto;
}

.testimonial {
	color:white;
	padding: 30px;
	border-radius: 20px;
	
	width: 100%;

	
	position: relative;
}

.testimonial .fa-star {
	color: #fff;
	font-size: 30px;
	margin: 0 5px;
}



.testimonial p {
	font-size: 20px;
	line-height: 1.6;
	color: #fff;
	
	margin: 0 0 20px 0;
	  font-family: "Lora", serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
}

.testimonial h3 {
	font-size: 20px;
	color: #e91c35;
	font-weight: bold;
font-family:"Open Sans", sans-serif;
	margin: 0 0 20px 0;
}

@media (max-width: 768px) {
	.testimonial-container {
		grid-template-columns: 1fr;
		gap: 30px;
		padding: 30px 15px;
	}
	
	.testimonial {
		max-width: 100%;
		padding: 25px;
	}
	
	.testimonial p {
		font-size: 14px;
	}
	
	.testimonial h3 {
		font-size: 13px;
	}
}

/* Photo Gallery - Angled Photos Styles */
.photo-gallery-container {
	display: flex;
	flex-wrap: wrap;
	gap: 40px;
	justify-content: center;
	padding: 40px 20px;
	max-width: 1200px;
	margin: 0 auto;
}

.photo-item {
	width: 280px;
	height: 350px;
	position: relative;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.photo-item:nth-child(1) {
	transform: rotate(-4deg);
}

.photo-item:nth-child(2) {
	transform: rotate(3deg);
}

.photo-item:nth-child(3) {
	transform: rotate(-2deg);
}

.photo-item:nth-child(4) {
	transform: rotate(5deg);
}

.photo-item:nth-child(5) {
	transform: rotate(-3deg);
}

.photo-item:hover {
	transform: rotate(0deg) scale(1.1);
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
	z-index: 10;
}

.photo-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	border: 8px solid #fff;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
	.photo-gallery-container {
		gap: 30px;
		padding: 30px 15px;
	}
	
	.photo-item {
		width: 220px;
		height: 280px;
	}
}

@media (max-width: 480px) {
	.photo-item {
		width: 100%;
		max-width: 280px;
		height: 350px;
	}
}


footer {
    background: none;
    margin-top: 0;
}

.testimonial_images{text-align:center;vertical-align:middle}
.testimonial_images img{width:250px;height:auto;margin:0 30px;display:inline-block;vertical-align:middle}
#img3{
	position:absolute;
	bottom:0;
	right:20px;
	width:300px;
	opacity: 0;
	transform: translateX(100%);
	transition: all 0.8s ease-out;
}
#img3.slide-in {
	opacity: 1;
	transform: translateX(0);
}