
/*** 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;
    opacity: 1;
}
/*** 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;
	    background: linear-gradient(135deg, #ff7a00, #ffb300);
}
.contact-icon.text-primary.mb-4 {
    color: orange !important;
}


.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);
}

.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: var(--bs-primary);
}

.navbar-light .navbar-brand img {
    max-height: 60px;
    transition: .5s;
}

.sticky-top .navbar-light .navbar-brand img {
    max-height: 80px;
}

.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: var(--bs-primary);
    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, .5);
    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.7), rgba(0, 0, 0, 0.7)), url(../img/carousel-1.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: rgba(0, 0, 0, 0.7); 
    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/carousel-1.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 ***/


/*** 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: var(--bs-white);
    transition: 0.5s;
}

.team .team-item:hover .team-content p {
    color: var(--bs-body);
}
/*** Team 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: radial-gradient(circle at top left, rgba(0, 191, 255, .15), transparent 30%), radial-gradient(circle at bottom right, rgba(255, 183, 0, .12), transparent 30%), linear-gradient(135deg, #b9b9b9 0%, #778aa5 50%, #ababab 100%);
}
/*** copyright end ***/


.cm-enquiry {
	color : #fff !important;
}

.cm-white {
    background: white;
    color: #000 !important;
    margin-left: 10px;
}
.cm-white:hover {
    color: #fff !important;
}

.section-heading{
    text-align:center;
    margin-bottom:60px;
}

.section-heading span{
    color:#ff7b00;
    font-weight:600;
    letter-spacing:2px;
    text-transform:uppercase;
}

.section-heading h2{
    font-size:48px;
    margin:15px 0;
    color:#042f5f;
}

.section-heading p{
    max-width:700px;
    margin:auto;
    color:#666;
}

.goa-packages{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:35px;
    max-width:1400px;
    margin:auto;
    padding:20px;
}

.package-card{
    position:relative;
    background:rgba(255,255,255,.85);
    backdrop-filter:blur(20px);
    border-radius:30px;
    padding:40px;
    overflow:hidden;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    transition:.5s;
}

.package-card:hover{
    transform:translateY(-15px);
    box-shadow:0 25px 60px rgba(0,0,0,.15);
}

