/* Custom CSS Variables */
:root {
    --primary-color: #1f78b0;
    --secondary-color: #003366;
    --warning-color: #fcc82e;
    --light-bg: #f8f9fa;
    --dark-bg: #171715;
}

/* Font Family */
body {
    font-family: 'Manrope', sans-serif;
}

/* Custom Bootstrap Color Overrides */
.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background-color: #1a6a9a;
    border-color: #1a6a9a;
}

.text-primary {
    color: var(--secondary-color) !important;
}

.bg-primary {
    background-color: var(--secondary-color) !important;
}

.text-warning {
    color: var(--warning-color) !important;
}

.btn-warning {
    background-color: var(--warning-color);
    border-color: var(--warning-color);
    color: #000;
}

/* Header Styles */
.navbar {
    height: 80px;
    padding-top: 0;
    padding-bottom: 0;
}

.navbar-brand img {
    width: 156.51px;
    height: 40px;
    object-fit: cover;
}

.nav-link {
    color: #6c757d !important;
    font-weight: 400;
}

.nav-link:hover {
    color: #495057 !important;
}
.navbar a{
	text-decoration: none;
}
/* Hero Section */
.hero-section {
    height: 768px;
    position: relative;
    overflow: hidden;
    margin-top: 80px;
}

.hero-background {
    height: 100%;
    background: url('/dsc00592-1.png') center/cover;
    position: relative;
}

.hero-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(6px);
    border-radius: 12px;
    padding: 32px;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
    position: absolute;
    top: 120px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    max-width: 1000px;
    width: 100%;
}

.hero-title {
    font-size: 50px;
    line-height: 50px;
    letter-spacing: -1.5px;
    margin-bottom: 20px;
    position: relative;
}

.hero-script {
    font-family: 'Hurricane', cursive;
    font-size: 70px;
    letter-spacing: -1.47px;
}

.hero-scribble {
    position: absolute;
    width: 159px;
    height: 19px;
    top: 90px;
    right: 205px;
}

.hero-subtitle {
    font-size: 20px;
    font-weight: 500;
    color: #011220;
}

.stats-card {
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    padding: 20px;
    position: absolute;
    top: 520px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    width: 62%;
    display: flex;
    flex-direction: column;
    align-items: center
}

.university-strip {
    position: absolute;
    bottom: 10px;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(6px);
    padding: 10px 0;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}

.university-slider {
    padding: 0 20px;
}

.university-logo {
    width: 60px;
    height: 60px;
    background-size: cover;
    background-position: center;
    margin: 0 10px;
    display: flex !important;
    align-items: center;
    justify-content: center;
}

