:root {
            --primary-color: #173457;
            --primary-light: #2a5a8a;
            --accent-color: #f8f9fa;
        }

        .program-objectives {
            padding: 80px 0;
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            position: relative;
        }

        .program-objectives .section-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .program-objectives .section-title {
            color: var(--primary-color);
            font-weight: 700;
           
            margin-bottom: 0.5rem;
            position: relative;
            display: inline-block;
            text-transform: math-auto;
        }

        .program-objectives .section-title::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
            border-radius: 2px;
            
        }

        .program-objectives .section-subtitle {
            color: #6c757d;
            
            margin-top: 25px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        .objectives-container {
            max-width: 1100px;
            margin: 0 auto;
        }

        .objective-card {
            background: white;
            border-radius: 15px;
            padding: 30px;
            margin-bottom: 25px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            transition: all 0.4s ease;
            border-left: 5px solid var(--primary-color);
            position: relative;
            overflow: hidden;
        }

        .objective-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 5px;
            height: 100%;
            background: linear-gradient(180deg, var(--primary-color), var(--primary-light));
            transition: width 0.4s ease;
        }

        .objective-card:hover::before {
            width: 100%;
            opacity: 0.05;
        }

        .objective-card:hover {
            transform: translateX(10px);
            box-shadow: 0 8px 30px rgba(23, 52, 87, 0.15);
        }

        .objective-header {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
            position: relative;
            z-index: 1;
        }

        .objective-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 20px;
            flex-shrink: 0;
            box-shadow: 0 4px 15px rgba(23, 52, 87, 0.3);
        }

        .objective-icon svg {
            width: 24px;
            height: 24px;
            fill: white;
        }

        .objective-title {
            color: var(--primary-color);
            font-weight: 700;
            font-size: 2rem;
            margin: 0;
        }

        .objective-description {
            color: #495057;
            f
            line-height: 1.8;
            margin: 0;
            position: relative;
            z-index: 1;
            padding-left: 70px;
        }

        @media (max-width: 768px) {
            .program-objectives {
                padding: 50px 0;
            }

            .program-objectives .section-title {
                font-size: 2rem;
            }

            .objective-card {
                padding: 25px 20px;
                margin-bottom: 20px;
            }

            .objective-card:hover {
                transform: translateX(5px);
            }

            .objective-icon {
                width: 45px;
                height: 45px;
                margin-right: 15px;
            }

            .objective-title {
                font-size: 1.1rem;
            }

            .objective-description {
                font-size: 0.95rem;
                padding-left: 60px;
            }
        }