/* index.css - Glassmorphism UI */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

* {
    box-sizing: border-box;
}

:root {
    --bg-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --glass-bg: rgba(255, 255, 255, 0.25);
    --glass-border: 1px solid rgba(255, 255, 255, 0.18);
    --glass-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    --text-color: #333;
    --text-light: #f0f0f0;
    /* Update text light specifically for dark backgrounds */

    /* Vibrant Button Gradients */
    --btn-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --btn-danger: linear-gradient(135deg, #ff416c 0%, #ff4b2b 100%);
    --btn-success: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
    --btn-warning: linear-gradient(135deg, #fce38a 0%, #f38181 100%);
}

@keyframes gradientBG {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    /* Purple/Blue Gradient */
    /* Animated Gradient Background */
    background: linear-gradient(-45deg, #ee7752, #e73c7e, #23a6d5, #23d5ab);
    background-size: 400% 400%;
    animation: gradientBG 15s ease infinite;
    color: var(--text-color);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
}

/* Glass Container */
.glass-container {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 16px;
    border: var(--glass-border);
    box-shadow: var(--glass-shadow);
    padding: 2.5rem;
    margin: 3rem auto;
    max-width: 1200px;
}

/* Form Grid for Booking Page */
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .form-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }
}

/* Glass Cards */
.glass-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border-radius: 12px;
    border: var(--glass-border);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.glass-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    background: rgba(255, 255, 255, 0.9);
}

/* Inputs */
.glass-input {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 12px 15px;
    width: 100%;
    box-sizing: border-box;
    margin-bottom: 1.5rem;
    font-size: 1rem;
    color: var(--text-color);
    outline: none;
    transition: all 0.3s;
}

.glass-input:focus {
    border-color: #764ba2;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(118, 75, 162, 0.2);
}

/* Buttons */
.glass-btn {
    background: var(--btn-primary);
    color: white;
    border: none;
    padding: 12px 28px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1rem;
    transition: transform 0.2s, box-shadow 0.2s;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.glass-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Header */
.glass-header {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 1rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 1.5rem;
    color: #333;
}

.logo-img {
    height: 40px;
    width: auto;
}

.nav-links a {
    color: #555;
    text-decoration: none;
    margin-left: 1rem;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 6px;
    transition: all 0.3s;
}

.nav-links a:hover {
    color: #764ba2;
    background: rgba(118, 75, 162, 0.1);
}

.footer {
    text-align: center;
    padding: 2rem;
    color: white;
    margin-top: auto;
    font-size: 0.9rem;
    border-top: none;
    background: transparent;
}

.footer a {
    color: white;
    text-decoration: underline;
}

/* Badges */
.badge {
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.badge-booked {
    background: #3498db;
}

.badge-progress {
    background: #f1c40f;
    color: #333;
}

.badge-completed {
    background: #2ecc71;
}

.badge-cancelled {
    background: #e74c3c;
}

.badge-visiting {
    background: #9b59b6;
}

/* Tables */
table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 8px;
    margin-bottom: 1rem;
}

th {
    text-align: left;
    padding: 1rem;
    color: #555;
    font-weight: 600;
    border-bottom: none;
    background: transparent;
    text-transform: uppercase;
    font-size: 0.85rem;
}

td {
    padding: 1rem;
    background: rgba(255, 255, 255, 0.5);
    border: none;
    color: var(--text-color);
}

tr td:first-child {
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
}

tr td:last-child {
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
}


/* Landing Page Redesign */

/* Landing Page Redesign */

/* Hero Section */
.hero-section {
    background: rgba(255, 255, 255, 0.05);
    /* Lighter glass */
    backdrop-filter: blur(8px);
    color: white;
    padding: 8rem 2rem 6rem;
    /* More spacing */
    text-align: center;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    /* For particle effects if we added them */
}

/* Add a subtle shine overflow effect */
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: -50%;
    width: 200%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.03), transparent);
    transform: skewX(-25deg);
    animation: shine 8s infinite linear;
    pointer-events: none;
}

