/* ==========================================
   APNA TAXI SaaS - FINAL MASTER STYLESHEET
   ========================================== */
html, body {
    overflow-x: hidden !important; /* Page ko left-right khisakne se rokega */
    width: 100%;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Roboto', sans-serif;
    overflow-x: hidden;
}

/* Custom Colors */
.text-indigo { color: #3f51b5; }
.bg-indigo { background-color: #3f51b5; }

.btn-indigo {
    background-color: #3f51b5;
    color: white;
    transition: 0.3s;
}
.btn-indigo:hover {
    background-color: #2c397f;
    color: white;
}

/* Hero Section Gradient */
.hero-section {
    background: linear-gradient(180deg, #e8eaf6 0%, #ffffff 100%);
    padding: 80px 0;
}

/* Play Store Button Style */
.play-store-btn {
    background-color: black;
    color: white;
    padding: 10px 20px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    transition: 0.3s;
    margin-right: 10px;
    margin-bottom: 10px;
    border: 1px solid #333;
}
.play-store-btn:hover {
    background-color: #333;
    color: white;
    transform: translateY(-3px);
}

/* 15-Day Trial Badge */
.trial-badge {
    background: linear-gradient(90deg, #ff9800, #ff5722);
    color: white;
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: bold;
    display: inline-block;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(255, 87, 34, 0.4);
}

/* Feature Icons & Image Placeholders */
.feature-icon {
    color: #4caf50;
    font-size: 1.2rem;
    margin-right: 10px;
}

.placeholder-box {
    background-color: #f8f9fa;
    border: 2px dashed #ced4da;
    border-radius: 20px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6c757d;
    font-weight: bold;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 35px;
    width: 65px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    z-index: 1000;
}
.whatsapp-float:hover {
    background-color: #128c7e;
    color: white;
    transform: scale(1.1);
}

/* Feature Cards Hover Effect */
.feature-card {
    border-radius: 20px;
    transition: 0.3s;
}
.feature-card:hover {
    transform: translateY(-10px);
}

/* Pricing Cards Customization */
.pricing-card {
    transition: 0.3s;
}
.pricing-card:hover {
    transform: translateY(-10px);
}

/* Outline Button styling for pricing */
.btn-outline-indigo {
    color: #3f51b5;
    border: 2px solid #3f51b5;
    background-color: transparent;
    transition: 0.3s;
}
.btn-outline-indigo:hover {
    background-color: #3f51b5;
    color: white;
}

/* Accordion (FAQ) Customization */
.accordion-button:not(.collapsed) {
    color: #3f51b5;
    background-color: #f8f9fa;
    box-shadow: none;
}
.accordion-button:focus {
    box-shadow: none;
    border-color: rgba(0,0,0,.125);
}
/* Premium Breaking News Flash Effect */
.logo-shine-container {
    position: relative;
    display: inline-block;
    overflow: hidden;
    border-radius: 5px; /* Thoda smooth look ke liye */
}

.logo-shine-container::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 70%; /* Flash ko aur chauda kiya hai */
    height: 100%;
    /* Ekdum bright solid white flash jaisa news channels me hota hai */
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.95) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: skewX(-30deg); /* Flash ko aur sharp tircha kiya hai */
    /* 4 second ka total time: 1.5 sec me flash karega, baki time wait karega */
    animation: news-flash 4s infinite ease-in-out;
    z-index: 2;
}

@keyframes news-flash {
    0% { left: -150%; }
    35% { left: 150%; } /* Dheere se flash guzrega */
    100% { left: 150%; } /* Phir thodi der rukega taaki ajeeb na lage */
}
/* Mobile ke liye logo ko thoda aur left khiskane ka jugaad */
@media (max-width: 991px) {
    .navbar-brand.logo-shine-container {
        margin-left: -5px; /* Ise -10px ya -15px karke dekh lijiye jo perfect lage */
    }
}
/* Floating WhatsApp Button (Bottom Left) */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    left: 30px; /* User ki demand ke hisaab se Left side */
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 35px;
    box-shadow: 2px 2px 15px rgba(0,0,0,0.2);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    animation: pulse-green 2s infinite; /* Chamakta hua animation */
}

.whatsapp-float:hover {
    background-color: #128c7e;
    color: white;
    transform: scale(1.1);
}

/* WhatsApp ka dhadkane wala effect */
@keyframes pulse-green {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* Mobile par icon thoda chhota ho jata hai taaki screen na roke */
@media (max-width: 767px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        left: 20px;
        font-size: 30px;
    }
}
@media (max-width: 450px) {
    /* Logo ko mobile par thoda chota karna */
    .navbar-brand img {
        height: 40px !important; /* 50px se 40px kar diya */
        width: auto;
    }

    /* Main Heading (H1) ko choti screen ke hisaab se adjust karna */
    .hero-section h1 {
        font-size: 2.5rem !important; /* Font size thoda kam kiya */
        word-wrap: break-word; /* Agar shabd lamba ho toh tod dega */
    }

    /* WhatsApp button ko thoda side se chipkana taaki space bache */
    .whatsapp-float {
        left: 15px;
        bottom: 15px;
    }
}
/* Responsive Image Fix for Mobile */
.img-fluid,
.hero-section img {
    max-width: 100% !important;
    height: auto !important; /* Image ko chipta hone se rokega */
    object-fit: contain; /* Aspect ratio maintain karega */
    image-rendering: high-quality; /* Browser ko best quality dikhane ka command */
    image-rendering: -webkit-optimize-contrast; /* Text ko sharp rakhne ke liye */
}