/* logo */
/***.logo{
    height: 113px ;
    width: 113px;
}
***/




/*** Spinner Start ***/
/*** Spinner ***
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    
}

/*** Spinner End ***/

.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    transition: 0.5s;
    z-index: 99;
}

/*** Button Start ***/
.btn {
    font-weight: 600;
    transition: .5s;
}

.btn-square {
    width: 32px;
    height: 32px;
}

.btn-sm-square {
    width: 34px;
    height: 34px;
}

.btn-md-square {
    width: 44px;
    height: 44px;
}

.btn-lg-square {
    width: 56px;
    height: 56px;
}

.btn-xl-square {
    width: 66px;
    height: 66px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square,
.btn-xl-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

.btn.btn-primary {
    color: var(--bs-white);
    border: none;
}

.btn.btn-primary:hover {
    background: var(--bs-dark);
}

.btn.btn-light {
    color: var(--bs-primary);
    border: none;
}

.btn.btn-light:hover {
    color: var(--bs-white);
    background: var(--bs-primary);
}

.btn.btn-dark {
    color: var(--bs-white);
    border: none;
}

.btn.btn-dark:hover {
    color: var(--bs-primary);
    background: var(--bs-light);
}

/*** Navbar Start ***/
.nav-bar {
    background: var(--bs-white);
	font-family: 'Cinzel', serif !important;
}

.sticky-top {
    transition: 1s;
}

.navbar-light .navbar-nav .nav-link {
    position: relative;
    margin-right: 25px;
    padding: 35px 0;
    letter-spacing: 1px;
    color: var(--bs-dark);
    font-size: 17px;
    font-weight: 500;
    outline: none;
    transition: .5s;
}

.sticky-top .navbar-light .navbar-nav .nav-link {
    padding: 20px 0;
    color: var(--bs-dark);
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: #1a649e;
}

/***.navbar-light .navbar-brand img {
   
    transition: .5s;
}

.sticky-top .navbar-light .navbar-brand img {
   height: 100px;
    margin-top: -24px;
}
***/
.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    vertical-align: middle;
    margin-left: 8px;
}

.dropdown .dropdown-menu a:hover {
    background: var(--bs-primary);
    color: var(--bs-white);
}

.navbar .nav-item:hover .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    margin-top: 8px !important;
    background: var(--bs-light);
    transition: .5s;
    opacity: 1;
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
    display: block;
    visibility: hidden;
    top: 100%;
    transform: rotateX(-75deg);
    transform-origin: 0% 0%;
    border: 0;
    border-radius: 10px;
    margin-top: 8px !important;
    transition: .5s;
    opacity: 0;
    }
}

@media (max-width: 991px) {
    .navbar.navbar-expand-lg .navbar-toggler {
        padding: 8px 15px;
        border: 1px solid var(--bs-primary);
        color: var(--bs-primary);
    }

    .sticky-top .navbar-light .navbar-nav .nav-link {
        padding: 12px 0;
    }
}
/*** Navbar End ***/

/*** Carousel Hero Header Start ***/
.header-carousel .header-carousel-item img {
    object-fit: cover;
}


@media (min-width: 1200px) {
    .header-carousel .header-carousel-item,
    .header-carousel .header-carousel-item img {
        height: 700px;
    }
}

@media (max-width: 1199px) {
    .header-carousel .header-carousel-item,
    .header-carousel .header-carousel-item img {
        height: 1200px;
    }
}

.header-carousel .owl-nav .owl-prev {
    display: none;
}

.header-carousel .owl-nav .owl-next {
    position: absolute;
    width: 60px;
    height: 60px;
    bottom: -60px;
    right: 50%;
    transform: translateY(-50%);
    margin-right: -60px;
    border-radius: 60px;
    background: #1a649e;
    color: var(--bs-white);
    font-size: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
}
.header-carousel .owl-nav .owl-next:hover {
    box-shadow: inset 0 0 100px 0 var(--bs-light);
    color: var(--bs-primary);
}

.header-carousel .owl-nav .owl-next i {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation-name: carousel-next-btn;
    animation-duration: 4s;
    animation-delay: 1s;
    animation-iteration-count: infinite;
    transition: 1s;
}

@keyframes carousel-next-btn {
    0%  {margin-top: 35%;}
    50%  {margin-bottom: 70%;}
    100% {margin-top: 35%;}
}

.header-carousel .header-carousel-item .carousel-caption {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    bottom: 0;
    background: rgba(0, 0, 0, .7);
    display: flex;
    align-items: center;
}

.carousel-caption .ticket-form {
    background: rgba(255, 255, 255, 0.4);
    border-radius: 10px;
}

.header-carousel .header-carousel-item img {
    animation-name: image-zoom;
    animation-duration: 10s;
    animation-delay: 1s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    transition: 1s;
}

