/* ========================================
   BUZYPRO PREMIUM - Professional CSS
   Modern, Attractive, High-End Design
   ======================================== */

:root {
    --primary-color: #0F4C75;      /* Deep professional blue */
    --secondary-color: #3282B8;    /* Bright blue */
    --accent-color: #FF6B6B;       /* Vibrant red accent */
    --success-color: #00B894;      /* Green */
    --dark-color: #1a1a2e;         /* Dark navy */
    --light-color: #f8f9fa;
    --border-light: #e9ecef;
    --text-muted: #6c757d;
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 8px 25px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 15px 50px rgba(0, 0, 0, 0.15);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', 'Helvetica Neue', sans-serif;
    color: #2d3436;
    line-height: 1.8;
    overflow-x: hidden;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 50%, #f0f4ff 100%);
    background-attachment: fixed;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(15, 76, 117, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(50, 130, 184, 0.03) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

/* ========================================
   GLOBAL STYLES
   ======================================== */

.container {
    max-width: 1200px;
}

.brand-color {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

/* ========================================
   NAVIGATION
   ======================================== */

.navbar {
    background: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    box-shadow: var(--shadow-md);
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.nav-link {
    color: #2d3436 !important;
    font-weight: 500;
    margin: 0 0.5rem;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-color) !important;
}

.nav-link:hover::after {
    width: 100%;
}

/* ========================================
   HERO SECTION - PREMIUM
   ======================================== */

.hero-section {
    background: linear-gradient(135deg, #0F4C75 0%, #3282B8 50%, #1a1a2e 100%);
    color: white;
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.05" d="M0,64L48,80C96,96,192,128,288,128C384,128,480,96,576,90.7C672,85,768,107,864,112C960,117,1056,107,1152,96C1248,85,1344,75,1392,69.3L1440,64L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 0.1;
}

.hero-section h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    animation: fadeInDown 0.8s ease-out;
}

.hero-section .lead {
    font-size: 1.3rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    opacity: 0.95;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-section .d-flex {
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

/* ========================================
   BUTTONS - PREMIUM
   ======================================== */

.btn {
    border-radius: 50px;
    padding: 0.75rem 2rem;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: left 0.3s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border: none;
    color: white;
    box-shadow: 0 4px 15px rgba(15, 76, 117, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(15, 76, 117, 0.4);
    color: white;
}

.btn-outline-primary {
    color: white;
    border: 2px solid white;
    background: transparent;
}

.btn-outline-primary:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-3px);
}

.btn-sm {
    padding: 0.5rem 1.25rem;
    border-radius: 25px;
}

/* ========================================
   FEATURE CARDS - PREMIUM
   ======================================== */

.feature-card {
    padding: 2.5rem;
    border-radius: 15px;
    background: white;
    border: 1px solid var(--border-light);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transform: scaleX(0);
    transition: transform 0.3s ease;
    transform-origin: left;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.feature-icon {
    font-size: 3.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    animation: bounceIn 0.6s ease-out;
}

.feature-card h5 {
    color: #1a1a2e;
    margin-bottom: 1rem;
    font-weight: 700;
    font-size: 1.3rem;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.8;
}

/* ========================================
   SERVICE CARDS - PREMIUM
   ======================================== */

.service-card {
    padding: 2.5rem;
    border-radius: 15px;
    background: white;
    border: 1px solid var(--border-light);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.service-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, var(--accent-color), transparent);
    border-radius: 50%;
    opacity: 0;
    transition: all 0.5s ease;
}

.service-card:hover::before {
    opacity: 0.05;
    top: -25%;
    right: -25%;
}

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-color);
}

.service-icon {
    font-size: 3rem !important;
    color: var(--primary-color) !important;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color)) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    margin-bottom: 1.5rem !important;
    transition: all 0.3s ease !important;
}

.service-card:hover .service-icon {
    color: var(--secondary-color) !important;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color)) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    transform: scale(1.1) !important;
}

