@charset "UTF-8";
:root {
 --neon: #00f2fe;
 --glass: rgba(255, 255, 255, 0.05);
}

/* Prevent horizontal scrolling */
html, body {
    overflow-x: hidden;
}
body {
 background: #050505;
 font-family: "Poppins", sans-serif;
 color: white;
 padding-top: 70px;
 
}


/* NAVBAR */
.navbar {
    position: fixed !important;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;

    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(15px);
    height: 70px;
    display: flex;
    align-items: center;
}



.navbar-brand {
 font-family: "Syne";
 font-size: 28px;
 font-weight: 800;
 color: white;
}

.navbar-brand span {
 color: var(--neon);
}
.nav-link {
 color: rgba(255, 255, 255, 0.7) !important;
 margin: 0 14px;
 font-size: 14px;
 letter-spacing: 1px;
 text-transform: uppercase;
 position: relative;
}
.nav-link:hover {
 color: white !important;
}
.nav-link::after {
 content: "";
 position: absolute;
 bottom: -6px;
 left: 0;
 width: 0;
 height: 2px;
 background: var(--neon);
 transition: 0.3s;
}
.nav-link:hover::after {
 width: 100%;
}
/* BUTTON */
.book-btn {
 border: 1px solid var(--neon);
 color: var(--neon);
 padding: 10px 22px;
 border-radius: 40px;
 text-decoration: none;
 font-size: 13px;
 letter-spacing: 1px;
 transition: 0.3s;
}
.book-btn:hover {
 background: var(--neon);
 color: black;
 box-shadow: 0 0 20px var(--neon);
}
/* HERO */
.hero-video {
 position: relative;
 width: 100%;
 height: 80vh;
 overflow: hidden;
}
/* background video */
.bg-video {
 position: absolute;
 top: 0;
 left: 0;
 width: 100%;
 height: 100%;
 object-fit: cover;
 z-index: -1;
}
/* overlay for readability */
.video-overlay {
 position: absolute;
 top: 0;
 left: 0;
 width: 100%;
 height: 100%;
 background: linear-gradient(120deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.3));
}
/* content */
.hero-content {
 position: absolute;
 top: 50%;
 left: 50%;
 transform: translate(-50%, -50%);
 /* text-align:center; */
 color: white;
 max-width: 800px;
 padding: 20px;
}
.hero-content h1 {
 font-family: "Syne";
 font-size: 70px;
 font-weight: 800;
}
.hero-content span {
 color: #00f2fe;
}
.hero-content p {
 color: rgba(255, 255, 255, 0.7);
 margin: 20px 0 30px;
}
/* ABOUT */
.about-section {
 padding: 120px 0;
}
.about-image {
 border-radius: 25px;
 overflow: hidden;
 transform: rotate(-2deg);
 transition: 0.4s;
}
.about-image:hover {
 transform: rotate(0) scale(1.03);
}
.about-image img {
 width: 100%;
}
.about-title {
 font-family: "Syne";
 font-size: 48px;
 margin: 20px 0;
}
.about-title span {
 color: var(--neon);
}
.about-text {
 color: rgba(255, 255, 255, 0.6);
 margin-bottom: 35px;
}
.stats {
 display: flex;
 gap: 20px;
}
.stat-box {
 background: var(--glass);
 padding: 25px;
 border-radius: 20px;
 border: 1px solid rgba(255, 255, 255, 0.08);
}
.stat-box h3 {
 color: var(--neon);
 font-family: "Syne";
 font-size: 32px;
}
.tag {
 color: var(--neon);
 font-size: 12px;
 letter-spacing: 4px;
 text-transform: uppercase;
}
.services-section {
 padding: 100px 0;
 background: #050505;
 color: white;
}
.section-title {
 font-family: "Syne";
 font-size: 42px;
 font-weight: 800;
}
.section-subtitle {
 color: rgba(255, 255, 255, 0.6);
 margin-top: 10px;
}
.service-card {
 background: rgba(255, 255, 255, 0.03);
 padding: 30px;
 border-radius: 15px;
 border: 1px solid rgba(255, 255, 255, 0.08);
 transition: 0.3s;
 height: 100%;
}
.service-card h4 {
 font-family: "Syne";
 font-size: 20px;
 margin-bottom: 15px;
}
.service-card p {
 color: rgba(255, 255, 255, 0.6);
 font-size: 14px;
 margin-bottom: 20px;
}
/* Read More Button */
.read-btn {
 display: inline-block;
 padding: 8px 18px;
 border: 1px solid #00f2fe;
 color: #00f2fe;
 border-radius: 30px;
 font-size: 13px;
 text-decoration: none;
 transition: 0.3s;
}
.read-btn:hover {
 background: #00f2fe;
 color: black;
}
.service-card:hover {
 transform: translateY(-6px);
 border-color: #00f2fe;
 box-shadow: 0 0 20px rgba(0, 242, 254, 0.2);
}
.marquee-gallery {
 padding: 100px 0;
 background: #050505;
 overflow: hidden;
}
.gallery-title {
 font-family: "Syne";
 font-size: 42px;
 font-weight: 800;
 color: white;
}
.marquee-wrapper {
 width: 100%;
 overflow: hidden;
}
.marquee-track {
 display: flex;
 gap: 20px;
 animation: scrollGallery 25s linear infinite;
}
.marquee-track img {
 height: 250px;
 width: 350px;
 object-fit: cover;
 border-radius: 12px;
 transition: 0.4s;
}
/* hover effect */
.marquee-track img:hover {
 transform: scale(1.08);
}
@keyframes scrollGallery {
 0% {
   transform: translateX(0);
 }
 100% {
   transform: translateX(-50%);
 }
}
.testimonials-section {
 padding: 100px 0;
 background: #050505;
 color: white;
}
.testimonial-title {
 font-family: "Syne";
 font-size: 42px;
 font-weight: 800;
}
.testimonial-subtitle {
 color: rgba(255, 255, 255, 0.6);
}
/* testimonial card */
.testimonial-card {
 background: rgba(255, 255, 255, 0.04);
 padding: 30px;
 border-radius: 20px;
 border: 1px solid rgba(255, 255, 255, 0.08);
 transition: 0.4s;
 height: 100%;
}
.testimonial-card:hover {
 transform: translateY(-8px);
 border-color: #00f2fe;
 box-shadow: 0 0 25px rgba(0, 242, 254, 0.3);
}
/* client info */
.client-info {
 display: flex;
 align-items: center;
 gap: 15px;
 margin-bottom: 20px;
}
.client-info img {
 width: 55px;
 height: 55px;
 border-radius: 50%;
 object-fit: cover;
}
.client-info h5 {
 margin: 0;
 font-family: "Syne";
}
/* stars */
.stars {
 color: #ffd700;
 font-size: 14px;
}
.testimonial-card p {
 color: rgba(255, 255, 255, 0.7);
 line-height: 1.6;
}
.footer {
 background: rgba(0, 0, 0, 0.7);
 backdrop-filter: blur(20px);
 padding: 90px 0 30px;
 border-top: 1px solid rgba(255, 255, 255, 0.08);
 color: white;
}
/* logo */
.footer-logo {
 font-family: "Syne";
 font-size: 30px;
 font-weight: 800;
 margin-bottom: 15px;
}
.footer-logo span {
 color: #00f2fe;
}
/* text */
.footer-text {
 color: rgba(255, 255, 255, 0.6);
 line-height: 1.7;
 margin-bottom: 20px;
}
/* titles */
.footer-title {
 font-family: "Syne";
 font-size: 18px;
 margin-bottom: 20px;
}
/* links */
.footer-links {
 list-style: none;
 padding: 0;
}
.footer-links li {
 margin-bottom: 10px;
}
.footer-links a {
 text-decoration: none;
 color: rgba(255, 255, 255, 0.6);
 transition: 0.3s;
}
.footer-links a:hover {
 color: #00f2fe;
 padding-left: 5px;
}
/* social icons */
.footer-social a {
 display: inline-flex;
 align-items: center;
 justify-content: center;
 width: 40px;
 height: 40px;
 border-radius: 50%;
 background: rgba(255, 255, 255, 0.05);
 margin-right: 10px;
 color: white;
 transition: 0.4s;
}
.footer-social a:hover {
 background: #00f2fe;
 color: black;
 transform: translateY(-4px);
 box-shadow: 0 0 20px rgba(0, 242, 254, 0.5);
}
/* instagram gallery */
.footer-gallery {
 display: grid;
 grid-template-columns: repeat(3, 1fr);
 gap: 8px;
}
.footer-gallery img {
 width: 100%;
 height: 75px;
 object-fit: cover;
 border-radius: 5px;
 transition: 0.4s;
}
.footer-gallery img:hover {
 transform: scale(1.1);
}
/* newsletter */
.footer-newsletter {
 display: flex;
 margin-top: 15px;
}
.footer-newsletter input {
 flex: 1;
 padding: 12px;
 border: none;
 background: rgba(255, 255, 255, 0.05);
 color: white;
 outline: none;
 border-radius: 6px 0 0 6px;
}
.footer-newsletter button {
 border: none;
 background: #00f2fe;
 padding: 0 20px;
 color: black;
 border-radius: 0 6px 6px 0;
}
/* bottom */
.footer-bottom {
 text-align: center;
 margin-top: 50px;
 padding-top: 20px;
 border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-bottom p {
 color: rgba(255, 255, 255, 0.5);
 font-size: 14px;
}
/* HERO */
.about-hero {
 background: url("https://images.pexels.com/photos/169190/pexels-photo-169190.jpeg")
   center/cover;
 padding: 160px 0;
 color: white;
 position: relative;
}
.about-hero::before {
 content: "";
 position: absolute;
 top: 0;
 left: 0;
 width: 100%;
 height: 100%;
 background: rgba(0, 0, 0, 0.6);
}
.about-hero .container {
 position: relative;
}
.about-hero h1 {
 font-family: "Syne";
 font-size: 60px;
 font-weight: 800;
}
.about-hero p {
 color: rgba(255, 255, 255, 0.8);
}
/* STORY */
.about-story {
 padding: 100px 0;
 background: #050505;
 color: white;
}
.about-story img {
 width: 100%;
 border-radius: 15px;
}
.about-story h2 {
 font-family: "Syne";
 margin-bottom: 20px;
}
.about-story p {
 color: rgba(255, 255, 255, 0.7);
 line-height: 1.8;
}
/* STATS */
.about-stats {
 background: #000;
 padding: 80px 0;
}
.stat-box {
 padding: 30px;
 border: 1px solid rgba(255, 255, 255, 0.08);
 border-radius: 12px;
}
.stat-box h3 {
 font-size: 40px;
 color: #00f2fe;
 font-family: "Syne";
}
.stat-box p {
 color: rgba(255, 255, 255, 0.6);
}
/* TEAM */
.team-section {
 padding: 100px 0;
 background: #050505;
 color: white;
}
.team-card {
 text-align: center;
}
.team-card img {
 width: 100%;
 border-radius: 12px;
 margin-bottom: 15px;
}
.team-card h4 {
 font-family: "Syne";
}
.team-card span {
 color: #00f2fe;
 font-size: 14px;
}
/* CTA */
.about-cta {
 background: #000;
 padding: 100px 0;
 color: white;
}
.about-cta h2 {
 font-family: "Syne";
 font-size: 40px;
 margin-bottom: 20px;
}
.book-btn {
 display: inline-block;
 padding: 12px 25px;
 border-radius: 30px;
 background: #00f2fe;
 color: black;
 text-decoration: none;
 font-weight: 600;
}
.services-hero {
 background: url("https://images.pexels.com/photos/169190/pexels-photo-169190.jpeg")
   center/cover;
 padding: 160px 0;
 color: white;
 text-align: center;
}
.services-grid {
 padding: 100px 0;
 background: #050505;
 color: white;
}
.service-card {
 background: #0a0a0a;
 border-radius: 10px;
 overflow: hidden;
 padding-bottom: 20px;
 transition: 0.4s;
}
.service-card img {
 width: 100%;
 height: 220px;
 object-fit: cover;
}
.service-card h3 {
 font-family: "Syne";
 margin: 20px;
}
.service-card p {
 margin: 0 20px 20px;
 color: #bbb;
}
.service-btn {
 margin-left: 20px;
 text-decoration: none;
 color: #00f2fe;
}
.service-card:hover {
 transform: translateY(-10px);
}
.process {
 background: #000;
 padding: 100px 0;
 color: white;
}
.process-box h3 {
 font-size: 40px;
 color: #00f2fe;
}
.pricing {
 padding: 100px 0;
 background: #050505;
 color: white;
}
.price-card {
 background: #0a0a0a;
 padding: 40px;
 text-align: center;
 border-radius: 10px;
}
.price-card h2 {
 color: #00f2fe;
}
.price-btn {
 display: inline-block;
 margin-top: 20px;
 padding: 10px 20px;
 background: #00f2fe;
 color: black;
 text-decoration: none;
 border-radius: 30px;
}
.service-cta {
 padding: 100px 0;
 background: #000;
 color: white;
}
.book-btn {
 padding: 12px 25px;
 background: #00f2fe;
 color: black;
 border-radius: 30px;
 text-decoration: none;
}
.contact-hero {
 background: url("https://images.pexels.com/photos/169190/pexels-photo-169190.jpeg")
   center/cover;
 padding: 160px 0;
 color: white;
 text-align: center;
}
.contact-section {
 padding: 100px 0;
 background: #050505;
 color: white;
}
.contact-info {
 background: #0a0a0a;
 padding: 40px;
 border-radius: 10px;
}
.contact-info h3 {
 font-family: "Syne";
 margin-bottom: 20px;
}
.contact-info p {
 margin-bottom: 15px;
 color: #bbb;
}
.contact-info i {
 color: #00f2fe;
 margin-right: 10px;
}
.contact-form input,
.contact-form textarea {
 width: 100%;
 padding: 12px;
 border: none;
 background: #0a0a0a;
 color: white;
 border-radius: 6px;
 outline: none;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder {
 color: #777;
}
.send-btn {
 padding: 12px 25px;
 background: #00f2fe;
 color: black;
 border: none;
 border-radius: 30px;
 font-weight: 600;
}
.map-section iframe {
 filter: grayscale(100%);
}
.contact-cta {
 padding: 100px 0;
 background: #000;
 color: white;
}
.book-btn {
 padding: 12px 25px;
 background: #00f2fe;
 color: black;
 border-radius: 30px;
 text-decoration: none;
}

/* Clean Minimalist Review Card */
.review-card-custom {
    background: #ffffff;
    border-radius: 12px;
    padding: 35px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    text-align: left; /* Aligned left to match reference image */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    height: 100%;
}

.review-card-custom:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

/* Star Styling */
.review-stars {
    font-size: 24px; /* Large stars from image */
    color: #ffcc00; /* Vibrant gold/yellow */
    margin-bottom: 20px;
    display: flex;
    gap: 4px;
}

.star-empty {
    color: #e0e0e0;
}

/* User Name Styling */
.review-user-name {
    font-family: "Poppins", sans-serif;
    font-weight: 700; /* Bold as per image */
    font-size: 24px;
    color: #222222;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

/* Message Styling */
.review-message {
    font-family: "Poppins", sans-serif;
    color: #4a4a4a;
    line-height: 1.6;
    font-size: 1.1rem;
    margin: 0;
    font-style: normal; /* No italics for a modern look */
}

/* Navigation Arrow Filters */
.carousel-control-prev-icon,
.carousel-control-next-icon {
    filter: invert(1);
    width: 3rem;
    height: 3rem;
}



/* ================= MOBILE RESPONSIVE ================= */

@media (max-width: 768px) {

    /* NAVBAR */
    .navbar {
        padding: 10px 0;
    }

    .navbar-brand {
        font-size: 20px;
    }

    .book-btn {
        display: block;
        margin-top: 10px;
        text-align: center;
    }

    /* HERO SECTION */
    .hero-content {
        padding: 0 15px;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 32px;
        line-height: 1.3;
    }

    .hero-content p {
        font-size: 14px;
    }

    /* VIDEO FIX */
    .bg-video {
        height: 100vh;
        object-fit: cover;
    }

    /* ABOUT SECTION */
    .about-title {
        font-size: 28px;
        text-align: center;
    }

    .about-text {
        text-align: center;
    }

    .about-image img {
        width: 100%;
        height: auto;
    }

    .stats {
        display: flex;
        justify-content: center;
        gap: 15px;
        flex-wrap: wrap;
    }

    /* GALLERY */
    section img {
        height: 150px !important;
    }

    /* SERVICES */
    .service-card {
        text-align: center;
        padding: 20px;
    }

    /* TESTIMONIAL */
    .testimonial-card {
        padding: 20px !important;
    }

    .stars span {
        font-size: 22px !important;
    }

    /* FOOTER */
    .footer {
        text-align: center;
    }

    .footer-gallery img {
        width: 30%;
        margin: 2px;
    }

    .footer-newsletter input {
        width: 100%;
        margin-bottom: 10px;
    }

    .footer-newsletter button {
        width: 100%;
    }
}


/* EXTRA SMALL DEVICES */
@media (max-width: 480px) {

    .hero-content h1 {
        font-size: 26px;
    }

    .section-title {
        font-size: 24px;
    }

    .about-title {
        font-size: 24px;
    }

    section img {
        height: 120px !important;
    }
}

/* FIX: Make navbar toggle icon WHITE on mobile */
.navbar-toggler {
    border-color: white;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='white' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

/* HERO VIDEO - DESKTOP */
.hero-video {
    position: relative;
    width: 100%;
    height: 80vh;
    overflow: hidden;
}

.bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.3));
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    max-width: 800px;
    padding: 20px;
    text-align: center;
}

.hero-content h1 {
    font-family: "Syne";
    font-size: 70px; /* Desktop default */
    font-weight: 800;
    line-height: 1.1;
}

.hero-content p {
    color: rgba(255, 255, 255, 0.7);
    margin: 20px 0 30px;
    font-size: 18px; /* Desktop default */
}

.hero-content .book-btn {
    display: inline-block;
    padding: 12px 25px;
    font-size: 14px;
}

/* ================= MOBILE RESPONSIVE ================= */

/* Tablets / medium screens */
@media (max-width: 1024px) {
    .hero-content h1 {
        font-size: 10vw; /* scales nicely */
    }

    .hero-content p {
        font-size: 4vw;
    }
}

/* Small screens */
@media (max-width: 768px) {
    .hero-video {
        height: 90vh;
        min-height: 500px;
        overflow: hidden;
    }

    .bg-video {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .hero-content {
        max-width: 90%;
        padding: 0 15px;
    }

    .hero-content h1 {
        font-size: 8vw;
        line-height: 1.2;
    }

    .hero-content p {
        font-size: 3.5vw;
        margin: 10px 0;
    }

    .hero-content .book-btn {
        display: inline-block;
        padding: 10px 20px;
        font-size: 14px;
    }
}

/* Extra small screens / mobiles */
@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 22px;
    }

    .hero-content p {
        font-size: 12px;
    }

    .hero-content .book-btn {
        padding: 8px 16px;
        font-size: 12px;
        display: block;
        margin: 15px auto 0;
    }
}