     /* :root {
            --primary: #fed30a;
            --primary-dark: #140342;
            --secondary: #fed30a;
            --dark: #140342;
            --light: #f8fafc;
            --gray: #64748b;
            --success: #10b981;
            --danger: #ef4444;
        } */

        :root {
            --primary: #FFD30A;
            --primary-dark: #140342;
            --secondary: green;
            --dark: #140342;
            --light: #f8fafc;
            --gray: #64748b;
            --success: #10b981;
            --danger: #ef4444;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', sans-serif;
            color: var(--dark);
            background-color: #ffffff;
            line-height: 1.6;
        }

        .container {
            max-width: 95%;
            margin: 0 auto;
            padding: 0px;
        }


        /* Hero Section */
        .hero {
            /* background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%); */
            padding: 0px 0;
            text-align: center;
        }

        .hero h1 {
            font-size: 42px;
            font-weight: 700;
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .hero p {
            font-size: 18px;
            color: var(--gray);
            max-width: 700px;
            margin: 0 auto 0px;
        }

        .btn {
            padding: 10px 20px;
            border-radius: 12px;
            cursor: pointer;
            transition: all 0.3s;
            border: none;
            font-size: 14px;
            height: 45px;
        }

        .search-container {
            background: white;
            border-radius: 25px;
            padding: 25px;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
            max-width: 900px;
            margin: 0 auto;
        }

        .search-tabs {
            display: flex;
            margin-bottom: 20px;
            border-bottom: 1px solid #e2e8f0;
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
        }

        .search-tab {
            padding: 10px 20px;
            cursor: pointer;
            font-weight: 500;
            color: var(--gray);
            border-bottom: 2px solid transparent;
            white-space: nowrap;
        }

        .search-tab.active {
            color: var(--primary);
            border-bottom: 2px solid var(--primary);
        }

        .search-box {
            display: flex;
            gap: 15px;
            margin-bottom: 15px;
            flex-direction: column;
        }

        @media (min-width: 768px) {
            .search-box {
                flex-direction: row;
            }
        }

        .search-input {
            flex: 1;
            padding: 12px 20px;
            border: 1px solid #e2e8f0;
            border-radius: 6px;
            font-size: 16px;
        }

        .quick-filters {
            display: grid;
            grid-template-columns: repeat(1, 1fr);
            gap: 15px;
            margin-top: 20px;
        }

        @media (min-width: 576px) {
            .quick-filters {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (min-width: 992px) {
            .quick-filters {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        .filter-select {
            width: 100%;
            padding: 12px;
            border: 1px solid #e2e8f0;
            border-radius: 6px;
            font-size: 14px;
            color: var(--gray);
        }



        /* Highlights Section */
        .section {
            padding: 60px 0;
        }

        .section-title {
            text-align: center;
            margin-bottom: 40px;
        }

        .section-title h2 {
            font-size: 32px;
            font-weight: 700;
            margin-bottom: 15px;
        }

        .section-title p {
            color: var(--gray);
            max-width: 600px;
            margin: 0 auto;
        }

        .universities-grid {
            display: grid;
            grid-template-columns: repeat(1, 1fr);
            gap: 25px;
        }

        @media (min-width: 768px) {
            .universities-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (min-width: 992px) {
            .universities-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }




        .university-card {
            position: relative;
            background: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s, box-shadow 0.3s;
        }

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

        .university-img {
            height: 180px;
            background-size: cover;
            background-position: center;
        }

        .university-info {
            padding: 20px;
        }

        .university-info h3 {
            font-size: 18px;
            margin-bottom: 10px;
        }

        .university-location {
            display: flex;
            align-items: center;
            color: var(--gray);
            font-size: 14px;
            margin-bottom: 15px;
        }

        .university-stats {
            display: flex;
            justify-content: space-between;
            font-size: 14px;
            color: var(--gray);
        }

        .university-rank {
            display: flex;
            align-items: center;
            color: var(--success);
            font-weight: 600;
        }

        /* Stats Section */
        .stats-section {
            /*background: linear-gradient(135deg, var(--dark) 0%, #0f172a 100%);*/
            background: #fef8ea;
            color: white;
            padding: 60px 0;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
        }

        @media (min-width: 768px) {
            .stats-grid {
                grid-template-columns: repeat(4, 1fr);
            }
        }

        .stat-card {
            text-align: center;
        }

        .stat-number {
            font-size: 42px;
            font-weight: 700;
            margin-bottom: 10px;
            color: var(--dark);
        }

        .stat-label {
            font-size: 16px;
            color: var(--dark);
        }

        /* Popular Countries */
        .countries-grid {
            display: grid;
            grid-template-columns: repeat(1, 1fr);
            gap: 20px;
        }

        @media (min-width: 576px) {
            .countries-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (min-width: 992px) {
            .countries-grid {
                grid-template-columns: repeat(4, 1fr);
            }
        }

        .country-card {
            border-radius: 8px;
            overflow: hidden;
            position: relative;
            height: 200px;
        }

        .country-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }

        .country-card:hover .country-img {
            transform: scale(1.05);
        }

        .country-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
            padding: 20px;
            color: white;
        }

        .country-overlay h3 {
            font-size: 20px;
            margin-bottom: 5px;
        }

        .country-overlay p {
            font-size: 14px;
            opacity: 0.9;
        }

        /* Testimonials */
        .testimonials {
            background: #f8fafc;
        }

        .testimonial-grid {
            display: grid;
            grid-template-columns: repeat(1, 1fr);
            gap: 30px;
        }

        @media (min-width: 768px) {
            .testimonial-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        .testimonial-card {
            background: white;
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }

        .testimonial-text {
            font-size: 16px;
            font-style: italic;
            margin-bottom: 20px;
            color: var(--dark);
        }

        .testimonial-author {
            display: flex;
            align-items: center;
        }

        .author-img {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: #e2e8f0;
            margin-right: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--gray);
            font-weight: bold;
        }

        .author-info h4 {
            font-size: 16px;
            margin-bottom: 5px;
        }

        .author-info p {
            font-size: 14px;
            color: var(--gray);
        }

        /* How It Works */
        .steps {
            display: grid;
            grid-template-columns: repeat(1, 1fr);
            gap: 30px;
            counter-reset: step-counter;
        }

        @media (min-width: 768px) {
            .steps {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        .step-card {
            background: white;
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            position: relative;
            padding-top: 60px;
        }

        .step-card::before {
            counter-increment: step-counter;
            content: counter(step-counter);
            position: absolute;
            top: 20px;
            left: 30px;
            width: 40px;
            height: 40px;
            background: var(--primary);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 20px;
        }

        .step-card h3 {
            font-size: 18px;
            margin-bottom: 15px;
        }

        .step-card p {
            color: var(--gray);
        }

        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            color: white;
            padding: 80px 0;
            text-align: center;
        }

        .cta-section h2 {
            font-size: 36px;
            margin-bottom: 20px;
        }

        .cta-section p {
            font-size: 18px;
            max-width: 700px;
            margin: 0 auto 40px;
            opacity: 0.9;
        }

        .cta-buttons {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-direction: column;
        }

        @media (min-width: 576px) {
            .cta-buttons {
                flex-direction: row;
            }
        }

        .cta-btn {
            padding: 15px 30px;
            border-radius: 24px;
            font-size: 16px;
            cursor: pointer;
            transition: all 0.3s;
            border: 2px solid white;
        }

        .cta-btn-primary {
            background: white;
            color: var(--primary);
        }

        .cta-btn-primary:hover {
            background: #f0f9ff;
        }

        .cta-btn-secondary {
            background: transparent;
            border: 2px solid white;
            color: white;
        }

        .cta-btn-secondary:hover {
            background: rgba(255, 255, 255, 0.1);
        }

        /* Recently Viewed */
        .recently-viewed {
            padding: 60px 0;
        }

        .viewed-slider {
            display: flex;
            gap: 20px;
            overflow-x: auto;
            padding: 20px 0;
            -webkit-overflow-scrolling: touch;
        }

        .viewed-card {
            min-width: 250px;
            background: white;
            border-radius: 8px;
            padding: 20px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .viewed-logo {
            width: 60px;
            height: 35px;
            background: #e2e8f0;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--gray);
            font-weight: bold;
            font-size: 12px;
            text-align: center;
        }

        .viewed-info h4 {
            font-size: 16px;
            margin-bottom: 5px;
        }

        .viewed-info p {
            font-size: 14px;
            color: var(--gray);
        }

        /* Blog Section */
        .blog-grid {
            display: grid;
            grid-template-columns: repeat(1, 1fr);
            gap: 30px;
        }

        @media (min-width: 768px) {
            .blog-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (min-width: 992px) {
            .blog-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        .blog-card {
            background: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }

        .blog-img {
            height: 180px;
            background-size: cover;
            background-position: center;
        }

        .blog-content {
            padding: 20px;
        }

        .blog-date {
            font-size: 14px;
            color: var(--gray);
            margin-bottom: 10px;
        }

        .blog-content h3 {
            font-size: 18px;
            margin-bottom: 15px;
        }

        .blog-content p {
            color: var(--gray);
            margin-bottom: 15px;
            font-size: 15px;
        }

        .read-more {
            color: var(--primary);
            font-weight: 600;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 5px;
        }



        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        .social-links a {
            color: white;
            background: rgba(255, 255, 255, 0.1);
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background 0.3s;
        }

        .social-links a:hover {
            background: var(--primary);
        }

        .newsletter input {
            width: 100%;
            padding: 12px;
            border-radius: 6px;
            border: none;
            margin-bottom: 10px;
            background: rgba(255, 255, 255, 0.1);
            color: white;
        }

        .newsletter input::placeholder {
            color: #cbd5e1;
        }

        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid #334155;
            color: #94a3b8;
            font-size: 14px;
        }

        /* Chatbot */
        .chatbot {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background: var(--primary);
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 5px 20px rgba(37, 99, 235, 0.3);
            cursor: pointer;
            z-index: 99;
        }

        .chatbot-icon {
            color: white;
            font-size: 24px;
        }


        @media (max-width: 768px) {
            .hero {
                padding: 60px 0;
            }

            .section {
                padding: 50px 0;
            }

            .cta-section h2 {
                font-size: 30px;
            }
        }

        @media (max-width: 576px) {
            .hero h1 {
                font-size: 30px;
            }

            .hero p {
                font-size: 16px;
            }

            .search-container {
                padding: 20px;
            }

            .cta-section h2 {
                font-size: 26px;
            }

            .cta-section p {
                font-size: 16px;
            }
        }

        /* Previously Viewed Universities Section */
        .previously-viewed {
            padding: 60px 0;
            background-color: #f8fafc;
        }

        .section-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 30px;
            padding: 0 20px;
        }

        .section-header h2 {
            font-size: 28px;
            font-weight: 700;
            color: var(--dark);
        }

        .university-cards-container {
            display: flex;
            gap: 25px;
            padding: 10px 20px;
            overflow-x: auto;
            scrollbar-width: thin;
            scrollbar-color: var(--primary) #f1f1f1;
            -webkit-overflow-scrolling: touch;
        }

        .university-cards-container::-webkit-scrollbar {
            height: 8px;
        }

        .university-cards-container::-webkit-scrollbar-track {
            background: #f1f1f1;
            border-radius: 10px;
        }

        .university-cards-container::-webkit-scrollbar-thumb {
            background-color: var(--primary);
            border-radius: 10px;
        }

        .university-card {
            flex: 0 0 350px;
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s, box-shadow 0.3s;
        }

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

        .university-img {
            height: 180px;
            background-size: cover;
            background-position: center;
            transition: transform 0.5s;
        }

        .university-card:hover .university-img {
            transform: scale(1.05);
        }

        .university-info {
            padding: 20px;
        }

        .university-info h3 {
            font-size: 18px;
            margin-bottom: 12px;
            color: var(--dark);
        }

        .university-location {
            display: flex;
            align-items: center;
            color: var(--gray);
            font-size: 14px;
            margin-bottom: 15px;
        }

        .university-location i {
            margin-right: 8px;
            color: var(--primary);
        }

        .university-stats {
            display: flex;
            justify-content: space-between;
            margin-bottom: 15px;
        }

        .university-rank {
            display: flex;
            align-items: center;
            color: var(--gray);
            font-size: 14px;
        }

        .university-rank i {
            margin-right: 8px;
            color: var(--primary);
        }

        .university-fees {
            font-weight: 600;
            color: var(--dark);
            font-size: 14px;
        }

        .university-actions {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 15px;
            border-top: 1px solid #e2e8f0;
        }

        .rating {
            display: flex;
            align-items: center;
        }

        .rating-stars {
            color: var(--primary);
            margin-right: 8px;
        }

        .rating-stars i {
            font-size: 12px;
        }

        .rating span {
            font-size: 14px;
            color: var(--dark);
        }

        .brochure-btn {
            padding: 8px 16px;
            background: var(--primary);
            color: var(--light);
            border: none;
            border-radius: 6px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.3s;
            font-size: 14px;
        }

        .brochure-btn:hover {
            background: orange;
        }




        /* result  */
        .results-container {
            padding: 2rem 1rem;
            margin: 0 auto;
        }

        .university-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 1.5rem;
            padding: 0.5rem;
        }

        .university-card {
            background: white;
            border-radius: 25px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(20, 3, 66, 0.1);
            transition: all 0.3s ease;
            display: flex;
            flex-direction: column;
            height: 100%;
            /* border: 1px solid rgba(20, 3, 66, 0.08); */
        }

        .university-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(20, 3, 66, 0.15);
        }

        .university-card img {
            width: 100%;
            height: 140px;
            object-fit: contain;
            padding: 1.5rem;
            /* background: linear-gradient(135deg, rgba(254, 211, 10, 0.1) 0%, rgba(20, 3, 66, 0.05) 100%); */
            /* border-bottom: 1px solid rgba(20, 3, 66, 0.05); */
        }


        .university-card h3 {
            font-size: 1rem;
            font-weight: 600;
            color: var(--dark);
            margin: 1rem 1.5rem 0.5rem;
            line-height: 1.4;
        }

        .university-card p {
            color: var(--gray);
            font-size: 0.75rem;
            margin: 0.25rem 1.5rem;
            line-height: 1.5;
        }

        .university-card p:last-of-type {
            color: var(--primary-dark);
            font-weight: 600;
            margin-bottom: 1.5rem;
        }

        .results-container .btn {
            display: inline-block;
            padding: 0.75rem 1.5rem;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 500;
            font-size: 0.95rem;
            transition: all 0.2s ease;
            text-align: center;
            margin-top: auto;
            margin-bottom: 1.5rem;
            margin-left: 1.5rem;
            margin-right: 1.5rem;
            height: auto !important;
        }

        .btn-secondary {
            background-color: transparent;
            color: var(--primary-dark);
            border: 1px solid lightgrey;
        }


        .btn-secondary:hover {
            background-color: var(--primary);
            color: white;
        }

        /* Responsive adjustments */
        @media (max-width: 1200px) {
            .university-grid {
                grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            }
        }

        @media (max-width: 768px) {
            .university-grid {
                grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
            }

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

            .university-card img {
                height: 120px;
                padding: 1rem;
            }
        }

        @media (max-width: 480px) {
            .university-grid {
                grid-template-columns: 1fr;
            }

            .results-container {
                padding: 1rem 0.5rem;
            }
        }

        /* Animation for card entrance */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .university-card {
            animation: fadeInUp 0.5s ease forwards;
            opacity: 0;
        }

        /* Stagger the animations */
        .university-card:nth-child(1) {
            animation-delay: 0.1s;
        }

        .university-card:nth-child(2) {
            animation-delay: 0.2s;
        }

        .university-card:nth-child(3) {
            animation-delay: 0.3s;
        }

        .university-card:nth-child(4) {
            animation-delay: 0.4s;
        }

        .university-card:nth-child(5) {
            animation-delay: 0.5s;
        }

        .university-card:nth-child(6) {
            animation-delay: 0.6s;
        }

        .university-card:nth-child(7) {
            animation-delay: 0.7s;
        }

        .university-card:nth-child(8) {
            animation-delay: 0.8s;
        }

        .university-card:nth-child(9) {
            animation-delay: 0.9s;
        }

        .university-card:nth-child(10) {
            animation-delay: 1.0s;
        }

        .university-card:nth-child(11) {
            animation-delay: 1.1s;
        }

        .university-card:nth-child(12) {
            animation-delay: 1.2s;
        }

        .university-card:nth-child(13) {
            animation-delay: 1.3s;
        }

        .university-card:nth-child(14) {
            animation-delay: 1.4s;
        }

        .university-card:nth-child(15) {
            animation-delay: 1.5s;
        }

        .university-card:nth-child(16) {
            animation-delay: 1.6s;
        }

        .university-card:nth-child(17) {
            animation-delay: 1.7s;
        }

        .university-card:nth-child(18) {
            animation-delay: 1.8s;
        }

        .university-card:nth-child(19) {
            animation-delay: 1.9s;
        }

        .university-card:nth-child(20) {
            animation-delay: 2.0s;
        }

        .university-card:nth-child(21) {
            animation-delay: 2.1s;
        }


        /* course result */


        .course-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 1.75rem;
            padding: 1rem;
            max-width: 90vw;
            margin: 0 auto;
        }

        .course-card {
            background: white;
            border-radius: 25px !important;
            overflow: hidden;
            box-shadow: 0 8px 25px rgba(20, 3, 66, 0.08);
            transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
            display: flex;
            flex-direction: column;
            height: 100%;
            /*border: 1px solid rgba(20, 3, 66, 0.05);*/

            position: relative;
            padding-bottom: 70px;
        }

        .course-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 30px rgba(20, 3, 66, 0.15);
        }

        .course-card h3 {
            font-size: 1.3rem;
            font-weight: 600;
            color: var(--dark);
            margin: 1.5rem 1.5rem 0.5rem;
            line-height: 1.4;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid rgba(254, 211, 10, 0.3);
        }

        .course-card p {
            color: var(--gray);
            font-size: 0.95rem;
            margin: 0.35rem 1.5rem;
            line-height: 1.5;
            display: flex;
            align-items: center;
        }

        .course-card p:before {
            content: "";
            display: inline-block;
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background-color: var(--primary);
            margin-right: 0.75rem;
            flex-shrink: 0;
        }

        .course-card p:first-of-type {
            margin-top: 0.5rem;
            color: var(--primary-dark);
            font-weight: 500;
        }

        .course-card p:nth-of-type(4) {
            color: var(--primary-dark);
            font-weight: 600;
            font-size: 1.05rem;
        }

        .course-card .btn {
            margin: 1.5rem 1.5rem 1.75rem;
            margin-top: 15px;
        }

        /* Level indicators */
        .course-card p:nth-of-type(2):after {
            content: "";
            display: inline-block;
            width: 0.75rem;
            height: 0.75rem;
            border-radius: 50%;
            margin-left: 0.5rem;
        }

        .course-card p:nth-of-type(2)[data-level="UG"]:after {
            background-color: #4CAF50;
            /* Green for undergraduate */
        }

        .course-card p:nth-of-type(2)[data-level="PG"]:after {
            background-color: #2196F3;
            /* Blue for postgraduate */
        }

        .course-card p:nth-of-type(2)[data-level="PhD"]:after {
            background-color: #9C27B0;
            /* Purple for PhD */
        }

        /* Responsive adjustments */
        @media (max-width: 1200px) {
            .course-grid {
                grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            }
        }

        @media (max-width: 768px) {
            .course-grid {
                grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
                gap: 1.25rem;
            }

            .course-card h3 {
                font-size: 1.2rem;
                margin: 1.25rem 1.25rem 0.5rem;
            }

            .course-card p {
                margin: 0.3rem 1.25rem;
            }
        }

        @media (max-width: 480px) {
            .course-grid {
                grid-template-columns: 1fr;
                padding: 0.5rem;
            }

            .course-card {
                border-radius: 10px;
            }

            .course-card h3 {
                font-size: 1.15rem;
                margin: 1rem 1rem 0.5rem;
            }

            .course-card p {
                margin: 0.25rem 1rem;
            }

            .course-card .btn {
                margin: 1rem 1rem 1.25rem;
            }
        }

        /* Animation for card entrance */
        .course-card {
            animation: fadeInUp 0.5s ease forwards;
            opacity: 0;
        }

        /* Stagger the animations */
        .course-card:nth-child(1) {
            animation-delay: 0.1s;
        }

        .course-card:nth-child(2) {
            animation-delay: 0.2s;
        }

        .course-card:nth-child(3) {
            animation-delay: 0.3s;
        }

        .course-card:nth-child(4) {
            animation-delay: 0.4s;
        }

        .course-card:nth-child(5) {
            animation-delay: 0.5s;
        }

        .course-card:nth-child(6) {
            animation-delay: 0.6s;
        }

        .course-card:nth-child(7) {
            animation-delay: 0.7s;
        }

        .course-card:nth-child(8) {
            animation-delay: 0.8s;
        }

        .course-card:nth-child(9) {
            animation-delay: 0.9s;
        }

        .course-card:nth-child(10) {
            animation-delay: 1.0s;
        }

        /* Continue this pattern for all cards if needed */

        /* Special styling for free tuition (PhD programs) */
        .course-card p:nth-of-type(4)[data-tuition="0"] {
            color: var(--success);
            font-weight: 700;
        }

        /* University name highlight */
        .course-card p:first-of-type {
            position: relative;
            padding-left: 1.25rem;
        }

        .course-card p:first-of-type:before {
            content: "";
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 8px;
            height: 8px;
            background-color: var(--primary);
            border-radius: 50%;
        }



        .loading,
        .error {
            padding: 20px;
            text-align: center;
            color: var(--gray-color);
            background: white;
            border-radius: 8px;
            margin: 20px 0;
        }

        .error {
            color: var(--secondary-color);
        }

        /* Responsive adjustments */
        @media (max-width: 768px) {
            .university-card {
                flex: 0 0 300px;
            }

            .section-header {
                padding: 0 15px;
            }

            .university-cards-container {
                padding: 10px 15px;
            }
        }

        @media (max-width: 480px) {
            .section-header {
                flex-direction: column;
                align-items: flex-start;
                gap: 15px;
            }

            .university-card {
                flex: 0 0 280px;
            }
        }

        /* ===============================
   COURSE RESULTS — CLEAN & UPGRADED
   =============================== */

        /* Grid */
        .course-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 1.5rem;
            padding: 1rem;
            max-width: 90vw;
            margin: 0 auto;
        }

        /* Card */
        .course-card {
            position: relative;
            display: flex;
            flex-direction: column;
            height: 100%;
            border-radius: 22px;
            background: #fff;
            border: 1px solid rgba(20, 3, 66, 0.06);
            box-shadow: 0 8px 24px rgba(20, 3, 66, 0.08);
            transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
            overflow: hidden;
            animation: fadeInUp .5s ease forwards;
            opacity: 0;
        }

        .course-card:hover::before {
            opacity: .45
        }

        /* Hover lift */
        .course-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 14px 36px rgba(20, 3, 66, 0.16);
            border-color: rgba(0, 128, 128, 0.18);
        }

        /* Title */
        .course-card h3 {
            font-size: 1.25rem;
            font-weight: 700;
            color: var(--dark);
            margin: 1.25rem 1.25rem .5rem;
            line-height: 1.35;
            padding-bottom: .5rem;
            border-bottom: 1px solid rgba(20, 3, 66, 0.08);
            /*display:-webkit-box; -webkit-line-clamp:2; -webkit-box-orient:vertical; overflow:hidden;*/
        }

        /* Info rows (the existing <p> elements) */
        .course-card p {
            color: var(--gray);
            font-size: .95rem;
            margin: .4rem 1.25rem;
            line-height: 1.55;
            display: flex;
            align-items: center;
            position: relative;
            padding-left: 1.3rem;
            /* room for the bullet icon */
        }

        /* Unified bullet icon (replaces previous ::before dot) */
        .course-card p::before {
            content: "";
            position: absolute;
            left: 0;
            top: .6rem;
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: var(--primary);
            opacity: .9;
        }

        /* First row highlight (University/Provider line) */
        .course-card p:first-of-type {
            color: var(--primary-dark);
            font-weight: normal;
            text-align: left;
        }

        /* Level row — keep your nth-of-type logic + small pill vibe */
        .course-card p:nth-of-type(2) {
            font-weight: 600;
        }

        .course-card p:nth-of-type(2)::after {
            content: "";
            display: inline-block;
            width: .7rem;
            height: .7rem;
            border-radius: 50%;
            margin-left: .5rem;
        }

        .course-card p:nth-of-type(2)[data-level="UG"]::after {
            background: #4CAF50;
        }

        .course-card p:nth-of-type(2)[data-level="PG"]::after {
            background: #2196F3;
        }

        .course-card p:nth-of-type(2)[data-level="PhD"]::after {
            background: #9C27B0;
        }

        /* CTA/Fees row (your 4th p) — make it pop */
        .course-card p:nth-of-type(4) {
            color: var(--primary-dark);
            font-weight: 700;
            font-size: 1.05rem;
            margin-top: .6rem;
        }

        /* Free tuition emphasis */
        .course-card p:nth-of-type(4)[data-tuition="0"] {
            color: var(--success);
        }

        /* Button spacing */
        .course-card .btn {
            margin: 1rem 1.25rem 1.25rem;
        }

        /* Subtle card footer shadow to anchor content (no markup change) */
        .course-card::after {
            content: "";
            position: absolute;
            left: 0;
            right: 0;
            bottom: 0;
            height: 36px;
            background: linear-gradient(180deg, transparent, rgba(20, 3, 66, 0.04));
            pointer-events: none;
        }

        /* ===============================
   RESPONSIVE TWEAKS
   =============================== */
        @media (max-width:1200px) {
            .course-grid {
                grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            }
        }

        @media (max-width:768px) {
            .course-grid {
                grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
                gap: 1.1rem;
            }

            .course-card h3 {
                font-size: 1.15rem;
                margin: 1rem 1rem .5rem;
            }

            .course-card p {
                margin: .3rem 1rem;
            }

            .course-card .btn {
                margin: 1rem;
            }
        }

        @media (max-width:480px) {
            .course-grid {
                grid-template-columns: 1fr;
                padding: .5rem;
            }

            .course-card {
                border-radius: 16px;
            }

            .course-card h3 {
                font-size: 1.08rem;
            }
        }

        /* Respect reduced motion */
        @media (prefers-reduced-motion:reduce) {

            .course-card,
            .course-card::before {
                transition: none;
            }
        }




        /* Global smoothness + momentum */
        html {
            scroll-behavior: smooth;
        }



        /* Enable momentum scrolling on iOS/Android for scrollable rows */
        .viewed-slider,
        .university-cards-container,
        .university-grid,
        .course-grid,
        .university-cards-container::-webkit-scrollbar,
        .viewed-slider::-webkit-scrollbar {
            -webkit-overflow-scrolling: touch;
        }

        /* Snap for horizontal carousels (nice "slotting" feel) */
        .viewed-slider,
        .university-cards-container {
            scroll-snap-type: x mandatory;
            scroll-behavior: smooth;
            /* smooth programmatic scroll (e.g., arrow keys) */
        }

        .viewed-card,
        .university-card {
            scroll-snap-align: start;
        }

        /* Lighter cards on mobile: reduce shadow + paint cost */
        @media (max-width: 768px) {

            .university-card,
            .course-card {
                box-shadow: 0 6px 16px rgba(20, 3, 66, .10);
                transform: translateZ(0);
                /* promote to its own layer */
                will-change: transform;
                /* hint for GPU */
            }
        }

        /* Stop heavy background animations on touch devices */
        @media (pointer: coarse) {

            .hero3__bg--1,
            .hero3__bg--2,
            .hero3__pattern--grid,
            .hero3__pattern--dots,
            .hero3__radial {
                animation: none !important;
            }
        }

        /* Avoid forced reflow when sections come into view */
        .section,
        .results-container,
        .previously-viewed,
        .recently-viewed,
        .testimonials {
            content-visibility: auto;
            contain-intrinsic-size: 800px;
            /* reserve space to prevent jump; tune per section */
        }

        /* Make horizontal scrollbars slim (optional) */
        .university-cards-container::-webkit-scrollbar,
        .viewed-slider::-webkit-scrollbar {
            height: 6px;
        }

        .university-cards-container::-webkit-scrollbar-thumb,
        .viewed-slider::-webkit-scrollbar-thumb {
            background: rgba(0, 128, 128, .35);
            border-radius: 999px;
        }

        .mini-stats {
            width: 90%;
            margin-left: 5% !important;
        }

        .mini-stats>span {
            display: block;
            width: 100%;
            margin: 5px 0.25%;
            border-radius: 8px;
        }


        .u-rank {
            position: absolute;
            top: 0;
            margin-top: 12px;
            margin-left: 12px;
            font-size: 12px !important;
            background: #f06060;
            background: #fd331d;
            background: linear-gradient(90deg, rgba(253, 51, 29, 1) 0%, rgba(252, 176, 69, 1) 100%);
            color: white;
            padding: 4px 6px;
            border-radius: 25px;
        }


        .avg-sal {
            width: 90%;
            padding: 8px;
            display: flex;
            border: 1px solid #bbf7d0;
            border-radius: 14px;
            margin-left: 5%;
            margin-bottom: 1rem;
            background: rgba(0, 200, 0, 0.1);
        }

        .avg-sal>div {
            width: 50px;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .avg-sal>div:nth-child(1) {
            width: 35px;
            height: 35px;
            border-radius: 5px;
            background: #22c55e;
            color: white;

        }

        .avg-sal>div:nth-child(2) {
            flex: 1;
        }

        .avg-sal>div:nth-child(3) {
            color: teal;
            font-weight: bold;
        }

        .chip .vals-r span {
            background-color: tomato;
            padding: 2px;
            border-radius: 4px;
            margin: 4px;
            margin-bottom: 4px !important;

        }

        .req-head {
            margin: 0px !important;
            margin-left: 5px !important;
            padding: 0px !important;
            font-size: 14px !important;
            text-transform: uppercase;
            color: #374151 !important;
            color: red !important;
        }





        .btn-apply,
        .course-card a {
            border: none;
            border-radius: 20px !important;
            font-size: 12px !important;
            background: #FFD30A;
            color: black !important;

        }

        

        .course-card a {
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-60%);
            width: 65%;
        }
        
        
        
        
        /*st2*/
        
            .prb-compact-wrap {
                            width: 100%;
                            box-sizing: border-box;
                            padding: 6px 12px;
                        }

                        /* Row: keep single line on wider screens, allow wrap on very small screens */
                        .prb-compact-row {
                            display: flex;
                            
                            gap: 10px;
                            align-items: center;
                            justify-content: space-between;
                            flex-wrap: wrap;
                            width: 100%;
                            overflow: hidden;
                            /* hide overflow when items shrink */
                        }

                        /* Each compact badge: remove main box shadow (as requested) */
                        .prb-compact {
                            display: flex;
                            align-items: center;
                            gap: 10px;
                            padding: 8px 12px;
                            border-radius: 26px;
                            min-width: 0;
                            flex: 1 1 0;
                            /* allow equal distribution and shrinking */
                            background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(250, 250, 251, 0.98));
                            border: 1px solid rgba(16, 24, 40, 0.04);
                            transition: transform .18s ease, box-shadow .18s ease;
                            cursor: default;
                            box-shadow: none;
                            /* no shadow on main box */
                            position: relative;
                        }

                        /* Small decorative inner highlight instead of outer shadow */
                        .prb-compact::after {
                            content: "";
                            position: absolute;
                            right: 6px;
                            top: 6px;
                            width: 28%;
                            height: 60%;
                            background: linear-gradient(120deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.02));
                            border-radius: 14px;
                            pointer-events: none;
                            mix-blend-mode: overlay;
                            opacity: 0.6;
                        }

                        /* Icon */
                        .prb-compact-icon {
                            width: 36px;
                            height: 36px;
                            border-radius: 9px;
                            display: grid;
                            place-items: center;
                            flex: 0 0 36px;
                            background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.7));
                            border: 1px solid rgba(255, 255, 255, 0.12);
                            box-shadow: inset 0 -4px 8px rgba(255, 255, 255, 0.55);
                        }

                        /* Text - very compact (single line) */
                        .prb-compact-label {
                            display: flex;
                            flex-direction: column;
                            min-width: 0;
                        }

                        .prb-compact-title {
                            font-weight: 700;
                            font-size: 13px;
                            color: #071133;
                            line-height: 1;
                            white-space: nowrap;
                            overflow: hidden;
                            text-overflow: ellipsis;
                        }

                        /* Accent backgrounds for icon blocks */
                        .prb-blue .prb-compact-icon {
                            background: linear-gradient(90deg, #2f8ef7, #6ea8ff);
                        }

                        .prb-green .prb-compact-icon {
                            background: linear-gradient(90deg, #0fbf86, #7be8c8);
                        }

                        .prb-purple .prb-compact-icon {
                            background: linear-gradient(90deg, #9b5cff, #d9a6ff);
                        }

                        /* Icon SVG sizing and tiny float */
                        .prb-compact-icon svg {
                            width: 18px;
                            height: 18px;
                            display: block;
                            animation: prb-mini-float 4s ease-in-out infinite;
                            transform-origin: center;
                        }

                        @keyframes prb-mini-float {
                            0% {
                                transform: translateY(0)
                            }

                            50% {
                                transform: translateY(-1.6px)
                            }

                            100% {
                                transform: translateY(0)
                            }
                        }

                        /* Hover/focus: subtle lift and soft shadow only while hovering */
                        .prb-compact:hover,
                        .prb-compact:focus-within {
                            transform: translateY(-3px);
                            box-shadow: 0 8px 22px rgba(9, 20, 40, 0.06);
                            /* very subtle on hover only */
                        }

                        .prb-compact:active {
                            transform: translateY(-1px);
                        }

                        .prb-compact:focus {
                            outline: 3px solid rgba(99, 102, 241, 0.10);
                            outline-offset: 4px;
                        }

                        /* Responsive rules */
                        /* On very small screens, allow wrapping and slightly smaller badges */
                        @media (max-width:520px) {
                            .prb-compact-row {
                                flex-wrap: wrap;
                                gap: 8px;
                                justify-content: flex-start;
                            }

                            .prb-compact {
                                flex: 0 1 calc(50% - 8px);
                                padding: 8px 10px;
                                border-radius: 20px;
                            }

                            .prb-compact:nth-child(3) {
                                flex-basis: 100%;
                            }

                            /* place third item on its own row if needed */
                            .prb-compact-title {
                                font-size: 12px;
                            }

                            .prb-compact-icon {
                                width: 32px;
                                height: 32px;
                                flex: 0 0 32px;
                                border-radius: 8px;
                            }
                        }

                        /* If the container is extremely narrow (very old mobile), allow horizontal scroll */
                        @media (max-width:360px) {
                            .prb-compact-row {
                                flex-wrap: wrap;
                                overflow-x: auto;
                                -webkit-overflow-scrolling: touch;
                            }

                            .prb-compact {
                                flex: 0 0 auto;
                                min-width: 140px;
                            }

                            .prb-compact:nth-child(3) {
                                flex-basis: auto;
                            }

                            .prb-compact-row::-webkit-scrollbar {
                                height: 6px;
                            }

                            .prb-compact-row::-webkit-scrollbar-thumb {
                                background: rgba(12, 18, 30, 0.05);
                                border-radius: 999px;
                            }
                        }
                        
                        
                        
                                /* =========================
   HERO layout + background
   ========================= */
        .hero--v3 {
            position: relative;
            isolation: isolate;
            overflow: hidden;
            padding: clamp(64px, 8vw, 120px) 0 36px;
            /*background:*/
            /*    radial-gradient(1200px 600px at 85% -10%, rgba(0, 191, 166, .10), transparent 70%),*/
            /*    radial-gradient(900px 500px at -10% 110%, rgba(94, 234, 212, .10), transparent 65%),*/
            /*    linear-gradient(180deg, var(--bg) 0%, var(--bg-muted) 100%);*/
            margin-top: 15px;
        }

        /* extra soft radial glow */
        .hero3__radial {
            position: absolute;
            inset: -20% -10% auto -10%;
            height: 70%;
            background:
                conic-gradient(from 210deg at 60% 40%, rgba(0, 191, 166, .08), rgba(0, 128, 128, .05), transparent 60%);
            filter: blur(60px);
            opacity: .9;
            z-index: 0;
            pointer-events: none;
            animation: radialDrift 18s ease-in-out infinite alternate;
        }

        @keyframes radialDrift {
            to {
                transform: translate3d(0, 10px, 0) scale(1.02) rotate(1deg);
            }
        }

        /* Ambient blobs */
        .hero3__bg {
            position: absolute;
            filter: blur(80px);
            opacity: .28;
            z-index: 0;
            transform-origin: center;
        }

        .hero3__bg--1 {
            width: 520px;
            height: 520px;
            top: -140px;
            right: -120px;
            border-radius: 50%;
            /*background: radial-gradient(circle at 30% 30%, rgba(0, 191, 166, .35), rgba(0, 128, 128, .18), transparent 70%);*/
            animation: float1 20s ease-in-out infinite;
        }

        .hero3__bg--2 {
            width: 520px;
            height: 520px;
            bottom: -160px;
            left: -140px;
            border-radius: 50%;
            /*background: radial-gradient(circle at 70% 70%, rgba(94, 234, 212, .30), rgba(0, 191, 166, .15), transparent 65%);*/
            animation: float2 22s ease-in-out infinite;
        }

        @keyframes float1 {
            0% {
                transform: translateY(0)
            }

            50% {
                transform: translateY(16px)
            }

            100% {
                transform: translateY(0)
            }
        }

        @keyframes float2 {
            0% {
                transform: translateY(0)
            }

            50% {
                transform: translateY(-14px)
            }

            100% {
                transform: translateY(0)
            }
        }

        /* Grain */
        .hero3__noise {
            position: absolute;
            inset: 0;
            z-index: 0;
            opacity: .05;
            pointer-events: none;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160' viewBox='0 0 160 160'%3E%3Cfilter id='n'%3E%3CfeTurbulence baseFrequency='0.9' numOctaves='2' seed='3'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/feTurbulence%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.12'/%3E%3C/svg%3E");
            background-size: 240px 240px;
            mix-blend-mode: multiply
        }

        /* Animated SVG patterns (grid + dots) */
        .hero3__pattern {
            position: absolute;
            inset: -10% -10%;
            z-index: 0;
            pointer-events: none;
            opacity: .45;
            mix-blend-mode: overlay;
        }

        .hero3__pattern--grid {
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='360' height='360'%3E%3Cg stroke='%2300bfa6' stroke-opacity='.15' stroke-width='1'%3E%3Cpath d='M0 18.5 H360'/%3E%3Cpath d='M18.5 0 V360'/%3E%3C/g%3E%3C/svg%3E");
            background-size: 36px 36px;
            animation: panSlow 40s linear infinite;
        }

        .hero3__pattern--dots {
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220'%3E%3Ccircle cx='6' cy='6' r='1.5' fill='%23008080' fill-opacity='.18'/%3E%3C/svg%3E");
            background-size: 22px 22px;
            animation: panSlowReverse 55s linear infinite;
            mask-image: radial-gradient(closest-side, #000 60%, transparent 100%);
        }

        @keyframes panSlow {
            to {
                background-position: 360px 360px;
            }
        }

        @keyframes panSlowReverse {
            to {
                background-position: -360px -360px;
            }
        }

     

        /* Layout */
        .container {
            width: min(1100px, 92vw);
            margin-inline: auto
        }

        .hero3__container {
            position: relative;
            z-index: 1;
            display: grid;
            place-items: center
        }

        .hero3__content {
            width: min(960px, 92vw);
            display: grid;
            justify-items: center;
            text-align: center
        }

        /* Badge */
        .hero3__badge {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 8px 14px;
            border-radius: 999px;
            font-weight: 600;
            font-size: 13px;
            background: rgba(20, 3, 66, 0.06);
            color: var(--text);
            box-shadow: 0 1px 0 rgba(20, 3, 66, .06) inset, 0 6px 18px rgba(20, 3, 66, .06);
            animation: fadeUp .35s ease both;
        }

        /* Title & subtitle */
        .hero3__title {
            margin-top: 12px;
            font-size: clamp(32px, 6vw, 60px);
            line-height: 1.06;
            font-weight: 800;
            letter-spacing: -.02em;
            animation: fadeUp .45s ease .05s both
        }

        .hero3__highlight {
            background: linear-gradient(90deg, var(--primary), #00bfa6 55%, #5eead4);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent
        }

        .hero3__subtitle {
            margin-top: 12px;
            color: var(--muted);
            font-size: clamp(16px, 2vw, 19px);
            max-width: 720px;
            animation: fadeUp .5s ease .08s both
        }

        @keyframes fadeUp {
            from {
                transform: translateY(6px);
                opacity: 0
            }

            to {
                transform: translateY(0);
                opacity: 1
            }
        }

        /* =========================
   Search Pro — refined glass
   ========================= */
        .search-pro {
            position: relative;
            width: min(900px, 100%);
            margin: 22px auto 0;
            border-radius: 30px;
            background: rgba(255, 255, 255, .78);
            backdrop-filter: blur(12px);
            border: var(--border);
            padding: 18px;
            box-shadow: var(--shadow-lg);
            outline: var(--ring);
            animation: fadeUp .6s ease .12s both;
            background: white;
        }

        .search-pro::before {
            content: "";
            position: absolute;
            inset: 0;
            border-radius: inherit;
            pointer-events: none;
            background: linear-gradient(120deg, rgba(0, 191, 166, .35), rgba(94, 234, 212, .25), rgba(0, 128, 128, .35));
            mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
            -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
            -webkit-mask-composite: xor;
            mask-composite: exclude;
            padding: 1px;
            opacity: .9;
        }

        .search-pro:hover::before {
            opacity: 1
        }

        /* Header + chips */
        .search-pro__header {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            align-items: center;
            justify-content: space-between
        }

        .search-pro__hint {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 13px;
            color: var(--muted);
            flex-wrap: wrap
        }

        .chip {
            border: var(--border);
            background: #fff;
            border-radius: 12px;
            padding: 6px 10px;
            font-size: 12px;
            font-weight: 700;
            color: var(--text);
            cursor: pointer;
            transition: transform .12s ease, box-shadow .2s ease, border-color .2s ease, color .2s ease
        }

        .chip:hover {
            transform: translateY(-1px);
            box-shadow: var(--shadow-sm);
            border-color: rgba(0, 128, 128, .35);
            color: var(--primary)
        }

        /* Tabs */
        .pill-tabs {
            display: flex;
            justify-content: center;
            align-items: center;
            flex-wrap: wrap;
            gap: 8px;
            padding: 6px;
            border-radius: 999px;
            background: rgba(20, 3, 66, 0.06);
            border: var(--border);
            margin-bottom: 8px
        }

        .search-tab {
            padding: 10px 14px;
            border-radius: 999px;
            border: 0;
            color: var(--muted);
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: transparent;
            cursor: pointer;
            font-weight: 700;
            letter-spacing: .1px;
            transition: transform .12s ease, background .2s ease, color .2s ease, box-shadow .2s ease
        }

        .search-tab.active {
            background: #fff;
            color: var(--primary);
            box-shadow: var(--shadow-sm), 0 0 0 1px rgba(0, 128, 128, .15) inset
        }

        .search-tab:hover {
            transform: translateY(-1px)
        }

        /* Search row */
        .search-pro__row {
            display: grid;
            grid-template-columns: 1fr auto;
            gap: 12px;
            align-items: center;
            margin-top: 6px
        }

        @media (max-width:576px) {
            .search-pro__row {
                grid-template-columns: 1fr
            }

            .search-pro__cta {
                width: 100%;
                justify-content: center
            }
        }

        /* Input */
        .input-wrap {
            position: relative;
            display: flex;
            align-items: center;
            width: 100%;
            border: 1px solid #e2e8f0;
            border-radius: 28px;
            background: #fff;
            padding: 12px 14px;
            transition: box-shadow .15s ease, border-color .15s ease
        }

        .input-wrap:focus-within {
            border-color: rgba(0, 128, 128, .45);
            box-shadow: 0 0 0 4px rgba(0, 128, 128, .12)
        }

        .input-wrap i {
            margin-right: 10px;
            color: var(--muted);
            font-size: 14px
        }

        .search-input {
            border: 0;
            outline: 0;
            width: 100%;
            font-size: 16px;
            background: transparent
        }

        .spinner {
            position: absolute;
            right: 12px;
            width: 16px;
            height: 16px;
            border-radius: 50%;
            border: 2px solid rgba(0, 128, 128, .18);
            border-top-color: var(--primary);
            opacity: 0;
            transform: scale(.8);
            transition: opacity .2s ease;
        }

        .input-loading .spinner {
            opacity: 1;
            animation: spin 1s linear infinite
        }

        @keyframes spin {
            to {
                transform: rotate(360deg)
            }
        }

        /* CTA */
        .btn.btn-primary.hero__search-btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--primary);
            color: #fff;
            border: none;
            padding: 12px 18px;
            border-radius: 14px;
            font-weight: 800;
            box-shadow: 0 10px 24px rgba(0, 128, 128, .22);
            transition: transform .06s ease, box-shadow .2s ease, background .2s ease
        }

        .btn.btn-primary.hero__search-btn:hover {
            transform: translateY(-1px)
        }

        .btn.btn-primary.hero__search-btn:active {
            transform: translateY(0)
        }

        /* Filters */
        .search-pro__filters {
            margin-top: 10px;
            display: grid;
            gap: 10px;
            grid-template-columns: repeat(2, minmax(0, 1fr))
        }

        @media (min-width:992px) {
            .search-pro__filters {
                grid-template-columns: repeat(3, minmax(0, 1fr))
            }
        }

        .field {
            position: relative;
            display: flex;
            align-items: center;
            border: 1px solid #e2e8f0;
            border-radius: 14px;
            background: #fff;
            padding: 0 12px;
            transition: border-color .15s ease, box-shadow .15s ease
        }

        .field:focus-within {
            border-color: rgba(0, 128, 128, .45);
            box-shadow: 0 0 0 4px rgba(0, 128, 128, .12)
        }

        .field i {
            font-size: 14px;
            color: var(--muted);
            margin-right: 10px
        }

        .filter-select {
            -webkit-appearance: none;
            -moz-appearance: none;
            appearance: none;
            border: 0;
            outline: 0;
            background: transparent;
            width: 100%;
            padding: 12px 28px 12px 0;
            font-size: 15px;
            color: var(--text);
            cursor: pointer;
            background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 6l4 4 4-4' fill='none' stroke='%2364748b' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 8px center
        }

        /* Suggestions dropdown (optional) */
        .search-suggest {
            margin-top: 8px;
            border-radius: 14px;
            border: var(--border);
            background: #fff;
            box-shadow: var(--shadow-lg);
            overflow: hidden;
            max-height: 320px;
            display: grid
        }

        .search-suggest[hidden] {
            display: none
        }

        .search-suggest button {
            text-align: left;
            padding: 10px 14px;
            border: 0;
            background: transparent;
            cursor: pointer;
            display: flex;
            gap: 10px;
            align-items: center;
            color: var(--text)
        }

        .search-suggest button:hover {
            background: rgba(0, 128, 128, .06)
        }

        /* Meta chips */
        .hero3__meta {
            margin-top: 16px
        }

        .hero3__chips {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            justify-content: center
        }

        .hero3__chips span {
            font-size: 12px;
            font-weight: 600;
            color: var(--text);
            background: #fff;
            border: var(--border);
            border-radius: 999px;
            padding: 8px 12px
        }

        /* A11y focus */
        .search-tab:focus-visible,
        .chip:focus-visible,
        .btn.btn-primary.hero__search-btn:focus-visible,
        .input-wrap:focus-within,
        .field:focus-within {
            outline: 0;
            box-shadow: 0 0 0 4px rgba(0, 128, 128, .18), 0 1px 0 rgba(0, 0, 0, .02)
        }

        /* Reduced motion */
        @media (prefers-reduced-motion: reduce) {

            .hero3__radial,
            .hero3__bg--1,
            .hero3__bg--2,
            .hero3__pattern--grid,
            .hero3__pattern--dots {
                animation: none
            }

            .search-tab,
            .chip,
            .btn.btn-primary.hero__search-btn {
                transition: none
            }
        }

        /* Results area */
        .results-container {
            width: 100%;
            margin: 26px auto 0;
            display: grid;
            gap: 16px
        }



        /* ===== TOP RECRUITERS Section ===== */
        .mini-stats {
            margin-top: 12px;
        }

        .req-head {
            font-size: 14px;
            font-weight: 600;
            color: #1e293b;
            /* slate-800 */
            margin-bottom: 8px;
            display: flex;
            align-items: center;
            gap: 6px;
            text-transform: uppercase;
            letter-spacing: 0.3px;
        }

        .req-head i {
            color: #8b5cf6;
            /* violet-500 */
            font-size: 14px;
        }

        /* Recruiter chips container */
        .chip .vals-r {
            display: flex;
            flex-wrap: wrap;
            gap: 4px;
            font-size: 0;
            /* hide raw commas */
        }

        /* Each recruiter pill */
        .chip .vals-r>span {
            font-size: 13px;
            font-weight: 600;
            color: #6d28d9;
            /* violet-700 */
            background: #f5f3ff;
            /* violet-50 */
            border: 1px solid #e9d5ff;
            /* violet-200 */
            border-radius: 25px;
            padding: 6px 12px;
            line-height: 1;
            display: inline-flex;
            align-items: center;
            white-space: nowrap;
            transition: background .2s ease, color .2s ease, box-shadow .2s ease;
        }

        .chip .vals-r>span:hover {
            background: #ede9fe;
            box-shadow: 0 2px 6px rgba(109, 40, 217, .12);
            color: #5b21b6;
        }

        /* "+N" pill */
        .chip .vals-r>span:last-child b {
            font-weight: 700;
            color: #475569;
            /* slate-600 */
            background: #f1f5f9;
            /* slate-100 */
            border: 1px solid #e2e8f0;
            /* slate-200 */
            border-radius: 999px;
            padding: 6px 12px;
            display: inline-block;
        }

        .university-card .chip:hover {
            transform: none;
            box-shadow: none;
            border-color: none;
            color: var(--primary)
        }
         .uni-card, .uni-card p, .uni-card span{
            text-decoration: none !important;
        }
        .vals-r {display: flex;}


.vals-r span{
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    min-width: 0;     /* REQUIRED inside flex */
    max-width: 100%;
}



        .university-card .chip {
            border: none;
        }
        
        
      
      

        .shorts-section-container {
    background-color: #f9f7f2; /* Light cream color */
    padding: 50px 20px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
}

.shorts-header {
    display: flex;
    align-items: center;
    margin-bottom: 35px;
    padding-left: 15px;
    border-left: 5px solid #FFD30A;
}

.shorts-logo {
    color: #FF0000;
    font-size: 2.2rem;
    margin-right: 15px;
}

.shorts-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: #222222;
    letter-spacing: -0.5px;
    text-shadow: 0 1px 2px rgba(0,0,0,0.05);
}

.shorts-scroll-wrapper {
    position: relative;
    overflow: visible; /* Change from hidden to visible */
    border-radius: 12px;
    background: #ffffff;
    padding: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    /* Add margin for navigation buttons */
    margin: 0 40px;
}

.shorts-scroll-area {
    display: flex;
    gap: 25px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 10px 5px 25px;
    scrollbar-width: none;
}

.shorts-scroll-area::-webkit-scrollbar {
    display: none;
}

.shorts-video-card {
    flex: 0 0 auto;
    width: 300px;
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #eaeaea;
}

.shorts-video-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(255, 211, 10, 0.25);
    border-color: #FFD30A;
}

.shorts-thumbnail {
    position: relative;
    height: 530px;
    overflow: hidden;
}

.shorts-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.shorts-video-card:hover .shorts-thumbnail img {
    transform: scale(1.05);
}

.shorts-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 40%);
}