@keyframes shine {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

.step-number.seq-1 {
    animation-delay: 0s;
}

.step-number.seq-2 {
    animation-delay: 1s;
}

.step-number.seq-3 {
    animation-delay: 2s;
}

.step-number.seq-4 {
    animation-delay: 3s;
}

.page-header {
    text-align: center;
    padding: 2rem 1rem 0;
    /* Reduced padding */
    color: white;
}

.page-title {
    font-size: 2rem;
    /* Reduced font size */
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease-out;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.btn-hero-primary {
    background: white;
    color: #764ba2;
    padding: 15px 35px;
    border-radius: 30px;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.btn-hero-secondary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 15px 35px;
    border-radius: 30px;
    font-weight: 700;
    text-decoration: none;
    backdrop-filter: blur(5px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s;
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
}

/* Section Titles */
.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: white;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: white;
    margin: 10px auto 0;
    border-radius: 2px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Services Grid */
.services-section {
    padding: 2rem 5%;
    max-width: 1200px;
    margin: 0 auto 4rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    align-items: stretch;
    /* Ensure cards stretch to same height */
}

.service-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.5);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    height: auto;
    position: relative;
    overflow: hidden;
}

.service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    background: #ffffff;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-card:hover::after {
    transform: scaleX(1);
}

.service-icon {
    font-size: 3rem;
    color: #4b5563 !important;
    /* Dark Gray instead of pure black for better aesthetics */
    background: none;
    -webkit-text-fill-color: initial;
    margin-bottom: 1.5rem;
    transition: transform 0.4s ease;
    display: inline-block;
    /* Ensure transforms work */
    width: 60px;
    /* Fixed width to prevent collapse */
    height: 60px;
    line-height: 60px;
    /* Center vertical */
    text-align: center;
}

.service-card:hover .service-icon {
    transform: scale(1.15) rotate(5deg);
    color: #764ba2 !important;
    /* Change color on hover */
    filter: drop-shadow(0 5px 15px rgba(118, 75, 162, 0.3));
}

.service-card h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
    color: #000000;
    /* Black Title */
}

/* Ensure Paragraph text is also dark/black */
.service-card p {
    color: #000000;
}

/* Features Section */
.features-section {
    background: transparent;
    padding: 5rem 5%;
    margin-bottom: 4rem;
}

.features-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 3rem;
}

.feature-item {
    text-align: center;
    flex: 1;
    min-width: 250px;
    color: white;
}

.feature-icon-circle {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
    transition: transform 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.feature-item:hover .feature-icon-circle {
    transform: rotate(10deg) scale(1.1);
    background: rgba(255, 255, 255, 0.3);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(118, 75, 162, 0.7);
    }

    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(118, 75, 162, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(118, 75, 162, 0);
    }
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
}

.animate-slide-left {
    animation: slideInLeft 0.8s ease-out forwards;
}

.animate-slide-right {
    animation: slideInRight 0.8s ease-out forwards;
}

.animate-pulse {
    animation: pulse 2s infinite;
}

.animate-float {
    animation: float 3s ease-in-out infinite;
}

.delay-100 {
    animation-delay: 0.1s;
}

.delay-200 {
    animation-delay: 0.2s;
}

.delay-300 {
    animation-delay: 0.3s;
}

.delay-400 {
    animation-delay: 0.4s;
}

.delay-500 {
    animation-delay: 0.5s;
}

@keyframes pulse-1234 {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.8;
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
    }

    50% {
        transform: scale(1.1);
        opacity: 1;
        box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
    }
}

.animate-pulse-seq {
    animation: pulse-1234 4s infinite;
    /* 4 steps * 1s each = 4s total loop */
}

/* Guide Page Styling - Compact */
.guide-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.timeline-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    /* 4 Columns Explicitly */
    gap: 0.8rem;
    /* Further reduced gap */
    position: relative;
    padding: 0.5rem 0;
    /* Minimal padding */
    align-items: stretch;
}

/* Hide vertical line on Grid View, Show only on Mobile if needed, or redesign.
   Actually, let's remove the continuous line for the Grid view to be cleaner. */
.timeline-progress-bar {
    display: none;
}

.guide-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;

    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 1rem 0.8rem;
    /* Very compact padding */
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;

    height: 100%;
    justify-content: space-between;
}

/* Remove old separate card styles since guide-step IS the card now */
/* Ensure step content takes available space but leaves room for button at bottom */
.step-content {
    background: transparent;
    box-shadow: none;
    border: none;
    padding: 0;
    margin-top: 0.5rem;
    display: flex;
    /* IMPORTANT */
    flex-direction: column;
    flex-grow: 1;
    /* Allow content to grow */
    width: 100%;
    margin-bottom: 0;
}

.step-content h3 {
    font-size: 1rem;
    /* Smaller font */
    margin-bottom: 0.3rem;
    color: #764ba2;
}

.step-content p {
    font-size: 0.8rem;
    /* Smaller font */
    line-height: 1.3;
    color: #555;
    margin-bottom: 0.5rem;
}

