@charset "utf-8";
/* CSS Document */
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Poppins', sans-serif;
	line-height: 1.4;
}

body, html {
		color: #111;
		margin: 0;
		padding: 0;
		height: 100%;
}


.main-container {
	min-height: 90vh;

}

.contact-btn-desktop {
	background-image: linear-gradient(45deg, #ED2423, #FCD005);
	color: #fff;
	font-weight: 600;
	text-decoration: none;
	display: inline-block;
	padding: 15px 50px;
	border-radius: 30px;
	border-style: none;
	margin-top: 60px;
	transition: 0.4s ease;
}

.contact-btn-desktop:hover {
	transform: scale(1.1);
	
}

.contact-btn-mobile{
	background-image: linear-gradient(45deg, #ED2423, #FCD005);
	color: #fff;
	font-weight: 600;
	text-decoration: none;
	display: none;
	padding: 12px 30px;
	border-radius: 30px;
	border-style: none;
	margin-top: 30px;
}

/*TOP BAR*/

.top-bar {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 5px 30px;
	position: relative;
	z-index: 8;
	background-color: #fff;
}

.logo { 
	text-align: center;
}
.logo img {
	height: 80px;
}
.vl {
	border-right: solid rgba(40,42,45,1.00) 1px;;
	padding: 25px;
	margin-right: 25px;
	height: 60px;
	
}
.contact-info{
	display: flex;
	justify-content: center;
	align-items: center;
	
}
.contact-info a {
	text-decoration: none;
	color: rgba(40,42,45,1.00);
	font-size: 16px;
	padding: 15px;
}
/*END TOP BAR*/

/*HERO STYLE*/

nav {
	height: 60px;
	display: flex;
	justify-content: flex-end;
	align-items: center;
}
.links-container {
	height: 100%;
	width: 100%;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
}

nav a{
	height: 100%;
	padding: 0 20px;
	display: flex;
	align-items: center;
	text-decoration: none;
	color: #fff;
	transition: 0.4s ease;
}

nav a:hover {
	color: orange;
}
label {
	color: #fff;
	font-size: 24px;
}

#sidebar-active {
	display: none;
}
.open-sidebar, .close-sidebar {
	display: none;
}

.hero {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 70vh;
	background:  linear-gradient(45deg, rgba(0, 43, 85, 0.7), rgba(0, 43, 85, 0.5)), url("img/hero-bg.jpg");
	background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;
	position: relative;
}
.hero-overlay {
	color: #fff;
	background-color: #00000070;
	position: absolute;
	inset: 0;
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 1rem;
}

.hero-content {
	height: 60vh;
	max-width: 1200px;
	margin: auto auto;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	text-wrap: balance;
/*	padding-top: 200px;*/
}

.hero-content h1 {
	font-size: 2rem;
	margin-bottom: 2rem;
	font-weight: 600;
}

.hero-content h2 {
	font-weight: 200;
	font-size: 1rem;
	margin-bottom: 2rem;
}

/* ICNOS SECTION*/

.icons-section {
	display: block;
	text-align: center;
	padding: 30px;
}
.icons-section h3 {
	font-weight: 500;
	font-size: 20px;
}

.services-icons img {
	height: 100px;
}

.services-icons {
	padding: 30px;
	display: flex;
	justify-content: space-around;
}

.iconFromIconSection {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	align-content: center;
	transition: all 0.5s ease;
}
.iconFromIconSection:hover {
	transform: scale(1.1);
}

.iconFromIconSection h4 {
	font-size: 16px;
	font-weight: 500;
	padding: 30px;
}

/* ABOUT SECTION*/
.about { 
	display: flex;
	justify-content: space-between;
	padding: 1px;
	gap: 20px;
}

.about img {
	max-width: 50%;
	height: auto;
	border-radius: 10px;
	object-fit: cover;
}
.about-title {
	border-left: solid rgba(255,118,0,1.00) 6px;
	padding: 0 15px;
}

.about-title h4 {
	font-size: 24px;
	font-weight: 500;
}
.about p{
	font-size: 16px;
	margin-top: 15px;
}

/* PHOTO SLIDER SECTION */

.photo-slideshow {
	margin-top: 45px;
	display: flex;
	flex-direction: column;
    align-conten: center;
    align-items: center;
    height: 450px;
}

.slider-container {
    width: 100%;
    max-width: 1200px;
    overflow: hidden;
}

/* Slider setup */
.slider {
    display: flex;
    gap: 5px; /* Add 5px gap between images */
    transition: transform 0.5s ease-in-out;
}

/* Adjust image width so gap doesn't break layout */
.slider img {
    max-width: calc(33.33% - 3.33px); /* Desktop: 3 images visible */
    height: 400px;;
	object-fit: cover;
	border-radius: 10px;
}

/* Dots */
.dots-container {
	display: flex;
	margin-top: 20px;
    left: 50%;
    transform: translateX(0%);
    gap: 10px;
}

.dot {
    width: 10px;
    height: 10px;
    background-color: #bbb;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s ease;
}

.dot.active {
    background-color: #333;
}

/* REVIEWS SECTION */

.reviews {
    text-align: center;
    padding: 25px 0;
    background-color: #ECECEC;
}

.reviews h2 {
	margin-bottom: 20px;
	font-weight: 600;
}
.review-container {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    max-width: 1400px; /* Adjust width for 4 cards */
    margin: auto;
}

.review-wrapper {
    width: 100%;
	max-width: 1200px;/* Enough to show 4 cards */
    overflow: hidden;
    border-radius: 10px;
}

.review-slider {
    display: flex;
    transition: transform 0.4s ease-in-out;
	will-change: transform;
}

.review-card {
	  height: 200px;
    flex: 0 0 auto; /* Prevent shrinking */
    min-width: 280px;
    max-width: 280px;
    width: 100%;
    padding: 30px;
    text-align: center;
    background: white;
    margin: 0 10px; /* Ensure spacing is consistent */
    border-radius: 10px;
}

.review-card p {
	font-size: 12px;
}

.nav-btn {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    padding: 10px;
    transition: 0.3s;
}

.nav-btn:hover {
    color: #007bff;
}

.stars-reviews {
	color: gold;
}

/* OTHER PAGES CSS*/

/* ! ABOUT PAGE */

.hero-about {
	height: 55vh;
	background:  linear-gradient(45deg, rgba(0, 43, 85, 0.7), rgba(0, 43, 85, 0.5)), url("img/hero-bg.jpg");
	background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;
	position: relative;
}

.hero-content-about {
	height: 42vh;
	display: flex;
	justify-content: center;
	align-items: center;
	align-content: center;
	text-align: center;
	text-wrap: balance;
}
.hero-content-about h1 {
	font-weight: 500;
	font-size: 2.5em;
}

.margin {
	height: 60px;
}

.contactBtnPageContainer {
	text-align: center;
	
}

/* SERVICES PAGE !!! */


.services-text-paragraph {
	text-align: center;
	max-width: 1100px;
	margin: 0 auto;
}

.services-text-paragraph h2 {
	font-weight: 500;
	text-warp: balance;
	font-size: 1.3rem;;
	margin: 0 10px;
}

.services-text-paragraph h3 {
	font-weight: 500;
	text-warp: balance;
	font-size: 1rem;
	margin: 40px 10px;;
}

.services-gray-bg {
	background-color: #EFEFEF;
}
.services-container {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	justify-content: space-around;
	
}
.services-container-colum1,.services-container-colum2 {
	display: flex;
	flex-direction: column;
}
.services-card {
	display: flex;
	align-items: center;
	align-content: center;
	gap:15px;
	margin: 25px;
}
.services-card img {
	height: 70px;
}

.services-card h4 {
	font-weight: 500;
}


/* PRICES PAGE */

.prices {
	max-width: 1200px;
	margin: 0 auto;
}
#prices {
  font-family: Arial, Helvetica, sans-serif;
  border-collapse: none;
  width: 100%;
}