.shorts-play-btn {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 56px;
    height: 56px;
    background: #FFD30A;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: #222;
    opacity: 0;
    transition: opacity 0.3s, transform 0.3s, background 0.3s;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
    border: 2px solid #ffffff;
}

.shorts-play-btn:hover {
    background: #ffe55c;
}

.shorts-video-card:hover .shorts-play-btn {
    opacity: 1;
    transform: translateX(-50%) scale(1.05);
}

.shorts-video-info {
    padding: 18px;
    display: flex;
    align-items: center;
    border-top: 1px solid #f0f0f0;
    background: #fdfdfd;
}

.shorts-yt-icon {
    color: #FF0000;
    font-size: 1.5rem;
    margin-right: 12px;
    flex-shrink: 0;
}

.shorts-video-title {
    color: #333333;
    font-weight: 600;
    font-size: 1rem;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.shorts-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background: #FFD30A;
    border: none;
    border-radius: 50%;
    color: #222;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.9;
    transition: opacity 0.3s, background 0.3s, transform 0.2s;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.shorts-nav-btn:hover {
    background: #ffe55c;
    opacity: 1;
    transform: translateY(-50%) scale(1.1);
}

.shorts-nav-left {
    left: 25px;
}

.shorts-nav-right {
    right: 25px;
}

.shorts-indicator {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 25px;
}

.shorts-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ddd;
    transition: background 0.3s, transform 0.3s;
    cursor: pointer;
}

