        body {
            font-family: 'Heebo', sans-serif;
        }

        .hero-section {
            background: linear-gradient(135deg, #012a59 0%, #003d7a 100%);
            padding: 60px 0;
            color: white;
        }

        .hero-section h1 {
            font-size: 42px;
            font-weight: 700;
            margin-bottom: 20px;
        }

        .hero-section .badge-group {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
            margin-bottom: 25px;
        }

        .badge-group span {
            background: rgba(251, 135, 63, 0.2);
            color: #fb873f;
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 13px;
            font-weight: 600;
            border: 1px solid #fb873f;
        }

        .hero-section p {
            font-size: 16px;
            line-height: 1.7;
            opacity: 0.95;
            margin-bottom: 30px;
        }

        .cta-buttons {
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
        }

        .btn-primary-custom {
            background: linear-gradient(135deg, #fb873f 0%, #fa7a1e 100%);
            color: white;
            padding: 12px 32px;
            border-radius: 5px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s;
            display: inline-block;
            border: none;
        }

        .btn-primary-custom:hover {
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 8px 16px rgba(251, 135, 63, 0.4);
        }

        .btn-secondary-custom {
            background: white;
            color: #012a59;
            padding: 12px 32px;
            border-radius: 5px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s;
            display: inline-block;
        }

        .btn-secondary-custom:hover {
            color: #012a59;
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
        }

        .section-header {
            font-size: 32px;
            font-weight: 700;
            color: #012a59;
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .section-header i {
            color: #fb873f;
            font-size: 32px;
        }

        .section-subtext {
            color: #666;
            font-size: 16px;
            margin-bottom: 30px;
            line-height: 1.6;
        }

        .content-section {
            padding: 50px 0;
        }

        .highlight-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 25px;
            margin-bottom: 40px;
        }

        .highlight-card {
            background: white;
            border: 1px solid #e0e0e0;
            border-radius: 8px;
            padding: 30px;
            transition: all 0.3s;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
        }

        .highlight-card:hover {
            border-color: #fb873f;
            box-shadow: 0 8px 20px rgba(1, 42, 89, 0.15);
            transform: translateY(-5px);
        }

        .highlight-card .icon-box {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #fb873f 0%, #fa7a1e 100%);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 24px;
            margin-bottom: 15px;
        }

        .highlight-card h5 {
            color: #012a59;
            font-weight: 700;
            margin-bottom: 12px;
            font-size: 18px;
        }

        .highlight-card p {
            color: #666;
            line-height: 1.6;
            margin: 0;
            font-size: 14px;
        }

        .features-list {
            background: #f8f9fa;
            border-left: 4px solid #fb873f;
            padding: 30px;
            border-radius: 8px;
            margin-bottom: 40px;
        }

        .features-list ul {
            list-style: none;
            padding: 0;
            margin: 0;
            columns: 2;
            gap: 30px;
        }

        .features-list li {
            color: #666;
            padding: 10px 0;
            line-height: 1.6;
            break-inside: avoid;
        }

        .features-list li:before {
            content: "✓ ";
            color: #fb873f;
            font-weight: bold;
            margin-right: 10px;
            font-size: 16px;
        }

        .curriculum-section {
            background: white;
            border-radius: 8px;
            padding: 30px;
            margin-bottom: 30px;
            border: 1px solid #e0e0e0;
        }

        .curriculum-section h5 {
            color: #012a59;
            font-weight: 700;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .curriculum-section h5 i {
            color: #fb873f;
        }

        .curriculum-section ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .curriculum-section li {
            color: #666;
            padding: 8px 0;
            line-height: 1.6;
            padding-left: 25px;
            position: relative;
        }

        .curriculum-section li:before {
            content: "→";
            position: absolute;
            left: 0;
            color: #fb873f;
            font-weight: bold;
        }

        .why-choose {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin-bottom: 30px;
        }

        .why-item {
            background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
            padding: 25px;
            border-radius: 8px;
            border: 1px solid #e0e0e0;
        }

        .why-item .number {
            display: inline-block;
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, #fb873f 0%, #fa7a1e 100%);
            color: white;
            border-radius: 50%;
            text-align: center;
            line-height: 40px;
            font-weight: 700;
            font-size: 18px;
            margin-bottom: 12px;
        }

        .why-item h6 {
            color: #012a59;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .why-item p {
            color: #666;
            font-size: 14px;
            line-height: 1.6;
            margin: 0;
        }

        .eligibility-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 15px;
            margin-bottom: 30px;
        }

        .eligibility-card {
            background: linear-gradient(135deg, #012a59 0%, #003d7a 100%);
            color: white;
            padding: 25px;
            border-radius: 8px;
            text-align: center;
        }

        .eligibility-card i {
            font-size: 32px;
            color: #fb873f;
            margin-bottom: 12px;
            display: block;
        }

        .eligibility-card p {
            margin: 0;
            font-size: 14px;
            line-height: 1.6;
        }

        .outcomes-list {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 20px;
            margin-bottom: 30px;
        }

        .outcome-box {
            background: white;
            border: 2px solid #f0f0f0;
            border-radius: 8px;
            padding: 25px;
            transition: all 0.3s;
        }

        .outcome-box:hover {
            border-color: #fb873f;
            box-shadow: 0 8px 20px rgba(251, 135, 63, 0.1);
        }

        .outcome-box .check {
            width: 30px;
            height: 30px;
            background: #fb873f;
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            margin-bottom: 12px;
        }

        .outcome-box h6 {
            color: #012a59;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .outcome-box p {
            color: #666;
            font-size: 14px;
            line-height: 1.6;
            margin: 0;
        }

        .timeline {
            position: relative;
            padding: 20px 0;
        }

        .timeline-item {
            display: flex;
            gap: 30px;
            margin-bottom: 30px;
            position: relative;
        }

        .timeline-item:before {
            content: "";
            position: absolute;
            left: 20px;
            top: 60px;
            width: 2px;
            height: 30px;
            background: #fb873f;
        }

        .timeline-item:last-child:before {
            display: none;
        }

        .timeline-dot {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #fb873f 0%, #fa7a1e 100%);
            border-radius: 50%;
            flex-shrink: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 700;
            font-size: 18px;
        }

        .timeline-content h6 {
            color: #012a59;
            font-weight: 700;
            margin-bottom: 8px;
        }

        .timeline-content p {
            color: #666;
            margin: 0;
            line-height: 1.6;
            font-size: 14px;
        }

        .cta-section {
            background: linear-gradient(135deg, #012a59 0%, #003d7a 100%);
            color: white;
            padding: 50px;
            border-radius: 8px;
            text-align: center;
            margin: 50px 0;
        }

        .cta-section h3 {
            font-size: 28px;
            font-weight: 700;
            margin-bottom: 15px;
        }

        .cta-section p {
            font-size: 16px;
            margin-bottom: 30px;
            opacity: 0.95;
        }

        @media (max-width: 768px) {
            .hero-section h1 {
                font-size: 32px;
            }

            .section-header {
                font-size: 24px;
            }

            .cta-buttons {
                flex-direction: column;
            }

            .highlight-grid {
                grid-template-columns: 1fr;
            }

            .why-choose {
                grid-template-columns: 1fr;
            }

            .eligibility-grid {
                grid-template-columns: 1fr;
            }

            .outcomes-list {
                grid-template-columns: 1fr;
            }

            .features-list ul {
                columns: 1;
            }

            .timeline-item {
                gap: 20px;
            }

            .cta-section {
                padding: 30px;
            }
        }

        /* internship main css  */

        .explore-btn {
                padding: 10px;
    background: #000000;
    border-radius: 24px;
    color: white;
        }

        .internship-card {
            background: #fff;
            border-radius: 10px;
            box-shadow: 0 0 45px rgba(0, 0, 0, 0.08);
            transition: all 0.3s;
            border: 1px solid #f1f1f1;
            margin-bottom: 30px;
        }

        .internship-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 60px rgba(0, 0, 0, 0.15);
        }

        .internship-header {
            background: linear-gradient(135deg, #fb873f, #ff6b3d);
            color: white;
            padding: 25px;
            border-radius: 10px 10px 0 0;
            text-align: center;
        }

        .internship-body {
            padding: 15px 25px;
        }

        .feature-list {
            list-style: none;
            padding: 0;
        }

        .feature-list li {
            padding: 8px 0;
            border-bottom: 1px solid #f1f1f1;
            position: relative;
            padding-left: 25px;
        }

        .feature-list li:before {
            content: '\f00c';
            font-family: 'Font Awesome 5 Free';
            font-weight: 900;
            color: #fb873f;
            position: absolute;
            left: 0;
            top: 8px;
        }

        .stats-section {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 60px 0;
        }

        .stat-item {
            text-align: center;
            padding: 20px;
        }

        .stat-number {
            font-size: 3rem;
            font-weight: bold;
            display: block;
        }

        .apply-btn {
            background: linear-gradient(135deg, #fb873f, #ff6b3d);
            border: none;
            padding: 12px 30px;
            border-radius: 25px;
            color: white;
            font-weight: 600;
            transition: all 0.3s;
            text-decoration: none;
            display: inline-block;
        }

        .apply-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(251, 135, 63, 0.3);
            color: white;
        }

        .timeline {
            position: relative;
            padding-left: 30px;
        }

        .timeline:before {
            content: '';
            position: absolute;
            left: 15px;
            top: 0;
            bottom: 0;
            width: 2px;
            background: #fb873f;
        }

        .timeline-item {
            position: relative;
            margin-bottom: 30px;
            background: white;
            padding: 20px;
            border-radius: 8px;
            box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
        }

        .timeline-item:before {
            content: '';
            position: absolute;
            left: -37px;
            top: 25px;
            width: 12px;
            height: 12px;
            background: #fb873f;
            border-radius: 50%;
            border: 3px solid white;
        }

        .contact-btn,
        .fa-microchip:before,
        .fa-code-branch:before,
        .fa-layer-group:before,
        .fa-search:before {
            color: #fff;
        }

        .domain-icon {
            font-size: 3rem;
            color: #ffffff;
            margin-bottom: 20px;
        }

        .requirements-card {
            background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
            color: white;
            border-radius: 15px;
            padding: 30px;
            margin: 20px 0;
        }