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

body {
    font-family: "Poppins", sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}
.iti__country {
    font-size: 12px;
}
.iti {
    width: 100%;
}
.iti__search-input {
    height: 3rem;
    padding: 8px;
}
a {
    text-decoration: none;
    color: inherit;
}
/* Back to Top Button */
.btn-back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #000;
    color: #fff;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    box-shadow: var(--box-shadow);
}

.btn-back-to-top.active {
    opacity: 1;
    visibility: visible;
}

/* Hero Section */
.hero-section {
    position: relative;
    background-image: url("../images/banner.png");
    background-size: 100% 100%;
    background-repeat: no-repeat;
    min-height: 100%;
    display: block;
    padding: 0;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
    padding-top: 9rem;
    padding-bottom: 10rem;
}
.hero-content .hr-rule {
    border-top: 2px solid #fff;
    width: 30%;
    height: 0px;
    box-shadow: 0 3px 4px 0 rgba(0, 0, 0, 0.25);
}
.amity-logo {
    width: 20rem;
    height: auto;
}

.hero-title {
    font-size: 2.3rem;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 0.3rem;
}

.hero-title span {
    text-shadow: 0 4px 4px rgba(0, 0, 0, 0.58);
    color: #fecc00;
    display: block;
    font-size: 4rem;
    margin-top: 0;
    line-height: 1.2;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin: 3.5rem 0;
    color: #fff;
    max-width: 90%;
    line-height: 1.4;
}

.hero-subtitle .highlight {
    color: #feca05;
    font-weight: bold;
    text-shadow: 0 4px 4px rgba(0, 0, 0, 0.45);
}

.stats-container {
    display: flex;
    flex-wrap: nowrap;
    margin-top: 4.3rem;
    border-radius: 0;
}

.stat-item {
    background: transparent;
    padding: 0.2rem 1.5rem;
    text-align: left;
    color: #fff;
    min-width: 120px;
    box-shadow: none;
    border-right: 1px solid #fff;
    margin: 0;
}

.stat-item:last-child {
    border-right: none;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 5px;
}

.stat-text {
    font-size: 0.85rem;
    font-weight: 500;
}

/* Bottom curve */
.curve-shape {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 150px;
    background: #fff;
    border-radius: 100% 100% 0 0;
    z-index: 1;
}

/* Admission Form */
.admission-form-container {
    position: relative;
    top: -38px;
    z-index: 2;
}

.college-chalo-badge {
    text-align: right;
    /* position: absolute; */
    right: 46px;
    top: 40px;
    font-weight: 300;
    z-index: 3;
    background: transparent;
    padding: 0;
    margin: 0;
    color: #fff;
    line-height: 1;
}

.college-chalo-badge img {
    width: 8rem;
}

.admission-form {
    padding: 1.5rem 1rem;
    border-radius: 20px;
    border: 2px solid #fff;
    box-shadow: 0 3px 18px 0 rgba(0, 0, 0, 0.39),
        0 -9px 18px 0 rgba(0, 0, 0, 0.25);
    background: rgba(0, 120, 183, 0.51);
}

.form-title {
    color: #fff;
    font-weight: 700;
    margin-bottom: 0;
    text-align: center;
    font-size: 1.8rem;
    text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}
.rule-form {
    border-top: 3px solid #ffca00;
    width: 50%;
    margin: auto;
    height: 0px;
    box-shadow: 0 3px 4px 0 rgba(0, 0, 0, 0.25);
}
.form-subtitle {
    color: #fff;
    text-align: center;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    font-weight: 600;
}

.form-header-text {
    color: #1e3a8a;
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 0.8rem;
    text-transform: uppercase;
    background: rgba(30, 58, 138, 0.1);
    padding: 0.5rem;
    border-radius: 5px;
}

.form-control,
.form-select {
    border: 1px solid #fff;
    border-radius: 7px;
    padding: 0.95rem;
    font-size: 0.95rem;
    margin-bottom: 20px;
    background: rgba(255, 255, 255, 0.13);
    width: 100%;
    color: #fff;
}
.form-control:disabled {
    color: #000;
}
.form-control:focus,
.form-select:focus {
    border-color: #1e3a8a;
    box-shadow: 0 0 0 0.2rem rgba(30, 58, 138, 0.25);
    background-color: #fff;
    color: #000;
}