@keyframes image-zoom {
    0%  {width: 100%; height: 100%;}

    25% {width: 115%; height: 115%;}

    50% {width: 130%; height: 130%;}

    75% {width: 120%; height: 120%;}

    100% {width: 100%; height: 100%;}
}
/*** Carousel Hero Header End ***/

/*** Single Page Hero Header Start ***/
.bg-breadcrumb {
    position: relative;
    overflow: hidden;
    background:  linear-gradient(rgba(0, 0, 0, 0.22), rgba(0, 0, 0, 0.22)), url(../img/poolservices4.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 60px 0 60px 0;
    transition: 0.5s;
}

.bg-breadcrumb .breadcrumb {
    position: relative;
}

.bg-breadcrumb .breadcrumb .breadcrumb-item a {
    color: var(--bs-white);
}
/*** Single Page Hero Header End ***/


/*** Feature Start ***/
.feature .feature-item {
    position: relative;
    border-radius: 10px;
    background: var(--bs-light);
    
}

.feature-item .feature-content {
    position: absolute;
    width: 100%; 
    height: 100%; 
    bottom: 0; 
    left: 0;
    margin-top: 0;
    margin-right: 0; 
    background: #00000038; 
    border-radius: 10px;
    z-index: 2;
}

.feature-item .feature-content .feature-content-inner {
    position: relative;
    z-index: 5;
}
/*** Feature End ***/


/*** Service Start ***/
.service {
    position: relative;
    overflow: hidden;
    background-image: url(../img/ourservices.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.service::before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, .7);
    z-index: 1;
}

.service .service-section {
    position: relative;
    z-index: 5;
}

.service .service-days {
    border-radius: 10px;
    background: var(--bs-white);
}

.service .service-item {
    position: relative;
    height: 100%;
    text-align: center;
    border-radius: 10px;
    background: var(--bs-white);
    z-index: 1;
}

.service .service-item::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    bottom: 0;
    left: 0;
    border-radius: 10px;
    background: var(--bs-primary);
    transition: 0.5s;
    z-index: 2;
}

.service .service-item:hover:after {
    height: 100%;
}

.service .service-item i {
    color: var(--bs-primary);
    transition: 0.5s;
}

.service .service-item:hover i {
    color: var(--bs-white);
}

.service .service-item .service-content {
    position: relative;
    z-index: 3;
}

.service .service-item .service-content p {
    transition: 0.5s;
}

.service .service-item:hover .service-content p {
    color: var(--bs-white);
}

.service .service-item .service-content a.h4 {
    transition: 0.5s;
}

.service .service-item:hover .service-content a.h4:hover {
    color: var(--bs-white);
}
/*** Service End ***/


/*** Attractions Start ***/
.attractions {
    position: relative;
    overflow: hidden;
}

.attractions::after {
    content: "";
    width: 100%;
    height: 70%;
    position: absolute;
    overflow: hidden;
    top: 0;
    left: 0;
    background: linear-gradient(rgba(0, 0, 0, .7), rgba(0, 0, 0, .7)), url(../img/poolsercives2.jpg) center center no-repeat;
    background-size: cover;
    z-index: -2;
    animation-name: attraction-image-zoom;
    animation-duration: 10s;
    animation-delay: 1s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    transition: 1s;
}

@keyframes attraction-image-zoom {
    0%  {width: 100%;}

    25% {width: 115%;}

    50% {width: 130%;}

    75% {width: 120%;}

    100% {width: 100%;}
}

.attractions .attractions-section {
    position: relative;
    z-index: 3;
}

.attractions .attractions-item {
    position: relative;
    border-radius: 10px;
    transition: 0.5s;
    z-index: 1;
}

.attractions .attractions-item::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    border-radius: 10px;
    background: rgba(0, 0, 0, .7);
    transition: 0.5s;
    z-index: 2;
}

.attractions .attractions-item:hover:after {
    height: 100%;
}

.attractions .attractions-item .attractions-name {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 10px;
    color: var(--bs-white);
    font-size: 24px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
    z-index: 3;
    opacity: 0;
}

.attractions .attractions-item:hover .attractions-name {
    opacity: 1;
}

.attractions-carousel .owl-stage-outer {
    margin-top: 58px;
}

.attractions .owl-nav .owl-prev {
    position: absolute;
    top: -58px;
    left: 0;
    background: var(--bs-primary);
    color: var(--bs-white);
    padding: 6px 35px;
    border-radius: 30px;
    transition: 0.5s;
}

.attractions .owl-nav .owl-prev:hover {
    background: var(--bs-white);
    color: var(--bs-primary);
}

