.logo{
    width:50px;
 }


 .custom-navbar {
background-color: #ffffff;
box-shadow: 0 4px 12px rgba(0,0,0,0.1);
padding: 15px 0;
}

.logo-img {
height: 40px;
transition: transform 0.3s ease;
}

.logo-img:hover {
transform: scale(1.05);
}

.navbar-nav .nav-item {
margin: 0 10px;
position: relative;
}

.navbar-nav .nav-link {
color: #333;
font-weight: 500;
font-size: 16px;
padding: 10px 5px;
transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover {
color: #007bff;
}

.navbar-nav .nav-item.active .nav-link {
color: #007bff;
}

.navbar-nav .nav-item.active .nav-link:after,
.navbar-nav .nav-link:hover:after {
content: '';
position: absolute;
width: 60%;
height: 2px;
background-color: #007bff;
bottom: 5px;
left: 50%;
transform: translateX(-50%);
transition: width 0.3s ease;
}

.btn-apply {
background: linear-gradient(45deg, #007bff, #00c6ff);
color: white;
padding: 10px 24px;
border-radius: 30px;
font-weight: 600;
text-decoration: none;
transition: all 0.3s ease;
box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
}

.btn-apply:hover {
background: linear-gradient(45deg, #0069d9, #00b0e6);
transform: translateY(-2px);
box-shadow: 0 6px 18px rgba(0, 123, 255, 0.4);
color: white;
text-decoration: none;
}

@media (max-width: 992px) {
.navbar-nav {
   margin: 15px 0;
}

.navbar-nav .nav-item {
   margin: 5px 0;
}

.apply-btn {
   margin: 15px 0;
   text-align: center;
}
}




.top-courses-section {
padding: 80px 0;
background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.container {
max-width: 1200px;
margin: 0 auto;
padding: 0 15px;
}

.section-title {
text-align: center;
font-size: 42px;
font-weight: 700;
color: #2c3e50;
margin-bottom: 10px;
letter-spacing: 1px;
position: relative;
}

.accent-line {
width: 80px;
height: 4px;
background: linear-gradient(90deg, #3a5998, #5e72e4);
margin: 0 auto 50px;
border-radius: 2px;
}

.courses-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 30px;
margin-top: 40px;
}

.course-card {
background-color: #ffffff;
border-radius: 15px;
overflow: hidden;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
transition: all 0.3s ease;
padding: 30px 20px;
display: flex;
flex-direction: column;
align-items: center;
text-align: center;
position: relative;
}

.course-card:hover {
transform: translateY(-10px);
box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.icon-container {
position: relative;
margin-bottom: 20px;
}

.icon-bg {
width: 120px;
height: 120px;
background-color: #3a5998;
border-radius: 50%;
display: flex;
justify-content: center;
align-items: center;
margin-bottom: 20px;
position: relative;
z-index: 2;
transition: all 0.3s ease;
}

.hover-circle {
position: absolute;
top: 0;
left: 0;
width: 120px;
height: 120px;
border-radius: 50%;
background: linear-gradient(45deg, #3a5998, #5e72e4);
opacity: 0;
transform: scale(0.8);
transition: all 0.4s ease;
z-index: 1;
}

.course-card:hover .hover-circle {
opacity: 1;
transform: scale(1.1);
}

.course-card:hover .icon-bg {
transform: scale(0.9);
background-color: #ffffff;
}

.course-icon {
width: 60px;
height: 60px;
filter: brightness(0) invert(1);
transition: all 0.3s ease;
}

.course-card:hover .course-icon {
filter: brightness(1) invert(0);
}

.course-title {
font-size: 22px;
font-weight: 600;
color: #2c3e50;
margin: 0 0 15px;
transition: all 0.3s ease;
}

.course-card:hover .course-title {
color: #3a5998;
}

.course-info {
height: 0;
overflow: hidden;
transition: all 0.3s ease;
opacity: 0;
}

.course-card:hover .course-info {
height: auto;
opacity: 1;
margin-top: 10px;
}

.course-info p {
color: #6c757d;
margin-bottom: 15px;
font-size: 14px;
}

.learn-more {
display: inline-flex;
align-items: center;
color: #3a5998;
font-weight: 600;
font-size: 14px;
text-decoration: none;
transition: all 0.3s ease;
}

.learn-more:hover {
color: #5e72e4;
}

.arrow-icon {
border: solid #3a5998;
border-width: 0 2px 2px 0;
display: inline-block;
padding: 3px;
margin-left: 5px;
transform: rotate(-45deg);
transition: all 0.3s ease;
}

.learn-more:hover .arrow-icon {
transform: rotate(-45deg) translate(3px, 3px);
border-color: #5e72e4;
}

/* Responsive adjustments */
@media (max-width: 992px) {
.courses-grid {
   grid-template-columns: repeat(2, 1fr);
}
}

@media (max-width: 768px) {
.section-title {
   font-size: 36px;
}

.courses-grid {
   grid-template-columns: 1fr;
}
}
.top-courses-section {
padding: 80px 0;
background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.container {
max-width: 1200px;
margin: 0 auto;
padding: 0 15px;
}

.section-title {
text-align: center;
font-size: 42px;
font-weight: 700;
color: #2c3e50;
margin-bottom: 10px;
letter-spacing: 1px;
position: relative;
}

.accent-line {
width: 80px;
height: 4px;
background: linear-gradient(90deg, #3a5998, #5e72e4);
margin: 0 auto 50px;
border-radius: 2px;
}

.courses-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 30px;
margin-top: 40px;
}

.course-card {
background-color: #ffffff;
border-radius: 15px;
overflow: hidden;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
transition: all 0.3s ease;
padding: 30px 20px;
display: flex;
flex-direction: column;
align-items: center;
text-align: center;
position: relative;
}

.course-card:hover {
transform: translateY(-10px);
box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.icon-container {
position: relative;
margin-bottom: 20px;
}

.icon-bg {
width: 120px;
height: 120px;
background-color: #3a5998;
border-radius: 50%;
display: flex;
justify-content: center;
align-items: center;
margin-bottom: 20px;
position: relative;
z-index: 2;
transition: all 0.3s ease;
}

.hover-circle {
position: absolute;
top: 0;
left: 0;
width: 120px;
height: 120px;
border-radius: 50%;
background: linear-gradient(45deg, #3a5998, #5e72e4);
opacity: 0;
transform: scale(0.8);
transition: all 0.4s ease;
z-index: 1;
}

.course-card:hover .hover-circle {
opacity: 1;
transform: scale(1.1);
}

.course-card:hover .icon-bg {
transform: scale(0.9);
background-color: #ffffff;
}

.course-icon {
font-size: 48px !important;
color: white;
transition: all 0.3s ease;
}

.course-card:hover .course-icon {
color: #3a5998;
}

.course-title {
font-size: 22px;
font-weight: 600;
color: #2c3e50;
margin: 0 0 15px;
transition: all 0.3s ease;
}

.course-card:hover .course-title {
color: #3a5998;
}

.course-info {
height: 0;
overflow: hidden;
transition: all 0.3s ease;
opacity: 0;
}

.course-card:hover .course-info {
height: auto;
opacity: 1;
margin-top: 10px;
}

.course-info p {
color: #6c757d;
margin-bottom: 15px;
font-size: 14px;
}

.learn-more {
display: inline-flex;
align-items: center;
color: #3a5998;
font-weight: 600;
font-size: 14px;
text-decoration: none;
transition: all 0.3s ease;
}

.learn-more:hover {
color: #5e72e4;
}

.arrow-icon {
font-size: 16px !important;
margin-left: 5px;
transition: transform 0.3s ease;
}

.learn-more:hover .arrow-icon {
transform: translateX(4px);
}

/* Responsive adjustments */
@media (max-width: 992px) {
.courses-grid {
   grid-template-columns: repeat(2, 1fr);
}
}

@media (max-width: 768px) {
.section-title {
   font-size: 36px;
}

.courses-grid {
   grid-template-columns: 1fr;
}

.icon-bg, .hover-circle {
   width: 100px;
   height: 100px;
}

.course-icon {
   font-size: 36px !important;
}
}
.top-courses-section {
padding: 80px 0;
background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.container {
max-width: 1200px;
margin: 0 auto;
padding: 0 15px;
}

.section-title {
text-align: center;
font-size: 42px;
font-weight: 700;
color: #2c3e50;
margin-bottom: 10px;
letter-spacing: 1px;
position: relative;
}

.accent-line {
width: 80px;
height: 4px;
background: linear-gradient(90deg, #3a5998, #5e72e4);
margin: 0 auto 50px;
border-radius: 2px;
}

.courses-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 30px;
margin-top: 40px;
}

.course-card {
background-color: #ffffff;
border-radius: 15px;
overflow: hidden;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
transition: all 0.3s ease;
padding: 30px 20px;
display: flex;
flex-direction: column;
align-items: center;
text-align: center;
position: relative;
}

.course-card:hover {
transform: translateY(-10px);
box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.icon-container {
position: relative;
margin-bottom: 20px;
}

.icon-bg {
width: 120px;
height: 120px;
background-color: #3a5998;
border-radius: 50%;
display: flex;
justify-content: center;
align-items: center;
margin-bottom: 20px;
position: relative;
z-index: 2;
transition: all 0.3s ease;
}

.hover-circle {
position: absolute;
top: 0;
left: 0;
width: 120px;
height: 120px;
border-radius: 50%;
background: linear-gradient(45deg, #3a5998, #5e72e4);
opacity: 0;
transform: scale(0.8);
transition: all 0.4s ease;
z-index: 1;
}

.course-card:hover .hover-circle {
opacity: 1;
transform: scale(1.1);
}

.course-card:hover .icon-bg {
transform: scale(0.9);
background-color: #ffffff;
}

.course-icon {
font-size: 48px !important;
color: white;
transition: all 0.3s ease;
}
.hover :hover{
background-color: white;
color: yellow;
}
.course-card:hover .course-icon {
color: #3a5998;
}

.course-title {
font-size: 22px;
font-weight: 600;
color: #2c3e50;
margin: 0 0 15px;
transition: all 0.3s ease;
}

.course-card:hover .course-title {
color: #3a5998;
}

.course-info {
height: 0;
overflow: hidden;
transition: all 0.3s ease;
opacity: 0;
}

.course-card:hover .course-info {
height: auto;
opacity: 1;
margin-top: 10px;
}

.course-info p {
color: #6c757d;
margin-bottom: 15px;
font-size: 14px;
}

.learn-more {
display: inline-flex;
align-items: center;
color: #3a5998;
font-weight: 600;
font-size: 14px;
text-decoration: none;
transition: all 0.3s ease;
}

.learn-more:hover {
color: #5e72e4;
}

.arrow-icon {
font-size: 16px !important;
margin-left: 5px;
transition: transform 0.3s ease;
}

.learn-more:hover .arrow-icon {
transform: translateX(4px);
}

/* Responsive adjustments */
@media (max-width: 992px) {
.courses-grid {
   grid-template-columns: repeat(2, 1fr);
}
}

@media (max-width: 768px) {
.section-title {
   font-size: 36px;
}

.courses-grid {
   grid-template-columns: 1fr;
}

.icon-bg, .hover-circle {
   width: 100px;
   height: 100px;
}

.course-icon {
   font-size: 36px !important;
}
}
.consultation-section {
background-color: #f3f5f9;
padding: 70px 0;
font-family: 'Roboto', 'Helvetica Neue', sans-serif;
}

.container {
max-width: 1200px;
margin: 0 auto;
padding: 0 15px;
}

.row {
display: flex;
flex-wrap: wrap;
margin: 0 -15px;
}

.col-lg-4 {
width: 33.333%;
padding: 0 15px;
}

.col-lg-8 {
width: 66.667%;
padding: 0 15px;
}

.col-md-6 {
width: 50%;
padding: 0 15px;
margin-bottom: 30px;
}

.admission-banner {
background: linear-gradient(90deg, #4cd964, #57e76c);
color: white;
font-size: 24px;
padding: 10px 20px;
border-radius: 4px;
display: inline-block;
margin-bottom: 30px;
font-weight: 500;
}

.service-intro {
padding-right: 30px;
}

.service-title {
font-size: 40px;
color: #2c3e50;
margin: 0 0 10px;
font-weight: 700;
line-height: 1.2;
}

.service-subtitle {
font-size: 20px;
color: #7f8c8d;
margin: 0 0 25px;
font-weight: 500;
}

.service-description {
color: #5d6778;
font-size: 16px;
line-height: 1.7;
margin-bottom: 20px;
}

.detail-button {
display: inline-block;
background-color: #0095ff;
color: white;
font-weight: 600;
padding: 12px 30px;
border-radius: 4px;
text-decoration: none;
margin-top: 15px;
transition: all 0.3s ease;
text-transform: uppercase;
letter-spacing: 1px;
font-size: 14px;
}

.detail-button:hover {
background-color: #007ad9;
transform: translateY(-2px);
box-shadow: 0 5px 15px rgba(0, 149, 255, 0.3);
}

.service-card {
background-color: white;
border-radius: 12px;
box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
padding: 30px;
height: 100%;
position: relative;
transition: all 0.3s ease;
}

.service-card:hover {
transform: translateY(-5px);
box-shadow: 0 12px 25px rgba(0, 0, 0, 0.09);
}

.icon-circle {
width: 70px;
height: 70px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
margin-bottom: 20px;
}

.icon-circle i {
font-size: 32px;
color: white;
}

.purple {
background-color: #9c68d9;
}

.green {
background-color: #4cd964;
}

.pink {
background-color: #e57da3;
}

.orange {
background-color: #ff9643;
}

.service-card h4 {
color: #2c3e50;
font-size: 22px;
margin: 0 0 15px;
font-weight: 600;
}

.service-card p {
color: #5d6778;
font-size: 15px;
line-height: 1.7;
margin: 0;
}

@media (max-width: 992px) {
.col-lg-4, .col-lg-8 {
   width: 100%;
}

.service-intro {
   padding-right: 0;
   margin-bottom: 40px;
}
}

@media (max-width: 768px) {
.col-md-6 {
   width: 100%;
}

.admission-banner {
   font-size: 20px;
}

.service-title {
   font-size: 32px;
}
}



.top-courses-section {
padding: 80px 0;
background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.container {
max-width: 1400px; /* Increased to accommodate all cards in one line */
margin: 0 auto;
padding: 0 15px;
}

.section-title {
text-align: center;
font-size: 42px;
font-weight: 700;
color: #2c3e50;
margin-bottom: 10px;
letter-spacing: 1px;
position: relative;
}

.accent-line {
width: 80px;
height: 4px;
background: linear-gradient(90deg, #3a5998, #5e72e4);
margin: 0 auto 50px;
border-radius: 2px;
}

.courses-grid {
display: flex;
flex-wrap: nowrap; /* Keep all cards in a single line */
gap: 15px; /* Reduced gap between cards */
margin-top: 40px;
padding-bottom: 10px; /* Space for scrollbar */
}

.course-card {
background-color: #ffffff;
border-radius: 15px;
overflow: hidden;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
transition: all 0.3s ease;
padding: 20px 15px; /* Reduced padding */
display: flex;
flex-direction: column;
align-items: center;
text-align: center;
position: relative;
flex: 0 0 180px; /* Fixed width for smaller cards */
min-width: 180px; /* Ensure minimum width */
}

.course-card:hover {
transform: translateY(-10px);
box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.icon-container {
position: relative;
margin-bottom: 15px; /* Reduced margin */
}

.icon-bg {
width: 80px; /* Smaller icons */
height: 80px;
background-color: #3a5998;
border-radius: 50%;
display: flex;
justify-content: center;
align-items: center;
margin-bottom: 15px;
position: relative;
z-index: 2;
transition: all 0.3s ease;
}

.hover-circle {
position: absolute;
top: 0;
left: 0;
width: 80px;
height: 80px;
border-radius: 50%;
background: linear-gradient(45deg, #3a5998, #5e72e4);
opacity: 0;
transform: scale(0.8);
transition: all 0.4s ease;
z-index: 1;
}

.course-card:hover .hover-circle {
opacity: 1;
transform: scale(1.1);
}

.course-card:hover .icon-bg {
transform: scale(0.9);
background-color: #ffffff;
}

.course-icon {
font-size: 32px !important; /* Smaller icon size */
color: white;
transition: all 0.3s ease;
}

.course-card:hover .course-icon {
color: #3a5998;
}

.course-title {
font-size: 18px; /* Smaller font size */
font-weight: 600;
color: #2c3e50;
margin: 0 0 10px;
transition: all 0.3s ease;
}

.course-card:hover .course-title {
color: #3a5998;
}

.course-info {
height: 0;
overflow: hidden;
transition: all 0.3s ease;
opacity: 0;
}

.course-card:hover .course-info {
height: auto;
opacity: 1;
margin-top: 8px;
}

.course-info p {
color: #6c757d;
margin-bottom: 10px;
font-size: 12px; /* Smaller font size */
}

.learn-more {
display: inline-flex;
align-items: center;
color: #3a5998;
font-weight: 600;
font-size: 12px; /* Smaller font size */
text-decoration: none;
transition: all 0.3s ease;
}

.learn-more:hover {
color: #5e72e4;
}

.arrow-icon {
font-size: 14px !important; /* Smaller icon */
margin-left: 3px;
transition: transform 0.3s ease;
}

.learn-more:hover .arrow-icon {
transform: translateX(4px);
}

/* Responsive adjustments */
@media (max-width: 1200px) {
.courses-grid {
   overflow-x: auto;
   padding-bottom: 15px;
}

.course-card {
   flex: 0 0 180px;
}
}

.top-courses-section {
padding: 80px 0;
background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.container {
max-width: 1400px;
margin: 0 auto;
padding: 0 15px;
}

.section-title {
text-align: center;
font-size: 42px;
font-weight: 700;
color: #2c3e50;
margin-bottom: 10px;
letter-spacing: 1px;
position: relative;
}

.accent-line {
width: 80px;
height: 4px;
background: linear-gradient(90deg, #3a5998, #5e72e4);
margin: 0 auto 50px;
border-radius: 2px;
}

.courses-grid {
display: flex;
justify-content: center; /* Center the cards horizontally */
gap: 20px; /* Consistent spacing between cards */
margin-top: 40px;
flex-wrap: nowrap; /* Keep all cards in a single line */
}

.course-card {
background-color: #ffffff;
border-radius: 12px;
overflow: hidden;
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
transition: all 0.3s ease;
padding: 25px 20px;
display: flex;
flex-direction: column;
align-items: center;
text-align: center;
position: relative;
width: 190px; /* Fixed width for uniformity */
flex: 0 0 auto; /* Prevent cards from growing or shrinking */
}

.course-card:hover {
transform: translateY(-8px);
box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
}

.icon-container {
position: relative;
margin-bottom: 15px;
}

.icon-bg {
width: 85px;
height: 85px;
background-color: #3a5998;
border-radius: 50%;
display: flex;
justify-content: center;
align-items: center;
margin-bottom: 15px;
position: relative;
z-index: 2;
transition: all 0.3s ease;
}

.hover-circle {
position: absolute;
top: 0;
left: 0;
width: 85px;
height: 85px;
border-radius: 50%;
background: linear-gradient(45deg, #3a5998, #5e72e4);
opacity: 0;
transform: scale(0.8);
transition: all 0.4s ease;
z-index: 1;
}

.course-card:hover .hover-circle {
opacity: 1;
transform: scale(1.1);
}

.course-card:hover .icon-bg {
transform: scale(0.9);
background-color: #ffffff;
}

.course-icon {
font-size: 36px !important; /* Balanced icon size */
color: white;
transition: all 0.3s ease;
}

.course-card:hover .course-icon {
color: #3a5998;
}

.course-title {
font-size: 18px;
font-weight: 600;
color: #2c3e50;
margin: 0 0 10px;
transition: all 0.3s ease;
line-height: 1.3;
}

.course-card:hover .course-title {
color: #3a5998;
}

.course-info {
height: 0;
overflow: hidden;
transition: all 0.3s ease;
opacity: 0;
}

.course-card:hover .course-info {
height: auto;
opacity: 1;
margin-top: 8px;
}

.course-info p {
color: #6c757d;
margin-bottom: 10px;
font-size: 13px;
line-height: 1.4;
}

.learn-more {
display: inline-flex;
align-items: center;
color: #3a5998;
font-weight: 600;
font-size: 13px;
text-decoration: none;
transition: all 0.3s ease;
}

.learn-more:hover {
color: #5e72e4;
}

.arrow-icon {
font-size: 14px !important;
margin-left: 3px;
transition: transform 0.3s ease;
}

.learn-more:hover .arrow-icon {
transform: translateX(4px);
}

/* Responsive adjustments */
@media (max-width: 1280px) {
.courses-grid {
   overflow-x: auto;
   justify-content: flex-start;
   padding-bottom: 15px;
}
}

@media (max-width: 768px) {
.section-title {
   font-size: 36px;
}
}

.banner_text{
color: #ede6ab;
color: 3.5em;
}


:root {
--primary: #2196f3;
--secondary: #ff4081;
--text-dark: #333;
--text-light: #666;
--background: #f8f9fa;
--line-color: #e0e0e0;
}

body {
margin: 0;
padding: 0;
font-family: 'Arial', sans-serif;
background: var(--background);
}

.flow-section {
padding: 80px 20px;
max-width: 1400px;
margin: 0 auto;
}

.flow-header {
text-align: center;
margin-bottom: 60px;
}

.flow-header h2 {
font-size: 2.5rem;
color: var(--text-dark);
margin: 0;
}

.flow-header h2 span {
color: var(--secondary);
}

.flow-container {
display: flex;
align-items: center;
justify-content: center;
gap: 20px;
position: relative;
}

.flow-step {
flex: 1;
text-align: center;
max-width: 300px;
position: relative;
}

.step-icon {
width: 80px;
height: 80px;
margin: 0 auto 20px;
background: white;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
box-shadow: 0 5px 15px rgba(0,0,0,0.1);
position: relative;
z-index: 2;
}

.step-icon i {
font-size: 32px;
color: var(--primary);
transition: transform 0.3s ease;
}

.step-number {
position: absolute;
top: -10px;
right: -10px;
width: 30px;
height: 30px;
background: var(--secondary);
color: white;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-weight: bold;
font-size: 14px;
}

.flow-step h3 {
color: var(--text-dark);
margin: 0 0 15px;
font-size: 1.2rem;
}

.flow-step p {
color: rgb(68, 51, 113);
margin: 0;
line-height: 1.6;
font-size: 0.95rem;
}

.flow-connector {
display: flex;
align-items: center;
position: relative;
width: 100px;
}

.line {
flex: 1;
height: 2px;
background: var(--line-color);
position: relative;
}

.dot-pulse {
width: 8px;
height: 8px;
background: var(--primary);
border-radius: 50%;
position: absolute;
left: 50%;
top: 50%;
transform: translate(-50%, -50%);
animation: pulse 2s infinite;
}

.flow-connector i {
position: absolute;
right: -5px;
top: 50%;
transform: translateY(-50%);
color: var(--primary);
font-size: 14px;
animation: arrow 2s infinite;
}

/* Animations */
@keyframes pulse {
0% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
50% { transform: translate(-50%, -50%) scale(1.5); opacity: 0.5; }
100% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
}

@keyframes arrow {
0%, 100% { transform: translateY(-50%); }
50% { transform: translateY(-50%) translateX(5px); }
}

/* Hover Effects */
.flow-step:hover .step-icon i {
transform: scale(1.1);
}

/* Responsive Design */
@media (max-width: 1024px) {
.flow-container {
   flex-direction: column;
   gap: 40px;
}

.flow-connector {
   transform: rotate(90deg);
   height: 50px;
}

.flow-step {
   max-width: 400px;
}
}

/* Animation on Load */
.flow-step {
opacity: 0;
animation: fadeIn 0.5s forwards;
}

.flow-step:nth-child(1) { animation-delay: 0.2s; }
.flow-step:nth-child(3) { animation-delay: 0.4s; }
.flow-step:nth-child(5) { animation-delay: 0.6s; }

@keyframes fadeIn {
from { opacity: 0; transform: translateY(20px); }
to { opacity: 1; transform: translateY(0); }
}



/*  Css for testimonials  */

:root {
--primary: #ff4081;
--secondary: #2196f3;
--text-dark: #333;
--text-light: #666;
--background: #f8f9fa;
--card-bg: #ffffff;
--star-color: #ffd700;
}

* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Arial', sans-serif;
}

.testimonials-section {
padding: 80px 20px;
background: var(--background);
}

.section-header {
text-align: center;
margin-bottom: 60px;
position: relative;
}

.section-header h2 {
font-size: 2.5rem;
color: var(--text-dark);
margin-bottom: 20px;
}

.section-header span {
color: var(--primary);
}

.header-line {
width: 80px;
height: 4px;
background: var(--primary);
margin: 0 auto;
position: relative;
}

.header-line::before {
content: '';
position: absolute;
width: 40px;
height: 4px;
background: var(--secondary);
left: -50px;
}

.header-line::after {
content: '';
position: absolute;
width: 40px;
height: 4px;
background: var(--secondary);
right: -50px;
}

.testimonials-container {
max-width: 1200px;
margin: 0 auto;
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 30px;
padding: 20px;
}

.testimonial-card {
background: var(--card-bg);
border-radius: 15px;
padding: 30px;
position: relative;
transition: all 0.3s ease;
box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.testimonial-card:hover {
transform: translateY(-10px);
box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.quote-icon {
position: absolute;
top: 20px;
right: 20px;
color: var(--primary);
opacity: 0.1;
font-size: 40px;
}

.rating {
margin-bottom: 20px;
}

.rating i {
color: var(--star-color);
margin-right: 5px;
}

.testimonial-content {
margin-bottom: 25px;
}

.testimonial-content p {
color: var(--text-light);
line-height: 1.6;
font-size: 1rem;
}

.testimonial-author {
display: flex;
align-items: center;
margin-top: 20px;
}

.author-info h3 {
color: var(--text-dark);
font-size: 1.1rem;
margin-bottom: 5px;
}

.author-info span {
color: var(--text-light);
font-size: 0.9rem;
}

/* Animations */
@keyframes fadeIn {
from { opacity: 0; transform: translateY(20px); }
to { opacity: 1; transform: translateY(0); }
}

.testimonial-card {
animation: fadeIn 0.6s ease-out forwards;
opacity: 0;
}

.testimonial-card:nth-child(1) { animation-delay: 0.2s; }
.testimonial-card:nth-child(2) { animation-delay: 0.4s; }
.testimonial-card:nth-child(3) { animation-delay: 0.6s; }

/* Responsive Design */
@media (max-width: 768px) {
.section-header h2 {
   font-size: 2rem;
}

.testimonials-container {
   grid-template-columns: 1fr;
}
}

/* Hover Effects */
.testimonial-card:hover .quote-icon {
opacity: 0.2;
transform: rotate(360deg);
transition: all 0.5s ease;
}

.testimonial-card:hover .rating i {
transform: scale(1.2);
transition: all 0.3s ease;
}


:root {
--primary: #2196f3;
--accent: #ff4081;
--text: #333;
--text-light: #666;
--bg: #f8f9fa;
--white: #ffffff;
--star: #ffd700;
--shadow: rgba(0, 0, 0, 0.1);
}

* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Arial', sans-serif;
}

.review-section {
background: var(--bg);
padding: 80px 20px;
}

.review-header {
text-align: center;
margin-bottom: 60px;
}

.review-header h2 {
font-size: 2.5rem;
color: var(--text);
position: relative;
display: inline-block;
}

.review-header span {
color: var(--accent);
}

.review-container {
max-width: 1200px;
margin: 0 auto;
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 30px;
padding: 20px;
}

.review-box {
background: var(--white);
padding: 30px;
border-radius: 15px;
box-shadow: 0 5px 20px var(--shadow);
transition: transform 0.3s ease, box-shadow 0.3s ease;
position: relative;
overflow: hidden;
}

.review-box::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 3px;
background: linear-gradient(to right, var(--primary), var(--accent));
transform: scaleX(0);
transition: transform 0.3s ease;
transform-origin: left;
}

.review-box:hover {
transform: translateY(-10px);
box-shadow: 0 15px 30px var(--shadow);
}

.review-box:hover::before {
transform: scaleX(1);
}

.stars {
margin-bottom: 20px;
display: flex;
gap: 5px;
}

.stars i {
color: var(--star);
font-size: 18px;
transition: transform 0.3s ease;
}

.review-box:hover .stars i {
animation: starWave 0.5s ease forwards;
}

.stars i:nth-child(2) { animation-delay: 0.1s; }
.stars i:nth-child(3) { animation-delay: 0.2s; }
.stars i:nth-child(4) { animation-delay: 0.3s; }
.stars i:nth-child(5) { animation-delay: 0.4s; }

.review-content {
position: relative;
margin-bottom: 20px;
}

.quote {
color: var(--primary);
font-size: 24px;
opacity: 0.2;
margin-bottom: 10px;
}

.review-content p {
color: rgb(74, 71, 71);
line-height: 1.6;
font-size: 1rem;
}

.reviewer {
border-top: 1px solid rgba(0,0,0,0.1);
padding-top: 20px;
margin-top: 20px;
}

.reviewer .name {
color: var(--text);
font-weight: bold;
font-size: 1.1rem;
margin-bottom: 5px;
}

.reviewer .title {
color:rgb(56, 82, 56);
font-size: 0.9rem;
}

@keyframes starWave {
0% { transform: translateY(0); }
50% { transform: translateY(-10px); }
100% { transform: translateY(0); }
}

/* Animation for cards on load */
.review-box {
opacity: 0;
animation: fadeInUp 0.6s ease forwards;
}

.review-box:nth-child(1) { animation-delay: 0.2s; }
.review-box:nth-child(2) { animation-delay: 0.4s; }
.review-box:nth-child(3) { animation-delay: 0.6s; }

@keyframes fadeInUp {
from {
   opacity: 0;
   transform: translateY(30px);
}
to {
   opacity: 1;
   transform: translateY(0);
}
}

/* Responsive Design */
@media (max-width: 768px) {
.review-header h2 {
   font-size: 2rem;
}

.review-container {
   grid-template-columns: 1fr;
}
}





/*  css for countries */


:root {
--primary-gradient-start: #005c97; /* Deeper blue start */
--primary-gradient-end: #363795;   /* Purple-ish blue end */

--right-panel-bg: #00406b; /* Darker, richer blue for right panel */
--right-panel-card-bg: rgba(255, 255, 255, 0.05); /* Subtle card background */

--accent-gold: #ffd700; /* Vivid gold for highlights */
--accent-secondary: #00a8cc; /* A bright secondary accent for icons or details */

--text-light: #e9ecef;
--text-medium: #adb5bd;
--text-dark-context: #ffffff; /* For text on dark backgrounds like link-box headers */
--text-on-light-bg: #343a40;

--link-box-header-bg: var(--accent-gold);
--link-box-bg: #ffffff;

--border-color-light: rgba(255, 255, 255, 0.1);
--border-color-medium: rgba(255, 255, 255, 0.2);

--shadow-soft: 0 8px 25px rgba(0, 0, 0, 0.15);
--shadow-medium: 0 12px 35px rgba(0, 0, 0, 0.2);
}

body {
margin: 0;
font-family: 'Poppins', sans-serif;
background-color: #f0f4f8; /* Light, neutral page background */
color: var(--text-on-light-bg);
line-height: 1.7;
}

footer {
background: linear-gradient(135deg, var(--primary-gradient-start), var(--primary-gradient-end));
color: var(--text-light);
padding: 60px 0 0; /* No bottom padding, handled by footer-bottom */
position: relative;
overflow: hidden; /* For pseudo-elements if added */
}

.footer-container {
max-width: 1500px; /* Wider for a more expansive feel */
margin: 0 auto;
padding: 0 30px;
display: flex;
gap: 50px; /* Generous spacing */
}

.footer-left {
flex: 3;
display: flex;
flex-direction: column;
gap: 35px;
}

.footer-right-panel {
flex: 5; /* Right panel is more dominant */
background-color: var(--right-panel-bg);
padding: 35px;
border-radius: 15px;
box-shadow: var(--shadow-medium);
margin-bottom: 40px; /* Space before footer-bottom if panel is long */
}

/* Typography & Headings */
.footer-column h3,
.panel-header h2,
.region-section h4 {
margin-top: 0;
font-weight: 600;
letter-spacing: 0.5px;
}

.footer-column h3 {
font-size: 1.6em;
color: var(--text-light);
margin-bottom: 25px;
position: relative;
padding-bottom: 10px;
}
.footer-column h3::after { /* Underline accent */
content: '';
position: absolute;
bottom: 0;
left: 0;
width: 50px;
height: 3px;
background-color: var(--accent-gold);
border-radius: 2px;
}

.panel-header h2 {
font-size: 2.2em; /* Larger, more prominent */
color: whitesmoke;
text-align: center;
margin-bottom: 30px;
padding-bottom: 15px;
border-bottom: 2px solid var(--border-color-medium);
text-shadow: 1px 1px 3px rgba(0,0,0,0.2);
}

.region-section h4 {
font-size: 1.4em;
color:whitesmoke; /* Bright for contrast on dark cards */
margin-bottom: 18px;
display: flex;
align-items: center;
}
.region-section h4 .fas {
margin-right: 12px;
color: var(--accent-secondary); /* Secondary accent for icons */
font-size: 1.1em;
}


/* Lists and Links */
.footer-column ul,
.footer-right-panel ul {
list-style: none;
padding: 0;
margin: 0;
}

.footer-column ul li,
.footer-right-panel ul li {
margin-bottom: 14px;
}

.footer-column ul li a,
.footer-right-panel ul li a {
color: var(--text-medium);
text-decoration: none;
transition: color 0.3s ease, transform 0.3s ease, letter-spacing 0.3s ease;
display: inline-block;
position: relative;
}

.footer-column ul li a:hover,
.footer-right-panel ul li a:hover {
color: var(--accent-gold);
transform: translateX(5px);
letter-spacing: 0.3px;
}

/* Specific link styling for services with chevrons */
.footer-column li a .fas.fa-chevron-right {
margin-right: 10px;
font-size: 0.8em;
opacity: 0.7;
transition: opacity 0.3s ease;
}
.footer-column li a:hover .fas.fa-chevron-right {
opacity: 1;
}

.highlight-link {
color: var(--accent-gold) !important;
font-weight: 600;
letter-spacing: 0.5px;
}
.highlight-link:hover {
text-shadow: 0 0 8px var(--accent-gold);
}

/* Link Boxes in Left Panel */
.footer-column-group {
display: flex;
gap: 25px;
margin-top: 15px;
}

.link-box {
flex: 1;
background-color: var(--link-box-bg);
border-radius: 10px;
box-shadow: var(--shadow-soft);
overflow: hidden;
transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.link-box:hover {
transform: translateY(-5px);
box-shadow: 0 12px 30px rgba(0,0,0,0.1);
}

.link-box-header {
background-color: var(--link-box-header-bg);
padding: 12px 18px;
}
.link-box-header h4 {
color: var(--text-dark-context); /* Text on gold background */
margin: 0;
font-size: 1.15em;
font-weight: 600;
text-align: center;
}

.link-box ul {
padding: 20px;
}
.link-box ul li a {
color: var(--text-on-light-bg);
font-size: 0.95em;
font-family: 'Open Sans', sans-serif;
}
.link-box ul li a .fas {
margin-right: 10px;
color: var(--primary-gradient-end); /* Use a theme color for icons */
width: 20px; /* Align icons */
text-align: center;
}
.link-box ul li a:hover {
color: var(--primary-gradient-start);
transform: translateX(3px); /* Less aggressive than other hovers */
}


/* Right Panel Specifics - Card Styling */
.region-section.card-style {
background-color: var(--right-panel-card-bg);
padding: 25px;
border-radius: 10px;
margin-bottom: 25px;
border: 1px solid var(--border-color-light);
transition: background-color 0.3s ease, transform 0.3s ease;
}
.region-section.card-style:hover {
background-color: rgba(255, 255, 255, 0.08);
transform: translateY(-3px);
}
.region-section.card-style:last-child {
margin-bottom: 0;
}

.country-list {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
gap: 12px 20px;
}
.country-list.short-list {
grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
}
.country-list li a { /* No chevrons for these, simple text */
font-family: 'Open Sans', sans-serif;
font-size: 0.95em;
}

.region-row {
display: flex;
gap: 25px;
margin-bottom: 25px; /* Consistency with other card margins */
}
.region-row .region-section.card-style {
flex: 1;
margin-bottom: 0; /* Avoid double margin */
}

/* Flags */
.country-list-flags {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
gap: 15px;
}
.country-list-flags li a {
display: flex;
align-items: center;
gap: 10px;
font-family: 'Open Sans', sans-serif;
font-size: 1em;
}
.flag-icon {
width: 28px;
height: auto;
border-radius: 4px;
box-shadow: 0 2px 5px rgba(0,0,0,0.2);
transition: transform 0.3s ease;
}
.country-list-flags li a:hover .flag-icon {
transform: scale(1.15);
}

/* Footer Bottom */
.footer-bottom {
text-align: center;
padding: 25px 20px;
margin-top: 40px; /* Ensure it's below main content, especially right panel */
background-color: rgba(0, 0, 0, 0.2); /* Slightly darker strip */
font-size: 0.9em;
color: var(--text-medium);
}
.footer-bottom p {
margin: 0;
}
.footer-bottom .fas.fa-heart {
transition: color 0.3s ease, transform 0.3s ease;
}
.footer-bottom .fas.fa-heart:hover {
color: #ff6b6b !important; /* Brighter red on hover */
transform: scale(1.2);
}


/* Responsive Adjustments */
@media (max-width: 1200px) {
.footer-left {
   flex: 2.5;
}
.footer-right-panel {
   flex: 3.5;
}
.country-list {
   grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
}
}

@media (max-width: 992px) {
.footer-container {
   flex-direction: column;
   gap: 0; /* Manage gap with element margins */
}
.footer-left {
   margin-bottom: 40px;
}
.footer-left, .footer-right-panel {
   flex: none;
   width: 100%;
}
.footer-column-group {
   flex-direction: column;
}
.region-row {
   flex-direction: column;
   gap: 25px; /* Keep consistent gap for cards */
}
.region-row .region-section.card-style { /* Ensure margin when stacked */
  margin-bottom: 25px;
}
.region-row .region-section.card-style:last-child {
   margin-bottom: 0;
}
.panel-header h2 {
   font-size: 1.9em;
}
}

@media (max-width: 768px) {
.country-list, .country-list-flags {
   grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
}
.footer-column h3 { font-size: 1.4em; }
.region-section h4 { font-size: 1.25em; }
.link-box-header h4 { font-size: 1.1em; }
}

@media (max-width: 576px) {
.footer-container { padding: 0 20px; }
.footer-right-panel { padding: 25px; }
.panel-header h2 { font-size: 1.7em; }
.country-list, .country-list-flags {
   grid-template-columns: repeat(auto-fill, minmax(110px, 1fr)); /* Can go smaller */
   gap: 10px;
}
.country-list-flags li a { font-size: 0.9em;}
.footer-column ul li, .footer-right-panel ul li { margin-bottom: 10px; }
.link-box ul { padding: 15px; }
}


.latest-news-widget {
max-width: 600px;
padding: 20px;
background-color: rgb(249, 247, 244);
border-radius: 8px;
}

.latest-news-widget h2 {
font-size: 32px;
font-weight: 700;
color: #333333;
margin-top: 0;
margin-bottom: 30px;
padding-bottom: 10px;
}

.latest-news-widget ul {
list-style: none;
padding: 0;
margin: 0;
}

.latest-news-widget li {
margin-bottom: 18px;
}

.latest-news-widget .news-item {
text-decoration: none;
color: #333333;
font-size: 16px;
line-height: 1.5;
display: flex; /* Use flexbox for easy icon alignment */
align-items: flex-start; /* Align items to the top if text wraps */
transition: color 0.3s ease, transform 0.2s ease-out;
}

.latest-news-widget .news-icon {
margin-right: 10px; /* Space between icon and text */
font-size: 1em; /* Adjust icon size relative to text */
color: #007BFF; /* Icon color - can be same as hover or different */
margin-top: 4px; /* Fine-tune vertical alignment if needed */
flex-shrink: 0; /* Prevent icon from shrinking if text is long */
transition: color 0.3s ease, transform 0.3s ease; /* For icon hover effects */
}

.latest-news-widget .news-text {
flex-grow: 1; /* Allow text to take remaining space */
}

.latest-news-widget .news-item .news-status {
color: #D32F2F;
font-weight: normal;
transition: text-decoration 0.3s ease; /* Added for smooth underline transition */
}

/* --- Hover Effects & Animations --- */

.latest-news-widget .news-item:hover {
color: #0056b3; /* Darker blue on hover for main text */
transform: translateX(5px);
}

.latest-news-widget .news-item:hover .news-icon {
color: #D32F2F; /* Change icon color to red on hover (like status) */
transform: scale(1.1); /* Slightly enlarge icon on hover */
}

.latest-news-widget .news-item:hover .news-text {
color: #007BFF; /* Ensure the news text part also gets the hover color */
}

.latest-news-widget .news-item:hover .news-status {
text-decoration: underline;
}

/* Optional: Subtle animation for list items appearing (if desired) */
@keyframes fadeInItem {
from {
   opacity: 0;
   transform: translateY(10px);
}
to {
   opacity: 1;
   transform: translateY(0);
}
}


.latest-news-widget li {
animation: fadeInItem 0.5s ease-out forwards;
opacity: 0;
}

.latest-news-widget li:nth-child(1) { animation-delay: 0.1s; }
.latest-news-widget li:nth-child(2) { animation-delay: 0.2s; }
.latest-news-widget li:nth-child(3) { animation-delay: 0.3s; }
.latest-news-widget li:nth-child(4) { animation-delay: 0.4s; }
.latest-news-widget li:nth-child(5) { animation-delay: 0.5s; }
.latest-news-widget li:nth-child(6) { animation-delay: 0.6s; }

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;700&family=Montserrat:wght@200;300;400;600;700&display=swap');
        


.premium-edu-banner {
    height: 100vh;
    width: 100%;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, #111111, #1c1c1c, #0a0a0a);
}

#premium-edu-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.premium-edu-pattern-overlay {
    position: absolute;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.8;
    z-index: 2;
}

.premium-edu-logo {
    position: absolute;
    top: 2rem;
    left: 2rem;
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    z-index: 10;
    letter-spacing: 1px;
}

.premium-edu-logo::after {
    content: "";
    display: block;
    width: 40px;
    height: 2px;
    background-color: rgba(255,255,255,0.6);
    margin-top: 5px;
}

.premium-edu-slider {
    width: 300%;
    height: 100%;
    display: flex;
    transition: transform 1.5s cubic-bezier(0.77, 0, 0.175, 1);
    position: relative;
    z-index: 5;
}

.premium-edu-slide {
    width: 33.33%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    padding: 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.premium-edu-slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.15;
    background-size: cover;
    background-position: center;
    filter: grayscale(100%);
    transform: scale(1.1);
    transition: transform 2s ease, opacity 2s ease;
}

.premium-edu-slide.active .premium-edu-slide-bg {
    transform: scale(1);
    opacity: 0.25;
}

.premium-edu-slide::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0,0,0,0.8) 0%, rgba(20,20,20,0.5) 100%);
    z-index: -1;
}

.premium-edu-content-wrapper {
    max-width: 800px;
    position: relative;
    z-index: 3;
    padding: 3.5rem;
    background: rgba(15, 15, 15, 0.75);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
    overflow: hidden;
}

.premium-edu-content-wrapper::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
}

.premium-edu-content-wrapper::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(180deg, transparent, rgba(255,255,255,0.2), transparent);
}

.premium-edu-icon-container {
    font-size: 3.2rem;
    margin-bottom: 1.8rem;
    color: #e5e5e5;
    opacity: 0;
    transform: translateY(30px);
    filter: drop-shadow(0 5px 15px rgba(255,255,255,0.2));
}

.premium-edu-school-type {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    font-weight: 200;
    text-transform: uppercase;
    letter-spacing: 6px;
    margin-bottom: 1.6rem;
    color: #bbbbbb;
    opacity: 0;
    transform: translateY(30px);
    position: relative;
    display: inline-block;
}

.premium-edu-school-type::before, .premium-edu-school-type::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 30px;
    height: 1px;
    background-color: rgba(255,255,255,0.3);
}

.premium-edu-school-type::before {
    left: -40px;
}

.premium-edu-school-type::after {
    right: -40px;
}

.premium-edu-heading {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 2.5rem;
    line-height: 1.2;
    opacity: 0;
    transform: translateY(30px);
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
    position: relative;
}

.premium-edu-apply-btn {
    display: inline-block;
    padding: 1rem 3rem;
    background-color: transparent;
    border: 1.5px solid rgba(255,255,255,0.8);
    color: white;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    opacity: 0;
    transform: translateY(30px);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.premium-edu-apply-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background-color: white;
    transition: width 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: -1;
}

.premium-edu-apply-btn:hover {
    color: #111;
}

.premium-edu-apply-btn:hover::before {
    width: 100%;
}

@keyframes premium-edu-fadeUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.premium-edu-slide-number {
    position: absolute;
    top: 3rem;
    right: 3rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    font-weight: 200;
    color: rgba(255, 255, 255, 0.4);
    display: flex;
    align-items: center;
}

.premium-edu-slide-number::after {
    content: "/03";
    font-size: 0.8rem;
    margin-left: 5px;
    color: rgba(255, 255, 255, 0.2);
}

.premium-edu-decorative-line {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 150px;
    background: linear-gradient(to bottom, rgba(255,255,255,0), rgba(255,255,255,0.15), rgba(255,255,255,0));
}

.premium-edu-dots-container {
    position: absolute;
    bottom: 3rem;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
}

.premium-edu-dots {
    display: flex;
    gap: 1.5rem;
}

.premium-edu-dot {
    width: 12px;
    height: 12px;
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
}

.premium-edu-dot::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 6px;
    height: 6px;
    background-color: white;
    border-radius: 50%;
    transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.premium-edu-dot.active {
    border-color: rgba(255, 255, 255, 0.8);
}

.premium-edu-dot.active::before {
    transform: translate(-50%, -50%) scale(1);
}

.premium-edu-navigation-arrows {
    position: absolute;
    bottom: 3rem;
    right: 3rem;
    display: flex;
    gap: 1rem;
    z-index: 10;
}

.premium-edu-arrow {
    width: 50px;
    height: 50px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: rgba(255, 255, 255, 0.6);
}

.premium-edu-arrow:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.6);
    color: white;
}

.premium-edu-progress-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    background-color: rgba(255, 255, 255, 0.3);
    z-index: 10;
    transition: width 0.3s linear;
}

.premium-edu-overlay-decoration {
    position: absolute;
    width: 300px;
    height: 300px;
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.5;
    z-index: 2;
}

.premium-edu-overlay-decoration-2 {
    width: 500px;
    height: 500px;
    border-color: rgba(255,255,255,0.03);
}

.premium-edu-scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 3rem;
    display: flex;
    align-items: center;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 2px;
    font-weight: 300;
    z-index: 10;
}

.premium-edu-scroll-indicator::after {
    content: "";
    width: 40px;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.3);
    margin-left: 10px;
}

@media (max-width: 768px) {
    .premium-edu-heading {
        font-size: 2.5rem;
    }
    
    .premium-edu-school-type {
        font-size: 0.9rem;
        letter-spacing: 4px;
    }
    
    .premium-edu-content-wrapper {
        padding: 2rem;
        max-width: 90%;
    }
    
    .premium-edu-icon-container {
        font-size: 2.2rem;
    }
    
    .premium-edu-scroll-indicator, 
    .premium-edu-navigation-arrows {
        display: none;
    }
    
    .premium-edu-slide-number {
        top: 1.5rem;
        right: 1.5rem;
    }
    
    .premium-edu-logo {
        top: 1.5rem;
        left: 1.5rem;
        font-size: 1.4rem;
    }
}



* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}


   
 .edu-header {
            width: 100%;
            background-color: #fff;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
            padding: 10px 0;
        }
        
        .edu-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        
        .edu-navbar {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        
        .edu-logo {
            display: flex;
            align-items: center;
        }
        
        .edu-logo__img {
            height: 50px;
            width: auto;
        }
        
        .edu-nav-container {
            display: flex;
            justify-content: center;
            flex: 1;
        }
        
        .edu-nav {
            display: flex;
            list-style: none;
            margin: 0;
            padding: 0;
            justify-content: center;
        }
        
        .edu-nav__item {
            position: relative;
            margin: 0 15px;
        }
        
        .edu-nav__link {
            color: #333;
            text-decoration: none;
            font-weight: 500;
            padding: 10px 5px;
            display: block;
            transition: color 0.3s ease;
            font-size: 16px;
        }
        
        .edu-nav__link:hover {
            color: #007bff;
        }
        
        .edu-nav__item--active .edu-nav__link {
            color: #007bff;
        }
        
        .edu-dropdown {
            position: absolute;
            top: 100%;
            left: 0;
            width: 220px;
            background-color: #fff;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            opacity: 0;
            visibility: hidden;
            transform: translateY(10px);
            transition: all 0.3s ease;
            border-radius: 5px;
            padding: 10px 0;
            z-index: 100;
        }
        
        .edu-nav__item:hover .edu-dropdown {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }
        
        .edu-dropdown__item {
            display: block;
            padding: 10px 20px;
            color: #333;
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 14px;
        }
        
        .edu-dropdown__item:hover {
            background-color: #f8f9fa;
            color: #007bff;
            padding-left: 25px;
        }
        
        .edu-subdropdown {
            position: relative;
        }
        
        .edu-subdropdown__menu {
            position: absolute;
            top: 0;
            left: 100%;
            width: 220px;
            background-color: #fff;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            opacity: 0;
            visibility: hidden;
            transform: translateX(10px);
            transition: all 0.3s ease;
            border-radius: 5px;
            padding: 10px 0;
        }
        
        .edu-subdropdown:hover .edu-subdropdown__menu {
            opacity: 1;
            visibility: visible;
            transform: translateX(0);
        }
        
        .edu-apply {
            display: flex;
            align-items: center;
        }
        
        .edu-apply__btn {
            background-color: #007bff;
            color: white;
            padding: 10px 25px;
            border-radius: 50px;
            text-decoration: none;
            transition: all 0.3s ease;
            font-weight: bold;
            display: inline-block;
            font-size: 16px;
            white-space: nowrap;
        }
        
        .edu-apply__btn:hover {
            background-color: #0056b3;
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0, 123, 255, 0.3);
        }
        
        .edu-navbar__toggler {
            display: none;
            background: none;
            border: none;
            font-size: 24px;
            cursor: pointer;
            color: #333;
            padding: 5px;
        }
        
        .edu-navbar__toggler-icon {
            display: inline-block;
            width: 1.5em;
            height: 1.5em;
            vertical-align: middle;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='rgba(0, 0, 0, 0.5)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: center;
            background-size: 100%;
        }
        
        /* Responsive Styles */
        @media (max-width: 992px) {
            .edu-navbar {
                flex-wrap: wrap;
            }
            
            .edu-logo {
                order: 0;
                flex: 1;
            }
            
            .edu-navbar__toggler {
                display: block;
                order: 1;
            }
            
            .edu-nav-container {
                order: 3;
                flex-basis: 100%;
                max-height: 0;
                overflow: hidden;
                transition: max-height 0.5s ease;
            }
            
            .edu-navbar__collapse--show .edu-nav-container {
                max-height: 1000px;
            }
            
            .edu-nav {
                flex-direction: column;
                width: 100%;
            }
            
            .edu-nav__item {
                margin: 0;
                width: 100%;
            }
            
            .edu-nav__link {
                padding: 12px 15px;
                border-bottom: 1px solid #f1f1f1;
            }
            
            .edu-dropdown {
                position: static;
                width: 100%;
                transform: none;
                box-shadow: none;
                max-height: 0;
                overflow: hidden;
                transition: max-height 0.5s ease, padding 0.3s ease;
                opacity: 1;
                visibility: visible;
                padding: 0;
                border-radius: 0;
            }
            
            .edu-nav__item--open .edu-dropdown {
                max-height: 500px;
                padding: 10px 0;
            }
            
            .edu-subdropdown__menu {
                position: static;
                width: 100%;
                transform: none;
                box-shadow: none;
                padding: 0 0 0 20px;
                max-height: 0;
                overflow: hidden;
                transition: max-height 0.5s ease, padding 0.3s ease;
                opacity: 1;
                visibility: visible;
                border-radius: 0;
            }
            
            .edu-subdropdown--open .edu-subdropdown__menu {
                max-height: 500px;
                padding: 10px 0 10px 20px;
            }
            
            .edu-dropdown__arrow {
                float: right;
                transition: transform 0.3s ease;
            }
            
            .edu-subdropdown--open .edu-dropdown__arrow {
                transform: rotate(90deg);
            }
            
            .edu-apply {
                order: 2;
            }
        }

        /* Small mobile displays */
        @media (max-width: 576px) {
            .edu-logo__img {
                height: 40px;
            }
            
            .edu-apply__btn {
                padding: 8px 15px;
                font-size: 14px;
            }
            
            .edu-nav__link,
            .edu-dropdown__item {
                font-size: 14px;
            }
        }





        /* Reset default styles to avoid interference */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

/* Header styling */
.edu-header {
    width: 100%;
    background-color: #ffffff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
    position: fixed;
    z-index: 1000; /* Ensure header is above other content */
}

/* Container */
.edu-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Navbar */
.edu-navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap; /* Prevent wrapping on desktop */
}

/* Logo */
.edu-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0; /* Prevent logo from shrinking */
}

.edu-logo__img {
    height: 50px;
    width: auto;
    display: block;
}

/* Nav container (center) */
.edu-nav-container {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.edu-nav {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
}

.edu-nav__item {
    margin: 0 15px;
    position: relative;
}

.edu-nav__link {
    color: #333333;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    padding: 10px 5px;
    display: block;
    transition: color 0.3s ease;
}

.edu-nav__link:hover,
.edu-nav__item--active .edu-nav__link {
    color: #007bff;
}

/* Dropdown */
.edu-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    width: 220px;
    background-color: #ffffff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    border-radius: 5px;
    padding: 10px 0;
    z-index: 100;
}

.edu-nav__item:hover .edu-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.edu-dropdown__item {
    display: block;
    padding: 10px 20px;
    color: #333333;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.edu-dropdown__item:hover {
    background-color: #f8f9fa;
    color: #007bff;
    padding-left: 25px;
}

/* Subdropdown */
.edu-subdropdown {
    position: relative;
}

.edu-subdropdown__menu {
    position: absolute;
    top: 0;
    left: 100%;
    width: 220px;
    background-color: #ffffff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: all 0.3s ease;
    border-radius: 5px;
    padding: 10px 0;
}

.edu-subdropdown:hover .edu-subdropdown__menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

/* Apply button */
.edu-apply {
    display: flex;
    align-items: center;
    flex-shrink: 0; /* Prevent button from shrinking */
}

.edu-apply__btn {
    background-color: #007bff;
    color: #ffffff;
    padding: 10px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.edu-apply__btn:hover {
    background-color: #0056b3;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 123, 255, 0.3);
}

/* Toggler (mobile) */
.edu-navbar__toggler {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #333333;
    padding: 5px;
}

.edu-navbar__toggler-icon {
    display: inline-block;
    width: 1.5em;
    height: 1.5em;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='rgba(0, 0, 0, 0.5)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%;
}

/* Responsive styles */
@media (max-width: 992px) {
    .edu-navbar {
        flex-wrap: wrap;
        position: relative;
    }

    .edu-logo {
        order: 0;
        flex: 1;
    }

    .edu-navbar__toggler {
        display: block;
        order: 1;
    }

    .edu-nav-container {
        order: 3;
        flex-basis: 100%;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.5s ease;
    }

    .edu-navbar__collapse--show .edu-nav-container {
        max-height: 1000px;
    }

    .edu-nav {
        flex-direction: column;
        width: 100%;
    }

    .edu-nav__item {
        margin: 0;
        width: 100%;
    }

    .edu-nav__link {
        padding: 12px 15px;
        border-bottom: 1px solid #f1f1f1;
    }

    .edu-dropdown {
        position: static;
        width: 100%;
        transform: none;
        box-shadow: none;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.5s ease, padding 0.3s ease;
        opacity: 1;
        visibility: visible;
        padding: 0;
        border-radius: 0;
    }

    .edu-nav__item--open .edu-dropdown {
        max-height: 500px;
        padding: 10px 0;
    }

    .edu-subdropdown__menu {
        position: static;
        width: 100%;
        transform: none;
        box-shadow: none;
        padding: 0 0 0 20px;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.5s ease, padding 0.3s ease;
        opacity: 1;
        visibility: visible;
        border-radius: 0;
    }

    .edu-subdropdown--open .edu-subdropdown__menu {
        max-height: 500px;
        padding: 10px 0 10px 20px;
    }

    .edu-dropdown__arrow {
        float: right;
        transition: transform 0.3s ease;
    }

    .edu-subdropdown--open .edu-dropdown__arrow {
        transform: rotate(90deg);
    }

    .edu-apply {
        order: 2;
    }
}

@media (max-width: 576px) {
    .edu-logo__img {
        height: 40px;
    }

    .edu-apply__btn {
        padding: 8px 15px;
        font-size: 14px;
    }

    .edu-nav__link,
    .edu-dropdown__item {
        font-size: 14px;
    }
}



















:root {
    --primary-color: #E0C349;
    --primary-dark: #D1B52F;
    --white: #FFFFFF;
    --text-dark: #333333;
    --shadow: 0 10px 30px rgba(0,0,0,0.08);
    --transition: all 0.3s ease;
  }
  
  .global-education {
    padding: 80px 0;
    background: linear-gradient(to right, #f9f9f9, #ffffff);
    font-family: 'Poppins', sans-serif;
  }
  
  .section-header {
    text-align: left;
    margin-bottom: 60px;
    animation: fadeInUp 0.8s ease-out;
  }
  
  .subtitle {
    font-size: 2rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 8px;
  }
  
  .title {
    font-size: 3.5rem;
    color: var(--text-dark);
    font-weight: 700;
    line-height: 1.2;
  }
  
  .features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
  }
  
  .feature-card {
    background-color: var(--primary-color);
    border-radius: 12px;
    padding: 40px 25px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    transform: translateY(0);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.8s ease-out;
    animation-fill-mode: both;
  }
  
  .feature-card:nth-child(2) {
    animation-delay: 0.2s;
  }
  
  .feature-card:nth-child(3) {
    animation-delay: 0.4s;
  }
  
  .feature-card:nth-child(4) {
    animation-delay: 0.6s;
  }
  
  .feature-card.white {
    background-color: var(--white);
  }
  
  .icon-container {
    margin-bottom: 20px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
  }
  
  .icon {
    width: 35px;
    height: 35px;
    transition: var(--transition);
  }
  
  .feature-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--text-dark);
  }
  
  .feature-card p {
    font-size: 1.1rem;
    color: var(--text-dark);
    opacity: 0.9;
  }
  
  /* Hover effects */
  .feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
  }
  
  .feature-card:hover .icon {
    transform: scale(1.2);
  }
  
  .feature-card:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 0;
    background: rgba(255,255,255,0.1);
    left: 0;
    bottom: 0;
    transition: var(--transition);
    z-index: 0;
  }
  
  .feature-card:hover:before {
    height: 100%;
  }
  
  /* Animations */
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }




  :root {
    --primary-color: #E0C349;
    --primary-dark: #D1B52F;
    --white: #FFFFFF;
    --text-dark: #333333;
    --shadow: 0 10px 30px rgba(0,0,0,0.08);
    --transition: all 0.3s ease;
  }
  
  .global-education {
    padding: 80px 0;
    background: linear-gradient(to right, #f9f9f9, #ffffff);
    font-family: 'Poppins', sans-serif;
  }
  
  .section-header {
    text-align: left;
    margin-bottom: 60px;
    animation: fadeInUp 0.8s ease-out;
  }
  
  .subtitle {
    font-size: 2rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 8px;
  }
  
  .title {
    font-size: 3.5rem;
    color: var(--text-dark);
    font-weight: 700;
    line-height: 1.2;
  }
  
  .features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
  }
  
  .feature-card {
    background-color: var(--primary-color);
    border-radius: 12px;
    padding: 40px 25px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    transform: translateY(0);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.8s ease-out;
    animation-fill-mode: both;
  }
  
  .feature-card:nth-child(2) {
    animation-delay: 0.2s;
  }
  
  .feature-card:nth-child(3) {
    animation-delay: 0.4s;
  }
  
  .feature-card:nth-child(4) {
    animation-delay: 0.6s;
  }
  
  .feature-card.white {
    background-color: var(--white);
  }
  
  .icon-container {
    margin-bottom: 20px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
  }
  
  .icon {
    width: 45px;
    height: 45px;
    transition: var(--transition);
  }
  
  .feature-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--text-dark);
  }
  
  .feature-card p {
    font-size: 1.1rem;
    color: var(--text-dark);
    opacity: 0.9;
  }
  
  /* Hover effects for icons */
  .feature-card:hover .icon {
    transform: scale(1.2);
  }
  
  .feature-card:hover .icon path,
  .feature-card:hover .icon rect,
  .feature-card:hover .icon circle {
    stroke: var(--primary-dark);
    transition: stroke 0.3s ease;
  }
  
  /* Card hover effects */
  .feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
  }
  
  .feature-card:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 0;
    background: rgba(255,255,255,0.1);
    left: 0;
    bottom: 0;
    transition: var(--transition);
    z-index: 0;
  }
  
  .feature-card:hover:before {
    height: 100%;
  }
  
  /* Animations */
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  /* Pulse effect on icons */
  @keyframes pulse {
    0% {
      transform: scale(1);
    }
    50% {
      transform: scale(1.1);
    }
    100% {
      transform: scale(1);
    }
  }
  
  .feature-card:hover .icon {
    animation: pulse 1.5s infinite ease-in-out;
  }



  /* ============= TOP MEDICAL COLLEGES SECTION ============= */
