* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Poppins', sans-serif;
        }

        body {
            background-color: #f8fafc;
            color: #334155;
            line-height: 1.6;
        }

        /* Main Container & Header */
        .blog-wrapper {
            max-width: 1200px;
            margin: 50px auto;
            padding: 0 20px;
        }

        .page-title {
            text-align: center;
            margin-bottom: 50px;
        }

        .page-title h1 {
            font-size: 38px;
            font-weight: 700;
            position: relative;
            display: inline-block;
            padding-bottom: 10px;
            color: blue;
        }

        .page-title h1::after {
            content: '';
            position: absolute;
            width: 60px;
            height: 4px;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            border-radius: 2px;
        }

        .page-title p {
            color: #64748b;
            margin-top: 15px;
            font-size: 16px;
        }

        /* Grid Layout for 15 Articles */
        .blog-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
            gap: 30px;
        }

        /* Square Shaped Blog Cards */
        .blog-card {
            background-color: var(--text);
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0,0,0,0.05);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            display: flex;
            flex-direction: column;
            border: 1px solid #e2e8f0;
        }

        .blog-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        }

        .blog-img-box {
            position: relative;
            width: 100%;
            padding-top: 100%; /* Perfect 1:1 Square Shape */
            overflow: hidden;
            background-color: #e2e8f0;
        }

        .blog-img-box img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .blog-card:hover .blog-img-box img {
            transform: scale(1.05);
        }

        .blog-content {
            padding: 25px;
            display: flex;
            flex-direction: column;
            flex-grow: 1;
            background-color: white;
            border-color:  var(--primary);
        }

        .blog-content h2 {
            font-size: 19px;
            color: var(--text);
            font-weight: 600;
            margin-bottom: 12px;
            line-height: 1.4;
        }

        .blog-content p {
            color: #64748b;
            font-size: 14px;
            margin-bottom: 20px;
            flex-grow: 1;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .read-more-btn {
            background-color: var(--primary);
            color: #ffffff !important; 
            text-align: center;
            padding: 10px 20px;
            border-radius: 6px;
            text-decoration: none;
            font-size: 14px;
            font-weight: 500;
            transition: background-color 0.3s ease;
            cursor: pointer;
            border: none;
            display: inline-block;
            width: 100%;
        }

        .read-more-btn:hover {
            background-color: var(--primary);
        }

        /* Responsive Modal Popup Layout */
        .article-modal {
            position: fixed;
            top: 350px; 
            left: 0;
            width: 100%;
            height: calc(100% - 350px); 
            z-index: 2000;
            display: flex;
            justify-content: center;
            align-items: center;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.3s ease;
            padding: 20px;
        }

        .article-modal.active {
            opacity: 1;
            pointer-events: auto;
        }

        .modal-body {
            background-color: white;
            width: 100%;
            max-width: 850px;
            max-height: 85vh;
            border-radius: 16px;
            overflow-y: auto;
            position: relative;
            box-shadow: 0 20px 40px rgba(0,0,0,0.2);
            animation: slideUp 0.4s ease forwards;
        }

        @keyframes slideUp {
            from { transform: translateY(30px); }
            to { transform: translateY(0); }
        }

        .close-modal-btn {
            position: absolute;
            top: 15px;
            right: 20px;
            font-size: 28px;
            color: #ffffff !important; 
            cursor: pointer;
            z-index: 10;
            background-color: blue !important; 
            width: 40px;
            height: 40px;
            display: flex;
            justify-content: center;
            align-items: center;
            border-radius: 50%;
            transition: background 0.3s;
        }

        .close-modal-btn:hover {
            background-color: red !important; 
        }

        .modal-banner-img {
            width: 100%;
            height: 350px;
            object-fit: cover;
        }

        .modal-text-content {
            padding: 40px;
        }

        .modal-text-content h1 {
            color: var(--text);
            font-size: 32px;
            margin-bottom: 20px;
            line-height: 1.3;
        }

        .modal-text-content h2 {
            color: var(--text);
            font-size: 24px;
            margin: 30px 0 15px 0;
        }

        .modal-text-content h3 {
            color: var(--primary);
            font-size: 20px;
            margin: 25px 0 12px 0;
            font-weight: 600;
        }

        .modal-text-content p {
            color: #475569;
            font-size: 15px;
            margin-bottom: 15px;
            text-align: justify;
            line-height: 1.8;
        }
        
        .modal-text-content ul {
            margin-left: 20px;
            margin-bottom: 15px;
            color: #475569;
        }

        .modal-text-content li {
            margin-bottom: 8px;
        }

        @media (max-width: 768px) {
            .page-title h1 { font-size: 28px; }
            .blog-grid { grid-template-columns: 1fr; }
            .modal-text-content { padding: 20px; }
            .modal-text-content h1 { font-size: 22px; }
            .modal-banner-img { height: 200px; }
            .footer-grid { grid-template-columns: 1fr; }
        }

        /* MODAL POPUP STYLES FOR SERVICES */
        .modal-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.7); z-index: 9999; display: none; justify-content: center; align-items: center; }
        .modal-content { background: #fff; padding: 40px; border-radius: 12px; position: relative; max-width: 1000px; width: 95%; box-shadow: 0 10px 30px rgba(0,0,0,0.3); max-height: 90vh; overflow-y: auto; }
        .close-btn-serv { position: absolute; top: 15px; right: 20px; cursor: pointer; font-size: 28px; color: #333; transition: 0.3s; }
        .close-btn-serv:hover { color: var(--primary); }
        .modal-content h2 { margin-bottom: 30px; color: var(--text); text-align: center; font-size: 28px; font-weight: bold; }
        .modal-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; text-align: left; }
        .modal-col h3 { font-size: 16px; margin-bottom: 15px; color: #000; border-bottom: 2px solid var(--primary); padding-bottom: 5px; font-weight: bold; }
        .modal-col p { font-size: 13px; margin: 10px 0; color: #555; cursor: pointer; transition: color 0.2s; }
        .modal-col p:hover { color: var(--primary); }
        
        @media (max-width: 900px) {
            .modal-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
        }
        @media (max-width: 500px) {
            .modal-grid { grid-template-columns: 1fr; gap: 15px; }
        }
        
        .Banner {
            margin-bottom: 0px;
            position: relative;
            background: linear-gradient(rgba(15, 23, 42, 0.8), rgba(15, 23, 42, 0.85)), url('imgs/banner.avif') no-repeat center center/cover;
            height: 350px;
            display: flex;
            justify-content: center;
            align-items: center;
            text-align: center;
            padding: 0 20px;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 800px;
        }

        .hero-content h1 {
            font-size: 42px;
            font-weight: 800;
            letter-spacing: 1px;
            margin-bottom: 15px;
            text-transform: uppercase;
            color: white;
        }

        .hero-content h2{
            font-size: 28px;
            font-weight: 600;
            letter-spacing: 1px;
            margin-bottom: 0px;
            color: #cbd5e1;
            font-style: italic;
        }