/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #fff;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
header {
    padding: 20px 0;
    border-bottom: 1px solid #eee;
	background-color: #fff; /* মেনুর ব্যাকগ্রাউন্ড সাদা থাকবে */
    padding: 15px 0;
    border-bottom: 1px solid #eee;
    
    /* মেনু বার ফিক্সড বা স্টিকি করার জন্য নিচের অংশটুকু জরুরি */
    position: sticky;       /* স্ক্রল করলে আটকে থাকবে */
    top: 0;                /* একদম উপরে আটকে থাকবে */
    z-index: 1000;         /* স্লাইডার বা অন্য কিছুর নিচে যেন মেনু চাপা না পড়ে */
    width: 100%;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1); /* মেনু আটকে থাকলে হালকা শ্যাডো আসবে */
}

/* Navigation-এর এই অংশটুকু আপডেট করুন */
nav {
    display: flex;
    justify-content: flex-start; /* মেনুগুলোকে বাম দিক থেকে শুরু করবে */
    align-items: right;
    gap: 450px; /* লোগো এবং মেনুর মাঝখানে কতটুকু ফাঁকা থাকবে তা এখান থেকে নিয়ন্ত্রণ করুন */
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 25px; /* প্রতিটি লিংকের (Home, About) মাঝখানের গ্যাপ */
    align-items: center;
    margin: 0; 
    padding: 0;
}
.logo {
    margin-right: 70px;
	/* লোগোর ঠিক পরেই মেনু শুরু হবে */
}

/* যদি লোগো এবং মেনুর মাঝখানে অনেক বেশি জায়গা চান তবে margin-right ব্যবহার করতে পারেন */
.logo {
    margin-right: 20px; /* লোগোর ঠিক পরেই মেনু শুরু হবে */
}

 




/* Navigation <!-- Write your comments here
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
} -->  

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: bold;
    color: #555;
} */
/*
.nav-links {
    list-style: none;
    display: flex;
    gap: 25px;
    align-items: center;
}
*/
.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 14px;
}

.nav-links a.active {
    color: #000;
    border-bottom: 2px solid #ff4d4d;
}

.contact-link {
    color: #ff4d4d !important;
}

/* Sections Styling */
section {
    padding: 60px 0;
    text-align: center;
}

h3 {
    font-size: 24px;
    margin-bottom: 20px;
}

.who-we-are p {
    max-width: 800px;
    margin: 0 auto;
    color: #666;
}

/* Split Layout: 40% Text and 60% Image */
.info-split {
    display: flex;
    align-items: center; /* লেখা এবং ইমেজকে লম্বালম্বিভাবে মাঝখানে রাখবে */
    justify-content: space-between;
    gap: 40px; /* লেখা এবং ইমেজের মাঝখানের দূরত্ব */
    padding: 50px 0;
}

.split-text {
    flex: 10 0 35%;
	margin-left: 5%;	/* একদম নির্দিষ্ট ৪০% জায়গা নিবে */
    text-align: Left;
    font-size: 16px;
    line-height: 1.8;
    color: #444;
}

.split-image {
    flex: 0 0 60%; /* একদম নির্দিষ্ট ৬০% জায়গা নিবে */
}