:root {
    --primary-color: #E0C349;
    --primary-light: #f5e7a5;
    --primary-dark: #c7ab34;
    --text-dark: #1F2937;
    --text-light: #4B5563;
    --background: #F4F7FA;
    --white: #FFFFFF;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    --transition: all 0.3s ease;
  }
  
  /* Base Styles */
  .medical-colleges {
    background-color: var(--background);
    padding: 80px 0;
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
  }
  
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
  }
  
  /* Header Styles */
  .section-header {
    text-align: center;
    margin-bottom: 60px;
    animation: fadeIn 1s ease-out;
  }
  
  .section-header h1 {
    font-size: 42px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
    line-height: 1.2;
  }
  
  .section-header p {
    font-size: 18px;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
  }
  
  /* Countries List */
  .countries-list {
    display: flex;
    flex-direction: column;
    gap: 28px;
  }
  
  .country-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    animation: slideIn 0.5s ease-out forwards;
    opacity: 0;
    transform: translateY(20px);
    padding: 5px 0;
    position: relative; /* Ensure position context for child elements */
  }
  
  .country-item:nth-child(1) { animation-delay: 0.1s; }
  .country-item:nth-child(2) { animation-delay: 0.2s; }
  .country-item:nth-child(3) { animation-delay: 0.3s; }
  .country-item:nth-child(4) { animation-delay: 0.4s; }
  .country-item:nth-child(5) { animation-delay: 0.5s; }
  .country-item:nth-child(6) { animation-delay: 0.6s; }
  
  /* Country Info Styles */
  .country-info {
    display: flex;
    align-items: center;
    gap: 20px;
    min-width: 200px;
    transition: var(--transition);
    position: relative; /* Add this to ensure positioning context */
  }
  
  .flag-container {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 2px solid var(--white);
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--white);
    position: relative;
    z-index: 1;
  }
  
  .flag {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
  }
  
  .country-name {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
    transition: var(--transition);
    position: relative;
  }
  
  .country-name::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
  }
  
  .country-item:hover .country-name::after {
    width: 100%;
  }
  
  /* Connector Line */
  .connector-line {
    flex-grow: 1;
    height: 2px;
    margin: 0 30px;
    position: relative;
    background-color: rgba(203, 213, 225, 0.4);
    overflow: hidden;
  }
  
  .line-inner {
    height: 100%;
    width: 0;
    background-color: var(--primary-color);
    transition: width 1s ease;
    animation: lineGrow 1.5s ease forwards;
  }
  
  .country-item:nth-child(1) .line-inner { animation-delay: 0.7s; }
  .country-item:nth-child(2) .line-inner { animation-delay: 0.8s; }
  .country-item:nth-child(3) .line-inner { animation-delay: 0.9s; }
  .country-item:nth-child(4) .line-inner { animation-delay: 1.0s; }
  .country-item:nth-child(5) .line-inner { animation-delay: 1.1s; }
  .country-item:nth-child(6) .line-inner { animation-delay: 1.2s; }
  
  /* Learn More Button */
  .learn-more-btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: transparent;
    color: var(--primary-dark);
    border: 2px solid var(--primary-color);
    border-radius: 50px;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    transition: var(--transition);
    min-width: 150px;
    text-align: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
    cursor: pointer;
  }
  
  .learn-more-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    transition: all 0.4s ease;
    z-index: -1;
  }
  
  /* FIXED HOVER EFFECTS - These won't cause elements to disappear */
  .country-item:hover .flag-container {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  }
  
  .country-item:hover .country-name {
    color: var(--primary-dark);
  }
  
  .learn-more-btn:hover {
    color: var(--text-dark);
    box-shadow: 0 5px 15px rgba(224, 195, 73, 0.4);
  }
  
  .learn-more-btn:hover::before {
    left: 0;
  }
  
  .learn-more-btn:active {
    transform: translateY(2px);
  }
  
  /* Focus states for accessibility */
  .learn-more-btn:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(224, 195, 73, 0.3);
  }
  
  /* Animations */
  @keyframes fadeIn {
    from { 
      opacity: 0; 
      transform: translateY(-20px);
    }
    to { 
      opacity: 1; 
      transform: translateY(0);
    }
  }
  
  @keyframes slideIn {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  @keyframes lineGrow {
    from { width: 0; }
    to { width: 100%; }
  }
  
  /* FIXED: Removed problematic float and pulse animations that were causing disappearance */
  /* Instead adding a simpler, more stable shadow effect */
  .country-item:hover .flag-container {
    box-shadow: 0 0 0 4px rgba(224, 195, 73, 0.3);
  }
  
  /* Gentle lift effect instead of float animation */
  .country-item {
    transition: transform 0.3s ease;
  }
  
  .country-item:hover {
    transform: translateY(-5px);
  }
  
  /* Responsive Design */
  @media (max-width: 992px) {
    .section-header h1 {
      font-size: 36px;
    }
    
    .section-header p {
      font-size: 16px;
    }
    
    .country-name {
      font-size: 18px;
    }
    
    .learn-more-btn {
      padding: 10px 25px;
      font-size: 15px;
      min-width: 130px;
    }
  }
  
  @media (max-width: 768px) {
    .medical-colleges {
      padding: 60px 0;
    }
    
    .section-header {
      margin-bottom: 40px;
    }
    
    .section-header h1 {
      font-size: 32px;
    }
    
    .country-item {
      flex-direction: row;
      flex-wrap: wrap;
      gap: 15px;
      margin-bottom: 20px;
      justify-content: space-between;
    }
    
    .connector-line {
      display: none;
    }
    
    .country-info {
      width: 100%;
      justify-content: flex-start;
      margin-bottom: 10px;
    }
    
    .learn-more-btn {
      margin-left: auto;
    }
  }
  
  @media (max-width: 576px) {
    .section-header h1 {
      font-size: 28px;
    }
    
    .section-header p {
      font-size: 15px;
    }
    
    .country-item {
      flex-direction: column;
      align-items: flex-start;
    }
    
    .country-info {
      justify-content: flex-start;
      width: 100%;
    }
    
    .learn-more-btn {
      width: 100%;
      margin-top: 10px;
    }
  }
  
  /* Print styles */
  @media print {
    .medical-colleges {
      background: none;
      padding: 20px 0;
    }
    
    .learn-more-btn {
      border: 1px solid #000;
      color: #000;
    }
    
    .connector-line, 
    .line-inner {
      display: none;
    }
    
    .country-item {
      break-inside: avoid;
      margin-bottom: 15px;
      page-break-inside: avoid;
    }
  }
  
  /* Additional enhancements */
  ::selection {
    background-color: var(--primary-light);
    color: var(--text-dark);
  }
  
  .learn-more-btn::selection {
    background-color: var(--primary-dark);
    color: var(--white);
  }




  /* Spinner Overlay Styles */
#spinner-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
}