.shorts-dot:hover {
    transform: scale(1.2);
}

.shorts-dot.active {
    background: #FFD30A;
    transform: scale(1.2);
}

.shorts-section-tagline {
    text-align: center;
    color: #666;
    font-size: 0.95rem;
    margin-top: 15px;
    font-weight: 500;
}

@media (max-width: 768px) {
    .shorts-video-card {
        width: 280px;
    }
    
    .shorts-thumbnail {
        height: 500px;
    }
    
    .shorts-nav-btn {
        display: none;
    }
    
    .shorts-title {
        font-size: 1.5rem;
    }
    
    .shorts-section-container {
        padding: 35px 15px;
    }
}

@media (max-width: 480px) {
    .shorts-video-card {
        width: 260px;
    }
    
    .shorts-thumbnail {
        height: 460px;
    }
    
    .shorts-scroll-wrapper {
        padding: 10px;
    }
    
    .shorts-section-container {
        padding: 25px 12px;
    }
}

@keyframes shortsFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.shorts-video-card {
    animation: shortsFadeIn 0.4s ease forwards;
    opacity: 0;
}

.shorts-video-card:nth-child(1) { animation-delay: 0.1s; }
.shorts-video-card:nth-child(2) { animation-delay: 0.2s; }
.shorts-video-card:nth-child(3) { animation-delay: 0.3s; }
.shorts-video-card:nth-child(4) { animation-delay: 0.4s; }
.shorts-video-card:nth-child(5) { animation-delay: 0.5s; }
.shorts-video-card:nth-child(6) { animation-delay: 0.6s; }  
        
        
        