.split-image img {
    width: 70%;    /* ডিভ-এর পুরো জায়গা জুড়ে থাকবে */
    height: 350px;;
    border-radius: 10px; /* হালকা রাউন্ডেড কোণা (ঐচ্ছিক) */
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* মোবাইল ভিউর জন্য রেসপনসিভ করা */
@media (max-width: 768px) {
    .info-split {
        flex-direction: column; /* মোবাইলে একটির নিচে আরেকটি আসবে */
    }
    .split-text, .split-image {
        flex: 0 0 80%; /* মোবাইলে পুরো জায়গা নিবে */
        text-align: center;
    }
}


/* Image Gallery */
.gallery-grid {
    display: grid;
	grid-template-columns: repeat(3, 1fr);
    /*grid-template-columns: 1fr 1fr; */
    gap: 20px;
    margin-top: 20px;
	
}

.gallery-grid img {
    width: 100%;
	height: 250px; /* সব ছবি সমান উচ্চতার করার জন্য */
    object-fit: cover; /* ইমেজ চ্যাপ্টা না হয়ে সুন্দরভাবে ফিট হবে */
	border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
	transition: 0.3s;
}


/* মাউস নিলে হালকা জুম ইফেক্ট (ঐচ্ছিক) */
.gallery-grid img:hover {
    transform: scale(1.05);
}

/* মোবাইল ভিউর জন্য রেসপনসিভ (ট্যাবলেটে ২ কলাম, মোবাইলে ১ কলাম) */
@media (max-width: 992px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}






/* Features Section */
.features .subtitle {
    margin-bottom: 40px;
    font-weight: 600;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}


.feature-item span img {
    width: 150px;      /* আপনার পছন্দমতো সাইজ দিন */
    height: 100px;     /* সমান সাইজ রাখলে সুন্দর দেখাবে */
    object-fit: contain; /* ইমেজ যেন চ্যাপ্টা না হয় */
    margin-bottom: 10px; /* নিচের টেক্সট থেকে একটু গ্যাপ */
}

/* স্প্যান ট্যাগটিকে ঠিক করার জন্য */
.feature-item span {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50px; /* আইকনের জন্য নির্দিষ্ট উচ্চতা */
}


.feature-item {
    background: #f9f9f9;
    padding: 30px 10px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 500;
    transition: 0.3s;
}

.feature-item span {
    display: block;
    font-size: 30px;
    margin-bottom: 10px;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-links { display: none; } /* Mobile এ মেনু হাইড করার জন্য */
    .gallery-grid, .features-grid {
        grid-template-columns: 1fr;
    }
}

/* About Page Specific Styles */
.main-title {
    font-size: 40px;
    color: #cc3333; /* ইমেজের লাল রঙের সাথে মিল রেখে */
    margin-bottom: 30px;
    font-weight: 700;
}

.content-box {
    text-align: left;
    max-width: 900px;
    margin: 0 auto 50px auto;
    font-size: 15px;
    color: #444;
    line-height: 1.8;
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 40px;
}

.info-card {
    background: #f4f7ff;
    padding: 40px;
    border-radius: 15px;
    text-align: left;
    transition: 0.3s;
    border-left: 5px solid #cc3333;
}

.info-card h3 {
    color: #1a2a6c;
    font-size: 20px;
    margin-bottom: 15px;
    text-align: left;
}

.info-card p {
    color: #555;
    font-size: 15px;
}

.full-width {
    grid-column: span 2;
    background: #fff0f0;
}

.info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

footer {
    padding: 40px 0;
    border-top: 1px solid #eee;
    margin-top: 50px;
    text-align: center;
    color: #888;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .mission-vision-grid {
        grid-template-columns: 1fr;
    }
    .full-width {
        grid-column: span 1;
    }
    .main-title {
        font-size: 36px;
    }
}
/* MVV Section Styling */
.mvv-section {
    display: flex;
    flex-direction: column; /* একটির নিচে আরেকটি রাখার জন্য */
    align-items: center;    /* সেন্টারে আনার জন্য */
    gap: 40px;
    padding: 60px 20px;
}

.mvv-card {
    position: relative;
    background: #f8faff; /* হালকা নীলচে ব্যাকগ্রাউন্ড - ইমেজ অনুযায়ী */
    padding: 40px;
    width: 100%;
    max-width: 800px; /* কার্ডের প্রশস্ততা নিয়ন্ত্রণ */
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    text-align: center;
}

/* বাম পাশের লাল বর্ডার ডিজাইন (ইমেজ অনুযায়ী) */
.card-border {
    position: absolute;
    left: 0;
    top: 15%;
    height: 70%;
    width: 6px;
    background-color: #cc3333; /* লাল বর্ডার */
    border-radius: 0 5px 5px 0;
}

.mvv-card h3 {
    color: #1a2a6c; /* নেভি ব্লু টাইটেল */
    font-size: 28px;
    margin-bottom: 20px;
    font-weight: 700;
}

.mvv-card p {
    color: #555;
    font-size: 15px;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
}

/* হোভার ইফেক্ট */
.mvv-card:hover {
    transform: scale(1.02);
    transition: 0.3s ease;
}

