
        /* style.css */
        html {
            scroll-behavior: smooth;
        }

        /* 1. Animation එක නිර්වචනය කිරීම */
        @keyframes floatAnimation {
            0% {
                transform: translate(0, 0);
            }

            50% {
                transform: translate(30px, -50px);
            }

            100% {
                transform: translate(0, 0);
            }
        }

        /* 2. Animation එකට අදාළ Class එක */
        .floating-blob {
            animation: floatAnimation 8s ease-in-out infinite;
        }

        /* 3. එක එක බෝලයට එක එක වේගයන් ලබා දීම */
        .animation-delay-2s {
            animation-delay: 2s;
        }

        .animation-delay-4s {
            animation-delay: 4s;
        }

        /* Scrollbar styling (කලින් තිබුණු විදිහටම) */
        ::-webkit-scrollbar {
            width: 10px;
        }

        ::-webkit-scrollbar-track {
            background: #f1f5f9;
        }

        .dark ::-webkit-scrollbar-track {
            background: #1f2937;
        }

        ::-webkit-scrollbar-thumb {
            background: #cbd5e1;
            border-radius: 5px;
        }

        .dark ::-webkit-scrollbar-thumb {
            background: #4b5563;
        }

        /* Skill Tags අනිවාර්යයෙන්ම පෙන්වීමට */
        .skill-tag {
            display: inline-flex !important;
            align-items: center !important;
            padding: 2px 8px !important;
            font-size: 10px !important;
            font-weight: 700 !important;
            border-radius: 9999px !important;
            border-width: 1px !important;
            margin: 2px !important;
        }

        /* Icons වලට පොඩි ඉඩක් */
        .skill-tag i {
            margin-right: 4px !important;
        }

        .cert-section {
            padding: 80px 10%;
            background-color: #0b0f1a;
            /* ඔයාගේ Skills section එකේ තියෙන background එක */
            text-align: center;
        }

        .section-title {
            font-size: 2.5rem;
            color: #fff;
            margin-bottom: 50px;
            font-weight: 700;
        }

        /* Container එකේ ප්‍රමාණය පාලනය කරන්න */
        .cert-grid {
            display: flex;
            /* grid වෙනුවට flex පාවිච්චි කිරීමෙන් මැදට ගැනීම පහසුයි */
            justify-content: center;
            gap: 20px;
            /* සහතික දෙක අතර පරතරය අඩු කළා */
            flex-wrap: wrap;
            padding: 0 10%;
        }

        /* එක සහතික පෙට්ටියක ප්‍රමාණය කුඩා කිරීම */
        .cert-box {
            background: #161b2a;
            border: 1px solid #2d364a;
            border-radius: 12px;
            padding: 12px;
            transition: 0.3s ease;
            max-width: 380px;
            /* පෙට්ටිය තවත් කුඩා කළා */
            width: 100%;
        }

        .cert-box:hover {
            border-color: #007bff;
            /* Hover වෙද්දී නිල් පාට border එකක් */
            transform: translateY(-5px);
        }

        /* Image එක තවත් කුඩා කර පෙන්වීමට */
        .img-container {
            position: relative;
            width: 100%;
            border-radius: 6px;
            overflow: hidden;
            background: #000;
        }

        .img-container img {
            width: 100%;
            height: auto;
            display: block;
            opacity: 0.8;
            /* ටිකක් dark වෙන්න */
            transition: 0.3s;
        }

        .cert-box:hover img {
            opacity: 1;
            /* Hover කළාම පැහැදිලිව පේන්න */
        }

        /* Download වැළැක්වීමේ overlay එක */
        .no-copy-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 5;
        }

        /* අකුරු වල පරතරය අඩු කිරීම */
        .cert-info {
            padding: 15px 5px 5px;
            text-align: left;
        }

        .cert-info h3 {
            font-size: 1.1rem;
            /* මාතෘකාව පොඩ්ඩක් කුඩා කළා */
            margin-bottom: 3px;
        }

        .cert-info p {
            color: #8892b0;
            font-size: 0.9rem;
        }

        /* Modal (Popup) Style - සම්පූර්ණයෙන්ම මැදට ගන්න */
        .modal {
            display: none;
            position: fixed;
            z-index: 9999;
            /* අනිත් හැම දේටම උඩින් පෙනෙන්න */
            left: 0;
            top: 0;
            width: 100vw;
            /* මුළු screen එකේ පළල */
            height: 100vh;
            /* මුළු screen එකේ උස */
            background-color: rgba(0, 0, 0, 0.85);
            /* පසුබිම අඳුරු කරන්න */
            backdrop-filter: blur(5px);
            /* පසුබිම ටිකක් blur කරන්න (modern look) */

            /* මේ පේළි තුන තමයි මැදට ගන්නේ */
            display: none;
            justify-content: center;
            align-items: center;
        }

        /* Modal එක ඇතුළේ ඇති පින්තූරය */
        .modal-content {
            max-width: 90%;
            max-height: 85vh;
            object-fit: contain;
            /* පින්තූරයේ හැඩය ආරක්ෂා කරගන්න */
            border: 3px solid #334155;
            border-radius: 12px;
            box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
            animation: zoomIn 0.3s ease;
            /* පොඩි animation එකක් */
        }

        /* Close Button එක හරියටම උඩ කෙළවරට */
        .close-btn {
            position: absolute;
            top: 20px;
            right: 30px;
            color: #fff;
            font-size: 45px;
            font-weight: bold;
            cursor: pointer;
            z-index: 10001;
            transition: 0.3s;
        }

        .close-btn:hover {
            color: #38bdf8;
        }

        /* Animation */
        @keyframes zoomIn {
            from {
                transform: scale(0.7);
                opacity: 0;
            }

            to {
                transform: scale(1);
                opacity: 1;
            }
        }

        /* Modal පින්තූරය ආරක්ෂා කිරීමට */
        .modal-content {
            /* Screenshot වලදී සහ Print කිරීමේදී හඳුනාගැනීම වැළැක්වීමට උත්සාහ කරයි */
            user-select: none;
            -webkit-user-drag: none;
        }

        @media print {

            /* Print කිරීමට උත්සාහ කළහොත් මුළු modal එකම සඟවයි */
            .modal {
                display: none !important;
            }
        }

        /* Certificate එකේ නම (Heading) */
        .cert-info h3 {
            color: #1a202c !important;
            /* තද කළු/නිල් පාටක් */
            font-size: 1.15rem;
            font-weight: 700;
            margin-bottom: 5px;
        }

        /* University එකේ නම සහ අනෙකුත් විස්තර */
        .cert-info p {
            color: #4a5568 !important;
            /* තද අළු පාටක් */
            font-size: 0.95rem;
            margin-bottom: 10px;
        }

        /* Verification Code එක තියෙන කොටස */
        .copy-code {
            color: #2d3748 !important;
            /* අකුරු තද පාටින් */
            background: #edf2f7;
            /* ලා අළු පාට පසුබිමක් (බොක්ස් එක පේන්න) */
            border: 1px dashed #3182ce;
            padding: 8px;
            border-radius: 6px;
            display: block;
            margin-bottom: 10px;
            cursor: pointer;
        }

        /* Code එක ඇතුළේ තියෙන තද අකුරු (Bold code) */
        .copy-code strong {
            color: #2b6cb0 !important;
            /* Code එක නිල් පාටින් පැහැදිලිව */
        }

        /* Click to copy කියන පොඩි අකුරු පෙළ */
        .copy-code small {
            color: #718096 !important;
            display: block;
            font-size: 0.75rem;
        }

        /* Verify Button එකේ අකුරු සුදු පාටටම තියන්න */
        .verify-btn {
            color: #ffffff !important;
            background-color: #3182ce;
            text-align: center;
            display: block;
            padding: 10px;
            border-radius: 6px;
            text-decoration: none;
            font-weight: bold;
        }

        /* Mobile එකේදී card 2 බැගින් පෙන්වීමට */
        @media (max-width: 600px) {
            .cert-section {
                padding: 40px 15px;
                /* දෙපැත්තේ padding අඩු කළා ඉඩ ඉතිරි කරගන්න */
            }

            .cert-grid {
                padding: 0;
                gap: 10px;
                /* Card දෙක අතර පරතරය අඩු කළා */
                justify-content: space-between;
            }

            .cert-box {
                /* හරියටම screen එකෙන් බාගයක් (gap එක අඩු කරලා) */
                max-width: calc(50% - 5px);
                width: calc(50% - 5px);
                padding: 8px;
            }

            /* අකුරු වල ප්‍රමාණයන් mobile එකට ගැළපෙන සේ අඩු කිරීම */
            .cert-info h3 {
                font-size: 0.8rem !important;
            }

            .cert-info p {
                font-size: 0.75rem !important;
            }

            .copy-code {
                padding: 5px !important;
                font-size: 0.7rem !important;
            }

            .copy-code small {
                font-size: 0.6rem !important;
            }

            .verify-btn {
                padding: 6px !important;
                font-size: 0.7rem !important;
            }
        }












/* Hide scrollbar for Chrome, Safari and Opera */
.no-scrollbar::-webkit-scrollbar {
    display: none;
}
/* Hide scrollbar for IE, Edge and Firefox */
.no-scrollbar {
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}




.justify-center.gap-2.mt-4 div {
        transition: all 0.3s ease;
    }






