.spinner-container {
    text-align: center;
}

.spinner {
    position: relative;
    width: 100px;
    height: 100px;
}

.spinner i.fa-cog {
    color: #ff6b6b;
    font-size: 60px;
    filter: drop-shadow(0 0 10px rgba(255, 107, 107, 0.7));
    animation: spin 2s linear infinite;
}

.spinner .secondary-cog {
    position: absolute;
    top: 15px;
    left: 50px;
    color: #2575fc;
    font-size: 30px;
    animation: spin-reverse 1.5s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes spin-reverse {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(-360deg); }
}



#spinner-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
    backdrop-filter: blur(5px);
}

.spinner-container {
    text-align: center;
    position: relative;
}

.spinner-box {
    position: relative;
    width: 150px;
    height: 150px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.spinner-outer {
    position: absolute;
    width: 80px;
    height: 80px;
    border: 4px solid transparent;
    border-top: 4px solid white;
    border-right: 4px solid white;
    border-radius: 50%;
    animation: spin 2s linear infinite;
}

.spinner-inner {
    position: absolute;
    width: 60px;
    height: 60px;
    border: 4px solid transparent;
    border-top: 4px solid white;
    border-left: 4px solid white;
    border-radius: 50%;
    animation: spin-reverse 1.5s linear infinite;
}

.spinner-center {
    position: absolute;
    width: 20px;
    height: 20px;
    background: white;
    border-radius: 50%;
    animation: pulse 1s ease-in-out infinite alternate;
}

.pulse-ring {
    position: absolute;
    width: 100px;
    height: 100px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: pulse-ring 2s ease-out infinite;
}

.loading-text {
    position: absolute;
    bottom: -40px;
    color: white;
    font-family: 'Arial', sans-serif;
    font-weight: 700;
    letter-spacing: 4px;
    font-size: 14px;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.dots {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-top: 30px;
}

.dot {
    width: 6px;
    height: 6px;
    margin: 0 3px;
    border-radius: 50%;
    background-color: white;
    display: inline-block;
    opacity: 0;
    animation: dot-fade 1.5s infinite;
}

.dot:nth-child(2) {
    animation-delay: 0.5s;
}

.dot:nth-child(3) {
    animation-delay: 1s;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes spin-reverse {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(-360deg); }
}

@keyframes pulse {
    0% { transform: scale(0.8); box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7); }
    100% { transform: scale(1.2); box-shadow: 0 0 20px 10px rgba(255, 255, 255, 0); }
}

@keyframes pulse-ring {
    0% { transform: scale(0.8); opacity: 0; }
    50% { opacity: 1; }
    100% { transform: scale(1.5); opacity: 0; }
}

@keyframes dot-fade {
    0%, 100% { opacity: 0; }
    50% { opacity: 1; }
}

/* Add a subtle shadow effect for depth */
.spinner-box::before {
    content: '';
    position: absolute;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    box-shadow: 0 0 30px 5px rgba(255, 255, 255, 0.1);
    animation: shadow-pulse 2s infinite alternate;
}

@keyframes shadow-pulse {
    from { box-shadow: 0 0 30px 2px rgba(255, 255, 255, 0.1); }
    to { box-shadow: 0 0 40px 8px rgba(255, 255, 255, 0.2); }
}






:root {
    --primary-color: #E0C349;
    --primary-dark: #D1B52F;
    --white: #FFFFFF;
    --text-dark: #333333;
    --shadow: 0 10px 30px rgba(0,0,0,0.08);
    --transition: all 0.3s ease;
  }
  
  /* Base Styles */
  .global-education {
    padding: 80px 0;
    background: linear-gradient(to right, #f9f9f9, #ffffff);
    font-family: 'Poppins', sans-serif;
  }
  
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
  }
  
  .section-header {
    text-align: left;
    margin-bottom: 60px;
    animation: fadeInUp 0.8s ease-out;
  }
  
  .subtitle {
    font-size: 2rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 8px;
  }
  
  .title {
    font-size: 3.5rem;
    color: var(--text-dark);
    font-weight: 700;
    line-height: 1.2;
    margin-top: 0;
  }
  
  .features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
  }
  
  .feature-card {
    background-color: var(--primary-color);
    border-radius: 12px;
    padding: 40px 25px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    transform: translateY(0);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.8s ease-out;
    animation-fill-mode: both;
  }
  
  .feature-card:nth-child(2) {
    animation-delay: 0.2s;
  }
  
  .feature-card:nth-child(3) {
    animation-delay: 0.4s;
  }
  
  .feature-card:nth-child(4) {
    animation-delay: 0.6s;
  }
  
  .feature-card.white {
    background-color: var(--white);
  }
  
  .icon-container {
    margin-bottom: 20px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
  }
  
  .icon {
    width: 45px;
    height: 45px;
    transition: var(--transition);
  }
  
  .feature-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--text-dark);
  }
  
  .feature-card p {
    font-size: 1.1rem;
    color: var(--text-dark);
    opacity: 0.9;
    margin-top: 0;
  }
  
  /* Hover effects for icons */
  .feature-card:hover .icon {
    transform: scale(1.2);
  }
  
  .feature-card:hover .icon path,
  .feature-card:hover .icon rect,
  .feature-card:hover .icon circle {
    stroke: var(--primary-dark);
    transition: stroke 0.3s ease;
  }
  
  /* Card hover effects */
  .feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
  }
  
  .feature-card:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 0;
    background: rgba(255,255,255,0.1);
    left: 0;
    bottom: 0;
    transition: var(--transition);
    z-index: 0;
  }
  
  .feature-card:hover:before {
    height: 100%;
  }
  
  /* Animations */
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  /* Pulse effect on icons */
  @keyframes pulse {
    0% {
      transform: scale(1);
    }
    50% {
      transform: scale(1.1);
    }
    100% {
      transform: scale(1);
    }
  }
  
  .feature-card:hover .icon {
    animation: pulse 1.5s infinite ease-in-out;
  }
  
  /* Responsive Styles */
  @media screen and (max-width: 1024px) {
    .features-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 20px;
    }
    
    .title {
      font-size: 3rem;
    }
    
    .subtitle {
      font-size: 1.8rem;
    }
    
    .feature-card {
      padding: 30px 20px;
    }
    
    .feature-card h3 {
      font-size: 1.3rem;
    }
    
    .feature-card p {
      font-size: 1rem;
    }
  }
  
  @media screen and (max-width: 768px) {
    .global-education {
      padding: 60px 0;
    }
    
    .section-header {
      margin-bottom: 40px;
    }
    
    .title {
      font-size: 2.5rem;
    }
    
    .subtitle {
      font-size: 1.5rem;
    }
    
    .icon {
      width: 40px;
      height: 40px;
    }
    
    .icon-container {
      height: 60px;
    }
  }
  
  @media screen and (max-width: 576px) {
    .features-grid {
      grid-template-columns: 1fr;
      gap: 15px;
    }
    
    .global-education {
      padding: 50px 0;
    }
    
    .section-header {
      text-align: center;
      margin-bottom: 30px;
    }
    
    .title {
      font-size: 2rem;
    }
    
    .subtitle {
      font-size: 1.3rem;
    }
    
    .feature-card {
      padding: 25px 15px;
    }
    
    .feature-card h3 {
      font-size: 1.2rem;
    }
    
    .feature-card p {
      font-size: 0.9rem;
    }
    
    .feature-card:nth-child(1),
    .feature-card:nth-child(2),
    .feature-card:nth-child(3),
    .feature-card:nth-child(4) {
      animation-delay: 0.1s;
    }
  }
  
  /* For very small screens */
  @media screen and (max-width: 375px) {
    .title {
      font-size: 1.8rem;
    }
    
    .subtitle {
      font-size: 1.1rem;
    }
    
    .icon {
      width: 35px;
      height: 35px;
    }
    
    .icon-container {
      height: 50px;
      margin-bottom: 15px;
    }
    
    .feature-card {
      padding: 20px 12px;
    }
  }
  
  /* Fix for Safari and older browsers */
  @supports not (gap: 25px) {
    .features-grid {
      margin: -12.5px;
    }
    
    .feature-card {
      margin: 12.5px;
    }
    
    @media screen and (max-width: 1024px) {
      .features-grid {
        margin: -10px;
      }
      
      .feature-card {
        margin: 10px;
      }
    }
    
    @media screen and (max-width: 576px) {
      .features-grid {
        margin: -7.5px;
      }
      
      .feature-card {
        margin: 7.5px;
      }
    }
  }





  :root {
    --primary-color: #E0C349;
    --primary-dark: #D1B52F;
    --white: #FFFFFF;
    --text-dark: #333333;
    --shadow: 0 10px 30px rgba(0,0,0,0.08);
    --transition: all 0.3s ease;
  }
  
  /* Base Styles */
  .global-education {
    padding: 80px 0;
    background: linear-gradient(to right, #f9f9f9, #ffffff);
    font-family: 'Poppins', sans-serif;
  }
  
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
  }
  
  .section-header {
    text-align: left;
    margin-bottom: 60px;
    animation: fadeInUp 0.8s ease-out;
  }
  
  .subtitle {
    font-size: 2rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 8px;
  }
  
  .title {
    font-size: 3.5rem;
    color: var(--text-dark);
    font-weight: 700;
    line-height: 1.2;
    margin-top: 0;
  }
  
  .features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
  }
  
  .feature-card {
    background-color: var(--primary-color);
    border-radius: 12px;
    padding: 40px 25px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    transform: translateY(0);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.8s ease-out;
    animation-fill-mode: both;
  }
  
  .feature-card:nth-child(2) {
    animation-delay: 0.2s;
  }
  
  .feature-card:nth-child(3) {
    animation-delay: 0.4s;
  }
  
  .feature-card:nth-child(4) {
    animation-delay: 0.6s;
  }
  
  .feature-card.white {
    background-color: var(--white);
  }
  
  .icon-container {
    margin-bottom: 20px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
  }
  
  .icon {
    width: 45px;
    height: 45px;
    transition: var(--transition);
  }
  
  .feature-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--text-dark);
  }
  
  .feature-card p {
    font-size: 1.1rem;
    color: var(--text-dark);
    opacity: 0.9;
    margin-top: 0;
  }
  
  /* Hover effects for icons */
  .feature-card:hover .icon {
    transform: scale(1.2);
  }
  
  .feature-card:hover .icon path,
  .feature-card:hover .icon rect,
  .feature-card:hover .icon circle {
    stroke: var(--primary-dark);
    transition: stroke 0.3s ease;
  }
  
  /* Card hover effects */
  .feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
  }
  
  .feature-card:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 0;
    background: rgba(255,255,255,0.1);
    left: 0;
    bottom: 0;
    transition: var(--transition);
    z-index: 0;
  }
  
  .feature-card:hover:before {
    height: 100%;
  }
  
  /* Animations */
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  /* Pulse effect on icons */
  @keyframes pulse {
    0% {
      transform: scale(1);
    }
    50% {
      transform: scale(1.1);
    }
    100% {
      transform: scale(1);
    }
  }
  
  .feature-card:hover .icon {
    animation: pulse 1.5s infinite ease-in-out;
  }
  
  /* Responsive Styles */
  @media screen and (max-width: 1024px) {
    .features-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 20px;
    }
    
    .title {
      font-size: 3rem;
    }
    
    .subtitle {
      font-size: 1.8rem;
    }
    
    .feature-card {
      padding: 30px 20px;
    }
    
    .feature-card h3 {
      font-size: 1.3rem;
    }
    
    .feature-card p {
      font-size: 1rem;
    }
  }
  
  @media screen and (max-width: 768px) {
    .global-education {
      padding: 60px 0;
    }
    
    .section-header {
      margin-bottom: 40px;
    }
    
    .title {
      font-size: 2.5rem;
    }
    
    .subtitle {
      font-size: 1.5rem;
    }
    
    .icon {
      width: 40px;
      height: 40px;
    }
    
    .icon-container {
      height: 60px;
    }
  }
  
  @media screen and (max-width: 576px) {
    /* CHANGED: Maintain 2-column grid on mobile (2×2 layout) */
    .features-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 15px;
    }
    
    .global-education {
      padding: 50px 0;
    }
    
    .section-header {
      text-align: center;
      margin-bottom: 30px;
    }
    
    .title {
      font-size: 2rem;
    }
    
    .subtitle {
      font-size: 1.3rem;
    }
    
    .feature-card {
      padding: 20px 12px;
    }
    
    .feature-card h3 {
      font-size: 1.1rem;
    }
    
    .feature-card p {
      font-size: 0.9rem;
    }
    
    .icon-container {
      height: 50px;
      margin-bottom: 12px;
    }
    
    .icon {
      width: 32px;
      height: 32px;
    }
    
    /* Adjust animation delays for mobile */
    .feature-card:nth-child(1) { animation-delay: 0.1s; }
    .feature-card:nth-child(2) { animation-delay: 0.2s; }
    .feature-card:nth-child(3) { animation-delay: 0.3s; }
    .feature-card:nth-child(4) { animation-delay: 0.4s; }
  }
  
  /* For very small screens */
  @media screen and (max-width: 375px) {
    .title {
      font-size: 1.8rem;
    }
    
    .subtitle {
      font-size: 1.1rem;
    }
    
    .feature-card {
      padding: 15px 10px;
    }
    
    .feature-card h3 {
      font-size: 1rem;
    }
    
    .feature-card p {
      font-size: 0.8rem;
    }
    
    .icon-container {
      height: 45px;
      margin-bottom: 10px;
    }
    
    .icon {
      width: 28px;
      height: 28px;
    }
  }
  
  /* Fix for Safari and older browsers */
  @supports not (gap: 25px) {
    .features-grid {
      margin: -12.5px;
    }
    
    .feature-card {
      margin: 12.5px;
    }
    
    @media screen and (max-width: 1024px) {
      .features-grid {
        margin: -10px;
      }
      
      .feature-card {
        margin: 10px;
      }
    }
    
    @media screen and (max-width: 576px) {
      .features-grid {
        margin: -7.5px;
      }
      
      .feature-card {
        margin: 7.5px;
      }
    }
  }



  /*   footer css */