.attractions .owl-nav .owl-next {
    position: absolute;
    top: -58px;
    right: 0;
    background: var(--bs-primary);
    color: var(--bs-white);
    padding: 6px 35px;
    border-radius: 30px;
    transition: 0.5s;
}

.attractions .owl-nav .owl-next:hover {
    background: var(--bs-white);
    color: var(--bs-primary);
}
/*** Attractions End ***/


/*** Gallery Start ***/
.gallery .gallery-item {
    position: relative;
    overflow: hidden;
    height: 100%;
    border-radius: 10px;
}

.gallery .gallery-item img {
    transition: 0.5s;
}

.gallery .gallery-item:hover img {
    transform: scale(1.2);
}

.gallery .gallery-item::after {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 10px;
    background: rgba(0, 0, 0, .4);
    transition: 0.5s;
    z-index: 1;
}

.gallery .gallery-item:hover::after {
    width: 100%;
    height: 100%;
}

.gallery .gallery-item .search-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: 0.5s;
    z-index: 5;
    opacity: 0;
}

.gallery .gallery-item:hover .search-icon {
    opacity: 1;
}
/*** Gallery End ***/

/*** Blog Start ***/
.blog .blog-item {
    border-radius: 10px;
}

.blog .blog-item .blog-img {
    position: relative;
    overflow: hidden;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    transition: 0.5s;
}

.blog .blog-item .blog-img img {
    transition: 0.5s;
}

.blog .blog-item:hover .blog-img img {
    transform: scale(1.2);
}

.blog .blog-item .blog-img::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    background: rgba(0, 0, 0, .3);
    z-index: 1;
}

.blog .blog-item .blog-img .blog-category {
    position: absolute;
    top: 25px;
    left: 25px;
    border-radius: 10px;
    color: var(--bs-white);
    background: var(--bs-primary);
    z-index: 5;
}

.blog .blog-item .blog-img .blog-date {
    position: absolute;
    bottom: 25px;
    left: 25px;
    color: var(--bs-white);
    z-index: 5;
}

.blog .blog-item .blog-content {
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    background: var(--bs-light);
}
/*** Blog End ***/

/*** Team Start ***/
.team .team-item {
    position: relative;
    background: var(--bs-primary);
    border-radius: 10px;
}

.team .team-item::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    border-radius: 10px;
    background: var(--bs-dark);
    transition: 0.5s;
    z-index: 1;
}

.team .team-item:hover:after {
    height: 100%;
}

.team .team-item .team-content {
    position: relative;
    text-align: center;
    z-index: 2;
}

.team .team-item .team-content .team-icon {
    background: var(--bs-light);
    border-radius: 10px;
    display: flex;
    display: inline-flex;
}

.team .team-item .team-content h4,
.team .team-item .team-content p {
    transition: 0.5s;
}

.team .team-item:hover .team-content h4 {
    color: var(--bs-primary);
}

.team .team-item .team-content p {
    color: white;
    transition: 0.5s;
}

.team .team-item:hover .team-content p {
    color: white;
}
/*** Team End ***/

/*** Testimonial Start ***/
.testimonial {
    position: relative;
    overflow: hidden;
}

.testimonial::after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-image: url(../img/carousel-1.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: -2;
    animation-name: image-zoom;
    animation-duration: 10s;
    animation-delay: 1s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    transition: 1s;
}

.testimonial::before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, .7);
    z-index: -1;
}

.testimonial .testimonial-carousel .testimonial-item {
    text-align: center;
    border-radius: 10px;
    background: rgba(256, 256, 256, 0.2);
}

.testimonial-carousel .testimonial-item .testimonial-inner {
    display: flex;
    justify-content: center;
}

.testimonial-item .testimonial-inner .testimonial-img {
    position: relative;
}

.testimonial-item .testimonial-inner .testimonial-img img {
    width: 100px;
    height: 100px;
    border-radius: 100px;
    border: 2px solid var(--bs-white);
}

.testimonial-item .testimonial-inner .testimonial-img .testimonial-quote {
    position: absolute;
    top: 0;
    left: -25px;
    color: var(--bs-white);
    background: var(--bs-primary);
}

.testimonial-carousel .owl-dots {
    display: flex;
    justify-content: center;
}

.testimonial-carousel .owl-dots .owl-dot {
    width: 30px;
    height: 30px;
    border-radius: 30px;
    margin: 20px 10px 0 10px;
    background: var(--bs-primary);
    transition: 0.5s;
}

.testimonial-carousel .owl-dots .owl-dot.active {
    width: 30px;
    height: 30px;
    border-radius: 30px;
    background: var(--bs-light);
    transition: 0.5s;
}

