:root {
    --primary-gray: #555;
    --primary-blue: #27AAE1;
    --light-bg: #f8fafc;
    --white: #ffffff;
    --dark: #1e2a3e;
    --navy-blue: #1f2e3a;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, sans-serif;
    background-color: var(--white);
    color: var(--primary-gray);
    line-height: 1.5;
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
}


.container {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

@media (min-width: 576px) {
    .container {
        max-width: 540px;
    }
}

@media (min-width: 768px) {
    .container {
        max-width: 720px;
    }
}

@media (min-width: 992px) {
    .container {
        max-width: 960px;
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
}

@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }
}

/* Minimal Navbar */
.navbar {
    /* background: rgba(255, 255, 255, 0.96); */
    background-color: #1f2e3a;
    color: var(--white);
    backdrop-filter: blur(8px);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.03);
    padding: 0.8rem 0;
    transition: all 0.2s ease;
    width: 100%;
    border-bottom: 2px solid var(--primary-blue);
    border-top: 2px solid var(--primary-blue);
}

.navbar-brand img {
    height: 52px;
    width: 90px;
    margin-left: 10px;
}

/* Center the nav links */
.navbar-nav {
    margin: 0 auto;
    gap: 2rem;
}

.nav-link {
    font-weight: 700;
    font-size: 1rem;
    color: white !important;
    transition: color 0.2s;
    padding: 0.5rem 1rem;
    letter-spacing: 1px;
    font-family: Poppins, sans-serif;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-blue) !important;
}