.service-card h5 {
    color: #1a1a2e;
    margin-bottom: 1rem;
    font-weight: 700;
    font-size: 1.2rem;
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.service-card .btn-outline-primary {
    display: inline-block !important;
    margin-top: 1rem !important;
    padding: 0.6rem 1.5rem !important;
    font-weight: 600 !important;
    border: 2px solid var(--primary-color) !important;
    color: var(--primary-color) !important;
    text-decoration: none !important;
    border-radius: 6px !important;
    transition: all 0.3s ease !important;
    opacity: 1 !important;
    visibility: visible !important;
    background: white !important;
}

.service-card .btn-outline-primary:hover {
    background: var(--primary-color) !important;
    color: white !important;
    transform: scale(1.05) !important;
    box-shadow: 0 4px 12px rgba(15, 76, 117, 0.3) !important;
}

/* ========================================
   CONTACT FORM
   ======================================== */

.contact-form {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 10;
}

.form-control,
.form-select {
    border: 2px solid var(--border-light);
    padding: 0.8rem 1.2rem;
    font-size: 1rem;
    border-radius: 10px;
    transition: all 0.3s ease;
    background: white;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(15, 76, 117, 0.15);
    background: white;
}

.form-label {
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 0.7rem;
    display: block;
}

/* ========================================
   FOOTER
   ======================================== */

.footer {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: white;
    padding: 4rem 0 2rem;
    border-top: 3px solid var(--primary-color);
    position: relative;
    z-index: 10;
}

.footer h6 {
    color: #ffffff;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.footer p, .footer a, .footer li {
    color: #a8b0b8 !important;
    font-size: 0.95rem;
    line-height: 1.8;
}

.footer a {
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: #3282B8 !important;
    font-weight: 500;
}

/* ========================================
   CTA SECTION - PREMIUM
   ======================================== */

.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--dark-color) 100%);
    color: white;
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, var(--accent-color), transparent);
    border-radius: 50%;
    opacity: 0.1;
}

.cta-section h2 {
    font-size: 2.8rem;
    line-height: 1.3;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
    font-weight: 800;
}

.cta-section .lead {
    font-size: 1.2rem;
    opacity: 0.95;
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 1;
}

/* ========================================
   ANIMATIONS
   ======================================== */

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

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

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: scale(1);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

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

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 1024px) {
    .hero-section h1 {
        font-size: 2.5rem;
    }
    
    .cta-section h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 3rem 0;
    }
    
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .hero-section .lead {
        font-size: 1.1rem;
    }
    
    .navbar-brand {
        font-size: 1.2rem;
    }
    
    .feature-card,
    .service-card {
        padding: 1.5rem;
    }
    
    .btn {
        padding: 0.6rem 1.5rem;
        font-size: 0.95rem;
    }
}

@media (max-width: 576px) {
    .hero-section {
        padding: 2rem 0;
    }
    
    .hero-section h1 {
        font-size: 1.5rem;
    }
    
    .hero-section .lead {
        font-size: 1rem;
    }
    
    .feature-card,
    .service-card {
        padding: 1.5rem;
    }
    
    .cta-section h2 {
        font-size: 1.5rem;
    }
}

/* ========================================
   SERVICE PAGE - PVT LTD SPECIFIC STYLES
   ======================================== */

