:root {
    --primary: #158e8c;
    --secondary: #2b275d;
}

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

/* @import url('https://fonts.googleapis.com/css2?family=Inter:wght@200;400;600;700;800&display=swap'); */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;400;600;700&display=swap');

body {
    font-family: Poppins, sans-serif;
}

table, th, td {
  padding: 10px;
  border: 1px solid black;
  color: #405461;
  font-size: 15px;
}
table {
  width: 100%;
}
th {
    background: #f0f0f0;
    text-align: center;
}

.container {
    width: 1450px;
    max-width: 100%;
    margin: 0 auto;
}

.wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
}

header {
    border-bottom: 2px solid rgb(21 142 140 / 10%);
}

.logo {
    flex: 1;
}

.logo img {
    width: 100%;
}

.logo a {
    display: flex;
}

.download-app {
    flex: 5;
    display: flex;
    justify-content: end;
}

.download-app a {
    width: fit-content;
    font-size: 18px;
    font-weight: 700;
    color: var(--secondary);
    border: 2px solid var(--primary);
    padding: 0 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 55px;
    text-decoration: none;
    cursor: pointer;
}

.download-app a:hover {
    background: var(--primary);
    color: #fff;
}

.download-app.download-btn a {
    height: 55px;
    padding: 0 50px;
}

.btn-icon {
    height: 30px;
    padding-right: 10px;
}

.banner {
    /* background: linear-gradient(90deg, var(--primary) 0, var(--secondary)); */
    margin: 30px auto;
    border-radius: 5px;
}

.banner.page {
    background: linear-gradient(90deg, var(--primary) 0, var(--secondary));
}

.banner-header {
    display: flex;
    justify-content: center;
}

.page .banner-header {
    flex-direction: column;
    padding: 30px;
}

.banner .wrapper {
    /* padding: 50px 100px; */
    justify-content: center;
    gap: 100px;
}

.banner-img {
    width: 450px;
    max-width: 100%;

}

.banner-img a img {
    width: 100%;
}

.banner-header h1 {
    color: #f3f3f3;
    font-size: 28px;
    text-align: center;
}

.banner-header img {
    border-radius: 10px;
    width: 100%;
    -webkit-box-shadow: 2px 2px 5px 2px rgb(1 30 49 / 20%);
    -moz-box-shadow: 2px 2px 5px 2px rgb(1 30 49 / 20%);
    box-shadow: 2px 2px 5px 2px rgb(1 30 49 / 20%);
}

.banner-header p {
    color: #f3f3f3;
}

/* START LIVE TEST */

#live-test .wrapper {
    justify-content: center;
}


.live-test-container {
    width: 500px;
    max-width: 100%;
}

.live-test-container h2 {
    color: var(--secondary);
    font-size: 18px;
    display: flex;
    align-items: center;
}

.live-test {
    border-radius: 15px;
    overflow: hidden;
}

.live-test_top {
    background: var(--secondary);
    color: #fff;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.live-test-header {
    display: flex;
    justify-content: space-between;
}

.live-test__duration {
    font-size: 14px;
    color: #a2a2a2;
}

.live-test__timer {
    color: #0be50b;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.live-test__timer svg {
    width: 18px;
}

.live-test_top .title {
    font-size: 16px;
    font-weight: 400;
}

.live-test_bottom {
    padding: 20px 0;
    background: rgba(0,0,0,0.05);
    display: flex;
    justify-content: center;
}

.live-test_bottom a {
    text-decoration: none;
    padding: 10px 100px;
    background: var(--primary);
    color: #fff;
    border-radius: 50px;
    cursor: pointer;
}

.live-test_bottom a:hover {
    opacity: 0.9;
}

.blob {
	background: black;
	border-radius: 50%;
	box-shadow: 0 0 0 0 rgba(0, 0, 0, 1);
	margin: 10px;
	height: 15px;
	width: 15px;
	transform: scale(1);
	animation: pulse-black 2s infinite;
}

.blob.red {
	background: rgba(255, 82, 82, 1);
	box-shadow: 0 0 0 0 rgba(255, 82, 82, 1);
	animation: pulse-red 2s infinite;
}

@keyframes pulse-red {
	0% {
		transform: scale(0.95);
		box-shadow: 0 0 0 0 rgba(255, 82, 82, 0.7);
	}
	
	70% {
		transform: scale(1);
		box-shadow: 0 0 0 10px rgba(255, 82, 82, 0);
	}
	
	100% {
		transform: scale(0.95);
		box-shadow: 0 0 0 0 rgba(255, 82, 82, 0);
	}
}