.nav-right-group {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.navbar-toggler {
    border: 1.5px solid #fff;
    padding: 6px 10px;
}

.navbar-toggler:focus {
    outline: none;
    box-shadow: none;
}

/* Override default Bootstrap icon */
.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 30 30'%3E%3Cpath stroke='white' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}
.social-icon {
    background: var(--primary-blue);
    /* background: linear-gradient(95deg, #27AAE1 , #0a0a0a, #27AAE1); */
    width: 42px;
    height: 32px;
    color: var(--white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s;
    font-size: 1.2rem;
    text-decoration: none;
    border-radius: 100%;
}

.social-icon:hover {
    color: var(--primary-blue);
    background-color: var(--light-bg);
}

.btn-book-nav {
    background-color: var(--primary-blue);
    color: white;
    padding: 8px 18px;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.2s;
    border: none;
    text-decoration: none;
    display: inline-block;
    border-radius: 5px;
}

.btn-book-nav:hover {
    background-color: white;
    transform: translateY(-2px);
    color: var(--primary-blue);
}

@media (min-width: 992px) {
    .navbar .container {
        position: relative;
    }

    .navbar-nav {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        margin: 0;
        /* kill auto margin */
    }
}

/* Hero Section */
.hero {
    min-height: 85vh;
    background: linear-gradient(107deg, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0.25) 100%),
                url('../image/PureShineaboutimage.png') center/cover no-repeat;
    display: flex;
    align-items: center;
    position: relative;
    width: 100%;
}

/* Content Animation */
.hero-content {
    animation: fadeInUp 0.9s ease-out;
    width: 100%;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(25px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Badge */
.hero-badge {
    background: rgba(255, 255, 255, 0.9);
    color: #27AAE1;
    font-weight: 500;
}

/* Heading */
.hero h1 {
    font-size: 2.8rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

/* Paragraph */
.hero p {
    font-size: 1.2rem;
    color: #fff;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
    font-weight: 400;
}

/* Features Row */
.hero-features div {
    font-size: 0.95rem;
    color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
    .hero {
        min-height: 70vh;
    }

    .hero h1 {
        font-size: 2rem;
    }
}
.btn-primary-custom {
    background-color: var(--primary-blue);
    /* background: linear-gradient(95deg, #27AAE1 , #0a0a0a, #27AAE1); */
    border: none;
    padding: 10px 20px;
    font-weight: 600;
    border-radius: 5px;
    transition: all 0.2s ease;
    color: white;
    box-shadow: 0 4px 8px rgba(39, 170, 225, 0.2);
    display: inline-block;
    text-decoration: none;
}

.btn-primary-custom:hover {
    background-color: #1f8ec0;
    transform: translateY(-2px);
    color: white;
}

.btn-outline-custom {
    background: transparent;
    border: 1.5px solid white;
    color: white;
    padding: 10px 27px;
    font-weight: 600;
    border-radius: 5px;
    transition: 0.2s;
    display: inline-block;
    text-decoration: none;
}

.btn-outline-custom:hover {
    background: white;
    color: var(--primary-blue);
}

/* section badges */
.section-badge {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary-blue);
    margin-bottom: 0.75rem;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1f2e3a;
    margin-bottom: 1rem;
}

.title-divider {
    width: 60px;
    height: 3px;
    background: var(--primary-blue);
    margin: 0.5rem auto 1rem;
    border-radius: 4px;
}

.feature-box {
    padding: 15px;
    border-radius: 12px;
    background: #fff;
    height: 100%;
    box-shadow: 0 5px 12px rgba(84, 186, 230, 0.08);
    transition: all 0.3s ease;
    border-bottom: 2px solid #27AAE1;
    border-right: 2px solid #20D6FB;
    border-top: 2px solid var(--navy-blue);
    border-left: 2px solid var(--navy-blue);
}

.feature-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 25px rgba(111, 66, 193, 0.15);
}

.feature-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 1.8rem;
    background: #fff;
    color: #27AAE1;
    box-shadow: 0 4px 10px rgba(92, 168, 218, 0.1);
    transition: all 0.3s ease;
}

.feature-box:hover .feature-icon {
    background: linear-gradient(135deg, #00F0F5 0%, #20D6FB 40%, #555 70%, #949292 100%);
    color: #fff;
    transform: rotateY(180deg);
}

/* Design 1: Clean Border Cards - Minimalist Style */
.service-card {
    background: white;
    border: 1px solid #e8e8e8;
    overflow: hidden;
    transition: all 0.2s ease;
    height: 99%;
    margin: 0;
    border-radius: 5px;
}

.service-card:hover {
    border-color: #1a1a1a;
    transform: translateY(-2px);
}

.service-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.service-content {
    padding: 20px;
}

.service-title {
    font-size: 1.45rem;
    font-weight: 700;
    letter-spacing: -0.3px;
    color: #27AAE1;
    text-shadow: #0f1722 0px 0.5px 0.5px;
}

.service-desc {
    font-size: 0.85rem;
    color: #5a6874;
}

.service-list {
    list-style: none;
    padding: 0;
}

.service-list li {
    font-size: 0.8rem;
    padding: 2px 0;
    display: flex;
    align-items: center;
    gap: 4px;
    color: #2c3e3f;
    font-weight: 500;
}

.service-list li i {
    color: #27AAE1;
    font-size: 0.7rem;
    flex-shrink: 0;
}

.btn-minimal {
    display: block;
    width: 100%;
    padding: 10px;
    background-color: #27AAE1;
    border: 1px solid #1a1a1a;
    color: #fdfbfb;
    text-align: center;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 800;
    transition: all 0.2s ease;
    cursor: pointer;
    border-radius: 5px;
}

.btn-minimal:hover {
    background: #1a1a1a;
    color: white;
    text-decoration: none;
}

/* Responsive */
@media (max-width: 768px) {
    .service-img {
        height: 180px;
    }

    .service-content {
        padding: 16px;
    }

    .service-title {
        font-size: 1.1rem;
    }

    .service-desc {
        font-size: 0.8rem;
    }

    .service-list li {
        font-size: 0.75rem;
    }
}

@media (min-width: 769px) and (max-width: 992px) {
    .service-img {
        height: 180px;
    }

    .service-content {
        padding: 18px;
    }
}

/* Remove any extra spacing from row */
.row.g-0 {
    margin-left: 0;
    margin-right: 0;
}

.row.g-0>[class*="col-"] {
    padding-left: 0;
    padding-right: 0;
}

/* Stats boxes */
.stat-box {
    background: white;
    border-radius: 5px;
    padding: 1.8rem 1rem;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
    transition: all 0.2s;
    border-bottom: 2px solid #27AAE1;
    border-right: 2px solid #20D6FB;
    border-top: 2px solid var(--navy-blue);
    border-left: 2px solid var(--navy-blue);
}


.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-blue);
    line-height: 1.2;
}

/* Testimonial slider with bg */
.testimonial-bg {
    background: linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.7)), url('../image/testimonial.avif') no-repeat center/cover fixed;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
}

.testimonial-card-light {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(2px);
    border-radius: 5px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
    margin: 10px;
    color: #2c3e44;
}

