/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    background: #fff;
    overflow-x: hidden;
}

html {
    overflow-x: hidden;
}

/* Header Section */
.header {
    min-height: 100vh;
    width: 100%;
    background-image: linear-gradient(rgba(4, 9, 30, 0.7), rgba(4, 9, 30, 0.7)), url(images/banner.jpg);
    background-position: center;
    background-size: cover;
    position: relative;
    display: flex;
    flex-direction: column;
}

/* Navigation */
.navbar {
    display: flex;
    padding: 2% 6%;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    position: relative;
    z-index: 10;
}

.navbar-logo {
    width: 150px;
    height: auto;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

.navbar-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.navbar-menu li a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    transition: all 0.3s ease;
}

.navbar-menu li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #ca0069;
    transition: width 0.3s ease;
}

.navbar-menu li a:hover::after {
    width: 100%;
}

.navbar-menu li a:hover {
    color: #ca0069;
}

.mobile-menu-toggle {
    display: none !important;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
}

/* Ensure mobile menu toggle is hidden on desktop */
@media (min-width: 769px) {
    .mobile-menu-toggle {
        display: none !important;
    }
    .navbar-logo {
        width: 100px;
    }
}

/* Show hamburger on mobile */
@media (max-width: 768px) {
    .navbar-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: #ca0069;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.3s ease;
        z-index: 1000;
    }
    .navbar-menu.active { right: 0; }
    .mobile-menu-toggle {
        display: block !important;
        z-index: 1001;
    }
}
nav{
    display:flex;
    padding:2% 6%;
    justify-content:space-between;
    align-items:center;
    width:100%;
    box-sizing:border-box;
}
nav img{
    width:150px;
    
}
.nav-links{
    flex:1;
    text-align:right;
    
}
.nav-links ul li{
   list-style:none;
   display:inline-block;
   padding:8px 12px;
   position:relative;
   
    
}
.nav-links ul li a{
   color:#fff;
   text-decoration:none;
   font-size:13px;
   
}
.nav-links ul li::after{
    content:'';
    width:0%;
    height:2px;
    background:#ca0069cc;
    display:block;
    margin:auto;
    transition:0.5s;
}
 .nav-links ul li:hover::after{
     width:100%;
 } 
.text-box{
    width:90%;
    max-width:600px;
    color:#fff;
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    text-align:center;
    padding:20px;
    box-sizing:border-box;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    margin:0 auto;
}
.text-box h1{
    font-size:62px;
    text-align:center;
    margin:0 auto;
    width:100%;
}
.text-box p{
   margin:10px auto 40px auto;
   font-size:14px;
   color:#fff;
   text-align:center;
   display:block;
   width:100%;
   max-width:500px;
   line-height:1.6;
}
.stm{
   display:block;
   text-decoration:none;
   color:#fff;
   border:1px solid #fff;
   padding:12px 34px;
   font-size:13px;
   background:transparent;
   position:relative;
   cursor:pointer;
   text-align:center;
   margin:20px auto 0 auto;
   width:fit-content;
}
.stm:hover{
   border:1px solid #ca0069cc;
   background:#ca0069cc;
   transition:1s;
   
}
nav .fa {
   display: none;
}



@media(max-width:700px){
   .text-box h1{
    font-size:20px;
    text-align:center;
    margin:0 auto;
}
.text-box {
    width:95%;
    padding:15px;
    text-align:center;
}
.text-box p {
    text-align:center;
    margin:10px auto 30px auto;
    max-width:90%;
}
.stm {
    margin:15px auto 0 auto;
}
.nav-links ul li{
     display:block;
 }
.nav-links {
    position:fixed;
    background:#ca0069cc;
    height:100vh;
    width:200px;
    top:0;
    right:-200px;
    text-align:left;
    z-index:2; 
    transition:0.5s;
}
nav .fa {
   display:block;
   color:#fff;
   margin:10px;
   font-size:22px;
   cursor:pointer;
   }
.nav-links ul{
       padding:30px;
   }
}

/* Additional responsive fixes */
@media(max-width:1200px){
   .text-box {
       width:85%;
       max-width:500px;
       text-align:center;
   }
}

