
/* Background Image Section */
.main-banner {
    width: 100%;
    min-height: 360px;
    background-image: url('img/2.jpg'); /* Aapki Background Image yahan aayegi */
    background-size: cover;
    background-position: center;
    background-color: #9ba7b5; /* Fallback color */
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-overlay {
    width: 100%;
    height: 100%;
    padding: 40px;
}

.content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap; /* Tablet/Mobile ke liye wrap karega */
}

/* Heading Styling */
.heading-area h1 {
    color: white;
    font-size: 4rem;
    line-height: 1;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.1);
}

/* Device Image Styling */
.device-image img {
    max-width: 320px;
    height: auto;
}

/* Bluetooth & Phone Area */
.connection-area {
    display: flex;
    align-items: center;
    gap: 30px;
}

.bluetooth-info {
    text-align: center;
    color: white;
}

.bt-circle {
    background: #0082fb;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

.bt-circle img {
    width: 40px;
}

.bluetooth-info p {
    font-size: 1.5rem;
    font-weight: bold;
}

.phone-hand img {
    max-width: 250px;
    height: auto;
}

/* --- RESPONSIVENESS --- */

/* Tablet View (992px) */
@media (max-width: 992px) {
    .content-wrapper {
        justify-content: center;
        gap: 50px;
    }
    .heading-area h1 {
        font-size: 3rem;
        text-align: center;
    }
}

/* Mobile View (600px) */
@media (max-width: 600px) {
    .content-wrapper {
        flex-direction: column; /* Vertical alignment */
        text-align: center;
    }
    .heading-area h1 {
        font-size: 2.5rem;
    }
    .connection-area {
        flex-direction: column;
        gap: 20px;
    }
    .device-image img {
        max-width: 200px;
    }
}
/* Pehla wala CSS yahan rahega... bas bt-circle ko update karein */

.bt-circle {
    background: #0082fb;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px auto;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

/* Icon ki styling */
.bt-circle i {
    color: white;
    font-size: 45px; /* Icon ka size */
}

.bluetooth-info p {
    color: white;
    font-size: 1.4rem;
    font-weight: bold;
    letter-spacing: 1px;
}

/* Responsive check for mobile */
@media (max-width: 600px) {
    .bt-circle {
        width: 60px;
        height: 60px;
    }
    .bt-circle i {
        font-size: 30px;
    }
}





/* Layout Styling */
.software-section {
    padding: 60px 20px;
    background-color: #fcfcfc;
    text-align: center;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.header-content h2 {
    font-size: 32px;
    margin-bottom: 15px;
    font-weight: bold;
}

.header-content p {
    font-size: 14px;
    color: #666;
    max-width: 800px;
    margin: 0 auto 50px;
    line-height: 1.6;
}

/* 3-Column Grid for Desktop */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Desktop: 3 columns */
    gap: 30px;
}

/* Card Styling */
.card-item {
    background: #ffffff;
    border: 1px solid #f0f0f0;
    padding: 30px 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: 0.3s ease;
}

.card-item:hover {
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.icon-top {
    width: 50px;
    margin-bottom: 15px;
}

.card-item h3 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 8px;
}

.desc {
    font-size: 13px;
    color: #888;
    height: 35px; /* Ensures alignment */
}

.qr-box img {
    width: 140px;
    margin: 20px 0;
}

.scan-text {
    font-size: 12px;
    color: #999;
    margin-bottom: 20px;
}

/* Yellow Outline Button */
.btn-yellow {
    border: 1.5px solid #ffb400;
    color: #ffb400;
    width: 100%;
    padding: 10px 5px;
    font-size: 11px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 15px;
}

/* Links Styling */
.links {
    width: 100%;
    text-align: left;
    padding-left: 10px;
}

.links a {
    display: block;
    text-decoration: none;
    color: #007bff;
    font-size: 14px;
    margin-bottom: 5px;
}

.check {
    color: #28a745;
    margin-right: 8px;
    font-weight: bold;
}

/* --- RESPONSIVE --- */

/* For Tablets (2 per row) */
@media (max-width: 992px) {
    .cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* For Mobile (1 per row) */
@media (max-width: 650px) {
    .cards-grid {
        grid-template-columns: 1fr;
    }
    .header-content h2 {
        font-size: 24px;
    }
}






/* PC Software Section Styling */
.pc-software-section {
    padding: 80px 0; /* Upar aur niche ki spacing */
    background-color: #ffffff;
    text-align: center;
}

.pc-content {
    max-width: 800px;
    margin: 0 auto;
}

/* Title Styling */
.pc-title {
    font-size: 36px;
    font-weight: 800; /* Extra Bold jaisa image mein hai */
    color: #1a2b3c;
    margin-bottom: 30px;
    font-family: 'Arial Black', sans-serif;
    text-transform: none; /* AI-6 Software... as it is */
}

/* Button Styling (Image Match) */
.pc-download-btn {
    background-color: #ffb400; /* Screenshot wala exact yellow */
    color: #000000;
    padding: 15px 50px;
    font-size: 14px;
    font-weight: bold;
    text-decoration: none;
    display: inline-block;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border-radius: 0; /* Square edges jaisa image mein hai */
}

.pc-download-btn:hover {
    background-color: #e6a200; /* Hover karne par thoda dark */
    color: #000;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* --- Responsive Settings --- */

/* Mobile View (Phone par font thoda chota ho jayega) */
@media (max-width: 600px) {
    .pc-software-section {
        padding: 50px 20px;
    }
    
    .pc-title {
        font-size: 24px;
        margin-bottom: 20px;
    }
    
    .pc-download-btn {
        padding: 12px 40px;
        width: 100%; /* Mobile par button full width ho sakta hai */
        max-width: 250px;
    }
}