#prices td, #prices th {
  border-radius:8px;
  padding: 8px;
}

#prices tr:nth-child(2n+1){background-color: #f2f2f2;}

#prices tr:hover {background-color: #ddd;}

#prices th {
  padding-top: 12px;
  padding-bottom: 12px;
  text-align: left;
  background-image: linear-gradient(20deg, #ED6421, #FCD005);
  color: white;
}

#prices td {
padding: 12px;
font-weight: 600;
color: rgba(40,42,45,1.00);
}

#prices td span {
	font-weight: 400;
}

.prices p {
	margin-top: 15px;
	margin: 5px;
}


/* CONTACT PAGE*/

.contact {
	max-width: 1200px;
	margin: 0 auto;
	text-align: center;
	padding-bottom: 50px;
}

.contact h2 {
	font-weight: 500;
	font-size: 20px;
	text-warp: balance;
	margin: 0 10px;
}

.contact-container {
	display: flex;
	justify-content: center;
	gap:150px;
	margin: 30px 0;
}

.contact-element {
	display: flex;
	flex-direction: column;
	align-content: center;
	align-items: center;
	gap:15px;
	margin: 25px;
}

.contact-element img {
	height: 50px;
}
.contact-element h4 {
	font-weight: 500;
	font-size: 20px;
	color: #F47814;
}
.contact-element a{
	text-decoration: none;
	color: #F47814;
}


