/* File: pos/style.css 
   Description: Responsive Corporate Landing Page Styles
*/

/* --- Google Sans Custom Font --- */
/* Font path adjusted for pos/style.css location */
@font-face {
    font-family: 'Google Sans';
    src: url('Fonts/Google Sans.ttf') format('truetype'); 
    font-weight: normal;
}
@font-face {
    font-family: 'Google Sans';
    src: url('Fonts/Google Sans Bold.ttf') format('truetype');
    font-weight: bold;
}
@font-face {
    font-family: 'Google Sans';
    src: url('Fonts/Google Sans Medium.ttf') format('truetype');
    font-weight: 500;
}

:root {
    --primary-color: #3498db;      
    --secondary-color: #2C3E50;    
    --accent-color: #f39c12;       
    --light-bg: #f8f9fa;
    --text-color: #333;
    --text-light: #666;
    --white: #ffffff;
    --transition: all 0.3s ease;
    --container-width: 1200px;
}


/* বেসিক রিসেট */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: #f4f4f4;
}

li {
    list-style: none;
}

a {
    text-decoration: none;
}

/* --- Header Design --- */
.header {
    background-color: #ffffff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    position: fixed; /* হেডার ফিক্সড রাখা হয়েছে */
    width: 100%;
    top: 0;
    z-index: 1000;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%; /* ডানে বামে স্পেস */
    min-height: 70px;
}

/* Logo Styles */
.logo-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* বামে এলাইন */
    color: #000;
    cursor: pointer;
}

.logo-text {
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 1px;
    line-height: 1;
    position: relative;
}

.check-mark {
    color: #000;
    font-size: 16px;
    position: absolute;
    top: -5px;
    right: -15px; 
}

.logo-sub {
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 2px;
    margin-top: 2px;
    text-transform: uppercase;
}

/* Menu Styles */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px; /* মেনু আইটেমের মাঝখানের গ্যাপ */
}

.nav-link {
    font-size: 16px;
    font-weight: 500;
    color: #333;
    transition: 0.3s ease;
}

.nav-link:hover {
    color: #ffc107; /* হোভার কালার */
}

/* Login Button Style */
.login-btn {
    padding: 8px 20px;
    background-color: #000; /* কালো ব্যাকগ্রাউন্ড */
    color: #fff;
    border-radius: 4px;
    font-weight: 600;
    font-size: 14px;
    transition: 0.3s;
}

.login-btn:hover {
    background-color: #ffc107; /* হলুদ ব্যাকগ্রাউন্ড */
    color: #000;
}

/* Hamburger Menu (Mobile Only) */
.hamburger {
    display: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    transition: all 0.3s ease-in-out;
    background-color: #333;
}

/* --- Hero Section Design --- */
.hero {
    position: relative;
    height: 100vh; /* ফুল স্ক্রিন */
    width: 100%;
    /* টাইপিং ব্যাকগ্রাউন্ড ইমেজ */
    background-image: url('https://images.unsplash.com/photo-1587614382346-4ec70e388b28?q=80&w=2070&auto=format&fit=crop'); 
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    margin-top: 0; 
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
    margin-top: 50px; /* হেডারের জন্য একটু নিচে নামানো */
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 16px;
    color: #e0e0e0;
    margin-bottom: 40px;
    line-height: 1.6;
    font-weight: 300;
}

.cta-button {
    text-decoration: none;
    background-color: #ffc107;
    color: #000000;
    padding: 12px 35px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    transition: background 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.cta-button:hover {
    background-color: #e0a800;
}

/* --- Responsive Design (Mobile) --- */
@media (max-width: 768px) {
    .hamburger {
        display: block; /* হ্যামবার্গার দৃশ্যমান হবে */
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px; /* হেডারের নিচে */
        gap: 0;
        flex-direction: column;
        background-color: #fff;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 10px rgba(0,0,0,0.1);
    }

    .nav-item {
        margin: 16px 0;
    }

    .nav-menu.active {
        left: 0; /* মেনু স্লাইড হয়ে আসবে */
    }

    /* হিরো সেকশন ফন্ট সাইজ অ্যাডজাস্টমেন্ট */
    .hero-content h1 {
        font-size: 32px;
    }
    
    .hero-content p {
        font-size: 14px;
    }
}



/* ... আপনার আগের সব CSS কোড ... */

/* ================= Services Section Design ================= */
.services-section {
    padding: 60px 20px; /* উপরে-নিচে এবং ডানে-বামে স্পেস */
    background-color: #f8f9fa; /* হালকা ধূসর ব্যাকগ্রাউন্ড, ইমেজের সাথে মিলিয়ে */
    text-align: center;
}

/* সেকশন হেডার (টাইটেল এবং সাব-টাইটেল) */
.section-header {
    max-width: 800px;
    margin: 0 auto 40px auto; /* মাঝখানে রাখা এবং নিচে গ্যাপ দেওয়া */
}

.section-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: #000;
    margin-bottom: 15px;
}