.package-card::before{
    content:'';
    position:absolute;
    top:-100px;
    right:-100px;
    width:250px;
    height:250px;
    background:linear-gradient(135deg,#00d4ff,#005eff);
    border-radius:50%;
    opacity:.08;
}

.package-card h3{
    font-size:30px;
    color:#042f5f;
    margin-bottom:20px;
}

.price{
    font-size:45px;
    font-weight:700;
    color:#ff7b00;
    margin-bottom:25px;
}

.price span{
    display:block;
    font-size:14px;
    color:#777;
    font-weight:500;
}

.price small{
    font-size:16px;
}

.package-card ul{
    list-style:none;
    padding:0;
}

.package-card ul li{
    padding:12px 0;
    border-bottom:1px solid #eee;
    color:#444;
}

.package-card ul li:before{
    content:'✓';
    color:#00b894;
    margin-right:10px;
    font-weight:bold;
}

.btn-book{
    display:inline-block;
    width:100%;
    text-align:center;
    margin-top:30px;
    padding:15px;
    border-radius:50px;
    text-decoration:none;
    background:linear-gradient(135deg,#ff7b00,#ffb300);
    color:#fff;
    font-weight:600;
    transition:.4s;
}

.btn-book:hover{
    transform:scale(1.05);
}

.featured{
    background:linear-gradient(135deg,#042f5f,#0c4d95);
    color:#fff;
}

.featured h3,
.featured .price,
.featured ul li{
    color:#fff;
}

.featured ul li{
    border-color:rgba(255,255,255,.15);
}

.badge{
    position:absolute;
    top:20px;
    right:-35px;
    background:#ff7b00;
    color:#fff;
    padding:10px 45px;
    transform:rotate(45deg);
    font-size:12px;
    font-weight:600;
}

.services-section{
    position:relative;
    padding:120px 20px;
    background:
    linear-gradient(135deg,#f8fbff,#ffffff);
    overflow:hidden;
}

.services-section::before{
    content:'';
    position:absolute;
    width:500px;
    height:500px;
    background:#ff88001c;
    border-radius:50%;
    top:-200px;
    left:-200px;
    filter:blur(80px);
}

.services-section::after{
    content:'';
    position:absolute;
    width:450px;
    height:450px;
    background:#00bfff18;
    border-radius:50%;
    bottom:-200px;
    right:-150px;
    filter:blur(80px);
}

.services-heading{
    text-align:center;
    max-width:900px;
    margin:auto;
    margin-bottom:70px;
    position:relative;
    z-index:2;
}

.services-heading span{
    display:inline-block;
    padding:10px 20px;
    background:rgba(255,136,0,.1);
    border-radius:50px;
    color:#ff7a00;
    font-weight:600;
    margin-bottom:20px;
}

.services-heading h2{
    font-size:52px;
    line-height:1.2;
    color:#062d5d;
    margin-bottom:20px;
}

.services-heading p{
    font-size:18px;
    color:#666;
}

.services-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:30px;
    max-width:1400px;
    margin:auto;
    position:relative;
    z-index:2;
}

.service-card{
    background:rgba(255,255,255,.75);
    backdrop-filter:blur(20px);
    border:1px solid rgba(255,255,255,.5);
    border-radius:30px;
    padding:40px 30px;
    transition:.5s;
    position:relative;
    overflow:hidden;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.service-card::before{
    content:'';
    position:absolute;
    width:150px;
    height:150px;
    background:linear-gradient(
    135deg,
    #ff880015,
    #00c3ff15);
    border-radius:50%;
    top:-70px;
    right:-70px;
}

.service-card:hover{
    transform:translateY(-15px);
    box-shadow:0 25px 60px rgba(0,0,0,.15);
}

.service-card:hover .icon{
    transform:rotateY(360deg);
}

.icon{
    width:80px;
    height:80px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:35px;
    background:linear-gradient(
    135deg,
    #ff7a00,
    #ffb300);
    border-radius:20px;
    color:#fff;
    margin-bottom:25px;
    transition:1s;
}

.service-card h3{
    font-size:24px;
    margin-bottom:15px;
    color:#062d5d;
}

.service-card p{
    color:#666;
    line-height:1.8;
}

@media(max-width:991px){

.services-heading h2{
    font-size:40px;
}

}

@media(max-width:768px){

.services-section{
    padding:80px 15px;
}

.services-heading h2{
    font-size:32px;
}

.services-heading p{
    font-size:16px;
}

.service-card{
    padding:30px 25px;
}

.icon{
    width:65px;
    height:65px;
    font-size:28px;
}

}

.goa-gallery{
    padding:120px 20px;
    background:#061b35;
    position:relative;
    overflow:hidden;
}

.goa-gallery::before{
    content:'';
    position:absolute;
    width:500px;
    height:500px;
    background:#ff880020;
    border-radius:50%;
    top:-200px;
    left:-200px;
    filter:blur(120px);
}

.goa-gallery::after{
    content:'';
    position:absolute;
    width:400px;
    height:400px;
    background:#00d4ff15;
    border-radius:50%;
    bottom:-150px;
    right:-150px;
    filter:blur(120px);
}

.gallery-heading{
    text-align:center;
    max-width:800px;
    margin:auto;
    margin-bottom:70px;
    position:relative;
    z-index:2;
}

.gallery-heading span{
    display:inline-block;
    padding:10px 22px;
    background:rgba(255,255,255,.08);
    border:1px solid rgba(255,255,255,.1);
    border-radius:50px;
    color:#ffb347;
    font-weight:600;
}

.gallery-heading h2{
    color:#fff;
    font-size:56px;
    margin:20px 0;
}

.gallery-heading p{
    color:#c9d4e5;
    font-size:18px;
}

.gallery-grid{
    max-width:1400px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    grid-auto-rows:250px;
    gap:25px;
    position:relative;
    z-index:2;
}

.gallery-item{
    position:relative;
    overflow:hidden;
    border-radius:30px;
    cursor:pointer;
}

.gallery-item.large{
    grid-column:span 2;
    grid-row:span 2;
}

.gallery-item.tall{
    grid-row:span 2;
}

.gallery-item.wide{
    grid-column:span 2;
}

.gallery-item img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:1s;
}

.gallery-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
    to top,
    rgba(0,0,0,.85),
    rgba(0,0,0,.15)
    );
    display:flex;
    flex-direction:column;
    justify-content:flex-end;
    padding:30px;
    opacity:0;
    transition:.5s;
}

.gallery-overlay h3{
    color:#fff;
    font-size:26px;
    margin-bottom:10px;
    transform:translateY(30px);
    transition:.5s;
}

.gallery-overlay p{
    color:#ddd;
    transform:translateY(30px);
    transition:.6s;
}

.gallery-item:hover img{
    transform:scale(1.15);
}

.gallery-item:hover .gallery-overlay{
    opacity:1;
}

.gallery-item:hover h3,
.gallery-item:hover p{
    transform:translateY(0);
}

.gallery-item::before{
    content:'';
    position:absolute;
    inset:0;
    border-radius:30px;
    border:2px solid transparent;
    background:linear-gradient(
    135deg,
    #ff8800,
    #00d4ff
    ) border-box;
    -webkit-mask:
      linear-gradient(#fff 0 0) padding-box,
      linear-gradient(#fff 0 0);
    -webkit-mask-composite:xor;
    z-index:2;
}

@media(max-width:991px){

.gallery-grid{
    grid-template-columns:repeat(2,1fr);
}

.gallery-heading h2{
    font-size:42px;
}

}

@media(max-width:767px){

.gallery-grid{
    grid-template-columns:1fr;
}

.gallery-item.large,
.gallery-item.tall,
.gallery-item.wide{
    grid-column:auto;
    grid-row:auto;
}

.gallery-heading h2{
    font-size:32px;
}

.gallery-heading p{
    font-size:16px;
}

}

.simple-footer{
    background:
    radial-gradient(circle at top left, rgba(0, 191, 255, .15), transparent 30%), radial-gradient(circle at bottom right, rgba(255, 183, 0, .12), transparent 30%), linear-gradient(135deg, #b9b9b9 0%, #778aa5 50%, #ababab 100%);

    padding:60px 20px;
    text-align:center;
    position:relative;
    overflow:hidden;
}

.simple-footer::before{
    content:'';
    position:absolute;
    width:350px;
    height:350px;
    background:rgba(255,183,0,.08);
    border-radius:50%;
    top:-150px;
    left:-100px;
    filter:blur(80px);
}

.simple-footer::after{
    content:'';
    position:absolute;
    width:400px;
    height:400px;
    background:rgba(0,191,255,.08);
    border-radius:50%;
    bottom:-200px;
    right:-150px;
    filter:blur(100px);
}

.footer-contact{
    display:inline-flex;
    align-items:center;
    gap:15px;

    background:rgba(255,255,255,.05);
    backdrop-filter:blur(15px);

    border:1px solid rgba(255,255,255,.08);

    padding:15px 25px;
    border-radius:60px;

    margin-bottom:25px;
}

.footer-links{
    margin:25px 0;
    position:relative;
}

.footer-links::before{
    content:'';
    position:absolute;
    top:-15px;
    left:50%;
    transform:translateX(-50%);
    width:120px;
    height:1px;
    background:linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,.4),
        transparent
    );
}

.footer-contact a:hover,
.footer-links a:hover{
    color:#ffb300;
    text-shadow:0 0 15px rgba(255,179,0,.5);
}
.footer-logo img{
    max-height:90px;
    filter:drop-shadow(0 10px 25px rgba(255,136,0,.25));
}

.footer-payment img{
    max-width:220px;
    filter:brightness(1.1);
}

.footer-contact a:hover,
.footer-links a:hover{
    color:#ffb300;
}
.footer-tagline{
    color:#d8e4f2;
    margin-bottom:20px;
    font-size:15px;
}

.footer-contact{
    margin-bottom:20px;
}

.footer-contact a{
    color:#fff;
    text-decoration:none;
    font-size:15px;
}

.footer-contact i{
    color:#ffb300;
    margin-right:6px;
}

.footer-contact .divider{
    color:#ffffff50;
    margin:0 15px;
}

.footer-links{
    margin-bottom:20px;
}

.footer-links a{
    color:#d8e4f2;
    text-decoration:none;
    transition:.3s;
}

.footer-links a:hover{
    color:#ffb300;
}

.footer-links span{
    color:#ffffff50;
    margin:0 12px;
}

.footer-payment img{
    max-width:250px;
    margin-bottom:20px;
}

.footer-copy{
    color:#b8c8dd;
    font-size:14px;
}

@media(max-width:576px){

    .footer-contact{
        display:flex;
        flex-direction:column;
        gap:12px;
    }

    .footer-contact .divider{
        display:none;
    }
.footer-logo img {
    height: auto;
    width: 220px;
}
.footer-contact {
    border-radius: 10px !important;
}
.footer-links a {
    font-size: 15px;
}
a.border-bottom.text-white {
    font-size: 12px;
}
span.text-body {
    font-size: 12px;
	color: #000 !important;
}
.col-md-6.text-center.text-md-end.text-body
 {
    font-size: 12px !important;
	color: #000 !important;
    text-align: center !important;
}
}

.contact-add-item.rounded.bg-light.p-4 {
    background: radial-gradient(circle at top left, rgba(0, 191, 255, .15), transparent 30%), radial-gradient(circle at bottom right, rgba(255, 183, 0, .12), transparent 30%), linear-gradient(135deg, #ebfffe 0%, #fff2d4 50%, #ababab00 100%) !important;
}

section.goa-gallery {
    background: radial-gradient(circle at top left, rgba(0, 191, 255, .15), transparent 30%), radial-gradient(circle at bottom right, rgba(255, 183, 0, .12), transparent 30%), linear-gradient(135deg, #ebfffe 0%, #fff2d4 50%, #ababab00 100%) !important;
}

.counter-item.bg-primary.rounded.text-center.p-4.h-100 {
    background: radial-gradient(circle at left top, rgba(0, 191, 255, 0.15), transparent 30%), radial-gradient(circle at right bottom, rgba(255, 183, 0, 0.12), transparent 30%), linear-gradient(135deg, rgb(235, 255, 254) 0%, rgb(255, 242, 212) 50%, rgba(171, 171, 171, 0) 100%) !important;
}

.counter-item.bg-dark.rounded.text-center.p-4.h-100 {
    background: radial-gradient(circle at left top, rgba(0, 191, 255, 0.15), transparent 30%), radial-gradient(circle at right bottom, rgba(255, 183, 0, 0.12), transparent 30%), linear-gradient(135deg, rgb(235, 255, 254) 0%, rgb(255, 242, 212) 50%, rgba(171, 171, 171, 0) 100%) !important;
}
.rounded.bg-primary.p-4.position-absolute.d-flex.justify-content-center {
    background: radial-gradient(circle at left top, rgba(0, 191, 255, 0.15), transparent 30%), radial-gradient(circle at right bottom, rgba(255, 183, 0, 0.12), transparent 30%), linear-gradient(135deg, rgb(235, 255, 254) 0%, rgb(255, 242, 212) 50%, rgba(171, 171, 171, 0) 100%) !important;
}
.gallery-heading h2 {
    color: #000074;
}

.gallery-heading p {
    color: #000;
}

.cm-about {
    margin-top: 120px;
}

.popup-overlay{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.75);
    backdrop-filter:blur(8px);
    display:none;
    justify-content:center;
    align-items:center;
    z-index:99999;
    padding:20px;
}

.popup-container{
    width:950px;
    max-width:100%;
    background:#fff;
    border-radius:25px;
    overflow:hidden;
    display:flex;
    box-shadow:0 20px 60px rgba(0,0,0,.25);
    animation:popupShow .4s ease;
}

@keyframes popupShow{
    from{
        transform:translateY(30px);
        opacity:0;
    }
    to{
        transform:translateY(0);
        opacity:1;
    }
}

.popup-image{
    width:45%;
}

.popup-image img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.popup-form{
    width:55%;
    padding:40px;
    position:relative;
}

.popup-close{
    position:absolute;
    top:15px;
    right:15px;
    width:40px;
    height:40px;
    border:none;
    border-radius:50%;
    cursor:pointer;
    font-size:24px;
    background:#f3f3f3;
}

.popup-header h2{
    color:#08254d;
    font-size:32px;
    margin-bottom:10px;
}

.popup-header p{
    color:#ff8a00;
    font-weight:600;
    margin-bottom:25px;
}

.form-group{
    margin-bottom:15px;
}

.form-group input,
.form-group select,
.form-group textarea{
    width:100%;
    height:55px;
    border:1px solid #ddd;
    border-radius:12px;
    padding:0 15px;
    outline:none;
}

.form-group textarea{
    height:100px;
    padding-top:15px;
    resize:none;
}

.submit-btn{
    width:100%;
    height:55px;
    border:none;
    border-radius:12px;
    background:linear-gradient(135deg,#ff7a00,#ffb300);
    color:#fff;
    font-size:17px;
    font-weight:600;
    cursor:pointer;
}

.submit-btn:hover{
    opacity:.9;
}
@media(max-width:768px){

.popup-container{
    width:100%;
}

.popup-image{
    display:none;
}

.popup-form{
    width:100%;
    padding:30px 20px;
}

.popup-header h2{
    font-size:24px;
}

}



.floating-buttons {
    position: fixed;
    bottom: 20px;
    left: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 999;
}

.floating-buttons a {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.3s ease;
}

.floating-buttons a:hover {
    transform: scale(1.15);
}

.floating-buttons img {
    width: 28px;
    height: 28px;
}

/* Individual Colors */
a.whatsapp-btn {
    background-color: #1bd741;
}

a.call-btn {
    background-color: #2196f3;
}

a.mail-btn {
    background-color: #fff;
}