.country-code {
    display: flex;
    align-items: center;
    margin-bottom: 0;
    position: relative;
}

.country-code .flag {
    width: 28px;
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
}

.country-code .form-control {
    padding-left: 55px;
}

.btn-submit {
    background: #feca05;
    border: none;
    padding: 0.8rem 1rem;
    font-weight: 800;
    border-radius: 8px;
    color: #000;
    font-size: 1.5rem;
    letter-spacing: 1px;
    margin-top: 2rem;
    transition: all 0.3s ease;
    width: 70%;
    text-transform: uppercase;
    display: block;
    margin-inline: auto;
}

.btn-submit:hover {
    background: #e6c400;
    transform: translateY(-2px);
}

/* Section Titles */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ff7f50;
    margin-bottom: 1.5rem;
    position: relative;
    text-transform: capitalize;
}

/* Rankings Section */
.rankings-section {
    background: #fff;
    padding: 3rem 0;
}
.swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
}
.slide-inner {
    height: 7rem;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    width: 100%;
}
.ranking-logo {
    height: 90px;
    width: auto;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}

.rankings-swiper {
    padding-bottom: 2rem;
}

.swiper-pagination {
    text-align: center;
    bottom: -4px !important;
}
/* Campuses Section */

.campuses-section {
    background: linear-gradient(to right, #0056a5, #007ac3);
    overflow: hidden;
}

.campus-container {
    display: flex;
    width: 100%;
    flex-wrap: nowrap;
}

.campus-label {
    background-color: #000;
    color: #fff;
    padding: 12px 20px;
    font-weight: 600;
    white-space: nowrap;
    display: flex;
    align-items: center;
    min-width: 10rem;
}

.campus-scroll {
    overflow: hidden;
    position: relative;
    flex: 1;
    background-color: #fecc00;
}

.campus-buttons {
    display: flex;
    justify-content: space-around;
    white-space: nowrap;
    gap: 1.5rem;
    align-items: center;
    padding: 12px 0;
    will-change: transform;
}

.campus-btn {
    font-weight: 700;
    color: #000;
    flex-shrink: 0;
}

.campus-sep {
    font-weight: 400;
    color: #000;
    flex-shrink: 0;
}
/* why */
.why-choose-section {
    position: relative;
    background: #0078b7;
    color: white;
    padding: 4rem 0;
    overflow: hidden;
}
.why-choose-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='1440' height='1222' viewBox='0 0 1440 1222' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0.979492H1443L824 530.186L0 1184.29V0.979492Z' fill='url(%23paint0_linear_2943_566)' fill-opacity='0.79'/%3E%3Cdefs%3E%3ClinearGradient id='paint0_linear_2943_566' x1='83' y1='378.355' x2='456.819' y2='821.544' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%23013A68'/%3E%3Cstop offset='1' stop-color='%230078B7'/%3E%3C/linearGradient%3E%3C/defs%3E%3C/svg%3E")
        no-repeat;
    background-size: cover;
    opacity: 0.79;
    z-index: 0;
}

.why-choose-section .container {
    position: relative;
    z-index: 1;
}
.container-why {
    text-align: center;
}
.section-title-why {
    color: white;
    font-weight: 700;
    font-size: 2rem;
    position: relative;
    display: inline-block;
    text-shadow: 0 4px 4px rgba(0, 0, 0, 0.8);
}

.section-title-why:after {
    content: "";
    display: block;
    height: 1px;
    background: #fff;
    margin: 0.4rem auto 0;
    width: 100%;
}
.feature-item {
    background: transparent;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
    text-align: left;
}

.feature-item:hover {
    transform: translateY(-4px);
}