/* ================================
   YOUTUBE SHORTS SECTION - FIXED
================================ */
.shorts-section {
    padding: 60px 0;
    background-color: #f9f7f2 !important;
    position: relative;
    overflow: visible !important; /* CRITICAL FIX */
}

.shorts-section .container {
    position: relative;
    overflow: visible !important; /* CRITICAL FIX */
}

.shorts-scroll-wrapper {
    position: relative;
    margin: 30px auto 20px;
    max-width: 100%;
    padding: 15px 0;
    overflow: visible !important; /* CHANGED from hidden to visible */
}

.shorts-scroll-area {
    display: flex;
    gap: 25px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 10px 20px 25px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    overscroll-behavior-y: auto;
    touch-action: pan-x pan-y;
    cursor: grab;
}

.shorts-scroll-area:active {
    cursor: grabbing;
}

.shorts-scroll-area::-webkit-scrollbar {
    display: none;
}

.shorts-video-card {
    flex: 0 0 auto;
    width: 280px;
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #eaeaea;
    cursor: pointer;
}

.shorts-video-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(255, 211, 10, 0.2);
    border-color: #FFD30A;
}

.shorts-thumbnail {
    position: relative;
    height: 500px;
    overflow: hidden;
}

.shorts-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.shorts-video-card:hover .shorts-thumbnail img {
    transform: scale(1.05);
}

