﻿ .tab-btn
        {
            background-color: #dfe8d4;
            border: none;
            padding: 10px 18px;
            margin: 5px;
            font-weight: bold;
            cursor: pointer;
            border-radius: 4px;
        }

        .active-tab
        {
            background-color: #0b2e5f;
            color: #fff;
        }


        .notice-card
        {
            border: 1px solid #ddd;
            border-radius: 8px;
            padding: 20px;
            width: 25%;
            margin: 15px;
            display: inline-block;
            vertical-align: top;
            box-shadow: 0 2px 6px rgba(0,0,0,0.1);
            margin: 15px;
            text-align: center;
        }

            .notice-card h4
            {
                font-size: 16px;
                font-weight: bold;
                margin-bottom: 10px;
            }

            .notice-card .date
            {
                color: #555;
                margin-bottom: 15px;
                text-align: center;
            }

        .download-btn
        {
            background-color: #2b63e0;
            color: #fff;
            padding: 8px 25px;
            text-decoration: none;
            border-radius: 20px;
            display: inline-block;
            width: 190px;
        }

            .download-btn:hover
            {
                background-color: #1e4fc3;
            }

        .section-title
        {
            font-size: 30px;
            font-weight: 700;
            color: #0b2e5f;
            margin: 20px 0;
            padding-left: 40px;
        }

            .section-title i
            {
                margin-right: 8px;
            }


        .page-section
        {
            width: 100%;
            overflow-x: hidden;
            background-color: #fff;
            padding:0px 0 !important;

        }

        .project-grid table
        {
            width: 100%;
            border-collapse: collapse;
        }

        .project-grid td
        {
            width: 33.33%;
            vertical-align: top;
            padding: 15px;
            box-sizing: border-box;
        }

        .project-card
        {
            background: #fff;
            border-radius: 16px;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
            border: 1px solid rgba(0, 0, 0, 0.05);
            width: 100%;
            height: 420px;
            display: flex;
            flex-direction: column;
        }

        .project-content
        {
            padding: 20px;
            flex: 1;
            overflow-y: auto;
        }

            .project-content::-webkit-scrollbar
            {
                width: 6px;
            }

            .project-content::-webkit-scrollbar-thumb
            {
                background: #ccc;
                border-radius: 10px;
            }

        .project-title
        {
            font-size: 24px;
            font-weight: 800;
            color: #730b0b;
            margin-bottom: 10px;
            /*border-left: 4px solid #f7a048;*/
            padding-left: 10px;
        }

        @media (max-width: 1024px)
        {
            .project-grid td
            {
                width: 50%;
                padding: 18px;
            }

            .project-card
            {
                height: 400px;
            }
        }

@media (max-width: 768px)
{
    .project-grid td
    {
        width: 100%;
        display: block;
        padding: 15px;
    }

    .project-card
    {
        height: 380px;
    }

    .header-button
    {
        width: 60%;
        display: block;
        top: 10%;
        transform: translateY(-10%);
        margin-top:10%;
        margin-left:100px;
    }
    /*.page-section h1
    {
        margin-bottom: 70px;

    }*/
}
        
.page-header {
    position: relative;
    text-align: center;
    font-size: 30px;
}

.header-button {
    right: 0;
    top: 40%;
    transform: translateY(-50%);
}



 .center-image {
      display: block;
      margin-left: auto;
      margin-right: auto;
    }

    /* Captcha Container Configuration */
    .captcha-box-wrapper {
      background-color: #f8f9fa;
      border: 1px solid #ced4da;
      border-radius: 4px;
      padding: 8px 12px;
      margin-bottom: 5px;
      max-width: 100%;
    }

    /* Captcha Code Render Field */
    .captcha-render-area {
      background: repeating-linear-gradient(45deg,
          #e9ecef,
          #e9ecef 10px,
          #dee2e6 10px,
          #dee2e6 20px);
      color: #8b1414;
      font-family: 'Courier New', Courier, monospace;
      font-size: 22px;
      font-weight: bold;
      letter-spacing: 4px;
      text-align: center;
      padding: 4px 0;
      border: 1px dashed #977373;
      border-radius: 4px;
      user-select: none;
      text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
    }

    /* Local fallback Refresh Control Button */
    .btn-captcha-refresh {
      background-color: #b42727;
      color: #ffffff;
      border: none;
      border-radius: 4px;
      width: 100%;
      height: 36px;
      padding: 0;
      font-size: 20px;
      line-height: 34px;
      transition: background-color 0.2s ease;
    }

    .btn-captcha-refresh:hover {
      background-color: #b42727;
      color: #ffffff;
    }

    /* Unified height normalization for input container */
    #txtCaptchaInput {
      height: 36px !important;
      font-size: 15px;
      border: 1px solid #ced4da;
      border-radius: 4px;
    }

    #txtCaptchaInput:focus {
      border-color: #3d6aaa;
      box-shadow: 0 0 0 0.2rem rgba(61, 106, 170, 0.25);
    }

/*CAPTCHA END*/

/*LOGIN START*/
        .login-wrapper {
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }
        .gp-header {
            background-color: #b42727;
            border-bottom: 3px solid #b42727;
            box-shadow: 0 4px 15px rgba(0,0,0,0.3);
            padding: 12px 0;
            width: 100%;
        }
        .gp-title {
            color: #ffffff;
            font-weight: bold;
            font-size: 26px;
            margin: 0;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
            text-align: center;
        }
        .login-container {
            flex-grow: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 20px 0;
        }
        .login-card {
            width: 100%;
            max-width: 420px;
            border: none;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.4);
            background-color: rgba(255, 255, 255, 0.96);
            overflow: hidden;
        }
        .card-header {
            padding: 20px !important;
            background-color: #b42727 !important;
        }
        .form-control:focus {
            border-color: #12498a;
            box-shadow: 0 0 0 0.25rem rgba(18, 73, 138, 0.25);
        }
        .btn-custom {
            background-color: #b42727;
            color: white;
            border: none;
            padding: 12px;
            font-size: 16px;
            font-weight: bold;
            transition: 0.3s;
        }
        .btn-custom:hover {
            background-color: #0b3363;
            color: white;
        }
        .gp-footer {
            text-align: center;
            color: white;
            font-size: 13px;
            padding: 10px 0;
            background-color: rgba(0, 0, 0, 0.3);
        }

      /*LOGIN END*/