.feature-icon {
    width: 6rem;
    height: auto;
    flex-shrink: 0;
}
.feature-icon use {
    fill: #e6bd12;
}
.feature-item h5 {
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.feature-item p {
    font-size: 0.95rem;
    opacity: 0.9;
    margin: 0;
}

/* Accreditations Section */
.accreditations-section {
    background: white;
    padding: 3rem 0;
    border-bottom: 1px solid #e0e0e0;
}
.accreditations-section h4 {
    background: #85bedc;
    border-radius: 4px;
    width: fit-content;
    margin: auto;
    padding: 4px 10px;
    position: relative;
    top: 27px;
}
.accreditation-container {
    padding: 10px 0;
    background: rgba(217, 217, 217, 0.58);
}
.accreditation-container .rankings-swiper {
    padding: 2rem 0;
}
.swiper-wrapper {
    align-items: center;
}

.swiper-pagination-bullet {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid #ff7f50;
    background-color: transparent !important;
    opacity: 1;
    margin: 0 6px;
    transition: all 0.3s ease;
}
.swiper {
    position: relative;
}
.swiper-pagination-bullet-active {
    background-color: #ff7f50 !important;
    border-color: #ff7f50;
}
.accreditation-logo {
    height: 100%;
    width: 100%;
    object-fit: contain;
}
.accreditation-flex {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    align-items: center;
}
.accreditation-flex .slide-inner {
    flex: 1 1 172px;
    max-width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 4px;
}
.swiper-pagination-bullet {
    background-color: #1e3a8a;
    opacity: 0.5;
}

.swiper-pagination-bullet-active {
    background-color: #fecc00;
    opacity: 1;
}
.accreditations-section-desktop {
    background: white;
    padding: 4rem 0;
}

.accreditations-section-desktop h4 {
    background: #85bedc;
    border-radius: 4px;
    width: fit-content;
    margin: auto;
    padding: 4px 10px;
    position: relative;
    top: 27px;
}

.accreditations-section-desktop .accreditation-container {
    background: rgba(217, 217, 217, 0.58);
    padding: 33px 0;
}

.accreditations-section-desktop .accreditation-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 3.3rem;
    align-items: center;
    justify-content: center;
    justify-items: center;
    row-gap: 13px;
}

.accreditations-section-desktop .accreditation-logo {
    height: 80px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.accreditations-section-desktop .accreditation-logo:hover {
    transform: scale(1.1);
}

/* Scholarships Section */
.scholarships-container {
    background: #e9e9e9;
    padding: 2rem 0;
}
.scholarships-container .container {
    gap: 5rem;
}
.scholarship-card {
    height: 25rem;
    width: 25rem;
    background: white;
    padding: 3rem 2rem;
    border-radius: 100%;
    fill: #fff;
    stroke-width: 1px;
    border: 1px solid #ff7f50;
    text-align: center;
    box-shadow: 0 4px 22px rgba(0, 0, 0, 0.44);
    display: flex;
    flex-direction: column;
    align-items: center;
    vertical-align: text-top;
    justify-content: inherit;
}

.scholarship-card:hover {
    transform: translateY(-5px);
}

.scholarship-icon {
    width: 10rem;
    height: auto;
    margin: 0 auto 1rem;
}

.scholarship-icon img {
    width: 70%;
    height: auto;
    object-fit: contain;
    mix-blend-mode: normal;
}

.scholarship-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1e3a8a;
    line-height: 1.2;
}

.scholarship-text {
    font-size: 1.1rem;
    color: #000;
    font-weight: 500;
}
/* Academic Excellence Section */
.academic-excellence-section {
    background: white;
    padding: 4rem 0;
}
.academic-excellence-section .section-title {
    margin-bottom: 13px;
}
.section-title-text {
    text-align: center;
    font-size: 1rem;
    margin-bottom: 1.8rem;
}
.excellence-card {
    background: #fecc00;
    padding: 0.8rem 2rem;
    border-radius: 15px;
    text-align: center;
    color: #000;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.excellence-card:hover {
    transform: translateY(-5px);
}

.excellence-number {
    font-size: 2.2rem;
    font-weight: 600;
    line-height: 1.1;
}

.excellence-text {
    font-size: 0.9rem;
    font-weight: 400;
}

/* Research Innovation Section */
.research-innovation-section {
    background: #e9e9e9;
    padding: 4rem 0;
}
.research-innovation-section .section-title {
    margin-bottom: 1rem;
}
.research-card {
    background: white;
    padding: 1rem 2rem;
    border-radius: 13px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.57);
    height: 100%;
    margin: 0 1.5rem;
    transition: transform 0.3s ease;
}

.research-card:hover {
    transform: translateY(-5px);
}

.research-card h4 {
    color: #1e3a8a;
    margin-bottom: 1rem;
    font-weight: 600;
}

.research-card ul {
    list-style: none;
    padding: 0;
}

.research-card li {
    padding: 0.8rem 0;
    border-bottom: 1px solid #e5e7eb;
    position: relative;
    padding-left: 1.5rem;
}

.research-card li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #000;
    font-weight: bold;
}