@media(max-width:900px){
   .text-box {
       width:90%;
       max-width:450px;
       text-align:center;
   }
}

/* Hero Section */
.hero-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
}

.hero-text {
    max-width: 800px;
    width: 100%;
    color: #fff;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-align: center;
    animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 30px;
    text-align: center;
    line-height: 1.8;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-certificate {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.hero-certificate img {
    width: 40px;
    height: auto;
}

.hero-certificate-text {
    font-size: 1rem;
    font-weight: 500;
}

.hero-button {
    display: inline-block;
    padding: 15px 40px;
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    margin-top: 20px;
    animation: pulse 2s infinite;
}

.hero-button:hover {
    background: #ca0069;
    border-color: #ca0069;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(202, 0, 105, 0.3);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

/* Services Section */
.services-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #333;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto 60px auto;
    line-height: 1.8;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    position: relative;
    background: #fff;
    padding: 36px 28px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 8px 26px rgba(0, 0, 0, 0.08);
    border: 1px solid #f0f0f0;
    transform: translateY(0) scale(1);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
    overflow: hidden;
}

.service-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(1200px 120px at var(--mx, -10%) var(--my, -10%), rgba(202, 0, 105, 0.08), transparent 40%);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.35s ease;
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: 0 18px 50px rgba(202, 0, 105, 0.18);
    border-color: rgba(202, 0, 105, 0.25);
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 14px;
    color: #1f1f1f;
    position: relative;
    display: inline-block;
}

.service-card h3::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -6px;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #ca0069, #ff5fa5);
    border-radius: 2px;
    transform: translateX(-50%);
    transition: width 0.35s ease;
}

.service-card:hover h3::after {
    width: 60%;
}

.service-card p {
    color: #575757;
    line-height: 1.85;
    font-size: 1rem;
}

/* Why Choose Us Section */
.why-choose-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fb 100%);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature-card {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    min-height: 460px;
    border: 1px solid rgba(202, 0, 105, 0.12);
}

.feature-card:hover {
    transform: translateY(-6px) scale(1.01);
    box-shadow: 0 20px 50px rgba(202, 0, 105, 0.25);
}

.feature-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    transform: scale(1);
    filter: brightness(0.95) saturate(1.05);
    transition: transform 0.6s ease, filter 0.6s ease;
}

.feature-card:hover .feature-image {
    transform: scale(1.08);
    filter: brightness(0.8) saturate(1.1);
}

.feature-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 28px;
    background: linear-gradient(0deg, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.35) 50%, rgba(0,0,0,0) 100%);
    opacity: 0;
    transition: opacity 0.35s ease;
}

.feature-card:hover .feature-overlay {
    opacity: 1;
}

.feature-overlay h3 {
    color: #fff;
    font-size: 1.6rem;
    font-weight: 700;
    margin: 0 0 10px 0;
    text-align: left;
    transform: translateY(10px);
    opacity: 0;
    transition: transform 0.35s ease, opacity 0.35s ease;
}

.feature-overlay p {
    color: #fff;
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
    text-align: left;
    transform: translateY(10px);
    opacity: 0;
    transition: transform 0.4s ease 60ms, opacity 0.4s ease 60ms;
}

.feature-card:hover .feature-overlay h3,
.feature-card:hover .feature-overlay p {
    transform: translateY(0);
    opacity: 1;
}

/* Touch devices: keep wording visible */
@media (hover: none) and (pointer: coarse) {
    .feature-overlay {
        opacity: 1;
        background: linear-gradient(0deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0) 100%);
    }
    .feature-overlay h3,
    .feature-overlay p {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Facilities Section */
.facilities-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.facilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.facility-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.facility-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.facility-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.facility-card:hover .facility-image {
    transform: scale(1.05);
}

.facility-content {
    padding: 30px;
}

.facility-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
    text-align: center;
}

.facility-content p {
    color: #666;
    line-height: 1.8;
    text-align: center;
}

/* Reviews Section */
.reviews-section {
    padding: 100px 0;
    background: #fff;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.review-card {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: all 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.review-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.review-content h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
}