.university-logo img {
    width: 60px;
    height: 60px;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* Section Titles */
.section-title {
    font-size: 2rem;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

/* Student Cards */

.student-card-sec{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}
.student-card-wrap{
    width: 16%;
    display: flex;
    border-radius: 12px;
    position: relative;
    margin-bottom: 40px;
    transition: 300ms ease-in all;
}

.student-card {
    position: relative;
    width: 100%;
    z-index: 2;
}


.student-image {
    width: 100%;
    height: 264px;
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    box-shadow: 0px 2px 4px -1px #0000000F, 0px 4px 6px -1px #0000001A;
    border: 2px solid transparent;
}
.student-image .badge {
    width: 100%;
    border-radius: 12px;
    background-color: var(--primary-color) !important;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
}

.student-card-wrap:hover .student-image {
    border: 2px solid var(--primary-color);
}

.student-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    overflow: hidden;
}
.student-card .student-image p {
    font-size: 14px;
    line-height: 18px;
    color: #fff;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 34px 4px 8px 4px;
    background: linear-gradient(0deg, #000000 20%, rgba(0, 0, 0, 0) 100%);
}
.student-card .student-image p span:last-child {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 18px;
}

.student-card-wrap:hover .student-image p{
    background: linear-gradient(0deg, #003366 20%, rgba(0, 51, 102, 0) 100%);
}
.student-card-wrap:hover .student-card .student-image p span:last-child{
    color: var(--warning-color);
}
.student-info{
    position: absolute;
    position: absolute;
    bottom: -45px;
    left: 7px;
    right: 0;
}
.student-info h6 {
    font-size: 14px;
    line-height: 18px;
    color: #1F2937;
}

.student-card-wrap:hover{
    background-color: #07314B;
}
.student-card-wrap:hover .student-info h6{
    color: #C49B21;
}
.student-card-wrap .uno-box{
    border-radius: 0 12px 12px 0;
    padding: 12px;
    position: absolute;
    left: 0;
    z-index: -1;
    transition: 500ms ease-in all;
    opacity: 0;
}
.student-card-wrap:hover .uno-box{
    width: 53%;
    display: flex;
    flex-direction: column;
    align-items: center;
    left: 100%;
    transform: translateX(-100%);
    z-index: 1;
    opacity: 1;
}
.student-card-wrap .uno-box h3{
    font-weight: 500;
    font-size: 14px;
    line-height: 18px;
    text-align: center;
    color: #fff;
    margin-bottom: 20px;
}
.student-card-wrap .uno-box h3 span{
    display: block;
    font-weight: 700;
}
.student-card-wrap .uno-box .accept-university{
    background-color: #fff;
    border-radius: 8px;
    padding: 12px 8px;
}
.student-card-wrap .uno-box .accept-university h4{
    font-weight: 500;
    font-size: 14px;
    line-height: 100%;
    text-align: center;
    color: #1F2937;
	margin-bottom: 12px;
}
.student-card-wrap .uno-box .accept-university ul{
    padding-left: 0;
    list-style: none;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 10px;
}
.student-card-wrap .uno-box .accept-university ul li{
    width: 46%;
}
.student-card-wrap .uno-box .accept-university ul li img{
    width: 100%;
}
.student-card-wrap:hover{
    width: 28%;
}
.student-card-wrap:hover .student-card{
    width: 47%;
}







/* Timeline Styles */
.ceo-msg .ceo-msg-content{
    --bs-gutter-x: 4.5rem;
}
.timeline-container {
    width: 100%;
    height: 680px;
    position: relative;
}

.timeline-background {
    width: 100%;
    height: 100%;
    border-radius: 8px;
    background-size: cover;
    background-position: center;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1), 0 4px 6px rgba(252, 200, 46, 0.2);
}

.timeline-line {
    position: absolute;
    width: 4px;
    height: 680px;
    top: 0;
    right: -32px;
    background-color: var(--secondary-color);
}

.timeline-event {
    position: absolute;
    right: -22px;
    width: 124px;
    height: 73px;
}

/* Timeline Event Positioning */
.timeline-event-1 {
    top: 100px;
}

.timeline-event-2 {
    top: 304px;
}

.timeline-event-3 {
    top: 507px;
}

.timeline-card {
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(2px);
    border-radius: 4px;
    padding: 8px 12px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.1), 0 4px 4px rgba(0, 0, 0, 0.25);
}

.timeline-dot {
    position: absolute;
    width: 20px;
    height: 20px;
    top: 27px;
    right: -20px;
    background-color: var(--primary-color);
    border-radius: 50%;
    border: 2px solid white;
}

.quote-icon {
    position: absolute;
    width: 52px;
    height: 60px;
    top: 30px;
    left: -26px;
}

/* Non-Negotiables Section */
.non-negotiables-image {
    height: 322px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1), 0 4px 6px rgba(31, 120, 176, 0.5);
}
.non-negotiables-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Success Story Cards */
.success-story-image {
    height: 224px;
    background-size: cover;
    background-position: center;
    position: relative;
    cursor: pointer;
}

    .success-story-image a {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        font-size: 2rem;
        color: white;
        padding: 12px;
        border-radius: 50%;
    }

.success-story-image .badge {
    border-radius: 12px;
    background-color: var(--primary-color) !important;
}


/* Journey Timeline */
.journey-timeline {
    display: flex;
    flex-direction: column;
}

.timeline-line-vertical {
    position: absolute;
    width: 4px;
    height: 100%;
    left: 50%;
    transform: translateX(-50%);
    background-color: #e9ecef;
    z-index: 0;
}

.journey-step {
    position: sticky;
    top: 100px;
    margin-bottom: 80px;
    display: flex;
    align-items: center;
    gap: 16px;
    max-width: 663px;
    width: 100%;
}
.journey-step .card-body{
    background-color: #F9FAFB;
    padding: 24px;
    border-radius: 12px;
    min-height: 188px;
}
.journey-step-card-child {
    background-color: #0033661A !important;
    border-radius: 12px;
    padding: 12px;
}

.journey-step:hover .card-body .journey-step-card-child p:nth-child(1) {
    color: var(--warning-color) !important;
}
.journey-step:hover .card-body {
    background-color: var(--primary-color) !important;
    color: #ffffff !important;
}

.journey-step:hover .card-body h5, .journey-step:hover .card-body p:nth-child(2) {
    color: #ffffff !important;
}

.journey-step.left {
    justify-content: flex-end;
    margin-left: auto;
}