<body class="contact-page-body light-theme">
    ```



/* Contact Page Light Theme */
.light-theme {
    background-color: #ffffff; /* ব্যাকগ্রাউন্ড সাদা */
    color: #000000;            /* সব লেখা কালো */
}

.contact-container {
    padding: 60px 0;
}

.contact-header {
    text-align: center;
    font-size: 32px;
    letter-spacing: 2px;
    margin-bottom: 50px;
    color: #333;
}

.contact-header span {
    color: #ff3333; /* 'C' অক্ষরটি লালই থাকবে */
}

.contact-content {
    display: flex;
    justify-content: space-between;
    gap: 50px;
    align-items: flex-start;
}

/* Left Side Info */
.contact-info h1 {
    font-size: 40px;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.info-item i {
    color: #ff3333; /* আইকন লাল */
    font-size: 20px;
}

.info-item p {
    font-size: 16px;
    color: #333; /* ইনফো টেক্সট কালো/ধূসর */
    line-height: 1.5;
}

/* Form Styles - Light Version */
.contact-form {
    flex: 1;
    max-width: 500px;
}

.contact-form input, 
.contact-form textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 15px;
    background: #f4f4f4; /* হালকা ধূসর ইনপুট ব্যাকগ্রাউন্ড */
    border: 1px solid #ddd;
    border-radius: 25px;
    color: #000; /* ইনপুট টেক্সট কালো */
    outline: none;
}

.contact-form input::placeholder, 
.contact-form textarea::placeholder {
    color: #888;
}

.send-btn {
    background: #ff3333;
    color: #fff;
    padding: 12px 35px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-weight: bold;
    float: left;
    transition: 0.3s;
}

.send-btn:hover {
    background: #cc0000;
}

/* Light Footer */
.dark-footer {
    background: #f9f9f9; /* ফুটার হালকা ধূসর */
    padding: 40px 0;
    text-align: center;
    border-top: 1px solid #eee;
    margin-top: 50px;
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: #ddd; /* আইকন ব্যাকগ্রাউন্ড হালকা */
    color: #333;      /* আইকন কালো */
    line-height: 40px;
    border-radius: 50%;
    margin: 0 10px;
    transition: 0.3s;
}

.social-links a:hover {
    background: #ff3333;
    color: #fff;
}

.dark-footer p {
    font-size: 12px;
    color: #888;
}


/* Hero Slider Section - সুনির্দিষ্ট ফিক্স */
.hero-slider {
    position: relative;
    width: 100%;
    height: 60vh; /* স্ক্রিনের ৮০% উচ্চতা  */
    min-height: 300px; /* ছোট স্ক্রিনেও যেন খুব ছোট না হয় */
    overflow: hidden;
    background-color: #000;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none; /* ডিফল্ট হাইড */
    align-items: center;
    justify-content: center;
    text-align: center;
    background-size: cover !important; /* ইমেজ পুরোটা জুড়ে থাকবে */
    background-position: center center !important;
    background-repeat: no-repeat;
}

.slide.active {
    display: flex;
    flex-direction: column;
    animation: fadeEffect 1s ease-in-out;
}

/* স্লাইড ইমেজ লিঙ্কিং */
.slide-1 {
    background-image: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('images/slider1.jpg');
}

.slide-2 {
    background-image: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('images/slider2.jpg');
}

/* স্লাইড ৩ এর জন্য ইমেজ */
.slide-3 {
    background-image: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('images/slider3.jpg');
}

.slide-content h1 {
    color: white;
    font-size: clamp(24px, 5vw, 50px); /* রেসপনসিভ টেক্সট সাইজ */
    text-shadow: 2px 2px 10px rgba(0,0,0,0.7);
    margin-bottom: 20px;
    padding: 0 15%;
}

/* Who We Are Split Section */
.info-split {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 80px 0;
	/* flex-direction: row-reverse; এটি ইমেজকে বামে এবং লেখাকে ডানে পাঠিয়ে দিবে */
}

.split-text {
    flex: 0 0 30%;
    margin-left: 5%; /* আপনার চাহিদা মতো ১০% বামে ফাঁকা */
    text-align: center;
}

.split-image {
    flex: 0 0 70%;
	padding: 20px;
	
}

.split-image img {
    width: 60%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* Slider Buttons */
.prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.4);
    color: white;
    border: none;
    padding: 15px;
    cursor: pointer;
    z-index: 100;
    border-radius: 50%;
}

.prev { left: 20px; }
.next { right: 20px; }

@keyframes fadeEffect {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    nav { gap: 20px; }
    .nav-links { display: none; }
    .info-split { flex-direction: column; }
    .split-text { margin-left: 0; padding: 20px; text-align: center; }
}






:root {
    --red: #ff3333;
    --dark: #121212;
    --gray: #1f1f1f;
    --text-gray: #b0b0b0;
}

body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background-color: #fcfcfc;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Style */
.services-hero {
    background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)), url('images/hero-bg.jpg'); /* আপনার স্লাইডার ইমেজের সাথে মিল রেখে */
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    text-align: center;
    color: white;
}

.main-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 3.5rem;
    margin: 0;
    text-transform: uppercase;
}

.main-title span { color: var(--red); }

.subtitle {
    font-size: 1.2rem;
    color: var(--red);
    letter-spacing: 3px;
    margin-top: 10px;
}

/* Innovation Cards */
.innovation-section {
    margin-top: -60px; /* কার্ডগুলোকে হিরো সেকশনের ওপরে তুলে দেওয়া */
}

.innovation-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.inn-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    text-align: center;
    transition: 0.3s;
}

.inn-card:hover { transform: translateY(-10px); }

.inn-icon {
    font-size: 40px;
    color: var(--red);
    margin-bottom: 20px;
}

.inn-card h3 { margin-bottom: 15px; font-size: 1.2rem; }
.inn-card p { font-size: 0.95rem; color: #666; line-height: 1.6; }

/* Main Services Grid */
.services-grid-section { padding: 80px 0; }
.section-heading {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    position: relative;
}

.section-heading::after {
    content: '';
    width: 60px;
    height: 4px;
    background: var(--red);
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
}

.services-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.s-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: 0.3s;
    border: 1px solid #eee;
}

.s-card:hover { box-shadow: 0 15px 40px rgba(255, 51, 51, 0.1); border-color: var(--red); }

.s-img-placeholder {
    background: #f8f8f8;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 50px;
    color: #ddd;
    transition: 0.3s;
}

.s-card:hover .s-img-placeholder { background: var(--red); color: white; }

.s-info { padding: 25px; }
.s-info h3 { font-size: 1.1rem; margin-bottom: 12px; }
.s-info p { font-size: 0.9rem; color: #777; line-height: 1.6; }

/* Stats Dark Section */
.stats-dark {
    background: var(--dark);
    padding: 60px 0;
    color: white;
}

.stats-flex {
    display: flex;
    justify-content: space-around;
    text-align: center;
}

.stat-num {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: var(--red);
}

/* Responsive */
@media (max-width: 992px) {
    .innovation-grid, .services-container { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
    .innovation-grid, .services-container { grid-template-columns: 1fr; }
    .main-title { font-size: 2.2rem; }
    .stats-flex { flex-direction: column; gap: 40px; }
}




/* Portfolio Hero */
.portfolio-hero {
    background: #1a1a1a;
    padding: 60px 0;
    text-align: center;
    color: white;
}

.portfolio-hero h1 span {
    color: #ff3333;
}

.portfolio-hero p {
    color: #aaa;
    margin-top: 10px;
}

/* Portfolio Grid System */
.portfolio-section {
    padding: 60px 0;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* এক সারিতে ৩টি ছবি */
    gap: 20px;
}

.portfolio-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    height: 300px;
    box-shadow: 0 5px 15px rgba(255, 51, 51, 0.2); /* স্থায়ী হালকা লাল শ্যাডো */
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

/* Hover Overlay */
.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 51, 51, 0.85); /* মাউস নিলে লাল ওভারলে */
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-item:hover img {
    transform: scale(1.1); /* মাউস নিলে ছবি হালকা জুম হবে */
}

.overlay-text {
    text-align: center;
    color: white;
    padding: 20px;
}

.overlay-text h3 {
    font-size: 20px;
    margin-bottom: 5px;
}

.overlay-text p {
    font-size: 14px;
    font-weight: 300;
}

/* Responsive Grid */
@media (max-width: 992px) {
    .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
    .portfolio-grid { grid-template-columns: 1fr; }
}

--------------------------

/* Portfolio Hero */
.portfolio-hero {
    background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)), url('images/portfolio-bg.jpg');
    background-size: cover;
    padding: 80px 0;
    text-align: center;
    color: white;
}

.portfolio-hero h1 span { color: #ff3333; }

/* Filter Buttons */
.portfolio-filter {
    text-align: center;
    margin: 40px auto;
}

.filter-btn {
    padding: 10px 25px;
    margin: 5px;
    border: 2px solid #ff3333;
    background: transparent;
    color: #333;
    cursor: pointer;
    font-weight: 600;
    border-radius: 30px;
    transition: 0.3s;
}

.filter-btn.active, .filter-btn:hover {
    background: #ff3333;
    color: white;
}

/* Portfolio Grid */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    padding-bottom: 60px;
}

.p-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    height: 100%;
    border-top: 5px solid #ff3333; /* International Category Color */
    transition: 0.3s;
}

.p-card.accent-blue { border-top-color: #007bff; } /* Nationwide */
.p-card.accent-dark { border-top-color: #1a1a1a; } /* Corporate */

.p-card:hover { transform: translateY(-10px); }

.p-header {
    padding: 15px;
    background: #f8f9fa;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 1px;
    color: #666;
}

.p-body { padding: 25px; }
.p-body h3 { font-size: 18px; margin-bottom: 15px; color: #1a1a1a; }
.p-body p { font-size: 14px; color: #555; margin-bottom: 15px; line-height: 1.6; }

.outcome {
    display: inline-block;
    padding: 5px 15px;
    background: rgba(255, 51, 51, 0.1);
    color: #ff3333;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
}

/* Animation */
.portfolio-item {
    animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

/* Responsive */
@media (max-width: 992px) { .portfolio-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .portfolio-grid { grid-template-columns: 1fr; } }

----------------------------

/* কার্ড ডিজাইন - আপনার ইমেজের মতো */
.p-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid #f0f0f0;
    cursor: pointer;
    transition: 0.3s;
}

.p-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(255, 51, 51, 0.15);
}

.p-image {
    width: 100%;
    height: 250px;
    background: #f9f9f9;
}

.p-image img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* আপনার ছবির লোগো স্টাইল বজায় রাখার জন্য */
    padding: 20px;
}

.p-caption {
    padding: 20px;
    text-align: center;
}

.client-name {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: #888;
    letter-spacing: 2px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.p-caption h3 {
    font-size: 18px;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.p-caption p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.outcome-tag {
    display: inline-block;
    padding: 6px 20px;
    background: #fff0f0;
    color: #ff3333;
    border: 1px solid #ffcccc;
    border-radius: 25px;
    font-size: 12px;
    font-weight: 600;
}

/* Modal (Pop-up) Styling */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.9);
    backdrop-filter: blur(5px);
}

.modal-content {
    position: relative;
    margin: 5% auto;
    width: 80%;
    max-width: 800px;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    animation: zoomIn 0.3s ease;
}

.modal-body img {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
}

.modal-info { padding: 30px; text-align: left; }

.close-modal {
    position: absolute;
    right: 25px;
    top: 15px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 2100;
}

@keyframes zoomIn {
    from {transform: scale(0.7); opacity: 0;}
    to {transform: scale(1); opacity: 1;}
}


---------------------------------------------------------------------

/* কার্ড ডিজাইন - আপনার ইমেজের মতো */
.p-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid #f0f0f0;
    cursor: pointer;
    transition: 0.3s;
}

.p-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(255, 51, 51, 0.15);
}

.p-image {
    width: 100%;
    height: 250px;
    background: #f9f9f9;
}

.p-image img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* আপনার ছবির লোগো স্টাইল বজায় রাখার জন্য */
    padding: 20px;
}

.p-caption {
    padding: 20px;
    text-align: center;
}

.client-name {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: #888;
    letter-spacing: 2px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.p-caption h3 {
    font-size: 18px;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.p-caption p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.outcome-tag {
    display: inline-block;
    padding: 6px 20px;
    background: #fff0f0;
    color: #ff3333;
    border: 1px solid #ffcccc;
    border-radius: 25px;
    font-size: 12px;
    font-weight: 600;
}

/* Modal (Pop-up) Styling */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.9);
    backdrop-filter: blur(5px);
}

.modal-content {
    position: relative;
    margin: 5% auto;
    width: 80%;
    max-width: 800px;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    animation: zoomIn 0.3s ease;
}

.modal-body img {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
}

.modal-info { padding: 30px; text-align: left; }

.close-modal {
    position: absolute;
    right: 25px;
    top: 15px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 2100;
}

@keyframes zoomIn {
    from {transform: scale(0.7); opacity: 0;}
    to {transform: scale(1); opacity: 1;}
}