 body{
            background:#f7f7f7;
        }
        .contact-section{
            padding:60px 0;
        }
        .contact-info-box{
            background:#fff;
            padding:30px;
            border-radius:10px;
            box-shadow:0 0 20px rgba(0,0,0,0.1);
        }
        .contact-form-box{
            background:#fff;
            padding:30px;
            border-radius:10px;
            box-shadow:0 0 20px rgba(0,0,0,0.1);
        }
        .contact-info-box h4{
            font-weight:600;
        }
        .contact-info-box p{
            margin-bottom:5px;
            font-size:15px;
            color:#444;
        }
        .form-control{
            height:50px;
            border-radius:6px;
        }
        textarea.form-control{
            height:auto;
        }
        .btn-custom{
            background:#e63946;
            color:#fff;
            padding:12px 25px;
            border-radius:6px;
            font-size:16px;
        }
        .btn-custom:hover{
            background:#c92e3d;
            color:#fff;
        }


 body {
            background: #f7f7f7;
        }
        .certificate-section {
            padding: 60px 0;
        }
        .certificate-title {
            font-weight: 700;
            margin-bottom: 10px;
        }
        .certificate-card {
            border: none;
            background: #fff;
            border-radius: 10px;
            box-shadow: 0 0 20px rgba(0,0,0,0.08);
            overflow: hidden;
            transition: 0.3s ease-in-out;
        }
        .certificate-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 0 30px rgba(0,0,0,0.15);
        }
        .certificate-image {
            width: 100%;
            height: 260px;
            object-fit: cover;
            transition: 0.3s ease-in-out;
        }
        .certificate-card:hover .certificate-image {
            transform: scale(1.05);
        }
        .certificate-name {
            padding: 15px;
            font-size: 16px;
            font-weight: 600;
            text-align: center;
            background: #fff;
        }

        /* Modal Image */
        .modal-img {
            width: 100%;
            border-radius: 10px;
        }