.shorts-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 50%);
}

.shorts-play-btn {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 56px;
    height: 56px;
    background: #FFD30A;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: #222;
    opacity: 0;
    transition: opacity 0.3s, transform 0.3s, background 0.3s;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
    border: 2px solid #ffffff;
}

.shorts-play-btn:hover {
    background: #ffe55c;
}

.shorts-video-card:hover .shorts-play-btn {
    opacity: 1;
    transform: translateX(-50%) scale(1.05);
}

.shorts-video-info {
    padding: 18px;
    display: flex;
    align-items: center;
    border-top: 1px solid #f0f0f0;
    background: #fdfdfd;
}

.shorts-yt-icon {
    color: #FF0000;
    font-size: 1.5rem;
    margin-right: 12px;
    flex-shrink: 0;
}

.shorts-video-title {
    color: #333333;
    font-weight: 600;
    font-size: 1rem;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.shorts-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background: #FFD30A;
    border: none;
    border-radius: 50%;
    color: #222;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.9;
    transition: opacity 0.3s, background 0.3s, transform 0.2s;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    visibility: visible;
}

.shorts-nav-btn:hover {
    background: #ffe55c;
    opacity: 1;
    transform: translateY(-50%) scale(1.1);
}

.shorts-nav-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.shorts-nav-left {
    left: 10px;
}