.testimonial-carousel .owl-dots .owl-dot span {
    position: relative;
    margin-top: 50%;
    margin-left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.testimonial-carousel .owl-dots .owl-dot.active span::after {
    background: var(--bs-primary);
}

.testimonial-carousel .owl-dots .owl-dot span::after {
    content: "";
    width: 15px;
    height: 15px;
    border-radius: 15px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--bs-white);
    transition: 0.5s;
}

.testimonial-carousel .owl-nav {
    position: absolute;
    bottom: -22px;
    right: 50%;
    transform: translateX(-50%);
    margin-right: -210px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-carousel .owl-nav .owl-prev {
    font-size: 50px;
    margin-right: 80px;
    color: var(--bs-white);
    transition: 0.5s;
}

.testimonial-carousel .owl-nav .owl-next {
    font-size: 50px;
    margin-left: 80px;
    color: var(--bs-white);
    transition: 0.5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    color: var(--bs-primary);
}
/*** Testimonial End ***/


/*** Footer Start ***/

.footer {
    background: var(--bs-dark);
}

.footer .footer-item {
    display: flex;
    flex-direction: column;
}

.footer .footer-item a {
    line-height: 35px;
    color: var(--bs-body);
    transition: 0.5s;
}

.footer .footer-item p {
    line-height: 35px;
}

.footer .footer-item a:hover {
    color: var(--bs-primary);
}

.footer .footer-item .footer-btn a,
.footer .footer-item .footer-btn a i {
    transition: 0.5s;
}

.footer .footer-item .footer-btn a:hover {
    background: var(--bs-white);
}

.footer .footer-item .footer-btn a:hover i {
    color: var(--bs-primary);
}

.footer .footer-item .opening-date {
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.footer .footer-item .opening-date .opening-clock {
    display: flex;
    align-items: center;
    line-height: 35px;
}
/*** Footer End ***/

/*** copyright Start ***/
.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: var(--bs-dark);
}
/*** copyright end ***/

/**New CSS**/

.paradraph {
			  font-family: "Montserrat", sans-serif;
			  font-optical-sizing: auto;
			  font-weight: 600;
			  font-style: normal;
			  color: darkblue;
			  
		}
		body {

			background: 
			linear-gradient(rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.6)), 
			url('img/background.jpg');
			background-size: cover;
			background-position: center;
			background-attachment: fixed;
		}
		.sticky-top .navbar-light .navbar-brand img {
			width: 35%;
			margin: 0px 0px 0px 0px;
			padding: 0px 0px 0px 0px;
		}
		.navbar-brand {
			padding-top: .3125rem;
			padding-bottom: .3125rem;
			margin-right: 1rem;
			font-size: 1.25rem;
			white-space: nowrap;
			
		}
		@media (max-width: 576px) {
			.navbar-brand {
				font-size: 1rem;            /* Slightly smaller font */
				padding-top: 0.2rem;        /* Tighter padding */
				padding-bottom: 0.2rem;
				margin-right: 0.5rem;       /* Less margin on small screens */		  
				width: 70%;                /* Optional: full width for alignment */
			}
		}
			.navbar-toggler{
			
					padding: .25rem .75rem;
					/* font-size: 1.25rem; */
					line-height: 1;
					background-color: rgba(0, 0, 0, 0);
					border: 1px solid rgba(0, 0, 0, 0);
					border-radius: 10px;
					transition: box-shadow .15s 
				ease-in-out;
			}
			
			.navbar {
					position: relative;
					display: flex;
					flex-wrap: wrap;
					align-items: center;
					justify-content: space-between;
					padding-top: .5rem;
					padding-bottom: .5rem;
					font-family: auto;
				}
		.service .service-item::after {
			content: "";
			position: absolute;
			width: 100%;
			height: 0;
			bottom: 0;
			left: 0;
			border-radius: 10px;
			background: #1a649e !important;
			transition: 0.5s;
			z-index: 2;
			color:white !important;
		}
		.btn-custom-hover {
			background-color: #1a649e;
			color: white;
			transition: background-color 0.3s ease;
		}

		.btn-custom-hover:hover {
			background-color: black;
			color: white;
		}
  
  
		 .header-carousel .owl-nav .owl-next {
			position: absolute;
			width: 60px;
			height: 60px;
			bottom: -60px;
			right: 50%;
			transform: translateY(-50%);
			margin-right: -60px;
			border-radius: 60px;
			background: #1a649e;
			color: var(--bs-white);
			font-size: 26px;
			display: flex;
			align-items: center;
			justify-content: center;
			transition: 0.5s;
		}
		
		@media (min-width: 300px) and(max-width: 500px){
				.header-carousel .header-carousel-item {

				height: 1300px;
			}
			}
		.navbar-light .navbar-nav .nav-link:hover,
		.navbar-light .navbar-nav .nav-link.active {
			color: #1a649e;
		}
		.team-icon a {
			color: #1a649e !important;
		}
		.team-icon a:hover {
			background-color: #1a649e !important;
			color: white !important;
		}
	   .bg-custom-blue {
			background-color: #1a649e;
		}
 
		.footer-logo{
			width: 35%;
			height:auto;
			padding-bottom:15px;
		   
		}
		.btn-back-to-top {
		  background-color: #1a649e;
		  color: white;
		  border: none;
		  transition: background-color 0.3s ease, color 0.3s ease;
		}

		.btn-back-to-top:hover {
		  background-color: #000000;
		  color: white;
		}

		#main-image{
			width:100%;
			height:600px;
		}

		/* This will affect all h1 to h6 */
		
		#pool-1-img img{
			width:100%;
			height:250px;
		}
		.volleyball{
			width:100%;
			height:500px;
		}
		
		.shadow{
			width:100%;
			height:400px;
		}
		.slide{
			width:100%;
			height:300px;
		}
		.secondary-image{
			width:100%;
			height:auto;
		
		}
		
		
		.umbrella-para{
			position: absolute;
			top: 258px;
			left: 90px;
		}
		@media only screen and (min-width: 768px) and (max-width: 1024px) {
		 .umbrella-para{
		
			position: absolute;
			top: 233px;
			left:15px;
			}
		}
		@media only screen and (min-width: 450px) and (max-width: 767px){
				.umbrella-para{
				position: absolute;
				top: 380px;
				left: 53px;
				}
				
		
		}
		/* Small devices (phones, landscape) */
		@media (max-width: 449px) { 
			.umbrella-para{
			position: absolute;
			top: 270px;
			left: 46px;
			}
			
			.quality-text {
				font-size: 21px;
				font-weight: 700;
				font-family: 'Cinzel', serif !important;
				color: darkblue;
			}
			.sub-text {
				font-size: 12px;
				font-weight: 600;
				font-family: 'Cinzel', serif !important;
				color: darkblue;
			}
		}
		.slide-umbrella{
			height: 380px ;
		 
		}
		.rounded-img {
			border-radius: 20px;
		}
		
		
		
		.comparison-card {
			  background: rgba(255, 255, 255, 0.92);
			  border-radius: 15px;
			  padding: 25px;
			  border: 1px solid rgba(0, 0, 0, 0.1);
			  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
			  transition: transform 0.2s ease-in-out;
		}
		.comparison-card:hover {
			transform: translateY(-5px);
		}
		
	
	
		.thank-card {
			  
			  border-radius: 15px;
			  
			  padding: 20px;
			  max-width: 600px;
			  margin: 50px auto;
			  text-align: center;
		}
		.thank-card img {
			  border-radius: 15px;
			  margin-bottom: 20px;
			  width: 100%;
			  height: auto;
		}
		.thank-card h5 {
			  font-weight: 700;
			  text-transform: uppercase;
			  color: #002147;
			  margin-bottom: 10px;
		}
		.thank-card p {
			  font-size: 1.1rem;
			  font-weight: 500;
			  margin-bottom: 0;
		}
		.thank-card span {
			  display: block;
			  margin-top: 8px;
			  font-size: 1.3rem;
			  font-weight: 700;
			  color: #003366;
		}
		
		.headings-icons{
				font-family: 'Cinzel', serif !important; 
				color: darkblue;
				margin-bottom:20px;	 
				text-transform: uppercase;   /* Makes all headings uppercase */
				
		 }
		 .section-title {
			  font-weight: 700;
			  font-size: 2rem;
			  font-family: 'Cinzel', serif !important; 
			  color: darkblue;
			  margin-bottom: 2rem;
		}
		.bullet-points {
			  list-style: disc;
			  padding-left: 20px;
			  margin: 0;
			  font-family: 'Cinzel', serif !important; 
			  color: darkblue;
			  font-weight: 500;
			  line-height: 1.6;
		}
		.sub-text {
			font-size: 0.9rem;
			font-weight: 600;
			font-family: 'Cinzel', serif !important; 
			color: darkblue; 
		}
		.umbrella-text {
			position: absolute;
			top: 37%;
			left: 27%;
			transform: rotate(-13deg);
			font-size: 1.2rem;
			font-family: 'Cinzel', serif !important; 
			color: darkblue; 
			font-weight: 600;
		}
		.quality-text {
			font-size: 1.5rem;
			font-weight: 700;
			font-family: 'Cinzel', serif !important; 
			color: darkblue; 
		}
		
		.headings {
			font-family: 'Cinzel', serif !important; 
			color: darkblue;
					 
			text-transform: uppercase;   /* Makes all headings uppercase */
			font-weight: bold;           /* Bold headings */
			text-align: center;          /* Center headings */
		}
		
		.pool-list li{
			font-family: "Montserrat", sans-serif;
		   color: darkblue;
		   font-weight: bold; 
			font-size:18px;   
			margin-bottom:20px;
		}
		
		.Feature-Start{
			font-family: 'Cinzel', serif !important;
		
		}
		.image-heading{
		font-family: 'Cinzel', serif !important;
		font-size: 35px;
		}
		
		.compaq-img{
			position: absolute;
				width: 100%;
				height: 100%;
				left: 0;
				bottom: 0;
				background: #00000038;
				display: flex;
				align-items: center;
			}
			
			
		@media only screen and (max-width: 768px){   
			html,     body{ 
				width:100%; 
				overflow-x:hidden;   
			} 
		}
			.hero-image{
				height:800px;
			}

		@media only screen and (max-width: 1200px){
			.hero-image{
				height:1500px;
				text-align:center;
			}
			.main-form{
				text-align:Center;
			
			}
			
		}
		
		.footer-item {
			font-family: 'Cinzel', serif !important;
		}
		
	.hero {
      background: url('../img/umbrella.png') no-repeat top center ;
      background-size: contain;
      background-repeat: no-repeat;
      background-position: top center;
     
      padding-top: 30vw; /* space for umbrella */
      padding-bottom: 2rem;
      
      text-align: center;
      position: relative;
	
    }

    .angled-text {
      transform: rotate(-10deg);
      font-size: 1.1rem;
	  Font-weight: Bold;
      font-family: 'Cinzel', serif !important;
		   color: darkblue;
      margin-bottom: 1rem;
    }

    .main-title {
		Font-weight: Bold;
		font-size: 1.8rem;
		font-family: 'Cinzel', serif !important;
		color: darkblue;
    }

    .sub-text {
      font-size: 1rem;
      color: darkblue;
      margin-top: 1rem;
    }

    @media (max-width: 556px) {
      .angled-text {
        font-size: 0.95rem;
        transform: rotate(-13deg);
      }

      .main-title {
        font-size: 1.1rem;
		padding-top: 10px;
      }

      .sub-text {
        font-size: 0.9rem;
      }

      .hero {
        padding-top: 55vw;
      }
		.UNDERWATER {
			margin-top: -64px;
			margin-left: 28px;
		}
    }
	@media (min-width: 557px) and (max-width: 768px) {
			.UNDERWATER {
				margin-left: 102px;
				margin-top: -50px;
			}
		 .main-title {
			font-size: 1.1rem;
			padding-top: 10px;
		  }
	
	}
	@media (min-width: 769px) and (max-width: 1024px) {
		.UNDERWATER{
		margin-top: -108px;
        margin-left: 28px;
		}
		.angled-text {
        font-size: 0.95rem;
        transform: rotate(-10deg);
      }

      .main-title {
        font-size: 1.3rem;
		padding-top: 10px;
      }

      .sub-text {
        font-size: 0.9rem;
      }

	
	}
	@media (min-width: 1025px) {
		.UNDERWATER{
		margin-top: -175px;
        margin-left: 108px;
		}
		.main-title {
        font-size: 1.5rem;
		padding-top: 22px;
		}
	
	}


		.paradraph {
			  font-family: "Montserrat", sans-serif;
			  font-optical-sizing: auto;
			  font-weight: 600;
			  font-style: normal;
			  color: darkblue;
			  
		}
		body {

			background: 
			linear-gradient(rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.6)), 
			url('img/background.jpg');
			background-size: cover;
			background-position: center;
			background-attachment: fixed;
		}
		.sticky-top .navbar-light .navbar-brand img {
			width: 35%;
			margin: 0px 0px 0px 0px;
			padding: 0px 0px 0px 0px;
		}
		.navbar-brand {
			padding-top: .3125rem;
			padding-bottom: .3125rem;
			margin-right: 1rem;
			font-size: 1.25rem;
			white-space: nowrap;
			
		}
		@media (max-width: 576px) {
			.navbar-brand {
				font-size: 1rem;            /* Slightly smaller font */
				padding-top: 0.2rem;        /* Tighter padding */
				padding-bottom: 0.2rem;
				margin-right: 0.5rem;       /* Less margin on small screens */		  
				width: 70%;                /* Optional: full width for alignment */
			}
		}
			.navbar-toggler{
			
					padding: .25rem .75rem;
					/* font-size: 1.25rem; */
					line-height: 1;
					background-color: rgba(0, 0, 0, 0);
					border: 1px solid rgba(0, 0, 0, 0);
					border-radius: 10px;
					transition: box-shadow .15s 
				ease-in-out;
			}
			
			.navbar {
					position: relative;
					display: flex;
					flex-wrap: wrap;
					align-items: center;
					justify-content: space-between;
					padding-top: .5rem;
					padding-bottom: .5rem;
					font-family: auto;
				}
		.service .service-item::after {
			content: "";
			position: absolute;
			width: 100%;
			height: 0;
			bottom: 0;
			left: 0;
			border-radius: 10px;
			background: #1a649e !important;
			transition: 0.5s;
			z-index: 2;
			color:white !important;
		}
		.btn-custom-hover {
			background-color: #1a649e;
			color: white;
			transition: background-color 0.3s ease;
		}

		.btn-custom-hover:hover {
			background-color: black;
			color: white;
		}
  
  
		 .header-carousel .owl-nav .owl-next {
			position: absolute;
			width: 60px;
			height: 60px;
			bottom: -60px;
			right: 50%;
			transform: translateY(-50%);
			margin-right: -60px;
			border-radius: 60px;
			background: #1a649e;
			color: var(--bs-white);
			font-size: 26px;
			display: flex;
			align-items: center;
			justify-content: center;
			transition: 0.5s;
		}
		
		@media (min-width: 300px) and(max-width: 500px){
				.header-carousel .header-carousel-item {

				height: 1300px;
			}
			}
		.navbar-light .navbar-nav .nav-link:hover,
		.navbar-light .navbar-nav .nav-link.active {
			color: #1a649e;
		}
		.team-icon a {
			color: #1a649e !important;
		}
		.team-icon a:hover {
			background-color: #1a649e !important;
			color: white !important;
		}
	   .bg-custom-blue {
			background-color: #1a649e;
		}
		.social-icon{
			background-color: #cccfff;
		
		}
 
		.footer-logo{
			width: 35%;
			height:auto;
			padding-bottom:15px;
		   
		}
		.btn-back-to-top {
		  background-color: #1a649e;
		  color: white;
		  border: none;
		  transition: background-color 0.3s ease, color 0.3s ease;
		}

		.btn-back-to-top:hover {
		  background-color: #000000;
		  color: white;
		}

		#main-image{
			width:100%;
			height:600px;
		}

		/* This will affect all h1 to h6 */
		
		#pool-1-img img{
			width:100%;
			height:250px;
		}
		.volleyball{
			width:100%;
			height:500px;
		}
		
		.shadow{
			width:100%;
			height:400px;
		}
		.slide{
			width:100%;
			height:300px;
		}
		.secondary-image{
			width:100%;
			height:auto;
		
		}
		
		
		.umbrella-para{
			position: absolute;
			top: 258px;
			left: 90px;
		}
		@media only screen and (min-width: 768px) and (max-width: 1024px) {
		 .umbrella-para{
		
			position: absolute;
			top: 233px;
			left:15px;
			}
		}
		@media only screen and (min-width: 450px) and (max-width: 767px){
				.umbrella-para{
				position: absolute;
				top: 380px;
				left: 53px;
				}
				
		
		}
		/* Small devices (phones, landscape) */
		@media (max-width: 449px) { 
			.umbrella-para{
			position: absolute;
			top: 270px;
			left: 46px;
			}
			
			.quality-text {
				font-size: 21px;
				font-weight: 700;
				font-family: 'Cinzel', serif !important;
				color: darkblue;
			}
			.sub-text {
				font-size: 12px;
				font-weight: 600;
				font-family: 'Cinzel', serif !important;
				color: darkblue;
			}
		}
		.slide-umbrella{
			height: 380px ;
		 
		}
		.rounded-img {
			border-radius: 20px;
		}
		
		
		
		.comparison-card {
			  background: rgba(255, 255, 255, 0.92);
			  border-radius: 15px;
			  padding: 25px;
			  border: 1px solid rgba(0, 0, 0, 0.1);
			  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
			  transition: transform 0.2s ease-in-out;
		}
		.comparison-card:hover {
			transform: translateY(-5px);
		}
		
	
	
		.thank-card {
			  
			  border-radius: 15px;
			  
			  padding: 20px;
			  max-width: 600px;
			  margin: 50px auto;
			  text-align: center;
		}
		.thank-card img {
			  border-radius: 15px;
			  margin-bottom: 20px;
			  width: 100%;
			  height: auto;
		}
		.thank-card h5 {
			  font-weight: 700;
			  text-transform: uppercase;
			  color: #002147;
			  margin-bottom: 10px;
		}
		.thank-card p {
			  font-size: 1.1rem;
			  font-weight: 500;
			  margin-bottom: 0;
		}
		.thank-card span {
			  display: block;
			  margin-top: 8px;
			  font-size: 1.3rem;
			  font-weight: 700;
			  color: #003366;
		}
		
		.headings-icons{
				font-family: 'Cinzel', serif !important; 
				color: darkblue;
				margin-bottom:20px;	 
				text-transform: uppercase;   /* Makes all headings uppercase */
				
		 }
		 .section-title {
			  font-weight: 700;
			  font-size: 2rem;
			  font-family: 'Cinzel', serif !important; 
			  color: darkblue;
			  margin-bottom: 2rem;
		}
		.bullet-points {
			  list-style: disc;
			  padding-left: 20px;
			  margin: 0;
			  font-family: 'Cinzel', serif !important; 
			  color: darkblue;
			  font-weight: 500;
			  line-height: 1.6;
		}
		.sub-text {
			font-size: 0.9rem;
			font-weight: 600;
			font-family: 'Cinzel', serif !important; 
			color: darkblue; 
		}
		.umbrella-text {
			position: absolute;
			top: 37%;
			left: 27%;
			transform: rotate(-13deg);
			font-size: 1.2rem;
			font-family: 'Cinzel', serif !important; 
			color: darkblue; 
			font-weight: 600;
		}
		.quality-text {
			font-size: 1.5rem;
			font-weight: 700;
			font-family: 'Cinzel', serif !important; 
			color: darkblue; 
		}
		
		.headings {
			font-family: 'Cinzel', serif !important; 
			color: darkblue;
					 
			text-transform: uppercase;   /* Makes all headings uppercase */
			font-weight: bold;           /* Bold headings */
			text-align: center;          /* Center headings */
		}
		
		.pool-list li{
			font-family: "Montserrat", sans-serif;
		   color: darkblue;
		   font-weight: bold; 
			font-size:18px;   
			margin-bottom:20px;
		}
		
		.Feature-Start{
			font-family: 'Cinzel', serif !important;
		
		}
		.image-heading{
		font-family: 'Cinzel', serif !important;
		font-size: 35px;
		}
		
		
			
			
		@media only screen and (max-width: 768px){   
			html,     body{ 
				width:100%; 
				overflow-x:hidden;   
			} 
		}
			.hero-image{
				height:800px;
			}

		@media only screen and (max-width: 1200px){
			.hero-image{
				height:1500px;
				text-align:center;
			}
			.main-form{
				text-align:Center;
			
			}
			
		}
		
		.footer-item {
			font-family: 'Cinzel', serif !important;
		}
		
	.hero {
      background: url('img/umbrella.png') no-repeat top center ;
      background-size: contain;
      background-repeat: no-repeat;
      background-position: top center;
     
      padding-top: 30vw; /* space for umbrella */
      padding-bottom: 2rem;
      
      text-align: center;
      position: relative;
	
    }

    .angled-text {
      transform: rotate(-10deg);
      font-size: 1.1rem;
	  Font-weight: Bold;
      font-family: 'Cinzel', serif !important;
		   color: darkblue;
      margin-bottom: 1rem;
    }

    .main-title {
		Font-weight: Bold;
		font-size: 1.8rem;
		font-family: 'Cinzel', serif !important;
		color: darkblue;
    }

    .sub-text {
      font-size: 1rem;
      color: darkblue;
      margin-top: 1rem;
    }

    @media (max-width: 556px) {
      .angled-text {
        font-size: 0.95rem;
        transform: rotate(-13deg);
      }

      .main-title {
        font-size: 1.1rem;
		padding-top: 10px;
      }

      .sub-text {
        font-size: 0.9rem;
      }

      .hero {
        padding-top: 55vw;
      }
		.UNDERWATER {
			margin-top: -64px;
			margin-left: 28px;
		}
    }
	@media (min-width: 557px) and (max-width: 768px) {
			.UNDERWATER {
				margin-left: 102px;
				margin-top: -50px;
			}
		 .main-title {
			font-size: 1.1rem;
			padding-top: 10px;
		  }
	
	}
	@media (min-width: 769px) and (max-width: 1024px) {
		.UNDERWATER{
		margin-top: -108px;
        margin-left: 28px;
		}
		.angled-text {
        font-size: 0.95rem;
        transform: rotate(-10deg);
      }

      .main-title {
        font-size: 1.3rem;
		padding-top: 10px;
      }

      .sub-text {
        font-size: 0.9rem;
      }

	
	}
	@media (min-width: 1025px) {
		.UNDERWATER{
		margin-top: -175px;
        margin-left: 108px;
		}
		.main-title {
        font-size: 1.5rem;
		padding-top: 22px;
		}
	
	}
	.map-container {
  width: 100%;
  height: 400px;   /* desktop height */
  border-radius: 0.5rem;
  overflow: hidden;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* smaller height on mobile */
@media (max-width: 768px) {
  .map-container {
    height: 250px;
  }
}



body {
    background: linear-gradient(rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.6)), url(img/background.jpg) !important;
    background-size:cover !important;
	background-position: Center !important;
}
	