.review-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
    font-style: italic;
}

.review-stars {
    color: #f44336;
    font-size: 1.2rem;
}

/* Call to Action Section */
.cta-section {
    margin: 100px auto;
    max-width: 1200px;
    width: 92%;
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url("images/banner2.jpg");
    background-position: center;
    background-size: cover;
    border-radius: 15px;
    text-align: center;
    padding: 80px 40px;
    color: #fff;
}

@media (max-width: 768px) {
    .cta-section {
        width: 94%;
        padding: 70px 28px;
    }
}

/* Booking section (from services) */
#booking.section {
    padding: 100px 0;
    background: #fff;
}

/* Scroll-to-top button */
#scrollTop{
    position: fixed;
    right: 18px;
    bottom: 18px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    background: #ca0069;
    color: #fff;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(202,0,105,0.35);
    z-index: 999;
}

#scrollTop:hover{
    transform: translateY(-2px);
    background: #a0005a;
}

.booking-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 32px;
    align-items: start;
}

.booking-content {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 22px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.06);
}

.booking-content h2 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #333;
}

.booking-content p {
    color: #666;
    margin-bottom: 18px;
}

.booking-form {
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
}

.booking-form .form-group{ 
    margin-bottom: 14px; 
}

.booking-form input,
.booking-form select,
.booking-form textarea{
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    outline: none;
    background: #fff;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus{
    border-color: #ca0069cc;
    box-shadow: 0 0 0 3px rgba(202,0,105,0.12);
}

.submit-btn{
    display: inline-block;
    padding: 12px 18px;
    border-radius: 8px;
    background: #ca0069cc;
    color: #fff;
    border: 1px solid #ca0069cc;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease, color 0.3s ease, transform 0.2s ease;
}

.submit-btn:hover{
    background: transparent;
    color: #ca0069cc;
    transform: translateY(-2px);
}

.booking-info {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 22px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.06);
}

.booking-info h3{
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 12px;
}

.info-item{
    display: flex;
    gap: 12px;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
}

.info-item:last-child{
    border-bottom: none;
}

.info-item i{
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #ca00691a;
    color: #ca0069cc;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.info-item h4{
    margin: 0 0 4px 0;
    font-size: 16px;
    color: #333;
}

.info-item p{
    margin: 0;
    color: #666;
    font-size: 14px;
}

@media (max-width: 900px){
    .booking-container{
        grid-template-columns: 1fr;
    }
    #booking.section{
        padding: 60px 0;
    }
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 30px;
}

.cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: #ca0069;
    color: #fff;
    border: 2px solid #ca0069;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border-radius: 5px;
}

.cta-button:hover {
    background: transparent;
    color: #ca0069;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(202, 0, 105, 0.3);
}

/* Footer */
.footer {
    background: #333;
    color: #fff;
    text-align: center;
    padding: 50px 0;
}

.footer h4 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 30px;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.social-icons a {
    color: #f44336;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    color: #ca0069;
    transform: translateY(-3px);
}

.footer p {
    color: #ccc;
    margin-bottom: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: #ca0069;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.3s ease;
        z-index: 1000;
    }

    .navbar-menu.active {
        right: 0;
    }

    .mobile-menu-toggle {
        display: block;
        z-index: 1001;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .services-grid,
    .features-grid,
    .facilities-grid,
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .review-card {
        flex-direction: column;
        text-align: center;
    }

    .cta-title {
        font-size: 2rem;
    }

    .cta-section {
        padding: 60px 20px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
    }

    .service-card,
    .facility-content {
        padding: 20px;
    }

    .review-card {
        padding: 20px;
    }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #ca0069;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #a0005a;
}

/* Smooth transitions for all interactive elements */
* {
    transition: all 0.3s ease;
}

/* Touch device improvements */
@media (hover: none) and (pointer: coarse) {
    .feature-card:active .feature-overlay {
        background: rgba(202, 0, 105, 0.9);
        opacity: 1;
    }
    
    .service-card:active,
    .facility-card:active,
    .review-card:active {
        transform: translateY(-5px);
    }
}