/* FOOTER SECTION */
	

footer {
	background-image: linear-gradient(180deg, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0.3)), url("img/hero-bg.jpg");
	margin-top: 70px;
	background-repeat: no-repeat;
	background-size: cover;
	bottom: 0;
	width: 100%;
}

.footer-info {
	max-width: 1200px;
	display: flex;
	justify-content: space-between;
	margin: auto;
	padding: 20px 10px;
	align-items: center;
}

.footer-contact {
	display: flex;
	flex-direction: column;
}
.footer-contact a {
	text-decoration: none;
	color: rgba(57,57,57,1.00);
}

.footer-social-media {
	display: flex;
	flex-direction: column;
}
.footer-social-media a {
	text-decoration: none;
	color: rgba(57,57,57,1.00);
}

.footer-logo img {
	height: 80px;
}

.copyrights-anpc {
	max-width: 1200px;
	display: flex;
	justify-content: space-between;
	align-content: center;
	align-items: center;
	margin: auto;
	padding: 10px 10px;
	
	
}
.copyrights-anpc h6 {
	font-size: 18px;
	font-weight: 400;
}
.copyrights-anpc img {
	height: 50px;
}
.anpc {
	letter-spacing: 20px;
}

@media (max-width: 940px) {
	.hero-content {
		padding-top: 200px;
	}
	.reviews {
		margin-top: 20px;
	}
	.hero-content-about {
			margin-top: 1px;
	}
}



@media (max-width: 780px) {
    .slider img {
        min-width: calc(50% - 2.5px); /* Adjust for 5px gap */
    }
	  .review-wrapper {
        width: 600px; 
    }
	
/*	TOP BAR */
	.top-bar {
	display: block;
	padding: 10px 0px;
	position: relative;
	z-index: 8;
	background-color: #fff;
}

.logo { 
	text-align: center;
}
.logo img {
	height: 80px;
}
	.vl {
		display: none;
	}
.contact-info{
	display: flex;
	justify-content: center;
	align-items: center;
	
}
.contact-info a {
	text-decoration: none;
	color: rgba(40,42,45,1.00);
	font-size: 16px;
	padding: 8px;
}
		
	
	
/* FOOTER SECTION */
.footer-info {
	display: block;
	margin: auto;
	text-align: center;
}

.footer-contact {
	padding: 10px;
}
.footer-cui {
	padding: 10px;
}
.footer-social-media {
	padding: 10px;
}
.footer-logo {
	display: none;
}
.copyrights-anpc {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	text-align: center;
}
	
.services-container {
	max-width: 1200px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	margin: 0 auto;
	}
	
	.contact-container {
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap:5px;
	margin: 30px 0;
}

/* Mobile: Show 1 image at a time */
@media (max-width: 520px) {
    .slider img {
        min-width: 100%; /* No gap needed for single image */
	}
	  .review-wrapper {
        width: 300px; /* Show only 1 card on very small screens */
    }

/*	TOP BAR */
	.top-bar {
	display: block;
	padding: 8px 0px;
	position: relative;
	z-index: 8;
	background-color: #fff;
}

.logo { 
	text-align: center;
}
.logo img {
	height: 80px;
}
.vl {
		display: none;
	}
.contact-info{
	display: flex;
	justify-content: center;
	align-items: center;
	
}
.contact-info a {
	text-decoration: none;
	color: rgba(40,42,45,1.00);
	font-size: 12px;
	padding: 8px;
}
	
/*	MENU */
	
	.links-container {
/*		display: none;*/
		flex-direction: column;
		align-items: center;
		align-content: center;
		height: 25%;
		position: fixed;
		top: -238px;
		z-index: 2;
		width: fit-content 480px;
		background-color: #ffffff;
		border-radius: 0 0 15px 15px;
		transition: all 0.7s ease-out;
	}
	nav a {
		box-sizing: border-box;
		color: #000;
		padding: 5px 10px;
	}
	.open-sidebar, .close-sidebar {
	padding: 10px;
	display: block;
	z-index: 4;
}
	#sidebar-active:checked ~.links-container {
/*		display: flex;*/
		top: 138px;
	}
	#sidebar-active:checked ~#overlay-close {
		height: 100%;
		width: 100%;
		position: fixed;
		top: 0;
		left: 0;
		z-index: 1;
		
	}