.shorts-nav-right {
    right: 10px;
}

.shorts-indicator {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 25px;
    flex-wrap: wrap;
}

.shorts-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ddd;
    transition: background 0.3s, transform 0.3s;
    cursor: pointer;
}

.shorts-dot:hover {
    transform: scale(1.2);
    background: #FFD30A;
}

.shorts-dot.active {
    background: #FFD30A;
    transform: scale(1.2);
}

.shorts-section-tagline {
    text-align: center;
    color: #666;
    font-size: 0.95rem;
    margin-top: 15px;
    font-weight: 500;
    padding: 0 20px;
}

/* Animations */
@keyframes shortsFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.shorts-video-card {
    animation: shortsFadeIn 0.4s ease forwards;
    opacity: 0;
}

/* Stagger animations */
.shorts-video-card:nth-child(1) { animation-delay: 0.1s; }
.shorts-video-card:nth-child(2) { animation-delay: 0.2s; }
.shorts-video-card:nth-child(3) { animation-delay: 0.3s; }
.shorts-video-card:nth-child(4) { animation-delay: 0.4s; }
.shorts-video-card:nth-child(5) { animation-delay: 0.5s; }
.shorts-video-card:nth-child(6) { animation-delay: 0.6s; }

/* Responsive Design */
@media (max-width: 768px) {
    .shorts-section {
        padding: 40px 0;
    }
    
    .shorts-video-card {
        width: 260px;
    }
    
    .shorts-thumbnail {
        height: 460px;
    }
    
    .shorts-nav-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        display: flex; /* Keep visible on mobile */
    }
    
    .shorts-nav-left {
        left: 5px;
    }
    
    .shorts-nav-right {
        right: 5px;
    }
    
    .shorts-scroll-area {
        padding: 10px 15px 25px;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .shorts-video-card {
        width: 240px;
    }
    
    .shorts-thumbnail {
        height: 420px;
    }
    
    .shorts-scroll-area {
        gap: 15px;
        padding: 10px 10px 25px;
    }
    
    .shorts-section-tagline {
        font-size: 0.85rem;
        padding: 0 10px;
    }
}