/* Push button container to bottom securely */
.step-content>div:last-child {
    margin-top: auto !important;
    padding-top: 0.5rem;
    width: 100%;
}

.guide-step .glass-btn {
    width: 100%;
    display: block;
    padding: 8px 0;
    /* Smaller button */
    text-align: center;
    font-size: 0.85rem;
    box-sizing: border-box;
}

.step-icon {
    width: 50px;
    /* Smaller icon */
    height: 50px;
    font-size: 1.2rem;
    margin: 0 auto;
}

.step-icon-wrapper {
    width: auto;
    margin-bottom: 0.5rem;
}

.step-number {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(118, 75, 162, 0.1);
    color: #764ba2;
    padding: 5px 12px;
    border-radius: 20px;
    font-weight: 800;
}

.guide-step:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.guide-step:hover .step-icon {
    transform: scale(1.1) rotate(5deg);
}


/* Responsive Guide */
@media (max-width: 900px) {
    .timeline-container {
        grid-template-columns: repeat(2, 1fr);
        /* 2x2 on Tablets */
    }
}

@media (max-width: 600px) {
    .timeline-container {
        grid-template-columns: 1fr;
        /* Stack vertically on mobile */
        gap: 1rem;
    }

    .guide-section {
        margin: 1rem auto;
        padding: 0 1rem;
    }

    .timeline-progress-bar {
        left: 24px;
        /* Align with smaller icon center */
    }

    .step-icon-wrapper {
        width: 50px;
        z-index: 2;
        /* Ensure icon is above line */
    }

    .step-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
        border-width: 3px;
    }

    .step-number {
        font-size: 0.9rem;
        background: rgba(0, 0, 0, 0.5);
        /* Better contrast on mobile */
        padding: 2px 8px;
    }

    .guide-step {
        gap: 1rem;
        margin-bottom: 2rem;
    }

    .step-content {
        padding: 1.25rem;
    }

    .step-content h3 {
        font-size: 1.3rem;
        margin-bottom: 0.5rem;
    }

    .step-content p {
        font-size: 0.95rem;
        line-height: 1.5;
    }
}

@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .glass-header {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }

    .nav-links {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.5rem;
    }

    .nav-links a {
        margin-left: 0;
        font-size: 0.9rem;
    }

    .glass-container {
        padding: 1.5rem;
        width: 90%;
        margin: 1.5rem auto;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
        padding: 0 2rem;
    }

    .hero-section {
        border-radius: 0 0 2rem 2rem;
        padding: 3rem 1rem;
    }

    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 600px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