/* END LIVE TEST */

.slider {
    width: 1000px;
    padding-bottom: 50px;
}

.slider .wrapper {
    flex-direction: column;
}

.slider h2 {
    color: var(--secondary);
    font-size: 24px;
    padding: 20px 0;
}

.grid {
    background: #f5f3fc;
    width: 100%;
    margin: 0 auto;
}

.grid a {
    text-decoration: none;
    width: 30%;
    display: flex;
    background-color: #fff;
    aspect-ratio: 1/1;
    flex-direction: column;
    justify-content: start;
    border-radius: 30px;
    overflow: hidden;
    transition: ease all 0.3s;
    box-shadow: 0 4px 6px -1px rgb(0 0 0/0.1), 0 2px 4px -2px rgb(0 0 0/0.1);
}

.grid a:hover {
    scale: 1.03;
    transition: ease all 0.3s;
}

.grid .wrapper {
    width: 1450px;
    max-width: 100%;
    gap: 20px;
    row-gap: 30px;
    flex-wrap: wrap;
    margin: 0 auto;
    padding: 60px 0;
    justify-content: center;
}

.grid .box {
    height: 100%;
    background-repeat: no-repeat;
    background-position: right bottom;
    background-size: 50%;
}

.box-content {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    padding: 20px 0 20px 30px;
}

.box-content img {
    width: 60px;
}

.box-content h3 {
    color: #000000;
    font-weight: 700;
    font-size: 24px;
}

.box-content .tags {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

.box-content .tag {
    background: var(--primary);
    padding: 5px;
    border-radius: 3px;
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
}

.box-content p {
    color: #000000;
}

.box-content .btn {
    color: var(--primary);
    font-weight: 700;
}

.swiper-pagination-bullet {
    border: 1px solid var(--primary) !important;
}

.swiper-pagination-bullet-active {
    background: rgba(0, 0, 0, 0) linear-gradient(to right, var(--secondary) 0%, var(--primary) 100%) repeat scroll 0 0 !important;
}

#testimonials {
    background: linear-gradient(90deg, #054544 0, var(--secondary));
}

.testimonials .wrapper {
    justify-content: center;
    flex-direction: column;
    padding: 75px 0;
    overflow: hidden;
    /* width: 1200px;
    margin: 0 auto; */
}

.testimonials h2 {
    color: #fff;
    text-transform: uppercase;
    font-size: 48px;
}

.testimonial {
    display: flex;
    padding: 50px;
    align-items: center;
    width: 1200px;
}

.testimonial .image {
    /* flex: 1; */
    border-radius: 50%;
    overflow: hidden;
    max-width: 150px;
    height: 150px;
}

.testimonial .image img {
    width: 100%;
}

.testimonial-content {
    display: flex;
    flex: 4;
    padding: 0 100px;
    text-align: left;
    flex-wrap: wrap;
}

.testimonial-content .description {
    width: 100%;
    margin-bottom: 20px;
    position: relative;
    font-size: 14px;
}

.testimonial-content .description::before {
    content: url(../images/quote-left-solid.svg);
    width: 20px;
    height: 20px;
    position: absolute;
    top: -15px;
    left: -30px;
}

.testimonial-content .description::after {
    content: url(../images/quote-right-solid.svg);
    width: 20px;
    height: 20px;
    position: absolute;
    bottom: -20px;
    right: 0;
}

.testimonial-content .rating {
    /* flex: 1; */
    display: flex;
    margin-right: 100px;
}

.star-rating {
    width: 15px !important;
    height: 15px !important;
}

.testimonial-content .commentor {
    flex: 1;
}

.testimonial-content .commentor h3 {
    text-transform: uppercase;
    font-size: 18px;
}

.testimonial-content .commentor span {
    font-weight: 200;
    color: #DDDDDD;
}

.swiper-container.two .swiper-slide {
    background: transparent !important;
    color: #ffffff;
}

footer {
    background: #d9d9d9;
}

footer .container {
    padding-bottom: 45px;
}

footer ul {
    list-style: none;
    display: flex;
    gap: 10px;
    justify-content: center;
    width: 100%;
}

footer a {
    color: #000;
    font-size: 14px;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

.sticky__button {
    display: flex;
    justify-content: center;
    width: 100%;
    background: linear-gradient(230deg, var(--primary) 0, var(--secondary));
    padding: 10px 0;
    position: fixed;
    bottom: 0;
    z-index: 2;
    transition: ease-out 0.5s;
}

.sticky__button:hover {
    opacity: 0.9;
    transition: ease-in all 0.5s;
}

.sticky__button a {
    color: #fff;
    letter-spacing: 3px;
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    text-decoration: none;
}

.sticky__whatsapp {
    position: fixed;
    right: 10px;
    bottom: 75px;
    z-index: 2;
    width: 60px;
    height: 60px;
}

.sticky__whatsapp:hover svg path {
    fill: #128C7E;
    transition: ease-in all 0.5s;
}

.sticky__whatsapp svg {
    width: 100%;
    height: 100%;
}

.sticky__whatsapp svg path {
    fill: #25D366;
    transition: ease-out all 0.5s;
}


.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;

    /* Center slide text vertically */
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* POLICY PAGES */
#policy .wrapper {
    display: flex;
    flex-direction: column;
    align-items: start;
    width: 1140px;
    max-width: 100%;
    margin: 40px auto;
}

#policy h2 {
    color: var(--secondary);
    margin: 20px auto;
    font-weight: 600;
}