/* Innovation Incubator Section */
.innovation-incubator-section {
    background: white;
    padding: 4rem 0;
}
.innovation-incubator-section .section-title span {
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.25);
    color: #ff7f50;
    font-weight: 400;
}
.incubator-card {
    background: #fff;
    padding: 2rem;
    border-radius: 13px;
    text-align: center;
    color: #000;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.57);
    height: 100%;
    transition: transform 0.3s ease;
    margin: 0 1rem;
}
.incubator-card-last {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}
.incubator-card-last .incubator-text {
    font-size: 1.5rem;
}
.incubator-card:hover {
    transform: translateY(-5px);
}

.incubator-number {
    font-size: 2.2rem;
    font-weight: 600;
    color: #044184;
}

.incubator-text {
    font-size: 1.1rem;
    font-weight: 500;
}

.coverage-text {
    font-size: 1.2rem;
    color: #1e3a8a;
    font-weight: 600;
    margin-top: 2rem;
}

/* Alumni Universities Section */
.alumni-universities-section {
    background: linear-gradient(134deg, #004678 0%, #0098e7 100%);
    padding: 4rem 0;
    color: #fff;
}
.alumni-universities-section .section-title {
    color: #fff;
    margin-bottom: 1rem;
}
.universities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(172px, 1fr));
    gap: 1rem;
    align-items: center;
    justify-items: center;
}

.university-logo img {
    height: fit-content;
    width: 100%;
    object-fit: contain;
    transition: filter 0.3s ease, transform 0.3s ease;
}

.university-logo:hover img {
    filter: grayscale(0%);
    transform: scale(1.1);
}

/* Working Professionals Section */
.working-professionals-section {
    background: white;
    padding: 4rem 0;
}
.professional-card-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    padding-top: 1rem;
}
.professional-card {
    background: transparent;
    text-align: center;
    transition: transform 0.3s ease;
    width: 18%;
}

.professional-image {
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* Top Recruiters Section */
.top-recruiters-section {
    background: transparent;
    padding: 4rem 0;
}
.recruiters-container {
    background: #e9e9e9;
    padding: 1rem 0;
}
.recruiters-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(173px, 1fr));
    gap: 1rem;
    align-items: center;
    justify-items: center;
}

.recruiter-logo {
    height: fit-content;
    width: 100%;
    object-fit: contain;
    transition: filter 0.3s ease, transform 0.3s ease;
}

.recruiter-logo:hover {
    transform: scale(1.1);
}

/* Final CTA Section */
.final-cta-section {
    position: relative;
    background: url("../images/ready-bg.png") no-repeat center right;
    background-size: cover;
    color: white;
    padding: 3rem 1.5rem;
    border-radius: 10px;
    overflow: hidden;
}

.cta-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    flex-wrap: wrap;
}

.cta-title {
    font-size: 2rem;
    font-weight: 700;
    margin: 0;
}