/* Footer Redesign */
.glass-footer {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 3rem 5% 1rem;
    margin-top: auto;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    color: #333;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-section h3 {
    color: #764ba2;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer-section p {
    color: #555;
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section ul li a {
    color: #555;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: #764ba2;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #764ba2;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, background 0.3s;
    text-decoration: none;
}

.social-icon:hover {
    transform: translateY(-3px);
    background: #764ba2;
    color: white;
}

.footer-bottom {
    text-align: center;
    margin-top: 3rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    color: #777;
    font-size: 0.9rem;
}

/* Floating WhatsApp */


.my-float {
    margin-top: 0px;
}


/* Contact Section */
.contact-section {
    padding: 4rem 5%;
    margin-bottom: 2rem;
}

.contact-container {
    max-width: 1000px;
    padding: 3rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 12px;
    transition: transform 0.3s, background 0.3s;
}

.contact-item:hover {
    transform: translateX(10px);
    background: rgba(255, 255, 255, 0.8);
}

.contact-icon-box {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(118, 75, 162, 0.3);
}

.contact-details h4 {
    margin: 0 0 0.5rem 0;
    color: #333;
    font-size: 1.1rem;
}

.contact-details p {
    margin: 0;
    color: #000;
    font-size: 0.95rem;
    font-weight: 500;
}

.map-placeholder {
    background: rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 2px dashed rgba(118, 75, 162, 0.3);
    color: #764ba2;
    font-weight: 600;
    gap: 1rem;
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-container {
        padding: 2rem;
    }
}

/* Guide/Timeline Section */
.guide-section {
    padding: 4rem 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.timeline-container {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-top: 4rem;
    gap: 2rem;
}

/* Connecting Line */
.timeline-container::before {
    content: '';
    position: absolute;
    top: 50px;
    /* Aligns with the center of the icon */
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    z-index: 0;
    border-radius: 4px;
}

/* Progress Line (Animated) */
.timeline-progress-bar {
    position: absolute;
    top: 50px;
    left: 0;
    height: 4px;
    background: white;
    z-index: 0;
    width: 0;
    border-radius: 4px;
    animation: progressFill 4s ease-out forwards;
}

.guide-step {
    position: relative;
    z-index: 1;
    flex: 1;
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.5s ease-out forwards;
}

.guide-step:nth-child(2) {
    animation-delay: 1s;
}

.guide-step:nth-child(3) {
    animation-delay: 2s;
}

.guide-step:nth-child(4) {
    animation-delay: 3s;
}

.guide-step:nth-child(5) {
    animation-delay: 4s;
}


.step-icon-wrapper {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    border: 4px solid transparent;
    /* For gradient border effect if needed */
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}

.guide-step.active .step-icon-wrapper {
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.6);
}

.step-icon {
    font-size: 2.5rem;
    background: -webkit-linear-gradient(#667eea, #764ba2);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.step-number {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 30px;
    height: 30px;
    background: #764ba2;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.9rem;
    border: 2px solid white;
}

.step-content {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    min-height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: transform 0.3s;
}

.step-content h3 {
    margin: 0 0 0.5rem 0;
    color: #333;
    font-size: 1.2rem;
}

.step-content p {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
}

@keyframes progressFill {
    0% {
        width: 0;
    }

    100% {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .timeline-container {
        flex-direction: column;
        gap: 3rem;
        align-items: center;
        /* Center items explicitly */
    }

    .timeline-container::before {
        width: 4px;
        height: 100%;
        left: 50%;
        /* Center the line */
        top: 0;
        transform: translateX(-50%);
    }

    .timeline-progress-bar {
        width: 4px;
        height: 0;
        left: 50%;
        top: 0;
        transform: translateX(-50%);
        animation: progressFillVertical 4s ease-out forwards;
    }

    /* Uniform Button Sizing - PHP file override sync */
    .guide-btn {
        width: 100% !important;
        display: block !important;
        padding: 10px 0 !important;
        /* Reduced padding */
        text-align: center;
        font-size: 0.9rem !important;
        /* Reduced font size */
        box-sizing: border-box;
    }

    .guide-step {
        width: 100%;
        max-width: 400px;
        display: flex;
        flex-direction: column;
        align-items: center;
        z-index: 2;
        /* Ensure steps are above the line */
    }

    .step-content {
        width: 100%;
        margin-top: 1rem;
    }
}

@keyframes progressFillVertical {
    0% {
        height: 0;
    }

    100% {
        height: 100%;
    }
}


/* WhatsApp Float Adjustment */
/* Floating WhatsApp */
.whatsapp-float {
    position: fixed !important;
    justify-content: center;
    text-decoration: none;
    transition: transform 0.3s;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

/* =========================================
   Holographic Glass Cards (Clients)
   ========================================= */
.clients-section {
    padding: 5rem 0;
    /* Darker bg to make holograms pop, optional, or keep light */
    background: linear-gradient(to bottom, #f8fafc, #e2e8f0);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    perspective: 1000px;
    /* For 3D Tilt */
}

.holo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 2rem;
}

.holo-card {
    position: relative;
    height: 160px;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    transition: all 0.1s ease;
    /* Fast transition for tilt */
    transform-style: preserve-3d;
    cursor: pointer;
    box-shadow:
        0 5px 15px rgba(0, 0, 0, 0.05),
        inset 0 0 20px rgba(255, 255, 255, 0.5);
    overflow: hidden;
}

/* Gradient Border Effect */
.holo-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 2px;
    /* Border width */
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.8));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

/* Shimmer Highlight */
.holo-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg,
            transparent,
            rgba(255, 255, 255, 0.8),
            transparent);
    transform: rotate(45deg) translateY(-100%);
    transition: transform 0.6s;
    pointer-events: none;
}

.holo-card:hover::after {
    transform: rotate(45deg) translateY(100%);
}

.holo-card:hover {
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.1),
        0 0 20px rgba(118, 75, 162, 0.2),
        /* Brand Glow */
        inset 0 0 20px rgba(255, 255, 255, 0.8);
    z-index: 10;
}

.client-logo-holo {
    max-width: 80%;
    max-height: 60px;
    object-fit: contain;
    filter: grayscale(100%) opacity(0.7);
    transition: all 0.3s;
    transform: translateZ(20px);
    /* Lift element off card */
}

.holo-card:hover .client-logo-holo {
    filter: grayscale(0%) opacity(1);
    transform: translateZ(30px) scale(1.1);
}