#policy h3 {
    color: #405461;
    font-size: 18px;
    margin-bottom: 20px;
}

#policy li {
    color: #405461;
    font-size: 15px;
    margin-bottom: 20px;
}

#policy p {
    color: #405461;
    font-size: 15px;
    margin-bottom: 20px;
}

#policy p a {
    text-decoration: none;
    color: var(--primary);
}

/* Question Series Section */
.box {
    border-radius: 10px;
    width: calc(25% - 10px);
    background: #168e8c;
    padding: 30px;
    text-align: center;
    aspect-ratio: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
    border: solid 5px #eeeeee;
}

#questions_series .wrapper {
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-start;
    align-items: stretch;
}

.box__header {
    color: #2b275a;
    font-size: 32px;
    font-weight: bold;
}

.box__mini_title, .box__footer {
    color: #dcdcdc;
}

.box__subheader {
    color: #2b275a;
    font-size: 18px;
    font-weight: 600;
}

.questions_series {
    padding: 50px 0;
}

@media screen and (max-width: 1024px) {
    .container {
        padding: 0 20px;
    }

    .download-app {
        flex: 2;
    }

    .banner .wrapper {
        flex-direction: column;
        gap: 50px;
    }

    #slider {
        padding: 0 20px;
    }

    #grid {
        padding: 0 20px;
    }

    .grid a {
        width: 100%;
        aspect-ratio: auto;
    }

    .box-content {
        min-height: 350px;
        width: 65%;
    }

    .grid .box {
        background-size: 30%;
    }

    #policy .wrapper {
        margin: 0 auto;
        padding: 0 20px;
    }

    .box {
        width: calc(33% - 5px);
    }

}

@media screen and (max-width: 767px) {
    .container {
        padding: 0 20px;
    }

    .logo {
        flex: 2;
        display: flex;
        align-items: center;
    }

    #live-test .wrapper {
        border-radius: 15px;
    }

    .download-app {
        flex: 3;
    }

    .download-app a {
        font-size: 14px;
        padding: 0 10px;
        height: 45px;
    }

    .grid .wrapper {
        padding: 20px 0;
    }

    .banner .wrapper {
        /* padding: 50px; */
        gap: 25px;
        text-align: center;
    }

    .banner-header h1 {
        font-size: 22px;
    }

    .box-content {
        min-height: 400px;
    }

    .box-content .tag {
        font-size: 12px;
    }

    .grid .box {
        background-size: 40%;
    }

    .box-content p {
        font-size: 14px;
    }

    .slider {
        padding-bottom: 20px;
    }

    .testimonial {
        flex-direction: column;
        padding: 45px;
    }

    .testimonial-content {
        padding: 0;
    }

    .testimonial .description {
        margin-bottom: 30px;
    }

    .testimonial .image {
        min-width: 100px;
        height: 100px;
        margin-bottom: 20px;
    }

    .testimonial-content .rating {
        margin-right: 10px;
    }

    .testimonial-content .commentor h3 {
        font-size: 14px;
    }

    .sticky__whatsapp {
        width: 50px;
        height: 50px;
    }

    #policy .wrapper {
        margin: 0 auto;
        padding: 0 10px;
    }

    #policy h2 {
        text-align: center;
        font-size: 18px;
    }

    .box {
        width: calc(50% - 5px);
        padding: 10px;
        gap: 5px;
    }

    .box__header {
        font-size: 18px;
    }

    .box__subheader {
        font-size: 14px;
    }

    .box__mini_title, .box__footer {
        font-size: 13px;
    }
}

