/* style.css - Subra Solutions Master Edition */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;600;900&display=swap');

:root {
    --primary-blue: #3b82f6;
    --neon-cyan: #00f2ff;
    --dark-void: #020617;
}

body { 
    font-family: 'Outfit', sans-serif; 
    background: #ffffff; 
    overflow-x: hidden; 
    margin: 0;
}

/* --- EYE-CATCHING WARP HERO --- */
.hero-section {
    background: var(--dark-void);
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    color: white;
    overflow: hidden;
    perspective: 1200px;
}

.hero-section::before, .hero-section::after {
    content: "";
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: 
        radial-gradient(2px 2px at 20% 30%, #fff, rgba(0,0,0,0)),
        radial-gradient(2px 2px at 50% 70%, #fff, rgba(0,0,0,0)),
        radial-gradient(2px 2px at 80% 40%, var(--neon-cyan), rgba(0,0,0,0));
    background-size: 350px 350px;
    opacity: 0.6;
}

.hero-section::before { animation: warp 4s linear infinite; }
.hero-section::after { animation: warp 4s linear infinite; animation-delay: 2s; }

@keyframes warp {
    from { transform: translateZ(-600px); opacity: 0; }
    50% { opacity: 1; }
    to { transform: translateZ(600px); opacity: 0; }
}

.hero-content { position: relative; z-index: 20; }

.hero-title { 
    font-size: 5rem; 
    font-weight: 900; 
    line-height: 1; 
    letter-spacing: -3px;
    margin-bottom: 25px;
}

.text-gradient {
    background: linear-gradient(to right, #ffffff, var(--neon-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.hero-subtitle { 
    font-size: 1.3rem; 
    font-weight: 300; 
    color: #cbd5e1; 
    max-width: 700px; 
    margin: 0 auto 40px; 
}

/* --- GLASSMORPHISM SEARCH BAR --- */
/* Replace your existing .stylish-search with this */
.stylish-search {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 2px solid var(--neon-cyan) !important; /* Forces the Neon Blue color */
    box-shadow: 0 0 15px var(--neon-cyan); /* Gives it the glowing effect */
    border-radius: 100px;
    padding: 8px;
    transition: 0.3s;
    max-width: 700px;
    margin: 0 auto;
}


.stylish-search:focus-within {
    border-color: var(--neon-cyan);
    box-shadow: 0 0 30px rgba(0, 242, 255, 0.3);
}

.stylish-search input { 
    background: transparent !important; 
    color: white !important; 
    border: none !important;
    box-shadow: none !important;
}

.stylish-search input::placeholder { color: rgba(255,255,255,0.6); }

/* --- CONTINUOUS RIGHT-TO-LEFT MOTION FIX --- */
.service-swiper-container {
    padding: 80px 0;
    background: #f8fafc;
}

.swiper-wrapper {
    /* THIS IS THE CRITICAL LINE FOR CONVEYOR MOTION */
    transition-timing-function: linear !important;
}

.service-card {
    background: white; 
    border-radius: 30px; 
    overflow: hidden; 
    border: 1px solid #e2e8f0;
    display: flex; 
    flex-direction: column; 
    height: 100%; 
    transition: 0.4s ease;
    text-decoration: none !important;
}

.service-card:hover { 
    transform: translateY(-10px); 
    box-shadow: 0 20px 40px rgba(0,0,0,0.08); 
}

.img-harbour { 
    width: 100%; 
    aspect-ratio: 16 / 10; 
    overflow: hidden; 
    background: #000; 
}

.img-harbour img { width: 100%; height: 100%; object-fit: cover; }

.service-card-body { padding: 30px; text-align: center; }

.service-card-title { font-size: 1.4rem; font-weight: 800; color: #0f172a; margin-bottom: 10px; }

.btn-reg-pill {
    border: 2px solid var(--primary-blue); 
    color: var(--primary-blue);
    border-radius: 50px; 
    padding: 10px 30px; 
    font-weight: 700; 
    margin-top: 15px; 
    display: inline-block;
}
/* FORCE CONTINUOUS MOTION */
.serviceSwiper .swiper-wrapper {
    transition-timing-function: linear !important;
}

/* Ensure the container doesn't hide the shadow of your cards */
.service-swiper-container {
    padding: 80px 0;
    overflow: hidden;
}
/* This forces the 'belt' to never stop or jerk */
.swiper-wrapper {
    transition-timing-function: linear !important;
}
/* Neon Glow for Primary Buttons */
.btn-primary {
    background: var(--primary-blue);
    border: none;
    box-shadow: 0 0 10px rgba(59, 130, 246, 0.5);
    transition: 0.3s;
}

.btn-primary:hover {
    background: var(--neon-cyan);
    color: var(--dark-void) !important;
    box-shadow: 0 0 20px var(--neon-cyan);
    transform: scale(1.05);
}

/* Neon Glow for Service Pills */
.btn-reg-pill:hover {
    background: var(--neon-cyan);
    border-color: var(--neon-cyan);
    color: var(--dark-void);
    box-shadow: 0 0 15px var(--neon-cyan);
}
/* Neon Glow for buttons */
.btn-primary, .btn-reg-pill {
    transition: all 0.3s ease-in-out !important;
}

.btn-primary:hover, .btn-reg-pill:hover {
    background: #00f2ff !important;
    color: #000 !important;
    box-shadow: 0 0 20px #00f2ff;
    border-color: #00f2ff;
    transform: translateY(-2px);
}

/* Smooth highlighting for search results */
.service-card {
    transition: transform 0.4s ease, border 0.4s ease, opacity 0.4s ease;
}
/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    color: white;
    border-radius: 50px;
    padding: 10px 20px;
    z-index: 1000;
    box-shadow: 0 0 15px rgba(37, 211, 102, 0.5);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: bold;
    transition: transform 0.3s ease;
}
.whatsapp-float:hover {
    transform: scale(1.1);
    color: white;
}

/* Stats Section Styling */
.stat-box {
    border-right: 1px solid #e2e8f0;
}
.stat-box:last-child {
    border-right: none;
}
.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #0f172a;
    display: block;
}
/* Enhanced Service Card Hover */
.service-card:hover {
    border-color: #00f2ff !important;
    box-shadow: 0 10px 30px rgba(0, 242, 255, 0.2) !important;
    transform: translateY(-10px);
}

.service-card .img-harbour img {
    transition: transform 0.5s ease;
}

.service-card:hover .img-harbour img {
    transform: scale(1.1); /* Subtle zoom effect */
}

/* Pulse animation for the Register button */
.btn-reg-pill {
    position: relative;
    overflow: hidden;
}

.service-card:hover .btn-reg-pill {
    background: #00f2ff;
    color: #000;
    box-shadow: 0 0 15px #00f2ff;
}
/* Glassmorphism Navbar */
.navbar {
    transition: all 0.4s ease;
    background: rgba(255, 255, 255, 0.05) !important; /* Nearly transparent */
    backdrop-filter: blur(15px); /* The "Glass" effect */
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 10000;
}

/* Change color when user scrolls down */
.navbar.scrolled {
    background: rgba(255, 255, 255, 0.9) !important;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid #00f2ff;
}

/* Adjust Hero Section to start under the transparent Nav */
.hero-section {
    padding-top: 100px;
}
/* Footer Styling */
footer {
    background: #0f172a; /* Deep Navy/Black */
    color: #f8fafc;
    padding: 80px 0 30px;
    border-top: 2px solid #00f2ff;
}

.footer-link {
    color: #94a3b8;
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
    margin-bottom: 10px;
}

.footer-link:hover {
    color: #00f2ff;
    padding-left: 8px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 10px;
    color: #00f2ff;
    transition: 0.3s;
    border: 1px solid rgba(0, 242, 255, 0.2);
}

.social-icon:hover {
    background: #00f2ff;
    color: #000;
    box-shadow: 0 0 15px #00f2ff;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 50px;
    padding-top: 20px;
}

/* Professional Rounded Nav Buttons */
.navbar-nav .nav-link {
    background-color: #0f172a;        /* Deep Midnight Blue (matches footer) */
    color: #ffffff !important;        /* Pure White font */
    border: 1.5px solid #00f2ff;      /* Thin, sharp Neon border */
    border-radius: 50px;              /* Circular Pill Shape */
    padding: 8px 22px !important;     /* Professional Spacing */
    margin: 5px 8px;                  /* Clean separation */
    font-size: 14px;                  /* Standard Nav sizing */
    font-weight: 600;                 /* Bold for professional look */
    text-transform: uppercase;        /* Optional: Makes it look like a clean UI */
    letter-spacing: 0.5px;
    transition: all 0.3s ease-in-out;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* Hover State */
.navbar-nav .nav-link:hover {
    background-color: #00f2ff;        /* Fills with Cyan */
    color: #0f172a !important;        /* Text turns dark for readability */
    box-shadow: 0 4px 15px rgba(0, 242, 255, 0.4); /* Professional glow */
    transform: translateY(-2px);      /* Subtle lift */
}

/* Responsive adjustment to ensure circles don't stack weirdly */
@media (max-width: 991px) {
    .navbar-nav .nav-link {
        margin: 8px 0;
        width: fit-content;
    }
}



/* style.css - Subra Solutions Master Edition */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;600;900&display=swap');

:root {
    --primary-blue: #3b82f6;
    --neon-cyan: #00f2ff;
    --dark-void: #020617;
}

body { 
    font-family: 'Outfit', sans-serif; 
    background: var(--dark-void); /* The base is now dark for the stars */
    overflow-x: hidden; 
    margin: 0;
}

/* --- FULL PAGE STAR BACKGROUND --- */
#star-container {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100vh;
    z-index: -1; /* Behind everything */
    background: radial-gradient(ellipse at bottom, #0f172a 0%, #020617 100%);
    overflow: hidden;
}

.star {
    position: absolute;
    background: white;
    border-radius: 50%;
    opacity: 0.3;
    animation: fall linear infinite;
}

.shooting-star {
    position: absolute;
    width: 2px;
    height: 60px;
    background: linear-gradient(to bottom, rgba(255,255,255,0), var(--neon-cyan));
    opacity: 0.6;
    animation: shoot linear infinite;
}

@keyframes fall {
    from { transform: translateY(-10vh); }
    to { transform: translateY(110vh); }
}

@keyframes shoot {
    from { transform: translateY(-20vh) translateX(0); opacity: 1; }
    to { transform: translateY(120vh) translateX(30px); opacity: 0; }
}

/* --- PROFESSIONAL ROUNDED NAV --- */
.navbar-nav .nav-link {
    background-color: #0f172a;
    color: #ffffff !important;
    border: 1.5px solid var(--neon-cyan);
    border-radius: 50px;
    padding: 8px 22px !important;
    margin: 5px 8px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    transition: 0.3s;
    display: inline-flex;
    align-items: center;
}

.navbar-nav .nav-link:hover {
    background: var(--neon-cyan);
    color: #000 !important;
    box-shadow: 0 0 15px var(--neon-cyan);
    transform: translateY(-2px);
}

/* --- GLASS SECTIONS (Middle Page Transparency) --- */
.service-swiper-container, 
section.py-5, 
.bg-white {
    background: rgba(255, 255, 255, 0.04) !important;
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(0, 242, 255, 0.1);
}

/* Ensure text is white on the dark background */
.service-swiper-container h2, 
.stat-number, 
section.py-5 h3, 
section.py-5 p,
.text-muted {
    color: #ffffff !important;
}

/* Keep Service Cards solid for readability */
.service-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 25px;
    transition: 0.4s;
}
.service-card-title { color: #0f172a !important; }

/* --- HERO SECTION --- */
.hero-section {
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 100px;
}
/* --- SCROLL REVEAL ANIMATIONS --- */

/* 1. Initial State for Cards (Hidden) */
.service-card {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

/* 2. Initial State for Stat Boxes (Hidden) */
.stat-box {
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.6s ease-out;
}

/* 3. The "Visible" State (Triggered by JS) */
.reveal-visible {
    opacity: 1 !important;
    transform: translateY(0) scale(1) !important;
}





/* --- PROFESSIONAL HELP PANEL FIX --- */

/* 1. Show Menu on Hover */
@media (min-width: 992px) {
    .dropdown-hover:hover > .support-panel {
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: translateY(0px) !important;
    }
}

/* 2. Panel Styling */
.support-panel {
    display: block;
    visibility: hidden;
    opacity: 0;
    transform: translateY(15px);
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    
    background: #ffffff !important; /* White for light mode professionalism */
    border-top: 4px solid #3b82f6 !important; /* Blue Accent */
    border-radius: 15px !important;
    padding: 15px !important;
    min-width: 280px !important;
    margin-top: 0 !important;
}

/* 3. Items inside the panel */
.support-box {
    display: flex !important;
    align-items: center !important;
    padding: 12px !important;
    margin-bottom: 5px !important;
    border-radius: 10px !important;
    text-decoration: none !important;
    background: #f8fafc !important;
    transition: 0.3s !important;
    border: 1px solid transparent !important;
}

.support-box:hover {
    background: #eff6ff !important;
    border-color: #3b82f6 !important;
    transform: translateX(5px);
}

.s-icon {
    font-size: 1.2rem !important;
    color: #3b82f6 !important;
    margin-right: 15px !important;
}

.s-content h6 {
    color: #1e293b !important;
    margin: 0 !important;
    font-size: 14px !important;
    font-weight: 700 !important;
}

.s-content p {
    color: #64748b !important;
    margin: 0 !important;
    font-size: 11px !important;
}

/* Hide the default Bootstrap arrow to use our custom FontAwesome one */
.dropdown-toggle::after {
    display: none !important;
}


/* --- FEATURED SERVICE CARDS --- */
.featured-card {
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 242, 255, 0.2);
    border-radius: 24px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    height: 100%;
}

.featured-card:hover {
    transform: translateY(-12px);
    border-color: #00f2ff;
    box-shadow: 0 20px 40px rgba(0, 242, 255, 0.15);
}

/* Glowing effect for the middle card by default */
.active-glow {
    border-color: rgba(0, 242, 255, 0.5);
    box-shadow: 0 0 20px rgba(0, 242, 255, 0.1);
}

.card-icon {
    font-size: 2.5rem;
    color: #00f2ff;
    margin-bottom: 20px;
    display: inline-block;
}

.featured-card h3 {
    color: #fff;
    font-weight: 700;
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.featured-card p {
    color: #94a3b8;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 25px;
}

.card-price {
    font-weight: 900;
    color: #00f2ff;
    font-size: 1.1rem;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.card-btn {
    display: inline-block;
    padding: 10px 25px;
    background: transparent;
    border: 1px solid #00f2ff;
    color: #00f2ff;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: 0.3s;
}

.card-btn:hover {
    background: #00f2ff;
    color: #0f172a;
}

/* style.css - Subra Solutions Final Unified Edition */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;600;900&display=swap');

:root {
    --primary-blue: #3b82f6;
    --neon-cyan: #00f2ff;
    --dark-void: #020617;
    --glass-bg: rgba(255, 255, 255, 0.05);
}

body { 
    font-family: 'Outfit', sans-serif; 
    background: var(--dark-void);
    color: #ffffff;
    overflow-x: hidden; 
    margin: 0;
}

/* --- STAR BACKGROUND --- */
#star-container {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100vh;
    z-index: -1;
    background: radial-gradient(ellipse at bottom, #0f172a 0%, #020617 100%);
}

/* --- HERO SECTION --- */
.hero-section {
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    padding-top: 100px;
    perspective: 1200px;
}

.text-gradient {
    background: linear-gradient(to right, #ffffff, var(--neon-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* --- GLASS NAV & PANELS --- */
.navbar {
    background: rgba(15, 23, 42, 0.8) !important;
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(0, 242, 255, 0.2);
}

.navbar-nav .nav-link {
    background-color: #0f172a;
    color: #ffffff !important;
    border: 1.5px solid var(--neon-cyan);
    border-radius: 50px;
    padding: 8px 22px !important;
    margin: 5px 8px;
    font-size: 13px;
    font-weight: 600;
    transition: 0.3s;
}

.navbar-nav .nav-link:hover {
    background: var(--neon-cyan);
    color: #000 !important;
    box-shadow: 0 0 15px var(--neon-cyan);
}

/* --- SERVICE CARDS (Glassmorphism Style) --- */
.service-card {
    background: rgba(255, 255, 255, 0.95); /* High contrast for readability */
    border-radius: 25px;
    overflow: hidden;
    transition: 0.4s ease;
    color: #0f172a;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--neon-cyan) !important;
    box-shadow: 0 0 30px rgba(0, 242, 255, 0.4);
}

/* --- BUTTONS & WHATSAPP --- */
.btn-primary, .btn-reg-pill {
    transition: all 0.3s ease-in-out;
}

.btn-primary:hover, .btn-reg-pill:hover {
    background: var(--neon-cyan) !important;
    color: #000 !important;
    box-shadow: 0 0 20px var(--neon-cyan);
    border-color: var(--neon-cyan);
}

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: white;
    border-radius: 50px;
    padding: 12px 25px;
    z-index: 9999;
    text-decoration: none;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 10px;
}
/* Client Logo Styling */
.client-logo-img {
    height: 50px; /* Uniform height */
    width: auto;
    filter: grayscale(100%) brightness(2); /* Makes them white/silver to match your theme */
    opacity: 0.6;
    transition: 0.3s ease;
}

.client-logo-img:hover {
    filter: grayscale(0%) brightness(1); /* Shows original color on hover */
    opacity: 1;
    transform: scale(1.1);
}

/* Force the smooth conveyor belt motion */
.clientSwiper .swiper-wrapper {
    transition-timing-function: linear !important;
}

/* Forced Zoom Effect for Client Gallery */
#clientGalleryModal .card {
    transition: all 0.4s ease !important;
    overflow: hidden !important;
    border: none !important;
}

#clientGalleryModal .card:hover {
    transform: scale(1.08) !important; /* Larger zoom */
    box-shadow: 0 15px 30px rgba(0,0,0,0.2) !important;
    z-index: 999 !important;
}

#clientGalleryModal .img-fluid {
    transition: all 0.4s ease !important;
}

img {
    max-width: 100%;
    height: auto;
}