/* Mobile Refinements */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
        /* Smaller title on mobile */
    }

    .hero-section {
        padding: 4rem 1rem;
        /* Reduce padding */
        border-radius: 0 0 2rem 2rem;
    }

    .glass-container {
        padding: 1.5rem;
        width: 95%;
        /* Wider container on mobile */
        margin: 1.5rem auto;
    }

    .section-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    /* Clients Grid Mobile Fix */
    .holo-grid {
        grid-template-columns: repeat(2, 1fr);
        /* Force 2 columns */
        gap: 1rem;
        padding: 0 1rem;
    }

    .holo-card {
        height: 120px;
        /* Compact height */
        padding: 1rem;
    }

    .client-logo-holo {
        max-height: 40px;
        /* Smaller logos */
    }

    /* Contact Section Mobile */
    .contact-section {
        padding: 2rem 1rem;
    }

    .contact-container {
        padding: 1.5rem;
    }

    .contact-item {
        padding: 1rem;
        flex-direction: column;
        /* Stack icon and text */
        align-items: center;
        text-align: center;
        gap: 1rem;
    }

    .contact-icon-box {
        margin: 0 auto;
    }

    /* Client Logo Mobile Optimization */
    .marquee-container {
        padding: 0;
        /* Remove potential padding */
    }

    .client-logo {
        margin: 0 1.5rem;
        /* Reduce spacing between logos */
    }

    .client-logo img {
        height: 40px;
        /* Reduce height for mobile */
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-buttons {
        width: 100%;
    }

    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        display: block;
        padding: 12px 20px;
    }
}


@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Input Prefix Styles */
.input-prefix-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    margin-bottom: 1.5rem;
}

.input-prefix-wrapper .prefix-text {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #555;
    font-weight: 600;
    pointer-events: none;
    z-index: 10;
}

.input-prefix-wrapper .glass-input {
    padding-left: 50px !important;
    margin-bottom: 0 !important;
}

/* Client Logos - Ticket Tape Ticker Style */
.client-logo {
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100px;
    position: relative;
    border-right: 1px solid rgba(0, 0, 0, 0.1);
    /* Vertical separator */
}

.client-logo:last-child {
    border-right: none;
}

.client-logo:hover {
    transform: none;
    background: transparent;
    box-shadow: none;
}

.client-logo img {
    max-height: 50px;
    max-width: 140px;
    filter: grayscale(100%) opacity(0.6);
    transition: all 0.3s ease;
}

.client-logo:hover img {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.1);
}

/* End of File Cleanup */
/* Floating Shapes Background */
.circles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
    pointer-events: none;
}

.circles li {
    position: absolute;
    display: block;
    list-style: none;
    width: 20px;
    height: 20px;
    background: rgba(255, 255, 255, 0.2);
    animation: animate 25s linear infinite;
    bottom: -150px;
}

.circles li:nth-child(1) {
    left: 25%;
    width: 80px;
    height: 80px;
    animation-delay: 0s;
}

.circles li:nth-child(2) {
    left: 10%;
    width: 20px;
    height: 20px;
    animation-delay: 2s;
    animation-duration: 12s;
}

.circles li:nth-child(3) {
    left: 70%;
    width: 20px;
    height: 20px;
    animation-delay: 4s;
}

.circles li:nth-child(4) {
    left: 40%;
    width: 60px;
    height: 60px;
    animation-delay: 0s;
    animation-duration: 18s;
}

.circles li:nth-child(5) {
    left: 65%;
    width: 20px;
    height: 20px;
    animation-delay: 0s;
}

.circles li:nth-child(6) {
    left: 75%;
    width: 110px;
    height: 110px;
    animation-delay: 3s;
}

.circles li:nth-child(7) {
    left: 35%;
    width: 150px;
    height: 150px;
    animation-delay: 7s;
}

.circles li:nth-child(8) {
    left: 50%;
    width: 25px;
    height: 25px;
    animation-delay: 15s;
    animation-duration: 45s;
}

.circles li:nth-child(9) {
    left: 20%;
    width: 15px;
    height: 15px;
    animation-delay: 2s;
    animation-duration: 35s;
}

.circles li:nth-child(10) {
    left: 85%;
    width: 150px;
    height: 150px;
    animation-delay: 0s;
    animation-duration: 11s;
}

@keyframes animate {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 1;
        border-radius: 0;
    }

    100% {
        transform: translateY(-1000px) rotate(720deg);
        opacity: 0;
        border-radius: 50%;
    }
}