.btn-cta {
    background: white;
    color: black;
    padding: 0.75rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.btn-cta:hover {
    background: #fdd835;
    color: #000;
    transform: translateY(-2px);
}

/* Decorative shapes */
.cta-shape {
    position: absolute;
    z-index: 0;
    pointer-events: none;
}

/* Blue bottom half-circle */
.cta-half-circle {
    bottom: 0;
    right: 120px;
    width: 200px;
    height: 100px;
    background: #3171c5;
    border-top-left-radius: 100px;
    border-top-right-radius: 100px;
}

.cta-top-right-circle {
    top: -30px;
    right: -30px;
    width: 100px;
    height: 100px;
    background: #fecc00;
    border-radius: 50%;
}

/* Footer */
.footer {
    background-color: #fff;
    color: #000;
    padding: 2rem 0;
    font-size: 0.95rem;
    font-weight: 500;
}

.footer p {
    margin: 0;
    line-height: 1.6;
}
.collegechalo-logo {
    height: 48px;
    vertical-align: middle;
    margin-top: 4px;
}
.footer-email {
    color: #000;
    text-decoration: none;
    font-weight: 500;
}

@media screen and (min-width: 768px) {
    .sm-view {
        display: none !important;
    }
    .rankings-section-mobile,
    .accreditations-section-mobile,
    .footer-content-mobile {
        display: none;
    }
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-title {
        font-size: 2.8rem;
    }

    .hero-title span {
        font-size: 3.2rem;
    }

    .hero-subtitle {
        max-width: 100%;
        font-size: 1.2rem;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .feature-card,
    .scholarship-card,
    .excellence-card,
    .research-card,
    .incubator-card {
        padding: 1.5rem;
    }

    .hero-section {
        padding: 3rem 0;
    }

    .curve-shape {
        height: 80px;
    }
}

@media (max-width: 768px) {
    .rankings-section-desktop,
    .accreditations-section-desktop,
    .footer-content-desktop,
    .top-recruiters-section-desktop {
        display: none;
    }

    .btn-submit {
        padding: 0.3rem 1rem;
        width: 100%;
        font-size: 1.1rem;
        margin-top: 1rem;
    }
    .hero-section {
        padding: 0.5rem 0;
        min-height: auto;
        background: linear-gradient(
            180deg,
            #002f63 0%,
            #075d99 24.04%,
            #045288 62.5%,
            #014778 100%
        );
    }
    .accreditation-container .rankings-swiper {
        padding: 0.5rem 0;
    }
    .research-card {
        margin: 0 0.5rem;
    }
    .research-innovation-section .section-title,
    .research-innovation-section .section-title-text {
        color: #fff;
    }
    .research-innovation-section {
        background: linear-gradient(
            180deg,
            #002f63 0%,
            #075d99 24.04%,
            #045288 62.5%,
            #014778 100%
        );
    }
    .incubator-card-last {
        flex-direction: column;
        gap: 0;
    }
    .incubator-text {
        font-size: 0.9rem;
    }
    .incubator-card-last .incubator-text {
        font-size: 1rem;
    }
    .campus-buttons {
        justify-content: flex-start;
        gap: 0.5rem;
        font-size: 12px;
    }
    .campus-label {
        min-width: auto;
        font-size: 12px;
    }
    .hero-title {
        font-size: 1.3rem;
        text-align: left;
    }
    .bg-view {
        display: none !important;
    }

    .hero-title span {
        font-size: 2.3rem;
    }
    .hero-content .hr-rule {
        width: 46%;
    }
    .hero-content {
        padding-left: 1rem;
        text-align: center;
        padding-top: 1rem;
        padding-bottom: 4rem;
    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
        font-size: 1rem;
        text-align: left;
        margin: 1.4rem 0;
    }

    .admission-form-container {
        padding-right: 0;
        margin-top: 1rem;
        padding-top: 0;
    }
    .admission-form {
        padding: 0.7rem;
    }
    .form-title {
        font-size: 1.4rem;
    }
    .form-subtitle {
        font-size: 0.8rem;
        line-height: 1.2;
    }
    .college-chalo-badge {
        right: auto;
        left: 50%;
        transform: translateX(-50%);
    }

    .stats-container {
        justify-content: center;
        margin-top: 2rem;
        flex-wrap: nowrap;
    }

    .stat-item {
        min-width: 100px;
        width: 100%;
        margin-bottom: 1px;
        padding: 0;
        min-height: 50px;
        display: flex;
        flex-direction: column;
        justify-content: end;
    }

    .stat-number {
        font-size: 1.5rem;
    }
    .stat-text {
        font-size: 0.7rem;
        line-height: 1;
    }
    .stat-item:last-child {
        border-bottom: none;
    }

    .section-title {
        font-size: 1.4rem;
    }

    .campus-buttons {
        justify-content: center;
    }

    .universities-grid,
    .rankings-grid,
    .accreditation-grid {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
        gap: 1rem;
    }

    .recruiters-grid {
        grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
        gap: 1rem;
    }

    .feature-icon,
    .scholarship-icon {
        font-size: 1.8rem;
        width: 4rem;
    }
    .feature-item p {
        font-size: 0.85rem;
    }
    .scholarships-container .container {
        gap: 2rem;
    }
    .scholarship-card {
        border-radius: 7px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.36);
        width: 100%;
        height: auto;
        padding: 0.5rem;
    }
    .scholarship-icon {
        margin: 0 auto 0.4rem;
    }
    .scholarship-number {
        font-size: 1.6rem;
    }
    .scholarship-icon img {
        width: 50%;
        height: auto;
    }
    .sm-view {
        display: flex !important;
        background: #cecece;
        padding: 0.6rem 0.6rem 0 0.3rem;
    }
    .amity-logo {
        width: 6rem;
        display: block;
    }
    .sm-text .amity-logo {
        width: 5rem;
    }
    .sm-text {
        font-size: 0.7rem;
        text-align: right;
        line-height: 1;
    }
    .curve-shape {
        height: 60px;
    }
    .professional-card {
        width: 46%;
    }
    .feature-card,
    .scholarship-card,
    .excellence-card,
    .research-card,
    .incubator-card {
        padding: 1rem 0.9rem;
        margin: 0 0.5rem;
        border: 0;
    }
    .academic-excellence-section .section-title-text {
        display: none;
    }
    .professional-card:nth-child(5) {
        display: none;
    }
    .final-cta-section {
        padding: 1rem;
    }
    .innovation-incubator-section .section-title span {
        font-size: 1rem;
    }
    .section-title-text {
        font-size: 0.9rem;
    }
    .cta-title {
        font-size: 1.4rem;
        text-align: center;
    }
    .cta-content {
        justify-content: center;
        gap: 1rem;
    }
    .alumni-universities-section {
        background: #fff;
        color: #000;
    }
    .alumni-universities-section .section-title {
        color: #ff7f50;
    }
    .innovation-incubator-section .section-title span {
        text-shadow: none;
    }
    .working-professionals-section {
        background: linear-gradient(
            180deg,
            #002f63 0%,
            #075d99 24.04%,
            #045288 62.5%,
            #014778 100%
        );
        color: #fff;
    }
    .working-professionals-section .section-title {
        color: #fff;
    }
    .collegechalo-logo {
        height: 48px;
    }
    .top-recruiters-section-mobile .swiper-slide {
        text-align: center;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .top-recruiters-section-mobile .recruiter-logo {
        padding: 10px;
        border-radius: 8px;
        background-color: #fff;
    }
    .accreditations-section-mobile .accreditation-container {
        background: transparent;
        padding: 5px 0;
    }

    .accreditations-section-mobile .toggle-btn {
        cursor: pointer;
        position: relative;
        background: #ededed;
        padding: 10px 16px;
        border-radius: 8px;
        font-weight: 600;
        color: #333;
        display: inline-block;
        margin-bottom: 10px;
        font-size: 0.9rem;
        width: 100%;
        text-align: center;
    }
    .accreditations-section-mobile .toggle-btn.collapsed {
        background: #fff;
        border: 1px solid #ddd;
    }
    .accreditations-section-mobile .toggle-arrow {
        float: right;
        transition: transform 0.3s ease;
    }

    .accreditations-section-mobile .toggle-btn.collapsed .toggle-arrow {
        transform: rotate(360deg);
    }

    .accreditations-section-mobile .toggle-content {
        display: none;
    }

    .accreditations-section-mobile .toggle-content.show {
        display: block;
    }
}

@media (max-width: 576px) {
    .hero-section {
        padding-top: 0.5rem;
    }

    .hero-title {
        font-size: 1.2rem;
    }

    .hero-title span {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
    }

    .admission-form {
        padding: 0.5rem;
    }

    .stats-container {
        flex-direction: row;
        align-items: center;
        gap: 1rem;
    }

    .stat-item {
        width: 100%;
        max-width: 200px;
    }

    .cta-title {
        font-size: 1.3rem;
    }

    .scholarship-number,
    .excellence-number,
    .incubator-number {
        font-size: 1.3rem;
        color: #000;
        font-weight: 700;
    }

    .section-title {
        font-size: 1.3rem;
    }

    .college-chalo-badge {
        margin-left: auto;
        margin-right: auto;
        display: block;
        width: fit-content;
    }

    .curve-shape {
        height: 40px;
    }
}

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

.feature-card,
.scholarship-card,
.excellence-card,
.research-card,
.incubator-card,
.professional-card {
    animation: fadeIn 0.6s ease-out forwards;
}

/* Custom Select Dropdown styling to match the image */
.location-select {
    color: white;
    border: none;
    border-radius: 5px;
    padding: 15px 20px;
    font-size: 1rem;
    width: 100%;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    cursor: pointer;
}
input::placeholder {
    color: #fff !important;
}
.location-select option {
    background-color: #004b73;
    color: white;
}

.location-select-container {
    width: 48%;
}

.border-divider {
    position: relative;
}

@media (min-width: 768px) {
    .border-divider::before {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        height: 100%;
        width: 1px;
        background-color: #fff;
    }
}