.journey-step.right {
    justify-content: flex-start;
    margin-right: auto;
}
.journey-number {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    border: 4px solid white;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.1);
    z-index: 2;
}
.journey-step:hover .journey-number{
    background-color: var(--warning-color) !important;
    color: #000000 !important;
}

.inner-journey-timeline .journey-step{
	max-width: 584px;
}
.inner-journey-timeline .journey-step .card-body{
	width: min-content;
}


/* Contact Section */
.contact-info .d-flex {
    margin-bottom: 1.5rem;
}
.contact-info p a{
	color: var(--secondary-color) !important;
	text-decoration: none;
}

.contact-info  .icon-background {
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 16px;
}

.contact-section .icon-background img {
    width: 20px;
    height: 20px;
    object-fit: cover;
}

.contact-info .connect-with-us {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 16px;
}
.connect-with-us .icon-background {
    width: 40px;
    height: 40px;
    background-color: var(--secondary-color) !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 16px;
}

.connect-with-us .icon-background img {
    width: 16px;
    height: 16px;
}


/* Floating CTA */
.ace-sat {
    width: 75%;
    margin: 0 auto;
    padding: 40px 0px;
}
.ace-sat .card-body {
    background: #fff9f0;
    border-radius: 12px;
    box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.06), 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

/* Footer Styles */
footer {
    background: linear-gradient(180deg, rgba(23, 23, 21, 0) 0%, rgba(23, 23, 21, 1) 100%), var(--secondary-color) !important;
}

.social-media-bar {
    margin-bottom: 139px;
}



/* Animation Classes */
.fade-in {
    animation: fadeIn 0.6s ease-in;
}

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

/* Hover Effects */
.card:hover {
    transform: translateY(-2px);
    transition: transform 0.3s ease;
}

.btn:hover {
    transform: translateY(-1px);
    transition: transform 0.2s ease;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #1a6a9a;
}




/* 06/09/2025 */
.impact-statistics .card:hover {
    background-color: var(--primary-color) !important;
    box-shadow: 0px 2px 4px -1px #0000000F, 0px 4px 6px -1px #0000001A, 0px 4px 6px 0px #1F78B080;
}

.impact-statistics .card:hover h3 {
    color: var(--warning-color) !important;
}

.impact-statistics .card:hover p {
    color: #ffffff !important;
}

.impact-statistics .icon-background {
    width: 64px;
    height: 64px;
    background-color: #0033661A;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-inline: auto;
    margin-bottom: 24px;
}

.impact-statistics .card:hover .icon-background {
    background-color: var(--light-bg);
}

.impact-statistics .icon-background img {
    width: 24px;
}

/* partners-section */
.partners-section .nav-tabs {
    margin-bottom: 2rem;
    border-bottom: 0 !important;
}

