.section-head {
            font-size: 2rem !important;
            margin: 3rem 0rem !important;
            padding: 0px !important;
        }

        .section-box {}

        .heroheading {
            color: #007bff;
        }



        .header-contact-info .item {
            display: flex;
            align-items: center;
            padding: 10px 20px;
            margin-left: 10px;
            background-color: #f9f9f9;
            border-radius: 8px;
            transition: all 0.3s ease-in-out;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        }

        .header-contact-info .item:hover {
            transform: translateY(-5px);
            box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
        }

        .header-contact-info .item-inner {
            display: flex;
            align-items: center;
        }

        .header-contact-info .item-thumb {
            font-size: 25px;
            color: #007bff;
            margin-right: 15px;
        }

        .header-contact-info .item-content {
            font-size: 14px;
        }

        .header-contact-info .item-content span {
            font-weight: bold;
            color: #333;
        }

        .header-contact-info .item-content p {
            margin: 0;
            color: #555;
        }

        .header-contact-info .item-content p a {
            text-decoration: none;
            color: #007bff;
        }

        @media (max-width: 767px) {
            .header-contact-info {
                flex-direction: column;
                align-items: flex-start;
                padding-left: 10px;
            }

            .header-contact-info .item {
                margin-bottom: 15px;
                width: 100%;
            }

            .header-contact-info .item-thumb {
                font-size: 28px;
            }

            .header-contact-info .item-content span {
                font-size: 16px;
            }
        }

        /* Padding and Background */
        @media (min-width: 992px) {
            .padding-tb {
                padding: 50px 0 !important;
            }
        }

        .bg-clr {
            width: 100%;
            background-color: #007bff;
            padding: 10px;
            color: #f9f9f9;
            border-radius: 5px;
            font-size: 24px;
        }

        /* Preloader */
        .preloader {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: rgba(255, 255, 255, 0.9);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 5;
        }

        .preloader-inner {
            display: flex;
            justify-content: center;
            align-items: center;
            position: relative;
        }

        .preloader-icon {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            border: 5px solid transparent;
            border-top: 5px solid transparent;
            border-right: 5px solid transparent;
            animation: spin 2s linear infinite, borderColor 3s linear infinite;
        }

        .preloader-icon img {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            z-index: 2;
        }

        @keyframes borderColor {
            0% {
                border-top: 5px solid rgb(253, 134, 29);
                border-right: 5px solid rgb(43, 61, 255);
            }

            50% {
                border-top: 5px solid rgba(252, 176, 69, 1);
                border-right: 5px solid rgb(43, 61, 255);
            }

            100% {
                border-top: 5px solid rgb(43, 61, 255);
                border-right: 5px solid rgb(253, 134, 29);
            }
        }

        @keyframes spin {
            0% {
                transform: rotate(0deg);
            }

            100% {
                transform: rotate(360deg);
            }
        }

        /* Video Section */
        .video-box {
            max-width: 1400px;
            margin: 0 auto;
            margin-bottom: 40px !important;
        }

        .video-section {
            width: 100%;
            max-width: 800px;
            margin: 0 auto;
        }

        .video-wrapper {
            position: relative;
            padding-bottom: 56.25%;
            height: 0;
            overflow: hidden;
        }

        .video-wrapper iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: 0;
        }

        /* Feature Item */
        .img-radious {
            border: 2px solid transparent;
            border-image: linear-gradient(153deg, rgba(131, 58, 180, 1) 0%, rgba(253, 29, 29, 1) 50%, rgba(252, 176, 69, 1) 100%);
            border-image-slice: 1;
            border-radius: 16px;
        }

        .feature-item {
            padding: 20px 24px !important;
            border-radius: 10px !important;

        }

        .lab-thumb {
            margin-bottom: 20px !important;
        }

        /* WhatsApp Logo */
        .whatsapp-fixed {
            position: fixed;
            bottom: 40px;
            right: 40px;
            z-index: 10;
        }

        .whatsapp-fixed img {
            width: 60px;
            height: 60px;
            transition: transform 0.3s ease;
        }

        .whatsapp-fixed img:hover {
            transform: scale(1.1);
        }

        /* Chatbot */
        .chatbot-icon {
            position: fixed;
            bottom: 40px;
            left: 40px;
            background-color: #007bff;
            color: white;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 30px;
            cursor: pointer;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
            z-index: 3;
            transition: transform 0.2s ease-in-out;
        }

        .chatbot-icon:hover {
            transform: scale(1.05);
        }

        .chatbot-window {
            position: fixed;
            bottom: 90px;
            left: 20px;
            width: 300px;
            height: 400px;
            background-color: white;
            border: 1px solid #ddd;
            border-radius: 8px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
            display: flex;
            flex-direction: column;
            z-index: 999;
            overflow: hidden;
            transform: translateY(100%) scale(0.8);
            opacity: 0;
            transition: transform 0.3s ease-out, opacity 0.3s ease-out;
            pointer-events: none;
        }

        .chatbot-window.active {
            transform: translateY(0) scale(1);
            opacity: 1;
            pointer-events: auto;
        }

        .chatbot-header {
            background-color: #007bff;
            color: white;
            padding: 10px 15px;
            border-top-left-radius: 8px;
            border-top-right-radius: 8px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: bold;
        }

        .chatbot-header .close-btn {
            cursor: pointer;
            font-size: 20px;
            padding: 0 5px;
        }

        .chatbot-body {
            flex-grow: 1;
            padding: 15px;
            overflow-y: auto;
            background-color: #f9f9f9;
        }

        .chatbot-footer {
            padding: 10px 15px;
            border-top: 1px solid #eee;
            display: flex;
            gap: 10px;
        }

        .chatbot-footer input {
            flex-grow: 1;
            padding: 8px;
            border: 1px solid #ddd;
            border-radius: 4px;
        }

        .chatbot-footer button {
            background-color: #007bff;
            color: white;
            border: none;
            padding: 8px 12px;
            border-radius: 4px;
            cursor: pointer;
            transition: background-color 0.2s;
        }

        .chatbot-footer button:hover {
            background-color: #0056b3;
        }

        .message {
            padding: 8px 12px;
            border-radius: 15px;
            margin-bottom: 10px;
            max-width: 80%;
            word-wrap: break-word;
        }

        .user-message {
            background-color: #e0efff;
            align-self: flex-end;
            margin-left: auto;
        }

        .bot-message {
            background-color: #f1f1f1;
            align-self: flex-start;
            margin-right: auto;
        }



          
        /* Hero styles */
        .container {
            max-width: 1200px;
            margin: 20px auto;
        }
        .content-box {
            padding: 15px;
            border-radius: 8px;
            height: 100%;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        .right-column {
            height: 100%;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }
        .inner-box-1, .inner-box-2 {
            padding: 10px;
            border-radius: 5px;
            overflow: hidden;
        }

        /* Shared styles for both carousels */
        .eligibility-section, .course-info-section {
            padding: 10px 0;
        }
        .section-container, .info-container {
            max-width: 100%;
        }
        .section-title, .info-title {
            font-size: 1.25rem;
            text-align: center;
            margin-bottom: 10px;
        }
        .eligibility-card, .info-card {
            background-color: #f8f9fa;
            border: none;
            border-radius: 8px;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
            height: 200px;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            margin: 0 auto;
            max-width: 100%;
        }
        .eligibility-section .card-header, .course-info-section .card-header {
            display: flex;
            align-items: center;
            background-color: #e9ecef;
            padding: 8px;
            border-radius: 8px 8px 0 0;
            flex-shrink: 0;
        }
        .card-icon {
            font-size: 0.8rem;
            margin-right: 6px;
        }
        .eligibility-section .card-title, .course-info-section .card-title {
            font-size: 0.9rem;
            margin: 0;
        }
        .criteria-list {
            list-style: none;
            padding: 8px;
            margin: 0;
            flex-grow: 1;
            overflow-y: hidden;
        }
        .criteria-item {
            display: flex;
            align-items: center;
            margin-bottom: 6px;
        }
        .item-icon {
            font-size: 0.7rem;
            margin-right: 6px;
            color: #007bff;
            flex-shrink: 0;
        }
        .item-text {
            font-size: 0.75rem;
            line-height: 1.3;
        }
        .item-title {
            font-size: 0.75rem;
            font-weight: bold;
            display: block;
        }
        .item-detail {
            font-size: 0.7rem;
            color: #6c757d;
        }

        /* Carousel controls */
        .carousel-control-prev, .carousel-control-next {
            width: 3% !important;
            /* background-color: rgba(0, 123, 255, 0.7); */
            /* border-radius: 8px; */
            opacity: 1;
            transition: opacity 1s ease;
            top: 50% !important;
            transform: translateY(-50%);
            z-index: 1;
        }
        .carousel-control-prev:hover, .carousel-control-next:hover {
            opacity: 0.9;
        }
        .carousel-control-prev-icon, .carousel-control-next-icon {
            background-color: transparent;
            background-size: 80% 80%;
            width: 15px !important;
            height: 15px !important;
            filter: invert(100%) brightness(200%);
        }
        .carousel-indicators {
            bottom: -40px;
            margin-bottom: 0;
        }
        .carousel-indicators button {
            /* background-color: #007bff; */
            width: 6px;
            height: 6px;
            border-radius: 50%;
        }
        .carousel-inner {
            padding: 0 6%;
        }

        /* Responsive adjustments */
        @media (max-width: 768px) {
            .content-box {
                padding: 10px;
            }
            .inner-box-1, .inner-box-2 {
                padding: 5px;
            }
            .eligibility-card, .info-card {
                height: 180px;
                max-width: 100%;
            }
            .section-title, .info-title {
                font-size: 1rem;
            }
            .eligibility-section .card-title, .course-info-section .card-title {
                font-size: 0.8rem;
            }
            .card-icon, .item-icon {
                font-size: 0.6rem;
            }
            .item-text, .item-title {
                font-size: 0.7rem;
            }
            .item-detail {
                font-size: 0.65rem;
            }
            .carousel-control-prev, .carousel-control-next {
                width: 8%;
            }
            .carousel-control-prev-icon, .carousel-control-next-icon {
                width: 1.2rem;
                height: 1.2rem;
            }
            .carousel-indicators {
                bottom: -30px;
            }
            .carousel-indicators button {
                width: 6px;
                height: 6px;
            }
            .carousel-inner {
                padding: 0 8%;
            }
        }
        @media (max-width: 576px) {
            .content-box h1 {
                font-size: 1.5rem;
            }
             .criteria-list {
            list-style: none;
            padding: 8px;
            margin: 0;
            flex-grow: 1;
            overflow-y:auto;
        }
            .content-box h4 {
                font-size: 1rem;
            }
            .content-box p {
                font-size: 0.8rem;
            }
            .eligibility-card, .info-card {
                height: 160px;
            }
            .carousel-control-prev, .carousel-control-next {
                width: 10%;
            }
            .carousel-control-prev-icon, .carousel-control-next-icon {
                width: 1rem;
                height: 1rem;
            }
            .carousel-inner {
                padding: 0 10%;
            }
        }




        .admission-process-container {
            font-family: 'Segoe UI', Roboto, sans-serif;
            width: 100%;
            box-shadow: 0 5px 30px rgba(0, 119, 182, 0.15);
            border-radius: 12px;
            overflow: hidden;
            margin: 2rem 0;
        }

        .process-header {
            background: linear-gradient(135deg, #007bff 0%, #2575fc 100%);
            color: white;
            padding: 1.5rem 1rem 2.5rem;
            text-align: center;
            position: relative;
        }

        .process-main-icon {
            font-size: 2.2rem;
            margin-bottom: 0.8rem;
            color: rgba(255, 255, 255, 0.9);
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0% {
                transform: scale(1);
            }

            50% {
                transform: scale(1.1);
            }

            100% {
                transform: scale(1);
            }
        }

        .process-header h2 {
            margin: 0;
            font-weight: 600;
            font-size: 1.8rem;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        }

        .process-wave {
            position: absolute;
            bottom: -1px;
            left: 0;
            width: 100%;
            height: 1.5rem;
            background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 1200 120" xmlns="http://www.w3.org/2000/svg"><path d="M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1113-14.29,1200,52.47V0Z" fill="white" opacity=".25"/></svg>');
            background-size: cover;
        }

        .process-sections {
            display: flex;
            flex-wrap: wrap;
            gap: 1.5rem;
            padding: 1.5rem;
            background: white;
        }

        .process-section {
            flex: 1 1 100%;
            min-width: 0;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            position: relative;
        }

        .process-section:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
        }

        .process-section-header {
            display: flex;
            align-items: center;
            padding: 1.2rem;
            position: relative;
            overflow: hidden;
        }

        .ug-process .process-section-header {
            background: linear-gradient(135deg, #00b09b 0%, #96c93d 100%);
        }

        .pg-process .process-section-header {
            background: linear-gradient(135deg, #f46b45 0%, #eea849 100%);
        }

        .other-process .process-section-header {
            background: linear-gradient(135deg, #8e2de2 0%, #4a00e0 100%);
        }

        .process-section-header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));
            z-index: 1;
        }

        .process-section-icon {
            font-size: 1.5rem;
            margin-right: 0.8rem;
            color: white;
            position: relative;
            z-index: 2;
        }

        .process-section h3 {
            margin: 0;
            font-weight: 600;
            font-size: 1.4rem;
            color: white;
            position: relative;
            z-index: 2;
        }

        .corner-ribbon {
            position: absolute;
            top: 10px;
            right: -30px;
            width: 100px;
            padding: 3px 0;
            background: rgba(0, 0, 0, 0.2);
            color: white;
            font-size: 0.8rem;
            text-align: center;
            transform: rotate(45deg);
            z-index: 3;
        }

        .process-content {
            padding: 1.2rem;
        }

        .process-item {
            display: flex;
            align-items: center;
            padding: 1rem;
            background: rgba(245, 247, 250, 0.6);
            border-radius: 8px;
            transition: all 0.3s ease;
        }

        .process-item:hover {
            background: rgba(245, 247, 250, 0.9);
            transform: translateX(5px);
        }

        .process-item-icon {
            width: 2.5rem;
            height: 2.5rem;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 1rem;
            color: white;
            font-size: 1rem;
            flex-shrink: 0;
        }

        .ug-process .process-item-icon {
            background: linear-gradient(135deg, #00b09b 0%, #96c93d 100%);
        }

        .pg-process .process-item-icon {
            background: linear-gradient(135deg, #f46b45 0%, #eea849 100%);
        }

        .other-process .process-item-icon {
            background: linear-gradient(135deg, #8e2de2 0%, #4a00e0 100%);
        }

        .process-item-text {
            flex: 1;
            font-size: 1rem;
            line-height: 1.5;
        }

        /* Responsive Layout */
        @media (min-width: 768px) {
            .process-section {
                flex: 1 1 calc(50% - 1rem);
            }
        }

        @media (min-width: 992px) {
            .process-section {
                flex: 1 1 calc(33.333% - 1rem);
            }
        }

        @media (max-width: 480px) {
            .process-header h2 {
                font-size: 1.5rem;
            }

            .process-section-header {
                padding: 1rem;
            }

            .process-section h3 {
                font-size: 1.2rem;
            }

            .process-item {
                flex-direction: column;
                text-align: center;
                padding: 1rem;
            }

            .process-item-icon {
                margin-right: 0;
                margin-bottom: 0.8rem;
            }
        }


          .med-card {
            background: white;
            border-radius: 12px;
            overflow: hidden;

            border: #3333332d 1px solid;
            width: 100%;
            max-width: 100%;
            transition: transform 0.3s ease;
            margin: 0;
            box-sizing: border-box;
        }

        .med-card:hover {
            transform: translateY(-3px);
        }

        .med-card-header {
            background: linear-gradient(135deg, #007bff 0%, #00b4d8 100%);
            color: white;
            padding: 25px 15px 35px;
            text-align: center;
            position: relative;
            width: 100%;
            box-sizing: border-box;
        }

        .med-icon-circle {
            width: 60px;
            height: 60px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 15px;
            font-size: 1.5rem;
        }

        .med-card-header h3 {
            margin: 0;
            font-weight: 600;
            padding: 0 10px;
        }

        .med-wave {
            position: absolute;
            bottom: -1px;
            left: 0;
            width: 100%;
            height: 20px;
            background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 1200 120" xmlns="http://www.w3.org/2000/svg"><path d="M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1113-14.29,1200,52.47V0Z" fill="white" opacity=".25"/></svg>');
            background-size: cover;
        }

        .med-card-list {
            list-style: none;
            padding: 20px 15px;
            margin: 0;
            width: 100%;
            box-sizing: border-box;
        }

        .med-list-item {
            display: flex;
            align-items: center;
            padding: 15px 10px;
            border-bottom: 1px solid #f0f8ff;
            transition: background 0.2s ease;
            width: 100%;
            box-sizing: border-box;
        }

        .med-list-item:last-child {
            border-bottom: none;
        }

        .med-list-item:hover {
            background: #f8fdff;
        }

        .item-icon {
            width: 40px;
            height: 40px;
            background: #e6f4ff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            color: #007bff;
            flex-shrink: 0;
        }

        /* Responsive adjustments */
        @media (max-width: 768px) {
            .med-card-header {
                padding: 20px 10px 30px;
            }

            .med-icon-circle {
                width: 50px;
                height: 50px;
                font-size: 1.3rem;
            }

            .med-card-list {
                padding: 15px 10px;
            }
        }

        @media (max-width: 480px) {
            .med-list-item {
                flex-direction: column;
                text-align: center;
                padding: 15px 5px;
            }

            .item-icon {
                margin-right: 0;
                margin-bottom: 10px;
            }

            .med-card-header h3 {
                font-size: 1.2rem;
            }
        }


        /* Base med-card styling (retained for consistency) */
        .med-card {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0, 119, 182, 0.1);
            width: 100%;
            max-width: 100%;
            transition: transform 0.3s ease;
            margin: 0;
            box-sizing: border-box;
        }

        .med-card:hover {
            transform: translateY(-3px);
        }

        /* med-card header styles (retained for consistency) */
        .med-card-header {
            background: linear-gradient(135deg, #0077b6 0%, #00b4d8 100%);
            color: white;
            padding: 25px 15px 35px;
            text-align: center;
            position: relative;
            width: 100%;
            box-sizing: border-box;
        }

        .med-icon-circle {
            width: 60px;
            height: 60px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 15px;
            font-size: 1.5rem;
        }

        .med-card-header h3 {
            margin: 0;
            font-weight: 600;
            padding: 0 10px;
            box-shadow: none !important;
        }

        .med-wave {
            position: absolute;
            bottom: -1px;
            left: 0;
            width: 100%;
            height: 20px;
            background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 1200 120" xmlns="http://www.w3.org/2000/svg"><path d="M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1113-14.29,1200,52.47V0Z" fill="white" opacity=".25"/></svg>');
            background-size: cover;
        }

        /* Curriculum Modern specific container */
        .curriculum-modern {
            display: flex;
            flex-direction: column;
            gap: 25px;
            /* Consistent gap between blocks */
            padding: 25px;
            /* Consistent padding for the entire content area */
            box-sizing: border-box;
        }

        .curriculum-block {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s ease;
        }

        .curriculum-block:hover {
            transform: translateY(-5px);
        }

        .block-header {
            padding: 20px;
            color: white;
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .block-header i {
            font-size: 1.8rem;
            filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
        }

        .block-header h3 {
            margin: 0;
            font-size: 1.4rem;
            font-weight: 700;
            text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
        }

        .block-content {
            padding: 20px;
            /* Consistent padding inside content blocks */
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 15px;
            /* Consistent gap between subject cards */
        }

        .subject-card {
            background: #f8fafc;
            border-radius: 10px;
            padding: 15px;
            /* Consistent padding inside subject cards */
            display: flex;
            align-items: center;
            gap: 12px;
            transition: all 0.3s ease;
        }

        .subject-card:hover {
            background: #fff;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transform: translateY(-3px);
        }

        .subject-icon {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(0, 123, 255, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            /* Prevent icon from shrinking */
        }

        .subject-icon i {
            color: #007bff;
            font-size: 1.1rem;
        }

        .subject-name {
            font-weight: 500;
            color: #2d3748;
            flex: 1;
        }

        /* Responsive adjustments */
        @media (max-width: 768px) {
            .med-card-header {
                padding: 20px 10px 30px;
            }

            .med-icon-circle {
                width: 50px;
                height: 50px;
                font-size: 1.3rem;
            }

            .curriculum-modern {
                gap: 20px;
                padding: 20px;
            }

            .block-content {
                grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
                gap: 10px;
                padding: 15px;
            }

            .block-header {
                padding: 15px;
            }

            .block-header h3 {
                font-size: 1.2rem;
            }

            .subject-card {
                padding: 12px;
                gap: 10px;
            }

            .subject-icon {
                width: 35px;
                height: 35px;
                font-size: 1rem;
            }

            .subject-name {
                font-size: 0.9rem;
            }
        }

        @media (max-width: 480px) {
            .med-card-header h3 {
                font-size: 1.2rem;
            }

            .curriculum-modern {
                padding: 15px;
            }

            .block-content {
                grid-template-columns: 1fr;
                padding: 15px;
            }

            .subject-card {
                flex-direction: row;
                /* Keep content in a row on small screens */
                text-align: left;
                padding: 15px;
            }
        }

           /* General body/container resets for better integration */


        .container {
            max-width: 1200px;
            margin: 0 auto;
            /* Center the container */
            padding: 0 15px;
            /* Add horizontal padding to container */
        }

        /* Fluid Header Styles - Consolidated and refined */
        .fluid-header {
            background: linear-gradient(135deg, #007bff 0%, #3498db 100%);
            color: white;
            padding: 2rem 1.5rem 3rem;
            /* Increased padding for more presence */
            text-align: center;
            position: relative;
            width: 100%;
            border-radius: 12px 12px 0 0;
            /* Consistent rounded top */
            margin-bottom: 0;
            /* Remove gap between header and content container */
            overflow: hidden;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            /* Subtle shadow for depth */
        }

        .fluid-main-icon {
            font-size: 2.5rem;
            /* Slightly larger icon */
            margin-bottom: 0.8rem;
            display: block;
            /* Ensure icon is on its own line */
        }

        .fluid-title {
            margin: 0;
            font-weight: 700;
            /* Bolder title */
            font-size: 2.2rem;
            /* Larger title font */
            letter-spacing: -0.02em;
            /* Slightly tighter letter spacing */
        }

        .fluid-wave {
            position: absolute;
            bottom: -1px;
            left: 0;
            width: 100%;
            height: 2rem;
            /* Taller wave for a more pronounced effect */
            background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 1200 120" xmlns="http://www.w3.org/2000/svg"><path d="M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1113-14.29,1200,52.47V0Z" fill="white" opacity=".25"/></svg>');
            background-size: cover;
        }

        /* Main container for the skills section */
        .skills-section-wrapper {
            background-color: #fff;
            /* White background for the whole section */
            border-radius: 12px;
            box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
            overflow: hidden;
            /* Important for the header's rounded corners */
            margin-top: 2rem;
            /* Space from content above */
            margin-bottom: 2rem;
            /* Space from content below */
        }

        /* Content area below the header */
        .skills-content-area {
            padding: 30px;
            /* Generous padding for content */
        }

        /* Skills Grid */
        .skills-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            /* Adjusted minmax for better responsiveness */
            gap: 25px;
            /* Increased gap between skill categories */
            margin-top: 0;
            /* Remove top margin as content-area padding handles it */
        }

        .skill-category {
            background: #fdfdff;
            /* Very light background for categories */
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
            /* Lighter shadow */
            border: 1px solid #e0e6ed;
            /* Softer border */
            transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
        }

        .skill-category:hover {
            transform: translateY(-5px);
            /* Lift effect on hover */
            box-shadow: 0 6px 12px rgba(0, 0, 0, 0.12);
        }

        .category-header {
            background-color: #e9f5ff;
            /* Light blue background for headers */
            color: #0056b3;
            /* Darker blue text for contrast */
            padding: 18px 20px;
            /* More padding */
            display: flex;
            align-items: center;
            gap: 12px;
            /* Slightly more space for icon */
            border-bottom: 1px solid #d4e8f7;
            /* Matching softer border */
        }

        .category-header i {
            font-size: 1.4rem;
            /* Slightly larger category icon */
            color: #007bff;
            /* Primary blue icon color */
        }

        .category-header h3 {
            font-size: 1.4rem;
            /* Matching font size for header text */
            font-weight: 600;
            margin: 0;
            /* Remove default margin */
        }

        .skill-items {
            padding: 20px;
            /* More padding for list items */
        }

        .skill-item {
            display: flex;
            align-items: center;
            padding: 14px 10px;
            /* Increased padding for each item */
            border-bottom: 1px dashed #e9ecef;
            /* Dashed separator for a softer look */
            gap: 15px;
            /* More space between icon and text */
            font-size: 1rem;
            color: #555;
        }

        .skill-item:last-child {
            border-bottom: none;
            /* No border for the last item */
        }

        .skill-item i {
            width: 28px;
            /* Slightly wider icon area */
            text-align: center;
            font-size: 1.2rem;
            /* Larger item icon */
            color: #007bff;
            /* Consistent blue icon color */
            flex-shrink: 0;
            /* Prevent icon from shrinking on smaller screens */
        }

        /* Responsive adjustments */
        @media (max-width: 768px) {
            .fluid-header {
                padding: 1.5rem 1rem 2.5rem;
            }

            .fluid-main-icon {
                font-size: 2rem;
            }

            .fluid-title {
                font-size: 1.8rem;
            }

            .skills-content-area {
                padding: 20px;
            }

            .skills-grid {
                grid-template-columns: 1fr;
                /* Single column on smaller screens */
            }

            .category-header h3,
            .category-header i {
                font-size: 1.2rem;
            }

            .skill-item {
                font-size: 0.95rem;
                padding: 12px 8px;
            }

            .skill-item i {
                font-size: 1.1rem;
                width: 24px;
            }
        }

        @media (max-width: 480px) {
            .fluid-header {
                padding: 1rem 0.75rem 2rem;
            }

            .fluid-main-icon {
                font-size: 1.8rem;
            }

            .fluid-title {
                font-size: 1.6rem;
            }

            .skills-content-area {
                padding: 15px;
            }
        }


         /* Base med-card styling (retained for consistency) */
        .med-card {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0, 119, 182, 0.1);
            width: 100%;
            max-width: 100%;
            transition: transform 0.3s ease;
            margin: 0;
            box-sizing: border-box;
        }

        .med-card:hover {
            transform: translateY(-3px);
        }

        /* med-card header styles (retained for consistency) */
        .med-card-header {
            background: linear-gradient(135deg, #0077b6 0%, #00b4d8 100%);
            color: white;
            padding: 25px 15px 35px;
            text-align: center;
            position: relative;
            width: 100%;
            box-sizing: border-box;
        }

        .med-icon-circle {
            width: 60px;
            height: 60px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 15px;
            font-size: 1.5rem;
        }

        .med-card-header h3 {
            margin: 0;
            font-weight: 600;
            padding: 0 10px;
        }

        .med-wave {
            position: absolute;
            bottom: -1px;
            left: 0;
            width: 100%;
            height: 20px;
            background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 1200 120" xmlns="http://www.w3.org/2000/svg"><path d="M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1113-14.29,1200,52.47V0Z" fill="white" opacity=".25"/></svg>');
            background-size: cover;
        }

        /* International Exposure specific container */
        .international-exposure-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            /* Adjusted minmax for smaller cards */
            gap: 20px;
            /* Reduced gap slightly for more compact look */
            padding: 25px;
            /* Consistent padding for content area */
            box-sizing: border-box;
        }

        .exposure-card {
            background: #ffffff;
            border-radius: 12px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
            /* Lighter shadow for individual cards */
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            text-align: center;
            padding: 20px;
            /* Consistent padding inside each card */
            box-sizing: border-box;
        }

        .exposure-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
        }

        .exposure-card-content {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }

        .icon-circle {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 15px;
            /* Margin below the icon */
            font-size: 1.8rem;
            /* Icon size */
            color: #ffffff;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }

        /* Specific colors for icons */
        .primary-color {
            background: linear-gradient(135deg, #007bff, #0056b3);
        }

        .success-color {
            background: linear-gradient(135deg, #28a745, #1e7e34);
        }

        .info-color {
            background: linear-gradient(135deg, #17a2b8, #117a8b);
        }

        .warning-color {
            background: linear-gradient(135deg, #ffc107, #d39e00);
        }


        .exposure-card h4 {
            font-size: 1.25rem;
            font-weight: 600;
            color: #333;
            margin-bottom: 8px;
            /* Margin below title */
        }

        .exposure-card p {
            font-size: 0.95rem;
            color: #666;
            line-height: 1.4;
            margin: 0;
            /* Remove default paragraph margins */
        }

        /* Responsive adjustments */
        @media (max-width: 768px) {
            .med-card-header {
                padding: 20px 10px 30px;
            }

            .med-icon-circle {
                width: 50px;
                height: 50px;
                font-size: 1.3rem;
            }

            .international-exposure-container {
                grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
                /* More flexible grid on tablets */
                gap: 15px;
                /* Reduced gap */
                padding: 20px;
            }

            .exposure-card {
                padding: 15px;
            }

            .icon-circle {
                width: 50px;
                height: 50px;
                font-size: 1.5rem;
                margin-bottom: 10px;
            }

            .exposure-card h4 {
                font-size: 1.1rem;
                margin-bottom: 5px;
            }

            .exposure-card p {
                font-size: 0.85rem;
            }
        }

        @media (max-width: 480px) {
            .med-card-header h3 {
                font-size: 1.2rem;
            }

            .international-exposure-container {
                grid-template-columns: 1fr;
                /* Stacks cards on mobile */
                gap: 15px;
                padding: 15px;
            }

            .exposure-card {
                padding: 15px;
            }
        }


         /* Common styles for the fluid header */



        .career-pathways-card {
            border: none;
            border-radius: 12px;
            box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
            background: #fff;
            margin-bottom: 2rem;
            overflow: hidden;
        }

        .path-section {
            padding: 1.5rem;
        }

        /* Career Arrow Pathway Styles */
        .career-arrow-path {
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
            border-radius: 8px;
            overflow: hidden;
            position: relative;
        }

        .career-arrow-segment,
        .career-arrow-segment-blue,
        .career-arrow-segment-red {
            flex-grow: 1;
            min-width: 200px;
            position: relative;
            text-align: center;
            padding: 1.2rem 1.5rem;
            z-index: 1;
            transition: background-color 0.3s ease;
            clip-path: polygon(0% 0%, 100% 0%, calc(100% - 25px) 50%, 100% 100%, 0% 100%, 25px 50%);
            margin-right: -25px;
        }

        .career-arrow-segment-blue {
            margin-right: -50px;
        }

        .career-arrow-segment-red {
            margin-right: -50px;
        }


        .career-arrow-segment:first-child,
        .career-arrow-segment-blue:first-child,
        .career-arrow-segment-red:first-child {
            clip-path: polygon(0% 0%, 100% 0%, calc(100% - 25px) 50%, 100% 100%, 0% 100%);
            border-top-left-radius: 8px;
            border-bottom-left-radius: 8px;
        }

        .career-arrow-segment:last-child,
        .career-arrow-segment-blue:last-child,
        .career-arrow-segment-red:last-child {
            clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%, 25px 50%);
            margin-right: 0;
            border-top-right-radius: 8px;
            border-bottom-right-radius: 8px;
        }

        /* Specific colors for each segment */
        .custom-color-1 {
            background-color: #007bff;
        }

        .custom-color-2 {
            background-color: white;
        }

        .custom-color-3 {
            background-color: white;
        }

        .custom-color-4 {
            background-color: #007bff;
        }

        .custom-color-5 {
            background-color: white;
        }

        .career-arrow-segment p,
        .career-arrow-segment-blue p,
        .career-arrow-segment-red p {
            margin-bottom: 0;
            font-size: 1rem;
            line-height: 1.5;
        }

        .text-white {
            color: white !important;
        }

        .text-dark {
            color: #343a40 !important;
        }

        /* Responsive Adjustments */
        @media (max-width: 992px) {
            .container {
                max-width: 960px;
            }

            .career-arrow-segment,
            .career-arrow-segment-blue,
            .career-arrow-segment-red {
                min-width: 180px;
                padding: 1rem 1.25rem;
                clip-path: polygon(0% 0%, 100% 0%, calc(100% - 20px) 50%, 100% 100%, 0% 100%, 20px 50%);
                margin-right: -20px;
            }

            .career-arrow-segment:first-child,
            .career-arrow-segment-blue:first-child,
            .career-arrow-segment-red:first-child {
                clip-path: polygon(0% 0%, 100% 0%, calc(100% - 20px) 50%, 100% 100%, 0% 100%);
            }

            .career-arrow-segment:last-child,
            .career-arrow-segment-blue:last-child,
            .career-arrow-segment-red:last-child {
                clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%, 20px 50%);
            }
        }

        @media (max-width: 768px) {
            .career-arrow-path {
                flex-direction: column;
                align-items: stretch;
            }

            .career-arrow-segment,
            .career-arrow-segment-blue,
            .career-arrow-segment-red {
                min-width: unset;
                width: 100%;
                margin-right: 0;
                margin-bottom: -20px;
                clip-path: polygon(0% 0%, 100% 0%, 100% calc(100% - 20px), 50% 100%, 0% calc(100% - 20px));
                border-radius: 0;
            }

            .career-arrow-segment:first-child,
            .career-arrow-segment-blue:first-child,
            .career-arrow-segment-red:first-child {
                clip-path: polygon(0% 0%, 100% 0%, 100% calc(100% - 20px), 50% 100%, 0% calc(100% - 20px));
                border-top-left-radius: 8px;
                border-top-right-radius: 8px;
                border-bottom-left-radius: 0;
                border-bottom-right-radius: 0;
            }

            .career-arrow-segment:last-child,
            .career-arrow-segment-blue:last-child,
            .career-arrow-segment-red:last-child {
                clip-path: polygon(0% 20px, 100% 20px, 100% 100%, 0% 100%);
                margin-bottom: 0;
                border-bottom-left-radius: 8px;
                border-bottom-right-radius: 8px;
                border-top-left-radius: 0;
                border-top-right-radius: 0;
            }
        }

        @media (max-width: 576px) {
            .container {
                max-width: 100%;
                padding: 0 10px !important;
            }

            .section-header h2 {
                font-size: 1.5rem;
            }

            .path-section {
                padding: 1rem;
            }

            .path-section h4 {
                font-size: 1.25rem;
            }

            .career-arrow-segment,
            .career-arrow-segment-blue,
            .career-arrow-segment-red {
                padding: 0.8rem 1rem;
                clip-path: polygon(0% 0%, 100% 0%, 100% calc(100% - 15px), 50% 100%, 0% calc(100% - 15px));
                margin-bottom: -15px;
            }

            .career-arrow-segment:first-child,
            .career-arrow-segment-blue:first-child,
            .career-arrow-segment-red:first-child {
                clip-path: polygon(0% 0%, 100% 0%, 100% calc(100% - 15px), 50% 100%, 0% calc(100% - 15px));
            }

            .career-arrow-segment:last-child,
            .career-arrow-segment-blue:last-child,
            .career-arrow-segment-red:last-child {
                clip-path: polygon(0% 15px, 100% 15px, 100% 100%, 0% 100%);
            }

            .career-arrow-segment p,
            .career-arrow-segment-blue p,
            .career-arrow-segment-red p {
                font-size: 0.9rem;
            }
        }

        @media (max-width: 400px) {

            .career-arrow-segment,
            .career-arrow-segment-blue,
            .career-arrow-segment-red {
                padding: 0.6rem 0.8rem;
                clip-path: polygon(0% 0%, 100% 0%, 100% calc(100% - 12px), 50% 100%, 0% calc(100% - 12px));
                margin-bottom: -12px;
            }

            .career-arrow-segment:first-child,
            .career-arrow-segment-blue:first-child,
            .career-arrow-segment-red:first-child {
                clip-path: polygon(0% 0%, 100% 0%, 100% calc(100% - 12px), 50% 100%, 0% calc(100% - 12px));
            }

            .career-arrow-segment:last-child,
            .career-arrow-segment-blue:last-child,
            .career-arrow-segment-red:last-child {
                clip-path: polygon(0% 12px, 100% 12px, 100% 100%, 0% 100%);
            }

            .career-arrow-segment p,
            .career-arrow-segment-blue p,
            .career-arrow-segment-red p {
                font-size: 0.85rem;
            }
        }

           /* General Card Styling Enhancements */


        /* Hover effect for the entire job/recruiter cards */
        .hover {
            transform: translateY(-8px);
            /* Lifts the card slightly */
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
            /* More pronounced shadow on hover */
            transition: 0.5s ease-in-out;
        }

        /* Styling for the card header */
        .card-header {
            background-color: #f8f9fa !important;
            /* Light background for headers */
            font-weight: 600;
            color: #333;
            display: flex;
            align-items: center;
            border-top-left-radius: 12px;
            /* Match card border-radius */
            border-top-right-radius: 12px;
            /* Match card border-radius */
        }

        .card-header .h5 {
            margin-bottom: 0;
            display: flex;
            align-items: center;
            width: 100%;
            /* Ensure content spans full width for flex alignment */
        }

        .card-header .h5 i {
            color: #007bff;
            /* Primary blue for header icons */
            font-size: 1.2rem;
        }

        /* Badge styling */
        .card-header .badge {
            font-size: 0.85em;
            padding: 0.4em 0.6em;
            border-radius: 0.3rem;
            background-color: #e0f0ff;
            /* Lighter blue for the badge background */
            color: #007bff;
            /* Primary blue for badge text */
            font-weight: 500;
            display: flex;
            align-items: center;
        }

        .card-header .badge i {
            font-size: 0.75em;
            /* Smaller icon within the badge */
            margin-right: 0.25rem;
        }

        /* List group item styling */
        .list-group-item {
            border-left: none;
            border-right: none;
            border-radius: 0;
            font-size: 1.05rem;
            color: #555;
            background-color: #ffffff;
            /* Ensure white background */
        }

        /* Hover effect for individual list items */
        .list-item-hover {
            transition: background-color 0.2s ease, transform 0.2s ease;
        }

        .list-item-hover:hover {
            background-color: #f8f9fa;
            /* Light grey background on hover */
            transform: translateX(5px);
            /* Slight slide to the right */
        }

        .list-group-item i {
            color: #007bff;
            /* Primary blue for list item icons */
            transition: color 0.2s ease;
        }

        .list-group-item:hover i {
            color: #0056b3;
            /* Darker blue on list item hover */
        }

        /* Adjustments for the main title */
        .d-flex.justify-content-center h2 {
            font-size: 2.5rem;
            /* Larger main title */
            color: #343a40;
            font-weight: 700;
            position: relative;
            padding-bottom: 10px;
            /* Space for the underline */
        }

        .d-flex.justify-content-center h2::after {
            content: '';
            position: absolute;
            left: 50%;
            bottom: 0;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            border-radius: 2px;
        }

        /* Responsive Adjustments */
        @media (max-width: 991.98px) {
            .col-lg-4.mb-4.mb-lg-0 {
                margin-bottom: 1.5rem !important;
                /* Adjust margin for smaller screens */
            }
        }

        @media (max-width: 767.98px) {
            .d-flex.justify-content-center h2 {
                font-size: 2rem;
                text-align: center;
                margin-bottom: 1.5rem;
            }

            .card-body.p-4 {
                padding: 1.5rem !important;
            }

            .card-header h3 {
                font-size: 1.1rem;
            }

            .list-group-item {
                font-size: 0.95rem;
                padding: 0.65rem 0.8rem;
            }

            .list-group-item i {
                font-size: 1.1rem;
                min-width: 20px !important;
                /* Adjust icon min-width for smaller screens */
            }
        }

        @media (max-width: 575.98px) {
            .d-flex.justify-content-center h2 {
                font-size: 1.75rem;
                margin-bottom: 1rem;
            }

            .card-body.p-4 {
                padding: 1rem !important;
            }

            .card-header h3 {
                font-size: 1rem;
                flex-direction: column;
                /* Stack header content */
                align-items: flex-start;
            }

            .card-header .h5 i.me-3 {
                margin-right: 0 !important;
                /* Remove right margin when stacked */
                margin-bottom: 0.5rem;
                /* Add bottom margin for icon */
            }

            .card-header .badge {
                margin-top: 0.5rem;
                /* Space the badge below title */
                font-size: 0.75em;
            }

            .list-group-item {
                font-size: 0.9rem;
                padding: 0.6rem 0.7rem;
            }

            .list-group-item i {
                font-size: 1rem;
                min-width: 18px !important;
            }
        }


         /* Base med-card styling for container */
        .med-card {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0, 119, 182, 0.1);
            width: 100%;
            max-width: 100%;
            transition: transform 0.3s ease;
            margin: 0;
            /* Ensures no external margin by default */
            box-sizing: border-box;
        }

        .med-card:hover {
            transform: translateY(-3px);
        }

        /* med-card header styles (retained for consistency) */
        .med-card-header {
            background: linear-gradient(135deg, #007bff 0%, #007bff 100%);
            color: white;
            padding: 25px 15px 35px;
            /* Consistent padding */
            text-align: center;
            position: relative;
            width: 100%;
            box-sizing: border-box;
        }

        .med-icon-circle {
            width: 60px;
            height: 60px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 15px;
            font-size: 1.5rem;
        }

        .med-card-header h3 {
            margin: 0;
            font-weight: 600;
            padding: 0 10px;
        }

        .med-wave {
            position: absolute;
            bottom: -1px;
            left: 0;
            width: 100%;
            height: 20px;
            background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 1200 120" xmlns="http://www.w3.org/2000/svg"><path d="M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1113-14.29,1200,52.47V0Z" fill="white" opacity=".25"/></svg>');
            background-size: cover;
        }

        /* Salary Insights Container */
        .salary-insights-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 25px;
            padding: 25px;
            /* Consistent padding for the content area */
            box-sizing: border-box;
        }

        .salary-card {
            background: #ffffff;
            border-radius: 18px;
            padding: 25px;
            /* Consistent padding inside cards */
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.07);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .salary-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 6px;
            border-top-left-radius: 18px;
            border-top-right-radius: 18px;
        }

        .fresher-card::before {
            background: linear-gradient(to right, #0071ef, #0071ef);
        }

        .midlevel-card::before {
            background: linear-gradient(to right, #0071ef, #0071ef);
        }

        .abroad-card::before {
            background: linear-gradient(to right, #0071ef, #0071ef);
        }

        .salary-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 18px 38px rgba(0, 0, 0, 0.1);
        }

        .salary-icon {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            font-size: 2rem;
            color: #ffffff;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        }

        .fresher-card .salary-icon {
            background: linear-gradient(135deg, #0071ef, #0071ef);
        }

        .midlevel-card .salary-icon {
            background: linear-gradient(135deg, #2196F3, #0071ef);
        }

        .abroad-card .salary-icon {
            background: linear-gradient(135deg, #0071ef, #0071ef);
        }

        .salary-content h3 {
            margin: 0 0 12px 0;
            /* Cleaned margin */
            color: #333333;
            font-size: 1.4rem;
            font-weight: 600;
        }

        .salary-amount {
            display: flex;
            align-items: baseline;
            justify-content: center;
            margin-bottom: 8px;
        }

        .amount-value {
            font-size: 2.2rem;
            font-weight: 700;
            line-height: 1;
            margin-right: 5px;
            background: linear-gradient(135deg, #333, #555);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .fresher-card .amount-value {
            background: linear-gradient(135deg, #0071ef, #0071ef);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .midlevel-card .amount-value {
            background: linear-gradient(135deg, #0071ef, #0071ef);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .abroad-card .amount-value {
            background: linear-gradient(135deg, #0071ef, #0071ef);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .amount-unit {
            font-size: 1rem;
            font-weight: 500;
            color: #666666;
        }

        .salary-note {
            color: #777777;
            font-size: 0.9rem;
            margin-top: 5px;
        }

        /* Responsive Adjustments */
        @media (max-width: 768px) {
            .med-card-header {
                padding: 20px 10px 30px;
                /* Adjusted padding */
            }

            .med-icon-circle {
                width: 50px;
                height: 50px;
                font-size: 1.3rem;
            }

            .salary-insights-container {
                grid-template-columns: 1fr;
                /* Stacks cards on smaller screens */
                gap: 20px;
                /* Adjusted gap */
                padding: 20px;
                /* Adjusted padding */
            }

            .salary-card {
                padding: 20px;
                /* Adjusted padding */
            }

            .salary-icon {
                width: 60px;
                height: 60px;
                font-size: 1.8rem;
                margin-bottom: 15px;
            }

            .salary-content h3 {
                font-size: 1.2rem;
                margin-bottom: 10px;
            }

            .amount-value {
                font-size: 1.8rem;
            }

            .amount-unit {
                font-size: 0.9rem;
            }

            .salary-note {
                font-size: 0.8rem;
            }
        }

        @media (max-width: 480px) {
            .med-card-header h3 {
                font-size: 1.2rem;
            }
        }

        .text-adj {

            text-align: start !important;
            font-size: 35px;
            margin-left: -40px;
        }

         .med-card {
            background: white;
            border-radius: 12px;
            overflow: hidden;

            width: 100%;
            max-width: 100%;
            transition: transform 0.3s ease;
            margin: 0;
            box-sizing: border-box;
        }

        .med-card:hover {
            transform: translateY(-3px);
        }

        .med-card-header {
            background: linear-gradient(135deg, #007bff 0%, #00b4d8 100%);
            color: white;
            padding: 25px 15px 35px;
            text-align: center;
            position: relative;
            width: 100%;
            box-sizing: border-box;
        }

        .med-icon-circle {
            width: 60px;
            height: 60px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 15px;
            font-size: 1.5rem;
        }

        .med-card-header h3 {
            margin: 0;
            font-weight: 600;
            padding: 0 10px;
        }

        .med-wave {
            position: absolute;
            bottom: -1px;
            left: 0;
            width: 100%;
            height: 20px;
            background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 1200 120" xmlns="http://www.w3.org/2000/svg"><path d="M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1113-14.29,1200,52.47V0Z" fill="white" opacity=".25"/></svg>');
            background-size: cover;
        }

        .med-card-list {
            list-style: none;
            padding: 20px 15px;
            margin: 0;
            width: 100%;
            box-sizing: border-box;
        }

        .med-list-item {
            display: flex;
            align-items: center;
            padding: 15px 10px;
            border-bottom: 1px solid #f0f8ff;
            transition: background 0.2s ease;
            width: 100%;
            box-sizing: border-box;
        }

        .med-list-item:last-child {
            border-bottom: none;
        }

        .med-list-item:hover {
            background: #f8fdff;
        }

        .item-icon {
            width: 40px;
            height: 40px;
            background: #e6f4ff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            color: #007bff;
            flex-shrink: 0;
        }

        /* Responsive adjustments */
        @media (max-width: 768px) {
            .med-card-header {
                padding: 20px 10px 30px;
            }

            .med-icon-circle {
                width: 50px;
                height: 50px;
                font-size: 1.3rem;
            }

            .med-card-list {
                padding: 15px 10px;
            }
        }

        @media (max-width: 480px) {
            .med-list-item {
                flex-direction: column;
                text-align: center;
                padding: 15px 5px;
            }

            .item-icon {
                margin-right: 0;
                margin-bottom: 10px;
            }

            .med-card-header h3 {
                font-size: 1.2rem;
            }
        }

         .med-card {
            background: white;
            border-radius: 12px;
            overflow: hidden;

            width: 100%;
            max-width: 100%;
            transition: transform 0.3s ease;
            margin: 0;
            box-sizing: border-box;
        }

        .med-card:hover {
            transform: translateY(-3px);
        }

        .med-card-header {
            background: linear-gradient(135deg, #007bff 0%, #00b4d8 100%);
            color: white;
            padding: 25px 15px 35px;
            text-align: center;
            position: relative;
            width: 100%;
            box-sizing: border-box;
        }

        .med-icon-circle {
            width: 60px;
            height: 60px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 15px;
            font-size: 1.5rem;
        }

        .med-card-header h3 {
            margin: 0;
            font-weight: 600;
            padding: 0 10px;
        }

        .med-wave {
            position: absolute;
            bottom: -1px;
            left: 0;
            width: 100%;
            height: 20px;
            background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 1200 120" xmlns="http://www.w3.org/2000/svg"><path d="M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1113-14.29,1200,52.47V0Z" fill="white" opacity=".25"/></svg>');
            background-size: cover;
        }

        /* New Flexbox Container for Columns */
        .med-card-content-columns {
            display: flex;
            flex-wrap: wrap;
            /* Allows columns to wrap on smaller screens */
            padding: 20px 15px;
            /* Overall padding for the content area */
            gap: 20px;
            /* Space between columns */
        }

        .med-card-column {
            flex: 1 1 calc(50% - 10px);
            /* Default to 50% width minus half of the gap */
            box-sizing: border-box;
            min-width: 280px;
            /* Minimum width before wrapping */
        }

        /* Style for the 'Advantages' and 'Disadvantages' sub-titles within the card */
        .med-subsection-title {
            font-size: 1.3rem;
            font-weight: 600;
            color: #007bff;
            /* Blue theme color */
            text-align: center;
            padding: 0px 15px 10px;
            /* Adjust padding as needed */
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            /* Space between icon and text */
            margin-top: 0;
            /* No top margin here as columns handle spacing */
        }

        .med-card-list {
            list-style: none;
            padding: 0;
            /* No padding here, handled by .med-card-content-columns */
            margin: 0;
            width: 100%;
            box-sizing: border-box;
        }

        .med-list-item {
            display: flex;
            align-items: center;
            padding: 15px 10px;
            border-bottom: 1px solid #f0f8ff;
            transition: background 0.2s ease;
            width: 100%;
            box-sizing: border-box;
        }

        /* Ensure last item in each list doesn't have a bottom border */
        .med-card-list .med-list-item:last-child {
            border-bottom: none;
        }

        .med-list-item:hover {
            background: #f8fdff;
        }

        .item-icon {
            width: 40px;
            height: 40px;
            background: #e6f4ff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            color: #007bff;
            flex-shrink: 0;
        }

        /* Responsive adjustments */
        @media (max-width: 768px) {
            .med-card-header {
                padding: 20px 10px 30px;
            }

            .med-icon-circle {
                width: 50px;
                height: 50px;
                font-size: 1.3rem;
            }

            .med-subsection-title {
                font-size: 1.1rem;
                padding: 15px 10px 8px;
            }

            .med-card-content-columns {
                flex-direction: column;
                /* Stack columns on smaller screens */
                padding: 20px 15px;
                /* Maintain padding */
                gap: 0;
                /* Remove gap when stacked */
            }

            .med-card-column {
                flex: 1 1 100%;
                /* Take full width when stacked */
                min-width: unset;
            }

            /* Add spacing between stacked columns */
            .med-card-column:not(:last-child) {
                margin-bottom: 20px;
            }
        }

        @media (max-width: 480px) {
            .med-list-item {
                flex-direction: column;
                text-align: center;
                padding: 15px 5px;
            }

            .item-icon {
                margin-right: 0;
                margin-bottom: 10px;
            }

            .med-card-header h3 {
                font-size: 1.2rem;
            }

            .med-subsection-title {
                font-size: 1rem;
                gap: 5px;
            }
        }

        .box-container {
            background-color: #ffffff;
            border: 2px solid #e0e0e0;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
            padding: 2rem;
            margin: 2rem auto;
            max-width: 1200px;
        }

        .med-card {
            background: white;
            box-shadow: 0 5px 20px rgba(0, 119, 182, 0.1);
            width: 100%;
            max-width: 100%;
            transition: transform 0.3s ease;
            margin: 0;
            box-sizing: border-box;
        }

        .med-card:hover {
            transform: translateY(-3px);
        }

        .med-card-header {
            background: linear-gradient(135deg, #007bff 0%, #00b4d8 100%);
            color: white;
            padding: 25px 15px 35px;
            text-align: center;
            position: relative;
            width: 100%;
            box-sizing: border-box;
        }

        .med-icon-circle {
            width: 60px;
            height: 60px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 15px;
            font-size: 1.5rem;
        }

        .med-card-header h3 {
            margin: 0;
            font-weight: 600;
            padding: 0 10px;
            font-size: 2rem;
        }

        .med-wave {
            position: absolute;
            bottom: -1px;
            left: 0;
            width: 100%;
            height: 20px;
            background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 1200 120" xmlns="http://www.w3.org/2000/svg"><path d="M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1113-14.29,1200,52.47V0Z" fill="white" opacity=".25"/></svg>');
            background-size: cover;
        }

        .accordion-container {
            /* max-height: 400px;  */
            overflow-y: auto;
            padding: 20px 15px;
            margin: 0;
            width: 100%;
            box-sizing: border-box;
        }

        .accordion-container::-webkit-scrollbar {
            width: 8px;
        }

        .accordion-container::-webkit-scrollbar-track {
            background: #f0f8ff;
        }

        .accordion-container::-webkit-scrollbar-thumb {
            background: #007bff;
            border-radius: 4px;
        }

        .accordion-item {
            border: 1px solid #e0e0e0;
            overflow: hidden;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
            margin-bottom: 15px;
        }

        .accordion-item:hover {
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
            transform: translateY(-2px);
        }

        .accordion-header {
            width: 100%;
            padding: 15px 20px;
            background-color: #f8faff;
            border: none;
            text-align: left;
            font-size: 1.15rem;
            font-weight: 600;
            color: #333333;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 15px;
            transition: background-color 0.3s ease, color 0.3s ease;
            border-bottom: 1px solid transparent;
        }

        .accordion-header:hover {
            background-color: #eef2f8;
        }

        .accordion-header[aria-expanded="true"] {
            background-color: #e0e7ff;
            color: #007bff;
            border-bottom: 1px solid #d4deff;
        }

        .question-icon {
            font-size: 1.3rem;
            color: #007bff;
            flex-shrink: 0;
        }

        .question-text {
            flex-grow: 1;
        }

        .toggle-icon {
            font-size: 1.1rem;
            color: #666;
            transition: transform 0.3s ease;
        }

        .accordion-header[aria-expanded="true"] .toggle-icon {
            transform: rotate(180deg);
            color: #007bff;
        }

        .accordion-content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease-out, padding 0.4s ease-out;
            background-color: #ffffff;
            padding: 0 20px;
        }

        .accordion-content p {
            margin: 0;
            padding: 15px 0;
            color: #555555;
            font-size: 1rem;
            line-height: 1.6;
            display: flex;
            align-items: flex-start;
            gap: 10px;
        }

        .answer-icon {
            font-size: 1.1rem;
            color: #4CAF50;
            flex-shrink: 0;
            padding-top: 2px;
        }

        .accordion-content.is-open {
            max-height: 500px;
            padding: 0 20px 15px;
        }

        @media (max-width: 768px) {
            .box-container {
                padding: 1.5rem;
                margin: 1rem;
            }

            .med-card-header {
                padding: 20px 10px 30px;
            }

            .med-icon-circle {
                width: 50px;
                height: 50px;
                font-size: 1.3rem;
            }

            .med-card-header h3 {
                font-size: 1.5rem;
            }

            .accordion-container {
                padding: 15px 10px;
            }

            .accordion-header {
                padding: 15px 20px;
                font-size: 1rem;
                gap: 10px;
            }

            .question-icon {
                font-size: 1.1rem;
            }

            .toggle-icon {
                font-size: 0.9rem;
            }

            .accordion-content p {
                padding: 15px 0;
                font-size: 0.95rem;
            }
        }