#apps-showcase {
    padding: 40px 0;
    background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 100%);
}

.section-badge {
    background: var(--primary);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    display: inline-block;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-row {
    background: white;
    padding: 60px 0;
    margin-bottom: 60px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.about-testline {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 30px;
}

.about-testline h2 {
    color: var(--secondary);
    margin-bottom: 24px;
    font-size: 36px;
    font-weight: 700;
    line-height: 1.3;
}

.about-testline p {
    color: #555;
    line-height: 1.8;
    font-size: 17px;
    margin-bottom: 40px;
}

.stats-row {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid #eee;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
}

.stat-label {
    color: #666;
    font-size: 15px;
}

.apps-row {
    padding: 20px;
    text-align: center;
}

.section-subtitle {
    color: #666;
    font-size: 16px;
    margin-bottom: 40px;
}

.apps-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    padding: 20px;
    max-width: 900px;
    margin: 0 auto;
    justify-items: center;
}

.app-card {
    width: 100%;
    max-width: 400px;
}

.app-card {
    background: white;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.app-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
}

.app-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.app-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 20px;
}

.app-icon img {
    width: 100%;
    height: 100%;
    border-radius: 18px;
    object-fit: cover;
}

.app-details h3 {
    margin: 15px 0;
    color: var(--secondary);
    font-size: 22px;
}

.app-details p {
    color: #555;
    margin-bottom: 20px;
    font-size: 15px;
    line-height: 1.6;
}

.app-meta {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
    font-size: 14px;
    color: #666;
}

.rating {
    color: #f6b93b;
    font-weight: 600;
}

.playstore-btn {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.playstore-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.playstore-btn img {
    width: 22px;
    margin-right: 10px;
}

@media (max-width: 768px) {
    #apps-showcase {
        padding: 40px 0;
    }

    .about-row {
        margin: 0 15px 30px;
        padding: 40px 0;
    }

    .about-testline h2 {
        font-size: 26px;
    }

    .stats-row {
        gap: 30px;
        flex-wrap: wrap;
    }

    .stat-number {
        font-size: 28px;
    }

    .apps-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 10px;
    }

    .app-card {
        padding: 20px;
    }
}

/* Updated Chat Section Styles */
.chat-section {
    padding: 40px 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.chat-container {
    max-width: 800px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.chat-header {
    background: #ffffff;
    padding: 28px 24px;
    text-align: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.chat-header h2 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--secondary);
    letter-spacing: -0.02em;
    line-height: 1.4;
}

.highlight-text {
    background: linear-gradient(120deg, #34D399 0%, #059669 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 600;
    position: relative;
    display: inline-block;
    transition: all 0.3s ease;
}

.highlight-text::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(120deg, #34D399 0%, #059669 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
    opacity: 0.5;
}

.chat-header h2:hover .highlight-text::after {
    transform: scaleX(1);
}

.chat-box {
    padding: 32px 24px;
    min-height: 120px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    background: linear-gradient(135deg, rgba(248, 249, 250, 0.5) 0%, rgba(255, 255, 255, 0.5) 100%);
}

.placeholder-text {
    color: #666;
    text-align: center;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 8px;
}

.example-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    padding: 0 12px;
}

.example-chip {
    padding: 10px 20px;
    background: #ffffff;
    border: 1px solid rgba(21, 142, 140, 0.2);
    border-radius: 30px;
    color: var(--primary);
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
}

.example-chip:hover {
    background: var(--primary);
    color: #ffffff;
    border-color: var(--primary);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(21, 142, 140, 0.15);
}

.chat-input-container {
    display: flex;
    padding: 24px;
    background: #ffffff;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    gap: 16px;
}

.chat-input {
    flex: 1;
    padding: 16px 24px;
    border: 2px solid rgba(21, 142, 140, 0.15);
    border-radius: 30px;
    font-size: 1rem;
    outline: none;
    transition: all 0.25s ease;
    background: #ffffff;
    color: var(--secondary);
}

.chat-input::placeholder {
    color: #999;
}

.chat-input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(21, 142, 140, 0.1);
}

.chat-submit {
    background: var(--primary);
    color: white;
    border: none;
    width: 48px;
    height: 48px;
    border-radius: 24px;
    cursor: pointer;
    transition: all 0.25s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(21, 142, 140, 0.2);
}

.chat-submit:hover {
    background: var(--secondary);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(43, 39, 93, 0.2);
}