.section-header p {
    font-size: 14px;
    color: #666; /* কিছুটা হালকা রঙের টেক্সট */
    line-height: 1.6;
}

/* সার্ভিস গ্রিড লেআউট */
.services-grid {
    display: grid;
    /* ডেক্সটপে ৪টি কলাম */
    grid-template-columns: repeat(4, 1fr); 
    gap: 15px; /* আইটেমগুলোর মাঝখানের ফাঁকা */
    max-width: 1100px; /* গ্রিডের সর্বোচ্চ চওড়া */
    margin: 0 auto; /* মাঝখানে রাখা */
}

/* প্রতিটি সার্ভিস আইটেমের ডিজাইন */
.service-item {
    background-color: #e9ecef; 
    padding: 15px 10px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    /* ডিফল্ট অবস্থায় হালকা শ্যাডো */
    box-shadow: 0 2px 4px rgba(0,0,0,0.05); 
    
    /* শুধুমাত্র শ্যাডো স্মুথভাবে আসার জন্য ট্রানজিশন রাখা হলো, বক্স নড়বে না */
    transition: box-shadow 0.3s ease; 
    
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    cursor: pointer;
    position: relative;
    z-index: 1;
}

/* --- হোভার ইফেক্ট (শুধুমাত্র শ্যাডো, কোনো মুভমেন্ট নেই) --- */
.service-item:hover {
    /* বক্স উপরে উঠবে না (transform বাদ দেওয়া হয়েছে) */
    transform: none; 

    /* ব্যাকগ্রাউন্ড সাদা (অপশনাল, চাইলে বাদ দিতে পারেন) */
    background-color: #ffffff;

    /* ইমেজের মতো নিচে হলুদ গ্লোয়িং শ্যাডো */
    box-shadow: 0 10px 20px -5px rgba(255, 193, 7, 0.6); 
}

/* ================= Responsive Design for Services ================= */

/* ট্যাবলেট বা ছোট ল্যাপটপের জন্য (৩ কলাম) */
@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .section-header h2 {
        font-size: 32px;
    }
}

/* বড় মোবাইলের জন্য (২ কলাম) */
@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .section-header h2 {
        font-size: 28px;
    }
    .section-header p {
        font-size: 13px;
    }
}

/* ছোট মোবাইলের জন্য (১ কলাম - যাতে লেখা ভেঙে না যায়) */
@media (max-width: 480px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}


/* ================= Clients Section Design ================= */
.clients-section {
    padding: 60px 0;
    background-color: #ffffff;
    text-align: center;
}

.client-header {
    margin-bottom: 40px;
}

.client-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: #343a40;
    margin-bottom: 10px;
}

.client-header p {
    font-size: 12px;
    font-weight: 600;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* --- Carousel Wrapper --- */
.carousel-wrapper {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
    padding: 20px 0;
}

/* --- Track --- */
.carousel-track {
    display: flex;
    width: 100%;
}

/* --- Individual Logo Card --- */
.card {
    /* ৫টি লোগো দেখানোর ক্যালকুলেশন: 100% / 5 = 20% */
    flex: 0 0 20%; 
    max-width: 20%;
    padding: 0 20px; /* লোগোগুলোর মাঝে গ্যাপ একটু বাড়ালাম */
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
}

.card img {
    max-width: 100%;
    height: auto;
    max-height: 80px; /* লোগো একটু বড় করা হয়েছে */
    
    /* আগে এখানে grayscale ছিল, এখন বাদ দেওয়া হয়েছে */
    filter: none; 
    opacity: 1; /* পুরোপুরি দৃশ্যমান */
    
    transition: transform 0.3s ease;
    cursor: pointer;
    object-fit: contain;
}

/* হোভার করলে একটু জুম হবে */
.card img:hover {
    transform: scale(1.1);
}

/* --- Responsive (Mobile & Tablet) --- */

/* ট্যাবলেট (৩টি লোগো দেখাবে) */
@media (max-width: 992px) {
    .card {
        flex: 0 0 33.3333%; 
        max-width: 33.3333%;
    }
}

/* মোবাইল (২টি লোগো দেখাবে) */
@media (max-width: 600px) {
    .card {
        flex: 0 0 50%; 
        max-width: 50%;
    }
    
    .client-header h2 {
        font-size: 28px;
    }
}




/* ================= Contact Section Design ================= */
.contact-section {
    padding: 60px 0;
    background-color: #f4f6f8; /* হালকা ব্যাকগ্রাউন্ড */
}

.contact-header {
    text-align: center;
    margin-bottom: 50px;
}

.contact-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: #2c3e50; /* গাঢ় নীল/কালো */
}

