/* Existing styles */
@media (max-width: 767.98px) { 
.full-height{
height:30vh;
}

.fixed{
background-attachment:unset !important;
}

.bottom {
    background-position: left !important;
}
}

.img-fluid {
    border-radius: 10px; /* ya jitna aapko rounded chahiye */
}

/* Common styles from internal CSS */
h1.underline::after {
    background-color: var(--bs-warning);
}

.hero-section {
    position: relative;
    overflow: hidden;
}

.full-height {
    min-height: 600px;
    width: 100%;
    display: block;
}

.chevron-dark-left,
.chevron-dark-right {
    width: 40px;
    height: 40px;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
}

.chevron-dark-left:before {
    content: '\f104';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
}

.chevron-dark-right:before {
    content: '\f105';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
}

/* Font Awesome Icons Enhancement */
.fab, .fas, .far, .fal, .fad {
    display: inline-block !important;
    font-style: normal !important;
    font-variant: normal !important;
    text-rendering: auto !important;
    line-height: 1 !important;
}

.feature-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    border-radius: 15px;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.cta-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 20px;
    padding: 3rem;
    margin: 2rem 0;
}

.professional-btn {
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.professional-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Animated PCSIR badge */
.pcsir-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: 999px;
    font-weight: 700;
    color: #212529;
    background: linear-gradient(135deg, #ffe08a 0%, #ffc107 60%, #ffb300 100%);
    box-shadow: 0 6px 16px rgba(255, 193, 7, 0.35);
    position: relative;
    overflow: hidden;
    animation: pcsirPulse 2.8s ease-in-out infinite;
}

.pcsir-badge i {
    color: #212529;
}

.pcsir-badge::before {
    content: "";
    position: absolute;
    top: 0;
    left: -40%;
    width: 40%;
    height: 100%;
    background: rgba(255, 255, 255, 0.35);
    transform: skewX(-20deg);
    animation: pcsirShine 3.2s ease-in-out infinite;
}

.pcsir-badge::after {
    content: "";
    position: absolute;
    inset: -4px;
    border-radius: 999px;
    border: 2px dashed rgba(33, 37, 41, 0.18);
    animation: pcsirSpin 12s linear infinite;
    pointer-events: none;
}

.pcsir-badge.pcsir-badge--floating {
    padding: 8px 18px;
    animation: pcsirPulse 2.8s ease-in-out infinite, pcsirFloat 6s ease-in-out infinite;
    backdrop-filter: blur(2px);
}

.pcsir-floating-badge-container {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 5;
}

@media (max-width: 576px) {
    .pcsir-floating-badge-container { 
        right: 8px; 
        left: 8px; 
        top: 12px; 
        display: flex; 
        justify-content: center; 
    }
    .pcsir-badge.pcsir-badge--floating { 
        transform-origin: center; 
    }
}

@keyframes pcsirPulse {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 193, 7, 0.35); }
    50% { transform: scale(1.02); box-shadow: 0 0 0 10px rgba(255, 193, 7, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 193, 7, 0); }
}

@keyframes pcsirShine {
    0% { left: -40%; }
    60% { left: 120%; }
    100% { left: 120%; }
}

@keyframes pcsirFloat {
    0% { transform: translateY(0); }
    50% { transform: translateY(6px); }
    100% { transform: translateY(0); }
}

@keyframes pcsirSpin {
    to { transform: rotate(360deg); }
}

/* Privacy Policy specific styles */
.privacy-header {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 3rem 0;
    margin-bottom: 2rem;
}

.privacy-content {
    max-width: 800px;
    margin: 0 auto;
}

.section-title {
    color: #495057;
    border-bottom: 2px solid #ffc107;
    padding-bottom: 0.5rem;
    margin-bottom: 1.5rem;
    margin-top: 2rem;
}

.contact-card {
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 10px;
    padding: 2rem;
    margin-top: 2rem;
}

.last-updated {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 5px;
    padding: 1rem;
    margin-bottom: 2rem;
    color: #856404;
}

/* Inline styles converted to classes */
.logo-navbar {
    width: 200px;
}

.logo-footer {
    width: 250px;
}

.hero-bg-slider-1 {
    background-image: url('../images/slider-1.png');
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    min-height: 600px;
    width: 100%;
}

.hero-bg-slider-3 {
    background-image: url('../images/slider-3.png');
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    min-height: 600px;
    width: 100%;
}

.hero-bg-p3 {
    background-image: url('../images/p3.jpg');
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    min-height: 600px;
    width: 100%;
}

#ws-home-vertical-slider {
    position: relative;
    overflow: hidden;
}

#ws-home-vertical-slider .container-fluid {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero-bg-product-detail {
    background-image: url('https://flyerboost.com/assets/media/product-detail-3-1751046546.jpeg');
    background-size: cover;
    background-position: center;
    height: 300px;
}

.position-sticky-top {
    position: sticky;
    top: 2rem;
}

.step-circle {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 50% !important;
}

.step-circle-large {
    width: 50px;
    height: 50px;
    min-width: 50px;
    min-height: 50px;
    border-radius: 50% !important;
    flex-shrink: 0;
}


.whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    text-decoration: none;
}

.whatsapp-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #25D366;
    border-radius: 50%;
    padding: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

.whatsapp-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.whatsapp-text {
    color: white;
    font-size: 12px;
    font-weight: bold;
    margin-top: 5px;
}

.message-textarea {
    height: 120px;
}