/* Gallery grid 6 images */
.gallery-img {
    width: 100%;
    height: 340px;
    object-fit: cover;
    transition: transform 0.4s ease;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.05);
    border-radius: 5px;
}

.gallery-img:hover {
    transform: scale(1.02);
}


/* Booking Section Styles */
.booking {
    /* margin: 80px 0; */
    position: relative;
    z-index: 10;
}

.booking-row {
    border-radius: 12px;
    overflow: hidden;
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.booking-img {
    background: url('../image/booking.jpeg') center/cover no-repeat;
    min-height: 300px;
}

.booking-form {
    background: linear-gradient(135deg, rgba(30, 210, 247, 0.08) 0%, rgba(173, 122, 44, 0.08) 100%), #fff;
    padding: 40px !important;
}

.booking-input {
    border-radius: 8px;
    border: 1px solid #ddd;
    transition: all 0.3s ease;
    padding: 12px 15px;
    width: 100%;
    font-size: 0.95rem;
}

.booking-input:focus {
    border-color: #1ED2F7;
    box-shadow: 0 0 8px rgba(30, 210, 247, 0.3);
    outline: none;
}

.booking-btn {
    background-color: var(--primary-blue);
    border: none;
    color: white !important;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    padding: 14px;
    font-size: 1rem;
    width: 100%;
}

.booking-btn:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    background-color: var(--navy-blue);
}

.booking-col {
    margin-bottom: 20px;
}

/* Make sure form elements are visible */
.booking-form form {
    display: block !important;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: relative !important;
}

/* Responsive */
@media (max-width: 992px) {
    .booking-img {
        min-height: 300px;
    }
    
    .booking-form {
        padding: 30px !important;
    }
}

@media (max-width: 768px) {
    .booking {
        margin: 40px 0;
    }
    
    .booking-form {
        padding: 20px !important;
    }
}



/* Reach out section */
.reach-card {
    background: white;
    padding: 2rem;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.05);
    height: 100%;
}

.reach-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #363738;
    margin-bottom: 1.5rem;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1.2rem;
}

.info-item i {
    width: 36px;
    height: 36px;
    background: rgba(39, 170, 225, 0.1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--primary-blue);
}

.info-item a {
    color: #2c3e44;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}
.footer-icons a {
    color: #fff;
    font-size: 1.3rem;
    transition: 0.3s ease;
}

.footer-icons a:hover {
    color: #00bcd4;
    transform: translateY(-3px);
}
/* Footer with curve shape */
.footer-curve {
    position: relative;
    background: #0f1722;
    color: #adb7c2;
    margin-top: 2rem;
}

.footer-curve::before {
    content: '';
    position: absolute;
    top: -40px;
    left: 0;
    width: 100%;
    height: 40px;
    background: #0f1722;
    border-top-left-radius: 40px;
    border-top-right-radius: 40px;
}

.footer-logo img {
    width: 120px;
    height: 80px;
}

.footer-link {
    color: #adb7c2;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-link:hover {
    color: var(--primary-blue);
}

.footer-curve ul {
    padding-left: 0;
}

.footer-curve .list-icon i {
    color: var(--primary-blue);
    margin-right: 8px;
}

@media (min-width: 768px) {
    .footer-curve .col-md-4:nth-child(2) {
        text-align: center;
    }
}

/* Responsive fixes for all screen sizes */
@media (max-width: 992px) {
    .navbar-nav {
        margin: 0;
        text-align: center;
    }

    .nav-right-group {
        margin-top: 0.5rem;
        justify-content: center;
        margin-bottom: 0.5rem;
    }

    .navbar-collapse {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .container {
        padding-right: 20px;
        padding-left: 20px;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .gallery-img {
        height: 180px;
    }

    .contact-image-side img {
        min-height: 250px;
    }

    .why-card {
        padding: 1.5rem;
    }
}

@media (max-width: 576px) {
    .container {
        padding-right: 16px;
        padding-left: 16px;
    }

    .hero h1 {
        font-size: 1.6rem;
    }

    .btn-primary-custom,
    .btn-outline-custom {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .stat-box {
        padding: 1rem;
    }

    .stat-number {
        font-size: 1.6rem;
    }
}

/* Ensure all sections have proper width */
section {
    width: 100%;
    overflow-x: hidden;
}