.partners-section .nav-tabs .nav-link {
    border: none;
    color: #6c757d;
    font-weight: 500;
    padding: 12px 24px;
    margin-right: 8px;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.partners-section .nav-tabs .nav-link {
    border-color: transparent;
    color: var(--primary-color);
    background-color: rgba(31, 120, 176, 0.1);
}

.partners-section .nav-tabs .nav-link.active {
    color:#ffffff !important;
    background-color: var(--primary-color);
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
    margin-bottom: 2rem;
}

.partner-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.partner-logo:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.partner-logo img {
    max-width: 100%;
    max-height: 60px;
    object-fit: contain;
}

/* Responsive Grid */
@media (max-width: 1200px) {
    .partners-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 992px) {
    .partners-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

@media (max-width: 576px) {
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
    
    .partner-logo {
        padding: 0.75rem;
    }
    
    .partner-logo img {
        max-height: 50px;
    }
}

/* Success Stories Slider */
.success-stories-slider {
    margin-bottom: 2rem;
    position: relative;
}
.success-stories-slider .slick-track{
	display: flex;
}

.success-stories-slider .card {
    border-radius: 12px;
    overflow: hidden;
    margin: 0 10px;
    height: auto;
}

.success-stories-slider .slick-prev,
.success-stories-slider .slick-next {
    position: absolute;
    bottom: -60px;
    transform: none;
    z-index: 2;
    background: var(--primary-color);
    border: none;
    border-radius: 4px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 14px;
    transition: all 0.3s ease;
}

.success-stories-slider .slick-prev:hover,
.success-stories-slider .slick-next:hover {
    background: #1a6a9a;
    color: #ffffff;
    transform: scale(1.05);
}
.slick-prev:focus, .slick-next:focus{
    background: #1a6a9a !important;
    color: #ffffff !important;
}
.success-stories-slider .slick-prev {
    left: 0;
    bottom: -55px;
    top: unset;
}

.success-stories-slider .slick-next {
    right: 0;
    bottom: -55px;
    top: unset;
}

.success-stories-slider .slick-dots {
    display: none;
}

/* Hide default slick arrows and dots */
.success-stories-slider .slick-arrow {
    display: block !important;
}

.success-stories-slider .slick-prev:before,
.success-stories-slider .slick-next:before {
    display: none;
}


/* why-choose-section */
.why-choose-section .why-choose-icon-bg {
    width: 64px;
    height: 64px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-inline: auto;
    margin-bottom: 24px;
    transition: all 0.3s ease;
}

.why-choose-section .why-choose-icon-bg img {
    width: 32px;
    height: 32px;
}

.why-choose-section .card {
    background-color: #FFFFFF1A !important;
    transition: all 0.3s ease;
}

.why-choose-section .card:hover {
    background-color: #ffffff !important;
    transform: translateY(-5px);
}

.why-choose-section .card:hover .why-choose-icon-bg {
    background-color: var(--warning-color) !important;
}

.why-choose-section .card:hover h5 {
    color: var(--warning-color) !important;
}

.why-choose-section .card:hover p {
    color: #000000 !important;
}

.why-choose-section .card .badge {
    background-color: var(--primary-color) !important;
    color: #ffffff !important;
    border-radius: 12px;
}

.why-choose-section .card:hover .badge {
    background-color: var(--secondary-color) !important;
    color: #ffffff !important;
}
footer .menu-item a{
	text-decoration: none;
}


#freeConsultationModal .modal-dialog{
	max-width: 950px;
}
#freeConsultationModal .modal-body{
	padding: 40px;
}
#freeConsultationModal .modal-body h3{
	font-size: 30px;
	line-height: 36px;
	color: var(--secondary-color);
	text-align: center;
}
#freeConsultationModal .modal-body h3 .diff_color{
	color: var(--warning-color);
}
#freeConsultationModal .modal-body p{
	text-align: center;
}
#freeConsultationModal .consultationFormWrap p{
	text-align: left;
}
#freeConsultationModal .consultationFormWrap .submit-btn p{
	text-align: center;
}
#freeConsultationModal .consultationFormWrap .btn-primary{
	padding: 12px 60px;
}
#freeConsultationModal .consultationFormWrap input{
	height: 50px;
}
#freeConsultationModal .consultationFormWrap select{
	height: 50px;
}
.bg-blur{
	backdrop-filter: blur(12px);
}
.faq-items .e-n-accordion-item-title{
	justify-content: space-between !important;
}


.service-boxes .elementor-widget-icon-box:hover .elementor-icon-box-content h3{
	color: #FCC82E;
}
.service-boxes .elementor-widget-icon-box:hover .elementor-icon-box-content p{
	color: #000;
}


.trust-boxes .elementor-widget-icon-box:hover .elementor-icon{
	fill: #FCC82E !important;
    background-color: #0F486C !important;
}
.trust-boxes .elementor-widget-icon-box:hover .elementor-icon svg path{
	fill: #FCC82E !important;
}
.trust-boxes .elementor-widget-icon-box:hover .elementor-icon-box-content h3{
	color: #FCC82E;
}
.trust-boxes .elementor-widget-icon-box:hover .elementor-icon-box-content p{
	color: #fff;
}



/* Responsive Design */