/* HERO */
	
	.hero {
	height: 70vh;
	}
	
	.contact-btn-desktop {
		display: none;
	}
	.contact-btn-mobile {
		display: inline-block;
		margin-top: 20px;
	}
	
	.hero-content h1 {
		font-size: 24px;
		margin-top: 6rem;
	}
	.hero-content {
		padding-top: 50px;
		
	}
	.hero-content-about {
		margin-top: 1px;
	}
	
	

/* ICONS SECTION */
	
.icons-section {
	display: flex;
	flex-direction: column;
	text-align: center;
	padding: 15px 0;
	margin: 0 auto;
}
.icons-section h3 {
	font-weight: 500;
	font-size: 18px;
}

.services-icons img {
	height: 60px;
}

.services-icons {
	padding: 0;
	display: flex;
	margin-top: 25px;
	justify-content: space-around;
}

.iconFromIconSection {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	align-content: center;
	transition: all 0.5s ease;
}
.iconFromIconSection:hover {
	transform: none;
}

.iconFromIconSection h4 {
	font-size: 12px;
	font-weight: 500;
	padding: 15px;
}
	

/* ABOUT SECTION */
	.about {
		flex-direction: column;
		justify-content: center;
		align-content: center;
		align-items: center;
	}
	.about img {
		margin-top: 15px;
		max-width: 100%;
	}
	.about p{
		text-wrap: none;
	}


/* FOOTER SECTION */
	
.footer-info {
	display: block;
	margin: auto;
	text-align: center;
}

.footer-contact {
	padding: 10px;
}
.footer-cui {
	padding: 10px;
}
.footer-social-media {
	padding: 10px;
}
.footer-logo {
	display: none;
}
.copyrights-anpc {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	text-align: center;
}
	
}

@media screen and (max-width:400px) {
	.contact-info a{
		font-size: 10px;
		padding: 5px;
	}
	
	.hero-content {
		height: 40vh;
	}
	.hero-content-about {
		margin-top: 1px;
	}
	
	.hero-content h1 {
	font-size: 20px;
	font-weight: 600;
}

.hero-content h2 {
	font-weight: 200;
	font-size: 14px;
	}
	
.hero-content-about h1 {
	font-weight: 500;
	font-size: 24px;
}
	
	@media screen and (max-height:740px) and (orientation:portrait) {
	
	.hero-content {
		height: 40vh;
	}
	.hero-content-about {
		margin-top: 1px;
	}
	
	.hero-content h1 {
	font-size: 22px;
	font-weight: 600;
}

.hero-content h2 {
	font-weight: 200;
	font-size: 16px;
		}
}
	
	@media screen and (max-height:740px) and (max-width:375px) {
	
	.hero-content {
		height: 30vh;
	}
	.hero-content-about {
		margin-top: 1px;
	}
	
	.hero-content h1 {
	font-size: 18px;
	font-weight: 600;
}

.hero-content h2 {
	font-weight: 200;
	font-size: 14px;
	}
.contact-btn-mobile{
	background-image: linear-gradient(45deg, #ED2423, #FCD005);
	color: #fff;
	font-weight: 600;
	text-decoration: none;
	padding: 10px 30px;
	border-radius: 30px;
	border-style: none;
	margin-top: 0;
	}		
}