.hero-badges {
    margin-bottom: 2rem;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-h1-title {
    color: white;
    line-height: 1.2;
}

.hero-h1-subtitle {
    font-size: 2.5rem;
}

.hero-lead-text {
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2rem;
}

.hero-check-items {
    display: flex;
    gap: 4rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.hero-check-item {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    color: white;
}

.hero-check-item i {
    font-size: 1.3rem;
}

/* Contact Form Styling */
.contact-form h4,
.contact-form h5 {
    color: white;
    margin-bottom: 1rem;
}

.contact-form > p {
    color: white;
}

.service-form {
    width: 100%;
    position: relative;
    z-index: 10;
}

.service-form .form-control {
    background: white !important;
    border: 1px solid #ddd !important;
    color: #333 !important;
    display: block !important;
    width: 100% !important;
    padding: 0.8rem 1rem !important;
    margin-bottom: 1rem !important;
    font-size: 1rem !important;
    border-radius: 6px !important;
}

.service-form .form-control::placeholder {
    color: #999 !important;
}

.service-form .form-control:focus {
    outline: none;
    border-color: var(--primary-color) !important;
    box-shadow: 0 0 0 0.2rem rgba(15, 76, 117, 0.15) !important;
}

/* Testimonial Mini Widget */
.testimonial-mini {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e9ecef;
    display: block;
    visibility: visible;
}

.testimonial-avatar-container {
    display: flex;
    align-items: center;
    gap: 1rem;
    visibility: visible;
}

.testimonial-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #e0e7ff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-weight: bold;
    flex-shrink: 0;
}

.testimonial-name {
    margin: 0;
    font-weight: 600;
    font-size: 0.9rem;
    color: #2d3436;
}

.testimonial-role {
    margin: 0;
    font-size: 0.8rem;
    color: #6c757d;
}

.testimonial-rating {
    margin: 0;
    font-size: 0.85rem;
    color: #28a745;
}

/* Trust & Stats Section */
.trust-stat-card {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    cursor: pointer;
}

.trust-stat-number {
    font-size: 2.8rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.trust-stat-title {
    margin: 0;
    font-size: 0.95rem;
    font-weight: 500;
}

.trust-stat-subtitle {
    opacity: 0.85;
}

/* Hover Effects - CSS Only */
.hover-lift {
    transition: all 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.hover-slide-right {
    transition: all 0.3s ease;
}

.hover-slide-right:hover {
    transform: translateX(10px);
}

.hover-glow {
    transition: all 0.3s ease;
}

.hover-glow:hover {
    box-shadow: 0 0 20px rgba(15, 76, 117, 0.4);
}

/* Step styling */
.steps-container {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    gap: 2rem;
}

.step-item {
    flex: 1;
    min-width: 150px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.step-number {
    width: 80px;
    height: 80px;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: bold;
    margin: 0 auto 1rem;
    box-shadow: 0 10px 30px rgba(15, 76, 117, 0.2);
}

.step-item-1 .step-number { background: linear-gradient(135deg, var(--primary-color), var(--secondary-color)); }
.step-item-2 .step-number { background: linear-gradient(135deg, #ff9800, #ffb74d); }
.step-item-3 .step-number { background: linear-gradient(135deg, #9c27b0, #ce93d8); }
.step-item-4 .step-number { background: linear-gradient(135deg, #00bcd4, #80deea); }
.step-item-5 .step-number { background: linear-gradient(135deg, #4caf50, #a5d6a7); }
.step-item-6 .step-number { background: linear-gradient(135deg, #e91e63, #f48fb1); }

.step-title {
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.step-description {
    font-size: 0.85rem;
    color: #6c757d;
    margin: 0;
}

/* Industry Cards */
.industry-card {
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 5px solid;
    transition: all 0.3s ease;
    cursor: pointer;
}

.industry-card-tech {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    border-left-color: var(--primary-color);
}

.industry-card-ecommerce {
    background: linear-gradient(135deg, #f3e5f5 0%, #e1bee7 100%);
    border-left-color: #9c27b0;
}

.industry-card-realestate {
    background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%);
    border-left-color: #ff9800;
}

.industry-card-manufacturing {
    background: linear-gradient(135deg, #f1f8e9 0%, #dcedc8 100%);
    border-left-color: #8bc34a;
}

.industry-card h6 {
    margin-bottom: 0.5rem;
}

.industry-card p {
    margin: 0;
    font-size: 0.9rem;
}

/* Why Choose Cards */
.why-choose-card {
    text-align: center;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(0, 0, 0, 0.05);
    cursor: pointer;
}

.why-choose-card-blue {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    border-color: rgba(15, 76, 117, 0.1);
}

.why-choose-card-orange {
    background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%);
    border-color: rgba(255, 152, 0, 0.1);
}

.why-choose-card-purple {
    background: linear-gradient(135deg, #f3e5f5 0%, #e1bee7 100%);
    border-color: rgba(156, 39, 176, 0.1);
}

.why-choose-card-green {
    background: linear-gradient(135deg, #f1f8e9 0%, #dcedc8 100%);
    border-color: rgba(139, 195, 74, 0.1);
}

.why-choose-card-pink {
    background: linear-gradient(135deg, #fce4ec 0%, #f8bbd0 100%);
    border-color: rgba(233, 30, 99, 0.1);
}

.why-choose-card-teal {
    background: linear-gradient(135deg, #e0f2f1 0%, #b2dfdb 100%);
    border-color: rgba(0, 150, 136, 0.1);
}

.why-choose-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.why-choose-card-blue .why-choose-icon { color: var(--primary-color); }
.why-choose-card-orange .why-choose-icon { color: #ff9800; }
.why-choose-card-purple .why-choose-icon { color: #9c27b0; }
.why-choose-card-green .why-choose-icon { color: #8bc34a; }
.why-choose-card-pink .why-choose-icon { color: #e91e63; }
.why-choose-card-teal .why-choose-icon { color: #009688; }

.why-choose-card h5 {
    margin-bottom: 1rem;
}

.why-choose-card p {
    color: #6c757d;
}

/* Animations */
.animate-delay-1 { animation: fadeInUp 0.6s ease 0s forwards; }
.animate-delay-2 { animation: fadeInUp 0.6s ease 0.1s forwards; }
.animate-delay-3 { animation: fadeInUp 0.6s ease 0.2s forwards; }
.animate-delay-4 { animation: fadeInUp 0.6s ease 0.3s forwards; }
.animate-delay-5 { animation: fadeInUp 0.6s ease 0.4s forwards; }
.animate-delay-6 { animation: fadeInUp 0.6s ease 0.5s forwards; }

/* Timeline */
.timeline-step {
    display: flex;
    margin-bottom: 1.5rem;
}

.timeline-step-num {
    width: 30px;
    height: 30px;
    background: #28a745;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    margin-right: 1rem;
    flex-shrink: 0;
}

.timeline-step-title {
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.timeline-step-desc {
    font-size: 0.9rem;
    color: #6c757d;
    margin: 0;
}

/* SVG Wave */
.svg-wave {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.08;
    display: none;
}

.svg-wave path {
    fill: rgba(255, 255, 255, 0.08) !important;
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(15, 76, 117, 0.3);
    transition: all 0.3s ease;
    z-index: 999;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(15, 76, 117, 0.4);
    color: white;
    text-decoration: none;
}

/* CTA Box */
.cta-box {
    padding: 2.5rem;
    background: linear-gradient(135deg, rgba(248, 249, 255, 0.9) 0%, rgba(240, 244, 255, 0.7) 100%);
    border-radius: 12px;
    text-align: center;
    margin: 2rem 0;
}

.timeline-box {
    text-align: center;
}

.timeline-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.timeline-label {
    color: #6c757d;
    margin-bottom: 0;
}

.timeline-sublabel {
    color: #6c757d;
}

/* Post Reg */
.post-reg-card {
    color: white;
}

.post-reg-card h4 {
    margin-bottom: 2rem;
}

.post-reg-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.post-reg-icon {
    font-weight: bold;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.post-reg-text h6 {
    margin-bottom: 0.5rem;
}

.post-reg-text p {
    margin: 0;
    font-size: 0.9rem;
}

.post-reg-timeline {
    background: #fff3cd;
    padding: 2rem;
    border-radius: 10px;
    border: 2px solid #ffc107;
}

.pvt-ltd-intro {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    padding: 2rem;
    border-radius: 12px;
    border-left: 5px solid var(--primary-color);
}

.pvt-ltd-intro h5 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.pvt-ltd-intro ul li {
    margin-bottom: 0.5rem;
}

.consultation-container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.consultation-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.consultation-process-list li {
    margin-bottom: 1.5rem;
    display: flex;
    gap: 1rem;
}

.consultation-number {
    color: var(--secondary-color);
    font-weight: bold;
    font-size: 1.3rem;
}

.consultation-step-text p {
    margin: 0;
}

.consultation-step-title {
    font-weight: 600;
}

.consultation-step-desc {
    font-size: 0.9rem;
    color: #6c757d;
}

.consultation-offer-box {
    background: rgba(255, 255, 255, 0.15);
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
}

.consultation-offer-box ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.consultation-offer-box li {
    margin-bottom: 0.5rem;
}

/* Additional Contact Form Fixes */
.contact-form .btn-primary {
    display: block;
    width: 100% !important;
    margin: 1rem 0 !important;
    padding: 0.75rem 1.5rem !important;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%) !important;
    border: none !important;
    color: white !important;
    font-weight: 600 !important;
    border-radius: 8px !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
}

.contact-form .btn-primary:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 25px rgba(15, 76, 117, 0.4) !important;
}

.contact-form small {
    display: block;
    text-align: center;
    color: #6c757d !important;
    font-size: 0.85rem !important;
}