@media(max-width: 1400px){
    .why-choose-section .card .badge{
        font-size: 10px;
    }
	.journey-step{
		 max-width: 575px;
	}
}
@media(max-width: 1300px){
    .journey-step .card {
        width: 487px;
        min-height: 188px;
	}
	.stats-card{
        width: 76%;
    }
}
@media(max-width: 1200px){
	.journey-step {
        max-width: 484px;
    }
	.journey-step .card-body{
        min-height: 226px;
    }
}
@media(max-width: 991px){

    .stats-card-content span{
        font-size: 15px;
    }
	.student-card-wrap{
		width: 48%;
		background-color: #07314B;
	}
	.student-card-wrap:hover{
		width: 48%;
	}
	.student-card{
		width: 47%;
	}
	.student-card-wrap .uno-box{
		position: relative;
   		 z-index: 1;
    	left: unset;
    	opacity: 1;
		width: 53%;
		display: flex;
    	flex-direction: column;
    	align-items: center;
	}
	.student-card-wrap:hover .uno-box{
		left: unset;
		transform: none;
		z-index: 1;
		opacity: 1;
	}
	.student-card .student-image p{
		justify-content: space-between;
		font-size: 14px;
	}
	.student-card .student-image p span:last-child{
		font-size: 15px;
	}
	 .journey-step {
        max-width: 100%;
    }
	.timeline-line-vertical{
		left: unset;
		right: 11px;
		transform: none;
	}
	.journey-step.left{
		flex-direction: row-reverse;
	}
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 32px;
        line-height: 36px;
    }
    
    .hero-script {
        font-size: 48px;
    }
    .hero-scribble{
        width: 100px;
        height: 12px;
        top: 102px;
        right: 128px;
    }
    .hero-background{
        height: 900px;
    }
    
    .hero-card {
        margin: 0 20px;
        padding: 20px;
        top: 30px;
        left: 0;
        width: 90%;
        transform: none;
    }
    
    .stats-card {
        margin: 0 20px;
        padding: 15px;
    }
    
    .university-strip {
        left: 0;
        overflow-x: auto;
    }
    
    .floating-cta {
        width: 90%;
        left: 5%;
        transform: none;
    }
    
    /* CEO Message Section Mobile */
    .ceo-msg .ceo-msg-content {
        --bs-gutter-x: 1.5rem;
        flex-direction: column;
    }
    
    .timeline-container {
        width: 100%;
        height: 450px;
        margin-bottom: 2rem;
        position: relative;
    }
    
    .timeline-background {
        height: 100%;
        border-radius: 12px;
    }

    /* Horizontal Timeline for Mobile */
    .timeline-line {
        position: absolute;
        width: 80%;
        height: 4px;
        top: auto;
        bottom: -20px;
        left: 50%;
        transform: translate(-50%, -50%);
        background-color: var(--secondary-color);
        right: auto;
    }
    
    .timeline-event {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 80px;
        right: auto;
    }
    
    .timeline-event-1 {
        left: 2% !important;
        top: auto !important;
        bottom: -45px !important;
        width: fit-content;
    }
    
    .timeline-event-2 {
        left: 42% !important;
        top: auto !important;
        bottom: -45px !important;
        transform: translate(-50%, -50%);
        width: fit-content;
    }
    
    .timeline-event-3 {
        right: 2% !important;
        left: auto !important;
        top: auto !important;
        bottom: -45px !important;
        width: fit-content;
    }
    
    .timeline-card {
        padding: 8px 12px;
        font-size: 0.875rem;
        text-align: center;
        background: rgba(255, 255, 255, 0.9);
        backdrop-filter: blur(4px);
        border-radius: 8px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    }
    
    .timeline-card .fw-bold {
        color: var(--secondary-color) !important;
    }
    
    .timeline-card .text-white {
        color: var(--secondary-color) !important;
    }
    
    .timeline-dot {
        position: absolute;
        width: 16px;
        height: 16px;
        top: auto;
        bottom: -23px;
        left: 50%;
        transform: translate(-50%, -50%);
        right: auto;
        background-color: var(--primary-color);
        border-radius: 50%;
        border: 3px solid white;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    }
    
    .quote-icon {
        width: 40px;
        height: 45px;
        top: -25px;
        left: 0px;
    }
    
    .non-negotiables-image {
        width: 100%;
        height: 250px;
    }
    
    .journey-step {
        padding: 0 !important;
    }
    
    .journey-step .card {
        width: 100%;
    }
    
    .journey-number {
        position: relative !important;
        margin: 20px auto;
    }
    
	
	.student-card-wrap{
		width: 100%;
	}
	.student-card-wrap:hover{
		width: 100%;
	}
	.student-info{
		bottom: -35px;
	}
	#freeConsultationModal .modal-body{
    	padding: 24px;
	}
	#freeConsultationModal .modal-body h3 {
    	font-size: 24px;
		line-height: 30px;
	}
	.sec-title{
		gap: 6px;
	}
	.sec-title h2,.sec-title h3{
		font-size: 24px !important;
		line-height: 30px !important;
	}
}

@media (max-width: 576px) {
    .section-title {
        font-size: 1.5rem;
    }
    
    .student-image {
        height: 245px;
    }
    
    .hero-section {
        height: auto;
        min-height: 600px;
    }
    
    .stats-card {
        position: absolute;
        bottom: 107px;
        top: auto;
        transform: none;
        margin-top: 20px;
        left: 0;
        width: 90%;
    }
    .stats-card-content{
        flex-direction: column;
    }
    .stats-card-content .vr{
        display: none;
    }
    .stats-card-button{
        flex-direction: column;
    }
    .stats-card-button .btn{
        width: 100%;
    }

    
    .university-strip {
        position: absolute;
        top: auto;
        margin-top: 20px;
    }
	.journey-step .card-body{
		width: min-content;
	}
    
    /* Student cards - 2 columns on mobile */

    
    .row .col-md-2 {
        flex: 0 0 50%;
        max-width: 50%;
    }
}