.chat-submit svg {
    width: 20px;
    height: 20px;
    transition: transform 0.25s ease;
}

.chat-submit:hover svg {
    transform: translateX(2px);
}

/* Add responsive styles */
@media (max-width: 640px) {
    .chat-section {
        padding: 20px 16px;
    }
    
    .chat-container {
        border-radius: 16px;
    }
    
    .chat-header {
        padding: 20px;
    }
    
    .chat-header h2 {
        font-size: 1.25rem;
    }
    
    .chat-box {
        padding: 24px 16px;
    }
    
    .example-chips {
        gap: 8px;
        padding: 0 8px;
    }
    
    .example-chip {
        padding: 8px 16px;
        font-size: 0.9rem;
    }
    
    .chat-input-container {
        padding: 16px;
        gap: 12px;
    }
    
    .chat-input {
        padding: 12px 20px;
        font-size: 0.95rem;
    }
    
    .chat-submit {
        width: 42px;
        height: 42px;
    }
}

/* Terms and Conditions Page Styles */
.terms-section {
    padding: 40px 0;
}

.terms-section h1 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #333;
}

.terms-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.terms-content h2 {
    font-size: 1.5rem;
    margin: 30px 0 15px;
    color: #333;
}

.terms-content p {
    margin-bottom: 15px;
    line-height: 1.6;
    color: #666;
}

.terms-content ul {
    margin-bottom: 15px;
    padding-left: 20px;
}

.terms-content li {
    margin-bottom: 10px;
    line-height: 1.6;
    color: #666;
}

/* Scholarship Banner Styles */
.scholarship-banner {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 60px 0;
    margin: 40px 0;
}

.scholarship-banner-content {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.scholarship-text {
    flex: 1;
    color: var(--white);
}

.scholarship-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
}

.scholarship-text h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.scholarship-text h2 .highlight {
    color: #ff6b35;
    font-weight: 800;
}

.scholarship-text p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 30px;
    opacity: 0.9;
}

.scholarship-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 30px;
}

.scholarship-features .feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
}

.feature-icon {
    font-size: 18px;
}

.scholarship-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #ff6b35;
    color: var(--white);
    padding: 16px 32px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.scholarship-cta:hover {
    background: #e55a2b;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
    color: var(--white);
}

.scholarship-cta svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.scholarship-cta:hover svg {
    transform: translateX(4px);
}

.scholarship-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.scholarship-animation {
    position: relative;
    text-align: center;
}

.scholarship-icon {
    font-size: 120px;
    margin-bottom: 20px;
    animation: bounce 2s infinite;
}

.sparkles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.sparkles span {
    position: absolute;
    font-size: 30px;
    animation: sparkle 3s infinite;
}

.sparkles span:nth-child(1) {
    top: 20%;
    left: 20%;
    animation-delay: 0s;
}

.sparkles span:nth-child(2) {
    top: 30%;
    right: 25%;
    animation-delay: 1s;
}

.sparkles span:nth-child(3) {
    bottom: 30%;
    left: 30%;
    animation-delay: 2s;
}

.discount-badge {
    background: #ff6b35;
    color: var(--white);
    padding: 12px 24px;
    border-radius: 25px;
    font-size: 20px;
    font-weight: 700;
    animation: pulse 2s infinite;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

@keyframes sparkle {
    0%, 100% {
        opacity: 0;
        transform: scale(0.5);
    }
    50% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* Mobile Responsive for Scholarship Banner */
@media (max-width: 768px) {
    .scholarship-banner {
        padding: 40px 0;
        margin: 20px 0;
    }
    
    .scholarship-banner-content {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }
    
    .scholarship-text h2 {
        font-size: 28px;
    }
    
    .scholarship-text p {
        font-size: 16px;
    }
    
    .scholarship-features {
        align-items: center;
    }
    
    .scholarship-icon {
        font-size: 80px;
    }
    
    .discount-badge {
        font-size: 18px;
        padding: 10px 20px;
    }
}

@media (max-width: 480px) {
    .scholarship-banner {
        padding: 30px 0;
    }
    
    .scholarship-banner-content {
        gap: 30px;
        padding: 0 15px;
    }
    
    .scholarship-text h2 {
        font-size: 24px;
    }
    
    .scholarship-text p {
        font-size: 15px;
    }
    
    .scholarship-cta {
        font-size: 16px;
        padding: 14px 28px;
    }
    
    .scholarship-icon {
        font-size: 60px;
    }
    
    .discount-badge {
        font-size: 16px;
        padding: 8px 16px;
    }
}
