 /* General Container and Row Styling */
        .container {
            position: relative;
            z-index: 1;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }

        .row {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
        }

        .col-xl-6 {
            width: 50%;
        }

        /* Image Styling */
        .mil-banner-img {
            text-align: center;
        }

        .mil-banner-image {
            max-width: 100%;
            border-radius: 10px;
            margin: auto;
            display: block;
        }

        /* Text Section Styling */
        .mil-banner-text {
            text-align: left;
            color: white;
        }

        .mil-display {
            font-size: 2.5rem;
            font-weight: bold;
            line-height: 1.2;
        }

        .mil-text-gradient {
            background: linear-gradient(90deg, #ff8c00, #ff0000);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .mil-mb-20 {
            margin-bottom: 20px;
        }

        .mil-buttons-frame {
            margin-top: 20px;
        }

        .mil-btn {
            display: inline-block;
            padding: 10px 20px;
            font-size: 1rem;
            font-weight: 500;
            color: white;
            background: #ff8c00;
            text-decoration: none;
            border-radius: 25px;
            transition: background 0.3s ease;
        }

        .mil-btn:hover {
            background: #e67300;
        }

        /* Responsive Behavior */
        @media (max-width: 768px) {
            .row {
                flex-direction: column;
            }

            .mil-display {
                font-size: 1.8rem;
            }

            .col-xl-6 {
                width: 100%;
            }
        }

        /* About Section Styling */
        #about {
            margin-top: 32px;
        }

        
        #about span {
            color: #ff4d4d;
        }

        .about-content {
            padding: 20px;
            background-color: #110C09;
            margin-top: 16px;
            border-radius: 24px;
            border: 1px solid #333;
            color: #ddd;
        }

        .about-content p {
            margin-bottom: 20px;
            line-height: 1.6;
        }
        