/* Hide navigation buttons when not needed */
@media (max-width: 360px) {
    .shorts-nav-btn {
        display: none;
    }
}

/* Accessibility improvements */
.shorts-video-card:focus-visible {
    outline: 3px solid #FFD30A;
    outline-offset: 3px;
}

.shorts-nav-btn:focus-visible {
    outline: 3px solid #222;
    outline-offset: 2px;
}



/* ===================================
   FAQ SECTION STYLES - ALL QUESTIONS OPEN
   =================================== */
.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

/* FAQ List */
.faq-list {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 20px;
}

.faq-item {
    border-bottom: 1px solid #e5e7eb;
    transition: background-color 0.3s ease;
}

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

.faq-item:hover {
    background-color: rgba(255, 211, 10, 0.02);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--primary-dark);
    transition: color 0.3s ease;
    background-color: #f8fafc;
}

.faq-question.active {
    background-color: rgba(255, 211, 10, 0.08);
    color: var(--primary);
}

.faq-question:hover {
    color: var(--primary);
}

.faq-question i {
    color: var(--primary);
    transition: transform 0.3s ease;
    font-size: 0.9rem;
}

.faq-question.active i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 1000px;
    overflow: hidden;
    transition: all 0.4s ease;
    padding: 0 25px 25px 25px;
    color: var(--gray);
    line-height: 1.6;
}

