   
        html {
            width: auto!important;
            overflow-x: hidden!important
            } 
        
        body {
            background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
            font-family: 'Arial', sans-serif;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            overflow-x: hidden!important
        }
        .circle-img {
            width: 200px;
            height: 200px;
            object-fit: cover;
            border-radius: 50%;
            transition: transform 0.4s ease-in-out, box-shadow 0.4s ease-in-out, filter 0.4s ease-in-out;
            border: 6px solid #0536a7;
             box-shadow: 0 6px 12px rgba(5,54,167,0.9);
            transform: scale(1.10);
        }
        /* .circle-img:hover {
            transform: scale(1.15) rotate(5deg);
            box-shadow: 0 12px 24px rgba(5,54,167,0.9);
            filter: brightness(1.1);
        } */
        .card {
            border: none;
            background: transparent;
            text-align: center;
        }
        .card-title {
            margin-top: 15px;
            font-size: 1.5rem;
            color: #333;
            font-weight: bold;
        }
       .card-text-container {
            display: flex;
            flex-direction: column; /* Stack elements vertically */
            gap: 8px; /* Space between heading and subheading */
            align-items: center;
            justify-content: center;
            background: rgba(107,15,36, 0.8);
            border-radius: 0 0 50% 50%;
            margin: 0 auto;
            width: 280px;
            padding: 15px;
            transition: background 0.4s ease-in-out;
            height: 150px;
        }
        .card:hover .card-text-container {
            background: rgba(255, 255, 255, 0.7); /* Change background on card hover */
            box-shadow: 0 12px 24px rgba(107,15,36,0.9);
        }

        .card:hover h1 {
            color:black;
            border-bottom: 5px solid #6b0f24d9;
            border-bottom-width: thin;
            margin-bottom: 8px;
        }
        .card:hover h2 {
            color:black;
            border-bottom: 5px solid #6b0f24d9;
            border-bottom-width: thin;
            margin-bottom: 8px;
        }
        .card:hover p {
            color:black;
        }


        .card:hover .circle-img {
            transform: scale(1.15) rotate(5deg); /* Apply image hover effects when hovering over card */
            box-shadow: 0 12px 24px rgba(5,54,167,0.9);
            filter: brightness(1.1);
        }

        .card-text-container h1 {
            font-size: 20px;
            font-weight: bold;
            margin: 0;
            color: #fff;
            border-bottom: 5px solid #ccc;
            border-bottom-width: thin;
            margin-bottom: 8px;
        }
        .card-text-container h2 {
            font-size: 16px;
            font-weight: normal;
            margin: 0;
            color: #fff;
            border-bottom: 3px solid #ccc;
            border-bottom-width: thin;
            margin-bottom: 6px;

        }
         .card-text-container p {
            font-size: 12px;
            font-weight: normal;
            margin: 0;
            color: #fff;
        }
        @media (max-width: 768px) {
            .card-text-container {
                width: 180px;
                height: 150px; /* Adjust height for smaller screens */
            }
            .card-text-container h1 {
                font-size: 16px; /* Slightly smaller for mobile */
            }
            .card-text-container h2 {
                font-size: 12px; /* Slightly smaller for mobile */
            }
        }

        .card-text {
            color: #fff;
            font-size: 0.9rem;
            text-align: center;
            width: 100%;
            margin: 0;
        }

        .header-title {
            font-size: 3rem;
            color: #2c3e50;
            margin-bottom: 12px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
            text-align: center;
        }
        .sub-title {
            font-size: 1rem;
            color: #2c3e50;
            margin-bottom: 30px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
            text-align: center;
        }
        .container {
            padding: 50px 0;
        }
        footer {
            margin-top: auto;
            padding: 30px 20px;
            background: #2c3e50;
            color: #fff;
            width: 100%;
        }

       
        .footer-logo {
            width: 100px;
            height: auto;
            margin-bottom: 20px;
        }
        .footer-links a, .footer-contact a, .footer-contact p, .footer-social i {
            color: #fff;
            text-decoration: none;
            display: block;
            margin-bottom: 8px;
            transition: transform 0.3s ease-in-out;
        }

        .footer-column h4 {
            font-weight: normal;
            margin: 0;
            color: white;
            text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.6);
        }

        .footer-links a:hover, .footer-contact a:hover, .footer-contact p:hover, .footer-social i:hover {
            color: #c3cfe2;
            transform: translateX(10px);
        }
        .footer-social i {
            font-size: 1.5rem;
            margin-right: 15px;
        }
        .footer-column {
            margin-bottom: 20px;
        }
        .footer-column h5 {
            font-size: 1.2rem;
            margin-bottom: 15px;
        }
        @media (max-width: 768px) {
            .circle-img {
                width: 150px;
                height: 150px;
            }
            .header-title {
                font-size: 2rem;
            }
            .footer-logo {
                width: 80px;
            }
            .card-text-container {
                width: 150px; /* Match smaller image width */
            }
            .card-text {
                font-size: 0.8rem;
            }
        }

        a {
        text-decoration: none !important;
        }
    