/* --- Layout Container --- */
.contact-container {
    display: flex;
    justify-content: center;
    gap: 50px; /* দুই কলামের মাঝে ফাঁকা */
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
    align-items: flex-start; /* উপর থেকে এলাইন */
}

/* --- Left Side: Info & Map --- */
.contact-info {
    flex: 1; /* অর্ধেক জায়গা নেবে */
    max-width: 450px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.info-item .icon {
    font-size: 20px;
    color: #000; /* আইকন কালো */
    width: 30px;
    margin-top: 5px; /* টেক্সটের সাথে মিলানোর জন্য */
}

.info-item .details p {
    font-size: 15px;
    color: #333;
    font-weight: 500;
    line-height: 1.6;
}

.map-container {
    margin-top: 30px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* --- Right Side: Contact Form --- */
.contact-form {
    flex: 1; /* বাকি অর্ধেক জায়গা নেবে */
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05); /* সফট শ্যাডো */
    max-width: 500px;
}

.contact-form h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #000;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 14px;
    color: #333;
}

.form-group input, 
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    color: #555;
    outline: none;
    transition: border 0.3s;
}

.form-group input:focus, 
.form-group textarea:focus {
    border-color: #ffc107; /* ফোকাস করলে হলুদ বর্ডার */
}

.form-group textarea {
    height: 120px;
    resize: none; /* রিসাইজ বন্ধ */
}

/* Send Button */
.send-btn {
    background-color: #f39c12; /* ইমেজের মতো কমলা-হলুদ */
    color: white;
    border: none;
    padding: 12px 30px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 5px;
    cursor: pointer;
    float: right; /* ডান দিকে বাটন */
    transition: background 0.3s;
    text-transform: uppercase;
}

.send-btn:hover {
    background-color: #e67e22; /* হোভার কালার */
}

/* ক্লিপিং ফিক্স (ফ্লোট ব্যবহার করায় হাইট ঠিক রাখা) */
.contact-form form::after {
    content: "";
    display: block;
    clear: both;
}

/* --- Responsive Design --- */
@media (max-width: 768px) {
    .contact-container {
        flex-direction: column; /* মোবাইলে নিচে নিচে আসবে */
        gap: 40px;
    }
    
    .contact-info, .contact-form {
        width: 100%;
        max-width: 100%;
    }
    
    .map-container iframe {
        height: 200px; /* মোবাইলে ম্যাপ ছোট */
    }
}




/* ================= Footer Section Design ================= */
.footer {
    background-color: #0e1b36; /* ইমেজের মতো গাঢ় নীল রং */
    color: #ffffff;
    padding-top: 60px;
    padding-bottom: 20px;
    font-size: 14px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between; /* কলামগুলোর মাঝে সমান দূরত্ব */
    flex-wrap: wrap; /* ছোট স্ক্রিনে নিচে নিচে আসবে */
    gap: 30px;
}

.footer-col {
    flex: 1; /* সবাই সমান জায়গা পাবে */
    min-width: 200px;
}

/* Footer Logo Styling */
.footer-logo {
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 1px;
    line-height: 1;
    color: #fff;
    margin-top: 10px; /* লোগোকে একটু নিচে নামানোর জন্য */
}

.footer-logo .check-mark {
    color: #fff;
    font-size: 20px;
    margin: 0 2px;
}