.faq-answer:not(.active) {
    max-height: 0;
    padding: 0 25px;
}

.faq-answer.active {
    padding-top: 15px;
}

.faq-answer ul {
    padding-left: 20px;
    margin: 15px 0;
}

.faq-answer li {
    margin-bottom: 8px;
    padding-left: 5px;
}

.faq-answer strong {
    color: var(--primary-dark);
}

.faq-answer p:first-child {
    margin-top: 0;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

/* FAQ Summary */
.faq-summary {
    text-align: center;
    color: var(--gray);
    font-size: 0.9rem;
    padding: 15px;
    background: rgba(255, 211, 10, 0.05);
    border-radius: 8px;
    margin-top: 20px;
}

.faq-summary i {
    color: var(--primary);
    margin-right: 8px;
}

/* Category Tags (optional, hidden by default) */
.faq-category-tag {
    display: inline-block;
    font-size: 0.7rem;
    background: rgba(20, 3, 66, 0.08);
    color: var(--primary-dark);
    padding: 2px 8px;
    border-radius: 10px;
    margin-left: 10px;
    opacity: 0.7;
    text-transform: uppercase;
    font-weight: 500;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.faq-item {
    animation: fadeInUp 0.5s ease forwards;
    opacity: 0;
}

/* Stagger animations for all 20 items */
.faq-item:nth-child(1) { animation-delay: 0.05s; }
.faq-item:nth-child(2) { animation-delay: 0.1s; }
.faq-item:nth-child(3) { animation-delay: 0.15s; }
.faq-item:nth-child(4) { animation-delay: 0.2s; }
.faq-item:nth-child(5) { animation-delay: 0.25s; }
.faq-item:nth-child(6) { animation-delay: 0.3s; }
.faq-item:nth-child(7) { animation-delay: 0.35s; }
.faq-item:nth-child(8) { animation-delay: 0.4s; }
.faq-item:nth-child(9) { animation-delay: 0.45s; }
.faq-item:nth-child(10) { animation-delay: 0.5s; }
.faq-item:nth-child(11) { animation-delay: 0.55s; }
.faq-item:nth-child(12) { animation-delay: 0.6s; }
.faq-item:nth-child(13) { animation-delay: 0.65s; }
.faq-item:nth-child(14) { animation-delay: 0.7s; }
.faq-item:nth-child(15) { animation-delay: 0.75s; }
.faq-item:nth-child(16) { animation-delay: 0.8s; }
.faq-item:nth-child(17) { animation-delay: 0.85s; }
.faq-item:nth-child(18) { animation-delay: 0.9s; }
.faq-item:nth-child(19) { animation-delay: 0.95s; }
.faq-item:nth-child(20) { animation-delay: 1s; }

/* Scroll behavior for long FAQ */
.faq-list {
    max-height: 1500px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--primary) #f1f1f1;
}

.faq-list::-webkit-scrollbar {
    width: 6px;
}

.faq-list::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

.faq-list::-webkit-scrollbar-thumb {
    background-color: var(--primary);
    border-radius: 3px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .faq-question {
        padding: 20px;
        font-size: 1rem;
    }
    
    .faq-answer {
        padding: 0 20px 20px 20px;
    }
    
    .faq-answer:not(.active) {
        padding: 0 20px;
    }
    
    .faq-answer.active {
        padding-top: 10px;
    }
    
    .faq-list {
        max-height: 1200px;
    }
}

@media (max-width: 480px) {
    .faq-question {
        padding: 18px;
        font-size: 0.95rem;
        align-items: flex-start;
    }
    
    .faq-question span {
        flex: 1;
        padding-right: 15px;
    }
    
    .faq-answer {
        padding: 0 18px 18px 18px;
        font-size: 0.9rem;
    }
    
    .faq-answer:not(.active) {
        padding: 0 18px;
    }
    
    .faq-summary {
        font-size: 0.8rem;
        padding: 12px;
    }
}

/* Print Styles */
@media print {
    .faq-question {
        background: none !important;
        color: #000 !important;
    }
    
    .faq-answer:not(.active) {
        max-height: none !important;
        display: block !important;
        padding-bottom: 25px !important;
    }
    
    .faq-list {
        max-height: none !important;
        overflow: visible !important;
        box-shadow: none !important;
    }
    
    .faq-item {
        page-break-inside: avoid;
    }
}

/*FAQ END*/
        