.footer-logo .logo-sub {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-top: 5px;
    text-align: center; /* TYPING লেখাটি মাঝখানে */
}

/* Headings */
.footer-col h3 {
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 600;
    position: relative;
}

/* Links List Styling */
.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #b0b8c6; /* হালকা ধূসর টেক্সট */
    text-decoration: none;
    transition: 0.3s;
    display: inline-block;
}

.footer-links a:hover {
    color: #ffc107; /* হোভার করলে হলুদ */
    padding-left: 5px; /* একটু ডানে সরবে */
}

/* Contact Info Styling */
.contact-col p {
    color: #b0b8c6;
    margin-bottom: 8px;
    line-height: 1.6;
}

/* Bottom Copyright Bar */
.footer-bottom {
    text-align: center;
    margin-top: 50px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    color: #7d879c;
    font-size: 13px;
}

/* --- Responsive Footer --- */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column; /* মোবাইলে এক কলাম হবে */
        text-align: left; /* সব বামে এলাইন */
    }

    .footer-col {
        margin-bottom: 20px;
    }
    
    .logo-col {
        text-align: left; /* লোগো বামে থাকবে */
    }
    
    .footer-logo .logo-sub {
        text-align: left; /* TYPING লেখা বামে */
    }
}








/* =========================================
   LOGIN PAGE STYLES
   ========================================= */

.login-page {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f0f2f5;
    font-family: 'Google Sans', sans-serif;
    margin: 0;
    overflow: hidden;
}

.login-container {
    display: flex;
    width: 900px;
    height: 550px;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    overflow: hidden;
}

/* Left Side (Info) */
.login-info {
    flex: 1;
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.9), rgba(52, 152, 219, 0.8)), url('https://images.unsplash.com/photo-1497215728101-856f4ea42174?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80') center/cover;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    position: relative;
    display: none; /* Hidden on mobile initially */
}

@media (min-width: 768px) {
    .login-info { display: flex; }
}

.info-content {
    text-align: center;
    z-index: 2;
}

.info-content h2 { font-size: 2.5rem; margin-bottom: 15px; }
.info-content p { font-size: 1rem; margin-bottom: 30px; opacity: 0.9; }

.btn-back {
    display: inline-block;
    padding: 10px 25px;
    border: 2px solid var(--white);
    color: var(--white);
    text-decoration: none;
    border-radius: 30px;
    font-weight: 500;
    transition: 0.3s;
}
.btn-back:hover { background: var(--white); color: var(--secondary-color); }

/* Right Side (Form) */
.login-form-wrapper {
    flex: 1.2;
    padding: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-form-box { width: 100%; max-width: 350px; }

.login-logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.login-form-box h3 {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 30px;
}

.input-group { margin-bottom: 20px; }
.input-group label { display: block; margin-bottom: 8px; font-weight: 500; font-size: 0.9rem; color: #555; }

.input-field {
    position: relative;
    display: flex;
    align-items: center;
}

.input-field i {
    position: absolute;
    left: 15px;
    color: #999;
}

.input-field input, .input-field select {
    width: 100%;
    padding: 12px 15px 12px 45px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 0.95rem;
    transition: 0.3s;
    outline: none;
    background-color: #f9f9f9;
}

.input-field select { -webkit-appearance: none; -moz-appearance: none; appearance: none; cursor: pointer; }

.input-field input:focus, .input-field select:focus {
    border-color: var(--primary-color);
    background-color: var(--white);
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

.toggle-password {
    left: auto !important;
    right: 15px;
    cursor: pointer;
    transition: 0.3s;
}
.toggle-password:hover { color: var(--primary-color); }

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    font-size: 0.9rem;
}

.forgot-password { color: var(--primary-color); text-decoration: none; font-weight: 500; }
.forgot-password:hover { text-decoration: underline; }

.btn-login-submit {
    width: 100%;
    padding: 14px;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}
.btn-login-submit:hover { background: #2980b9; box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3); }

.login-footer {
    margin-top: 25px;
    text-align: center;
    font-size: 0.9rem;
    color: #777;
}
.login-footer a { color: var(--primary-color); text-decoration: none; font-weight: 600; }

/* Mobile Responsive */
@media (max-width: 768px) {
    .login-container { width: 100%; height: 100%; border-radius: 0; box-shadow: none; }
    .login-form-wrapper { padding: 30px; }
}