.navbar {
    transition: all 0.3s ease;
}

.navbar.sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}
/*.blog-non{*/
/*    display:none;*/
/*}*/
@media (min-width: 993px) {
    .study-sticky-nav.sticky {
        position: fixed;
        top: 77px;
        left: 0;
        width: 100%;
        border-radius: 0;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }
}
 .form-container {
            max-width: 400px;
            background: #fff;
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
            text-align: center;
        }
        .form-container img {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            object-fit: cover;
        }
        .form-container input {
            border-radius: 10px;
        }
        .btn-submit {
            background-color: #014aae !important;
            color: white;
            font-weight: bold;
            border-radius: 10px;
            width: 100%;
            padding: 12px;
        }
         .vvv {
                    display: inline-flex;
                    align-items: center;
                    justify-content: center;
                    padding: 12px 24px;
                    background-color: #4a6cf7;
                    color: white;
                    text-decoration: none;
                    border-radius: 50px;
                    font-weight: 600;
                    transition: all 0.3s ease;
                    box-shadow: 0 4px 15px rgba(74, 108, 247, 0.3);
                }
                  .vvv:hover {
                    background-color: white !important;
                    transform: translateY(-2px) !important;
                    /* box-shadow: 0 6px 20px rgba(74, 108, 247, 0.4); */
                    border: blue !important;
                    border: 1px solid blue !important;
                  }
                  .vvv i {
                    margin-left: 8px;
                    font-size: 16px;
                }
        .btn-submit:hover {
            background-color: #e65c00;
        }
        .form-footer {
            font-size: 15px;
			margin-top: 20px;
			color: #014aae;
        }

		.cotainer {
			display: flex;
			flex-wrap: wrap;
			justify-content: center;
			gap: 29px; /* Space between items */
			max-width: 1200px;
			margin: auto;
		}

		.country-card {
			width: 23%; /* 4 items per row on desktop */
			background: white;
			border-radius: 10px;
			padding: 15px;
			box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
			text-align: center;
			overflow: hidden; /* Prevents zoomed image overflow */
		}

		.country-card img {
			width: 100%;
			height: 150px;
			object-fit: cover;
			border-radius: 8px;
			transition: transform 0.3s ease-in-out; /* Smooth transition effect */
		}

		/* Zoom-in Effect on Hover */
		.country-card:hover img {
			transform: scale(1.1); /* Slightly enlarges the image */
		}

		/* Country Name Styling */
		.country-name {
			margin-top: 10px;
			font-size: 18px;
			font-weight: bold;
		}

		/* Responsive Design */
		@media (max-width: 1024px) {
			.country-card {
				width: 45%; /* 2 items per row on tablets */
			}
		}
		@media (max-width: 600px) {
			.country-card {
				width: 90%; /* 1 item per row on mobile */
			}
		}
		.container-fluid.about {
			margin-bottom: 80px;
		}

		.about-bg {
			background: linear-gradient(rgba(255, 255, 255, .8), rgba(255, 255, 255, .8)), 
						url('img/about-img-1.png') no-repeat center center/cover;
		}
		@media (max-width: 768px) {
			.about-bg {
				background-size: cover;
				background-position: center;
			}
		}
		
		
		








/*** Spinner Start ***/
/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}
/*** Spinner End ***/

.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    display: flex;
    width: 45px;
    height: 45px;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
    z-index: 99;
}

/*** Button Start ***/
.btn {
    font-weight: 600;
    transition: .5s;
}

.btn-square {
    width: 32px;
    height: 32px;
}

.btn-sm-square {
    width: 34px;
    height: 34px;
}

.btn-md-square {
    width: 44px;
    height: 44px;
}

.btn-lg-square {
    width: 56px;
    height: 56px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 50%;
}

.btn.btn-primary {
    box-shadow: inset 0 0 0 0 #30b249;
}

.btn.btn-primary:hover {
    box-shadow: inset 300px 0 0 0 var(--bs-light) !important;
    color: #0249af !important;
}

.btn.btn-light {
    box-shadow: inset 0 0 0 0 #30b249;
}

.btn.btn-light:hover {
    box-shadow: inset 300px 0 0 0 #0249af;
    color: var(--bs-light) !important;
}

.btn-hover {
    transition: 0.5s;
}

.btn-hover:hover {
    color: var(--bs-secondary) !important;
}

/*** Section Title Start ***/
.section-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    color: #0249af;
}

.section-title::before {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    margin-right: -50px;
    border: 1px solid #0249af !important;
}

.section-title::after {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    margin-left: -50px;
    border: 1px solid #0249af !important;
}


/*** Topbar Start ***/
.fixed-top .container {
    transition: 0.5s;
}

.topbar {
    padding: 2px 10px 2px 20px;
    background: #0249af !important;
}

.topbar a,
.topbar a i {
    transition: 0.5s;
}

.topbar a:hover,
.topbar a i:hover {
    color: var(--bs-secondary) !important;
}


@media (max-width: 768px) {
    .topbar {
        display: none;    
    }
}
/*** Topbar End ***/


/*** Navbar ***/
.navbar-light .navbar-nav .nav-link {
        font-family: camberia;
    position: relative;
    padding: 10px 25px;
    color: #184085;
    font-size: 18px;
    font-weight: 600;
    outline: none;
    transition: .5s;
}
.section-spacing {
  padding-top: 60px !important;
  padding-bottom: 60px !important;
}

.section-spacingg {
  padding-top: 20px !important;
  padding-bottom: 60px !important;
}
.sticky-top.navbar-light .navbar-nav .nav-link {
    padding: 20px 15px;
    color: var(--bs-dark) !important;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--bs-white) !important;
}

.navbar-light .navbar-brand h1 {
    color: var(--bs-white);
}

.sticky-top.navbar-light .navbar-brand h1 {
    color: #0249af;
}
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&family=Poppins:wght@300;400;500;600&display=swap');
        
        :root {
            --primary: #2563eb;
            --primary-light: #3b82f6;
            --dark: #1e293b;
            --light: #f8fafc;
            --gray: #64748b;
        }
        
        .study-germany-section {
            background: linear-gradient(rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.95)), url('https://images.unsplash.com/photo-1528720208104-3d9bd03cc9d4?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            padding: 6rem 2rem;
            position: relative;
        }
        
        .study-container {
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .section-header {
            text-align: center;
            margin-bottom: 4rem;
        }
        
        .section-title {
            font-family: Cambria;
            font-weight: 800;
            font-size: 2.8rem;
            color: var(--dark);
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }
        
        .section-title span {
            color: #0249af;
            position: relative;
        }
        
        .section-title span::after {
            content: '';
            position: absolute;
            bottom: 5px;
            left: 0;
            width: 100%;
            height: 8px;
            background: rgba(37, 99, 235, 0.2);
            z-index: -1;
        }
        
        .section-subtitle {
            font-family: Cambria;
            font-size: 1.2rem;
            color: var(--gray);
            max-width: 800px;
            margin: 0 auto;
            line-height: 1.8;
        }
        
        @import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&family=Poppins:wght@300;400;500;600&display=swap');
        
        :root {
            --primary: #2563eb;
            --primary-light: #3b82f6;
            --dark: #1e293b;
            --light: #f8fafc;
            --gray: #64748b;
        }
        
        .study-germany-section {
            background: linear-gradient(rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.95)), url('https://images.unsplash.com/photo-1528720208104-3d9bd03cc9d4?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            padding: 6rem 2rem;
            position: relative;
            overflow: hidden;
        }
        
        /* Animated floating elements */
        .floating-elements {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            pointer-events: none;
            z-index: 0;
        }
        
        .floating-element {
            position: absolute;
            opacity: 0.1;
            animation: float 15s infinite ease-in-out;
        }
        
        .floating-element:nth-child(1) {
            top: 10%;
            left: 5%;
            font-size: 3rem;
            color: #0249af;
            animation-delay: 0s;
        }
        
        .floating-element:nth-child(2) {
            top: 25%;
            right: 8%;
            font-size: 4rem;
            color: var(--primary-light);
            animation-delay: 2s;
        }
        
        .floating-element:nth-child(3) {
            bottom: 15%;
            left: 10%;
            font-size: 3.5rem;
            color: #0249af;
            animation-delay: 4s;
        }
        
        .floating-element:nth-child(4) {
            bottom: 30%;
            right: 5%;
            font-size: 3rem;
            color: var(--primary-light);
            animation-delay: 6s;
        }
        
        @keyframes float {
            0%, 100% {
                transform: translateY(0) rotate(0deg);
            }
            50% {
                transform: translateY(-20px) rotate(5deg);
            }
        }
        
        .study-container {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }
        
        .section-header {
            text-align: center;
            margin-bottom: 4rem;
        }
        
        .section-title {
            font-family: Cambria;
            font-weight: 800;
            font-size: 2.8rem;
            color: var(--dark);
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }
        
        .section-title span {
            color: #0249af;
            position: relative;
        }
        
        .section-title span::after {
            content: '';
            position: absolute;
            bottom: 5px;
            left: 0;
            width: 100%;
            height: 8px;
            background: rgba(37, 99, 235, 0.2);
            z-index: -1;
        }
        
        .section-subtitle {
            font-family: Cambria;
            font-size: 1.2rem;
            color: var(--gray);
            max-width: 800px;
            margin: 0 auto;
            line-height: 1.8;
        }
        
        .benefits-container {
            /* background: white; */
            /* padding: 3rem; */
            border-radius: 20px;
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
            margin-bottom: 3rem;
            position: relative;
            overflow: hidden;
        }
        
        .benefits-title {
            font-family: Cambria;
            font-weight: 700;
            font-size: 1.5rem;
            color: #0249af;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 3rem;
            text-align: center;
            position: relative;
            display: inline-block;
            left: 50%;
            transform: translateX(-50%);
        }
        
        .benefits-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 100%;
            height: 3px;
            background: linear-gradient(to right, #0249af, transparent);
        }
        
        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }
        
        .benefit-item {
            background: var(--light);
            padding: 2.5rem 2rem;
            border-radius: 15px;
            border-left: 4px solid #0249af;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            z-index: 1;
            transform: translateY(20px);
            opacity: 0;
            animation: fadeInUp 0.8s forwards;
        }
        
        .benefit-item:nth-child(1) { animation-delay: 0.2s; }
        .benefit-item:nth-child(2) { animation-delay: 0.4s; }
        .benefit-item:nth-child(3) { animation-delay: 0.6s; }
        .benefit-item:nth-child(4) { animation-delay: 0.8s; }
        .benefit-item:nth-child(5) { animation-delay: 1.0s; }
        .benefit-item:nth-child(6) { animation-delay: 1.2s; }
        
        @keyframes fadeInUp {
            to {
                transform: translateY(0);
                opacity: 1;
            }
        }
        
        .benefit-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, var(--primary-light), #0249af);
            opacity: 0;
            z-index: -1;
            transition: all 0.3s ease;
        }
        
        .benefit-item:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }
        
        .benefit-item:hover::before {
            opacity: 1;
        }
        
        .benefit-item:hover .benefit-icon {
            transform: rotateY(180deg) scale(1.2);
        }
        
        .benefit-item:hover .benefit-text,
        .benefit-item:hover p {
            color: white;
        }
        
        .benefit-icon {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
            color: #0249af;
            transition: all 0.6s ease;
            display: inline-block;
        }
        
        .benefit-text {
            font-family: Cambria;
            font-weight: 700;
            font-size: 1.3rem;
            margin-bottom: 1rem;
            color: var(--dark);
            transition: all 0.3s ease;
        }
        
        .benefit-item p {
            font-family: Cambria;
            color: var(--gray);
            line-height: 1.8;
            transition: all 0.3s ease;
        }
        
        .cta-button {
            display: inline-block;
            background: linear-gradient(to right, #0249af, var(--primary-light));
            color: white;
            font-family: Cambria;
            font-weight: 600;
            font-size: 1.1rem;
            padding: 1rem 2.5rem;
            border-radius: 50px;
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
            text-align: center;
            margin: 2rem auto 0;
            border: none;
            cursor: pointer;
            position: relative;
            overflow: hidden;
            z-index: 1;
        }
        
        .cta-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(to right, var(--primary-light), #0249af);
            transition: all 0.4s ease;
            z-index: -1;
        }
        
        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(37, 99, 235, 0.4);
        }
        
        .cta-button:hover::before {
            left: 0;
        }
        
        /* Animated university badges */
        .university-badges {
            display: flex;
            justify-content: center;
            gap: 2rem;
            margin: 3rem 0;
            flex-wrap: wrap;
        }
        
        .badge {
            width: 80px;
            height: 80px;
            background: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            animation: pulse 2s infinite;
        }
        
        .badge:nth-child(1) { animation-delay: 0.2s; }
        .badge:nth-child(2) { animation-delay: 0.4s; }
        .badge:nth-child(3) { animation-delay: 0.6s; }
        .badge:nth-child(4) { animation-delay: 0.8s; }
        
        @keyframes pulse {
            0%, 100% {
                transform: scale(1);
            }
            50% {
                transform: scale(1.1);
            }
        }
        
        .badge img {
            max-width: 50px;
            max-height: 50px;
            filter: grayscale(100%) contrast(120%);
            transition: all 0.3s ease;
        }
        
        .badge:hover {
            transform: translateY(-5px) scale(1.1);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
        }
        
        .badge:hover img {
            filter: none;
        }
        
        @media (max-width: 1024px) {
            .section-title {
                font-size: 2.4rem;
            }
        }
        
        @media (max-width: 768px) {
            .study-germany-section {
                padding: 4rem 1.5rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .benefits-container {
                padding: 2rem 1.5rem;
            }
            
            .benefit-item {
                padding: 2rem 1.5rem;
            }
            
            .cta-button {
                width: 100%;
                max-width: 300px;
            }
            
            .badge {
                width: 60px;
                height: 60px;
            }
            
            .badge img {
                max-width: 40px;
                max-height: 40px;
            }
        }
        
        @media (max-width: 480px) {
            .section-title {
                font-size: 1.8rem;
            }
            
            .section-subtitle {
                font-size: 1rem;
            }
            
            .benefits-title {
                font-size: 1.2rem;
            }
            
            .benefit-text {
                font-size: 1.1rem;
            }
            
            .floating-element {
                display: none;
            }
        }
.scholarship-container {
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 60px;
            /* max-width: 1200px; */
            margin: auto;
            background-color: white;
            border-radius: 10px;
            /* box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1); */
            gap: 40px;
        }
        .scholarship-image {
            flex: 1;
            position: relative;
        }
        .scholarship-image img {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
        }
        .overlay-box {
            position: absolute;
            bottom: 10px;
            left: 10px;
            background: rgba(0, 123, 255, 0.9);
            color: #fff;
            padding: 15px;
            border-radius: 8px;
            font-size: 14px;
            max-width: 80%;
        }
        .scholarship-content {
            flex: 1.3;
        }
		.admission-section {
            max-width: 1200px;
            margin: auto;
            padding: 40px 20px;
        }
        .admission-row {
            display: flex;
            gap: 20px;
            margin-bottom: 30px;
        }
		.tuition-section {
            /* max-width: 1000px; */
            margin: auto;
			    margin-bottom: -20px;
            padding: 40px 20px;
            text-align: center;
        }
		 .journey-container {
            max-width: 700px;
            margin: 50px auto;
            background: #fff;
            padding: 20px;
            border-radius: 10px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        }
		 .custom-container {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
        }
        .content-column {
            /* width: 70%; */
            background-color: #fff;
            padding: 20px;
            border-radius: 10px;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        }
        .content-item {
            display: flex;
            align-items: center;
			text-align:left;
            gap: 10px;
            font-weight: bold;
            padding: 10px;
            border-bottom: 1px solid #ddd;
        }
		.unique-section {
            padding: 50px 0;
        }
        .unique-card {
            text-align: center;
            background: white;
            padding: 20px;
            border-radius: 10px;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease-in-out;
        }
		.cat-grid-section {
      padding: 40px 20px;
      max-width: 1200px;
      margin: auto;
    }

    .cat-grid-title {
      text-align: center;
      margin-bottom: 30px;
      font-size: 38px;
      font-weight: bold;
      color: #003B8F;
    }
		.icc{
			margin:auto !important;
		}
    .cat-grid {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 20px;
    }

    .cat-grid-item {
      background-color: white;
	  display: inline-grid;
      padding: 20px;
      border-radius: 12px;
      text-align: center;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
      transition: transform 0.2s;
    }

    .cat-grid-item:hover {
      transform: translateY(-5px);
    }

    .cat-grid-item i {
      display: block;
      margin: auto;
      color: #003B8F;
      margin-bottom: 12px;
    }

    .cat-grid-item span {
		font-size: 16px;
		font-weight: 600;
		color: #333;
	}

    @media (max-width: 1024px) {
      .cat-grid {
        grid-template-columns: repeat(4, 1fr);
      }
    }

    @media (max-width: 600px) {
      .cat-grid {
        grid-template-columns: repeat(1, 1fr);
      }
    }
	.visa-process-section {
      padding: 40px 20px;
      max-width: 1200px;
      margin: auto;
    }

    .visa-process-image img {
      width: 100%;
      max-height: 300px;
      object-fit: cover;
      border-radius: 10px;
      margin-bottom: 30px;
    }

    .visa-process-line {
      height: 2px;
      background: #003B8F;
      width: 100%;
      margin-bottom: 30px;
    }

    .visa-steps {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
    }

    .visa-step {
      background: white;
      padding: 20px;
      flex: 1 1 calc(14.2% - 20px);
      max-width: calc(14.2% - 20px);
      border-radius: 12px;
      box-shadow: 0 4px 10px rgba(0,0,0,0.06);
      display: flex;
      justify-content: space-between;
      align-items: center;
      text-align: left;
      min-width: 275px;
    }

    .visa-step .step-text {
      flex: 1;
      font-size: 17px;
      font-weight: 600;
      color: #333;
      padding-right: 10px;
    }

    .visa-step .step-icon {
      background: #0249af;
	  color:white !important;
      border-radius: 50%;
      padding: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .visa-step .step-icon i {
      color: white;
    }

    @media (max-width: 1024px) {
      .visa-step {
        flex: 1 1 calc(33.3% - 20px);
        max-width: calc(33.3% - 20px);
      }
    }

    @media (max-width: 600px) {
      .visa-step {
        flex: 1 1 calc(100% - 20px);
        max-width: calc(100% - 20px);
      }
    }
		.uni-card-wrapper {
		  display: flex;
		  /* flex-wrap: wrap; */
		  gap: 20px;
		  justify-content: center;
		}

    .uni-card {
      background-color: white;
      border-radius: 20px;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      max-width: 300px;
      width: 100%;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease;
    }

    .uni-card:hover {
      transform: translateY(-5px);
    }

    .uni-image {
      width: 100%;
      height: 160px;
      object-fit: cover;
    }

    .uni-card-content {
      padding: 20px;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .uni-name {
      font-size: 16px;
      font-weight: bold;
      margin: 10px 0 5px;
    }

    .uni-course-count {
      font-size: 14px;
      color: #666;
      display: flex;
      align-items: center;
      gap: 6px;
    }

    .uni-course-count::before {
      content: "🗂️";
    }

    @media (min-width: 600px) {
      .uni-card {
        flex-direction: row;
        height: 160px;
        max-width: 600px;
      }

      .uni-image {
        width: 50%;
        height: 100%;
      }

      .uni-card-content {
        width: 50%;
        padding: 20px;
      }
    }
        .unique-card:hover {
            transform: translateY(-5px);
        }
        .unique-card img {
            width: 100%;
            max-width: 350px;
            border-radius: 10px;
            margin-bottom: 15px;
        }
        .unique-card-title {
            font-size: 1.8rem;
            font-weight: bold;
            color: #333;
        }
		
        .content-item:last-child {
            border-bottom: none;
        }
        .image-columnn {
            /* width: 30%; */
            display: flex;
            justify-content: center;
            align-items: center;
        }
        .image-columnn img {
            border-radius: 10px;
            max-width: 60%;
            height: auto;
        }
        @media (max-width: 768px) {
            .custom-container {
                flex-direction: column;
                text-align: center;
            }
            .content-column, .image-column {
                width: 100%;
            }
        }
        .journey-step {
            display: flex;
            align-items: flex-start;
            gap: 15px;
            margin-bottom: 15px;
        }
        .journey-step i {
            color: #007bff;
            font-size: 20px;
            margin-top: 3px;
        }
        .journey-step p {
            margin: 0;
        }
        @media (max-width: 768px) {
            .journey-container {
                padding: 15px;
            }
        }
        .tuition-row {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
        }
        .tuition-card {
            flex: 1;
            min-width: 250px;
            background: #fff;
            padding: 39px;
            border-radius: 8px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            text-align: center;
        }
        .tuition-title {
                font-size: 19px;
				font-weight: bold;
				color: #222;
				margin-bottom: 18px;
        }
        .tuition-price {
            font-size: 25px;
            color: #0073e6;
            font-weight: bold;
        }
        @media (max-width: 768px) {
            .tuition-row {
                flex-direction: column;
                align-items: center;
            }
            .tuition-card {
                width: 100%;
            }
        }
        .admission-card {
            flex: 1;
            display: flex;
            align-items: center;
            background: #fff;
            padding: 20px;
            border-radius: 8px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        }
        .admission-text {
            flex: 1;
            padding-right: 15px;
        }
        .admission-text h3 {
            font-size: 20px;
            color: #222;
            margin-bottom: 10px;
        }
        .admission-text p {
            font-size: 16px;
            color: #555;
        }
        .admission-image {
            flex: 1;
            text-align: center;
        }
        .admission-image img {
            max-width: 100%;
            height: auto;
            border-radius: 8px;
        }
        @media (max-width: 900px) {
            .admission-row {
                flex-direction: column;
            }
            .admission-card {
                flex-direction: column;
                text-align: center;
            }
            .admission-text {
                padding-right: 0;
                padding-bottom: 10px;
            }
        }
		
		.cost-of-living-section {
            background: #003087;
            padding: 3rem 2rem;
            position: relative;
            overflow: hidden;
        }
        
        /* Floating coins animation */
        .floating-coins {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            pointer-events: none;
            z-index: 0;
        }
        
        .coin {
            position: absolute;
            color: rgba(255, 255, 255, 0.1);
            font-size: 2rem;
            animation: floatCoin 15s infinite linear;
        }
        
        @keyframes floatCoin {
            0% {
                transform: translateY(0) rotate(0deg);
                opacity: 0;
            }
            10% {
                opacity: 0.1;
            }
            90% {
                opacity: 0.1;
            }
            100% {
                transform: translateY(-100vh) rotate(360deg);
                opacity: 0;
            }
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }
        
        .section-header {
            text-align: center;
            margin-bottom: 3rem;
        }
        
        .section-title {
            font-family: Cambria;
            font-weight: 800;
            font-size: 2.8rem;
            color: white;
            margin-bottom: 1rem;
            line-height: 1.2;
        }
        
        .section-subtitle {
            font-family: Cambria;
            font-size: 1.2rem;
            color: rgba(255, 255, 255, 0.9);
            max-width: 800px;
            margin: 0 auto;
        }
        
        .cost-cards-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }
        
        .cost-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            transform: translateY(50px);
            opacity: 0;
            animation: fadeInUp 0.8s forwards;
        }
        
        .cost-card:nth-child(1) { animation-delay: 0.2s; }
        .cost-card:nth-child(2) { animation-delay: 0.4s; }
        .cost-card:nth-child(3) { animation-delay: 0.6s; }
        .cost-card:nth-child(4) { animation-delay: 0.8s; }
        .cost-card:nth-child(5) { animation-delay: 1.0s; }
        .cost-card:nth-child(6) { animation-delay: 1.2s; }
        .cost-card:nth-child(7) { animation-delay: 1.4s; }
        
        @keyframes fadeInUp {
            to {
                transform: translateY(0);
                opacity: 1;
            }
        }
        
        .cost-card:hover {
            transform: translateY(-10px) !important;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
        }
        
        .card-image {
            height: 150px;
            overflow: hidden;
            position: relative;
        }
        
        .card-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: all 0.5s ease;
        }
        
        .cost-card:hover .card-image img {
            transform: scale(1.1);
        }
        
        .card-image::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to top, rgba(2, 73, 175, 0.7), transparent);
        }
        
        .card-content {
            padding: 1.5rem;
            position: relative;
        }
        
        .card-icon {
            width: 60px;
            height: 60px;
            background: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            color: #0249af;
            position: absolute;
            top: -30px;
            right: 20px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
        }
        
        .cost-card:hover .card-icon {
            transform: rotate(15deg) scale(1.1);
            background: #0249af;
            color: white;
        }
        
        .card-title {
            font-family: Cambria;
            font-weight: 700;
            font-size: 1.3rem;
            color: var(--dark);
            margin-bottom: 0.5rem;
        }
        
        .card-price {
            font-family: Cambria;
            font-weight: 800;
            font-size: 1.3rem;
            color: #0249af;
            margin-bottom: 0.5rem;
        }
        
        .card-description {
            font-family: Cambria;
            color: var(--gray);
            font-size: 0.9rem;
        }
        
        .price-comparison {
            margin-top: 4rem;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 15px;
            padding: 2rem;
            backdrop-filter: blur(10px);
        }
        
        .comparison-title {
            font-family: Cambria;
            font-weight: 700;
            font-size: 1.5rem;
            color: white;
            margin-bottom: 1.5rem;
            text-align: center;
        }
        
        .comparison-bar {
            height: 10px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 5px;
            margin-bottom: 2rem;
            overflow: hidden;
            position: relative;
        }
        
        .bar-fill {
            height: 100%;
            width: 70%;
            background: linear-gradient(to right, #fff, #a8d0ff);
            border-radius: 5px;
            position: relative;
            animation: fillBar 2s ease-out forwards;
        }
        
        @keyframes fillBar {
            from { width: 0; }
            to { width: 70%; }
        }
        
        .bar-labels {
            display: flex;
            justify-content: space-between;
            color: white;
            font-family: Cambria;
            font-size: 1.2rem;
        }
        
        .disclaimer {
			text-align: center;
			color: rgb(255 255 255);
			font-weight: 600;
			font-size: 1rem;
			margin-top: 3rem;
			font-style: italic;
		}
        
        @media (max-width: 1024px) {
            .section-title {
                font-size: 2.4rem;
            }
            
            .cost-cards-container {
                grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            }
        }
        
        @media (max-width: 768px) {
            .cost-of-living-section {
                padding: 3rem 1.5rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .section-subtitle {
                font-size: 1rem;
            }
        }
        
        @media (max-width: 480px) {
            .section-title {
                font-size: 1.8rem;
            }
            
            .cost-cards-container {
                grid-template-columns: 1fr;
            }
            
            .coin {
                display: none;
            }
        }
        .scholarship-content h2 {
            font-size: 28px;
            color: #333;
            margin-bottom: 15px;
        }
        .scholarship-content p {
            font-size: 17px;
            color: #555;
            line-height: 1.8;
        }
        .scholarship-list {
            list-style: none;
            padding: 0;
			line-height: 35px;
        }
        .scholarship-list li {
            font-size: 16px;
            color: #222;
            padding-left: 20px;
            margin-bottom: 8px;
            position: relative;
        }
        .scholarship-list li::before {
            content: "✔";
            color: #008000;
            font-size: 16px;
            position: absolute;
            left: 0;
            top: 0;
        }
        .cta-button {
            display: inline-block;
            margin-top: 20px;
            padding: 12px 24px;
            background: #007bff;
            color: #fff;
            text-decoration: none;
            border-radius: 8px;
            font-weight: bold;
            transition: 0.3s;
        }
        .cta-button:hover {
            background: #0056b3;
        }
        @media (max-width: 900px) {
            .scholarship-container {
                flex-direction: column;
                text-align: center;
                padding: 30px;
            }
            .overlay-box {
                position: static;
                max-width: 100%;
                text-align: center;
                margin-top: 10px;
            }
        }
        @media (max-width: 768px) {
            .benefits-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (max-width: 480px) {
            .benefits-grid {
                grid-template-columns: repeat(1, 1fr);
            }
        }
.navbar-light .navbar-brand img {
    max-height: 80px;
    transition: .5s;
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

@media (min-width: 1200px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        border: 0;
        border-radius: 10px;
        transition: .5s;
        opacity: 0;
    }
}

.dropdown .dropdown-menu a:hover {
    background: #0249af;
    color: var(--bs-white);
}

.navbar .nav-item:hover .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    background: #ffffff;
    transition: .5s;
    opacity: 1;
}

@media (max-width: 991.98px) {
    .sticky-top.navbar-light {
        position: relative;
        background: var(--bs-white);
    }

    .navbar-light .navbar-brand h1 {
        color: #0249af;
    }

    .navbar.navbar-expand-lg .navbar-toggler {
        padding: 10px 20px;
        border: 1px solid #0249af;
        color: #0249af;
    }

    .navbar-light .navbar-collapse {
        margin-top: 15px;
        border-top: 1px solid #DDDDDD;
    }

    .navbar-light .navbar-nav .nav-link,
    .sticky-top.navbar-light .navbar-nav .nav-link {
        padding: 10px 0;
        color: var(--bs-dark) !important;
    }

    .navbar-light .navbar-nav .nav-link:hover,
    .navbar-light .navbar-nav .nav-link.active  {
        color: #0249af !important;
    }

    .navbar-light .navbar-brand img {
        max-height: 60px;
    }
}
/* Form Container Styles */
  .gs-pb-form-container {
    position: relative;
    transform: translateX(50px);
    opacity: 0;
    animation: gs-pb-fadeInRight 0.8s 1s forwards;
  }
  
  .gs-pb-form-wrapper {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.2);
    overflow: hidden;
    position: relative;
  }
  
  .gs-pb-form-wrapper::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
      45deg,
      transparent 0%,
      rgba(255, 255, 255, 0.1) 50%,
      transparent 100%
    );
    transform: rotate(45deg);
    animation: gs-pb-form-shine 6s infinite linear;
    z-index: 1;
  }
  
  /* Form Header */
  .gs-pb-form-header {
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
  }
  
  .gs-pb-form-title {
    font-family: Cambria;
    font-weight: 700;
    font-size: 1.8rem;
    color: white;
    margin-bottom: 0.5rem;
  }
  
  .gs-pb-form-subtitle {
    font-family: Cambria;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
  }
  
  /* Form Elements */
  .gs-pb-enquiry-form {
    position: relative;
    z-index: 2;
  }
  
  .gs-pb-form-group {
    position: relative;
    margin-bottom: 1.5rem;
  }
  
  .gs-pb-form-input,
  .gs-pb-form-select {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    padding: 0.8rem 0;
    color: white;
    font-family: Cambria;
    font-size: 1rem;
    transition: all 0.3s ease;
  }
  
  .gs-pb-form-input:focus,
  .gs-pb-form-select:focus {
    outline: none;
    border-bottom-color: #fbbf24;
  }
  
  .gs-pb-form-label {
    position: absolute;
    top: 0.8rem;
    left: 0;
    color: rgba(255, 255, 255, 0.7);
    font-family: Cambria;
    font-size: 1rem;
    transition: all 0.3s ease;
    pointer-events: none;
  }
  
  .gs-pb-form-input:focus + .gs-pb-form-label,
  .gs-pb-form-input:not(:placeholder-shown) + .gs-pb-form-label,
  .gs-pb-form-select:focus + .gs-pb-form-label,
  .gs-pb-form-select:not(:placeholder-shown) + .gs-pb-form-label {
    top: -0.8rem;
    font-size: 0.8rem;
    color: #fbbf24;
  }
  
  .gs-pb-form-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #fbbf24;
    transition: all 0.4s ease;
  }
  
  .gs-pb-form-input:focus ~ .gs-pb-form-line,
  .gs-pb-form-select:focus ~ .gs-pb-form-line {
    width: 100%;
  }
  
  /* Submit Button */
  .gs-pb-form-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%);
    color: #1e293b;
    font-family: Cambria;
    font-weight: 600;
    font-size: 1rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 0 5px 15px rgba(245, 158, 11, 0.4);
    width: 100%;
    position: relative;
    overflow: hidden;
  }
  
  .gs-pb-submit-icon {
    margin-left: 0.5rem;
    transition: all 0.4s ease;
  }
  
  .gs-pb-submit-loader {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
  }
  
  .gs-pb-form-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(245, 158, 11, 0.5);
  }
  
  .gs-pb-form-submit:hover .gs-pb-submit-icon {
    transform: translateX(5px);
  }
  
  .gs-pb-form-submit:active {
    transform: translateY(1px);
  }
  
  /* Animations */
  @keyframes gs-pb-form-shine {
    0% {
      transform: translateX(-100%) rotate(45deg);
    }
    100% {
      transform: translateX(100%) rotate(45deg);
    }
  }
  
  @keyframes gs-pb-fadeInRight {
    to {
      transform: translateX(0);
      opacity: 1;
    }
  }
  /* Base Styles */
  .sg-premium-section {
    position: relative;
    padding: 3rem 0;
    overflow: hidden;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  }
  
  /* Background Elements */
  .sg-ps-background-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
  }
  
  .sg-ps-circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.1;
  }
  
  .sg-ps-circle-1 {
    width: 300px;
    height: 300px;
    background: #3b82f6;
    top: 10%;
    left: 10%;
    animation: sg-ps-float 15s ease-in-out infinite;
  }
  
  .sg-ps-circle-2 {
    width: 400px;
    height: 400px;
    background: #10b981;
    bottom: 10%;
    right: 10%;
    animation: sg-ps-float 18s ease-in-out infinite reverse;
  }
  
  .sg-ps-circle-3 {
    width: 200px;
    height: 200px;
    background: #f59e0b;
    top: 50%;
    left: 70%;
    animation: sg-ps-float 12s ease-in-out infinite 2s;
  }
  
  /* Content Styles */
  .sg-ps-container {
    position: relative;
    z-index: 2;
  }
  
  .sg-ps-section-title {
    font-family: Cambria;
    font-weight: 800;
    font-size: 2.8rem;
    margin-bottom: 3rem;
    line-height: 1.3;
  }
  
  .sg-ps-title-text {
    display: block;
    color: #1e293b;
  }
  
  .sg-ps-title-highlight {
    color: #2563eb;
    position: relative;
    display: inline-block;
  }
  
  .sg-ps-title-highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(37, 99, 235, 0.3);
    z-index: -1;
    border-radius: 4px;
  }
  
  /* Benefits Grid */
  .sg-ps-benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
  }
  
  .sg-ps-benefit-card {
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    display: flex;
    align-items: flex-start;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transform: translateY(20px);
    opacity: 0;
  }
  
  .sg-ps-benefit-card:nth-child(1) { animation: sg-ps-fadeInUp 0.8s 0.2s forwards; }
  .sg-ps-benefit-card:nth-child(2) { animation: sg-ps-fadeInUp 0.8s 0.3s forwards; }
  .sg-ps-benefit-card:nth-child(3) { animation: sg-ps-fadeInUp 0.8s 0.4s forwards; }
  .sg-ps-benefit-card:nth-child(4) { animation: sg-ps-fadeInUp 0.8s 0.5s forwards; }
  .sg-ps-benefit-card:nth-child(5) { animation: sg-ps-fadeInUp 0.8s 0.6s forwards; }
  .sg-ps-benefit-card:nth-child(6) { animation: sg-ps-fadeInUp 0.8s 0.7s forwards; }

  /* Also update the grid layout to accommodate 6 items better */
  .sg-ps-benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
  }

  /* Ensure the icons are different for each benefit */
  .sg-ps-benefit-card:nth-child(5) .sg-ps-benefit-icon i {
    content: "\f0ac"; /* fa-globe icon */
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
  }

  .sg-ps-benefit-card:nth-child(6) .sg-ps-benefit-icon i {
    content: "\f1ab"; /* fa-language icon */
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
  }
  
  .sg-ps-benefit-icon {
    position: relative;
    width: 50px;
    height: 50px;
    background: rgba(37, 99, 235, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
    color: #2563eb;
    font-size: 1.2rem;
    flex-shrink: 0;
  }
  
  .sg-ps-icon-pulse {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(37 99 235 / 71%);
    border-radius: 50%;
    animation: sg-ps-pulse 2s infinite;
    opacity: 0;
  }
  
  .sg-ps-benefit-content h3 {
    font-family: Cambria;
    font-weight: 700;
    font-size: 1.2rem;
    color: #1e293b;
    margin-bottom: 0.5rem;
  }
  
  .sg-ps-benefit-content p {
    font-family: Cambria;
    color: #64748b;
    font-size: 0.9rem;
    line-height: 1.6;
  }
  
  /* CTA Button */
  .sg-ps-cta-wrapper {
    margin-top: 2rem;
  }
  
  .sg-ps-cta-btn {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
    color: white;
    font-family: Cambria;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.3);
    position: relative;
    overflow: hidden;
    z-index: 1;
  }
  
  .sg-ps-cta-icon {
    margin-left: 0.5rem;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  }
  
  .sg-ps-btn-hover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    opacity: 0;
    z-index: -1;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  }
  
  .sg-ps-cta-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(37, 99, 235, 0.4);
  }
  
  .sg-ps-cta-btn:hover .sg-ps-cta-icon {
    transform: translateX(5px);
  }
  
  .sg-ps-cta-btn:hover .sg-ps-btn-hover {
    opacity: 1;
  }
  
  /* Graphic Column */
  .sg-ps-graphic-wrapper {
    position: relative;
    height: 100%;
    min-height: 400px;
    padding: 2rem;
  }
  
  .sg-ps-university-graphic {
    position: relative;
    width: 100%;
    height: 100%;
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transform: translateX(50px);
    opacity: 0;
    animation: sg-ps-fadeInRight 0.8s 1s forwards;
  }
  
  .sg-ps-building {
    position: absolute;
    background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e1 100%);
    border-radius: 8px;
  }
  
  .sg-ps-building-main {
    width: 120px;
    height: 180px;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    animation: sg-ps-buildingFloat 4s ease-in-out infinite;
  }
  
  .sg-ps-building-left {
    width: 80px;
    height: 140px;
    bottom: 60px;
    left: 30%;
    transform: translateX(-50%);
    animation: sg-ps-buildingFloat 5s ease-in-out infinite reverse;
  }
  
  .sg-ps-building-right {
    width: 90px;
    height: 160px;
    bottom: 60px;
    left: 70%;
    transform: translateX(-50%);
    animation: sg-ps-buildingFloat 6s ease-in-out infinite 1s;
  }
  
  .sg-ps-students {
    position: absolute;
    bottom: 40px;
    left: 0;
    width: 100%;
    height: 60px;
  }
  
  .sg-ps-student {
    position: absolute;
    width: 30px;
    height: 50px;
    background: #2563eb;
    border-radius: 15px;
  }
  
  .sg-ps-student-1 {
    left: 25%;
    animation: sg-ps-studentMove 8s linear infinite;
  }
  
  .sg-ps-student-2 {
    left: 50%;
    animation: sg-ps-studentMove 10s linear infinite 2s;
  }
  
  .sg-ps-student-3 {
    left: 75%;
    animation: sg-ps-studentMove 12s linear infinite 1s;
  }
  
  .sg-ps-floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  
  .sg-ps-floating-element {
    position: absolute;
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2563eb;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    font-size: 1rem;
  }
  
  .sg-ps-floating-element:nth-child(1) {
    top: 20%;
    left: 20%;
    animation: sg-ps-floatElement 15s linear infinite;
  }
  
  .sg-ps-floating-element:nth-child(2) {
    top: 30%;
    left: 70%;
    animation: sg-ps-floatElement 18s linear infinite reverse;
  }
  
  .sg-ps-floating-element:nth-child(3) {
    top: 60%;
    left: 40%;
    animation: sg-ps-floatElement 12s linear infinite 2s;
  }
  
  /* Animations */
  @keyframes sg-ps-fadeInUp {
    to {
      transform: translateY(0);
      opacity: 1;
    }
  }
  
  @keyframes sg-ps-fadeInRight {
    to {
      transform: translateX(0);
      opacity: 1;
    }
  }
  
  @keyframes sg-ps-float {
    0% {
      transform: translate(0, 0);
    }
    50% {
      transform: translate(20px, 20px);
    }
    100% {
      transform: translate(0, 0);
    }
  }
  
  @keyframes sg-ps-pulse {
    0% {
      transform: scale(0.8);
      opacity: 0;
    }
    70% {
      transform: scale(1.3);
      opacity: 0.4;
    }
    100% {
      transform: scale(1.4);
      opacity: 0;
    }
  }
  
  @keyframes sg-ps-buildingFloat {
    0%, 100% {
      transform: translateY(0) translateX(-50%);
    }
    50% {
      transform: translateY(-10px) translateX(-50%);
    }
  }
  
  @keyframes sg-ps-studentMove {
    0% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-20px);
    }
    100% {
      transform: translateY(0);
    }
  }
  
  @keyframes sg-ps-floatElement {
    0% {
      transform: translate(0, 0) rotate(0deg);
    }
    25% {
      transform: translate(20px, 20px) rotate(90deg);
    }
    50% {
      transform: translate(40px, 0) rotate(180deg);
    }
    75% {
      transform: translate(20px, -20px) rotate(270deg);
    }
    100% {
      transform: translate(0, 0) rotate(360deg);
    }
  }
  
  /* Responsive Design */
  @media (max-width: 992px) {
    .sg-ps-section-title {
      font-size: 2.2rem;
    }
    
    .sg-ps-benefits-grid {
      grid-template-columns: 1fr 1fr;
    }
    
    .sg-ps-graphic-wrapper {
      min-height: 300px;
      margin-top: 3rem;
    }
  }
  
  @media (max-width: 768px) {
    .sg-ps-section-title {
      font-size: 2rem;
    }
    
    .sg-ps-benefits-grid {
      grid-template-columns: 1fr;
    }
    
    .sg-ps-benefit-card {
      padding: 1.2rem;
    }
    
    .sg-ps-cta-btn {
      font-size: 1rem;
      padding: 0.8rem 1.5rem;
    }
  }
  /* Updated Graphic Column Styles */
  .sg-ps-graphic-col {
    position: relative;
  }

  .sg-ps-graphic-wrapper {
    position: relative;
    height: 100%;
    min-height: 300px;
	padding: 0rem;
    margin-top: -49px;
  }

  .sg-ps-university-img {
    width: 100%;
    /*height: 80vh;*/
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    transform: perspective(1000px) rotateY(-20deg) translateX(50px);
    opacity: 0;
    animation: sg-ps-fadeInRight 0.8s 1s forwards;
    transition: all 0.5s ease;
  }
    /* Glide.js custom arrows */
        .glide__arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255, 255, 255, 0.7);
            border: none;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
            font-size: 18px;
            cursor: pointer;
            z-index: 1;
            transition: all 0.3s ease;
        }
        
        .glide__arrow:hover {
            background: white;
        }
        
        .glide__arrow--left {
            left: -20px;
        }
        
        .glide__arrow--right {
            right: -20px;
        }
        
        /* Glide bullets */
        .glide__bullets {
            display: flex;
            justify-content: center;
            margin-top: 20px;
        }
        
        .glide__bullet {
            width: 10px;
            height: 10px;
            background: #cbd5e0;
            border-radius: 50%;
            margin: 0 5px;
            border: none;
            padding: 0;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .glide__bullet--active {
            background: #4299e1;
        }
  .sg-ps-university-img:hover {
    transform: perspective(1000px) rotateY(0deg) translateX(0);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
  }

  /* Floating elements */
  .sg-ps-floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
  }

  .sg-ps-floating-element {
    position: absolute;
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2563eb;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    font-size: 1rem;
    animation: sg-ps-floatElement 15s infinite linear;
  }

  .sg-ps-floating-element:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
  }

  .sg-ps-floating-element:nth-child(2) {
    top: 60%;
    left: 80%;
    animation-delay: 2s;
    animation-duration: 12s;
  }

  .sg-ps-floating-element:nth-child(3) {
    top: 40%;
    left: 20%;
    animation-delay: 4s;
    animation-duration: 18s;
  }

  /* Animations */
  @keyframes sg-ps-fadeInRight {
    to {
      transform: perspective(1000px) rotateY(0deg) translateX(0);
      opacity: 1;
    }
  }

  @keyframes sg-ps-floatElement {
    0% {
      transform: translate(0, 0) rotate(0deg);
    }
    25% {
      transform: translate(20px, 20px) rotate(90deg);
    }
    50% {
      transform: translate(40px, 0) rotate(180deg);
    }
    75% {
      transform: translate(20px, -20px) rotate(270deg);
    }
    100% {
      transform: translate(0, 0) rotate(360deg);
    }
  }

  /* Responsive Adjustments */
  @media (max-width: 992px) {
    .sg-ps-graphic-wrapper {
      min-height: 250px;
      margin-top: 2rem;
    }
    
    .sg-ps-university-img {
      max-width: 400px;
      margin: 0 auto;
      display: block;
    }
  }
  /* Responsive Design */
  @media (max-width: 768px) {
    .gs-pb-form-container {
      margin-top: 2rem;
      transform: translateY(20px);
      animation: gs-pb-fadeInUp 0.8s 1s forwards;
    }
    
    .gs-pb-form-wrapper {
      padding: 1.5rem;
    }
    
    .gs-pb-form-title {
      font-size: 1.5rem;
    }
  }
@media (min-width: 992px) {
    .navbar-light {
        position: absolute;
		background: white;
        width: 100%;
        top: 0;
        left: 0;
        border-bottom: 1px solid rgba(255, 255, 255, .1);
        z-index: 999;
    }
    .sticky-top.navbar-light {
        /* position: fixed; */
        background: var(--bs-light);
    }
    .navbar-light .navbar-nav .nav-link::before {
        position: absolute;
        content: "";
        width: 100%;
        height: 0;
        bottom: -1px;
        left: 0;
        background: #0249af;
        transition: .5s;
        z-index: -1;
    }
    .navbar-light .navbar-nav .nav-link:hover::before,
    .navbar-light .navbar-nav .nav-link.active::before {
        height: calc(100% + 1px);
        left: 1px;
    }

    .navbar-light .navbar-nav .nav-link.nav-contact::before {
        display: none;
    }
}

/*** Carousel Hero Header Start ***/
.carousel-header .carousel-control-prev,
.carousel-header .carousel-control-next {
    background: transparent;
}

.carousel-header .carousel-control-prev .carousel-control-prev-icon {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    padding: 25px 30px;
    border-top-left-radius: 0;
    border-top-right-radius: 50px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 50px;
    background-size: 60% 60%;
}

.carousel-header .carousel-control-next .carousel-control-next-icon {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    padding: 25px 30px;
    border-top-left-radius: 50px;
    border-top-right-radius: 0;
    border-bottom-left-radius: 50px;
    border-bottom-right-radius: 0;
    background-size: 60% 60%;

}

.carousel-header .carousel .carousel-indicators li,
.carousel-header .carousel .carousel-indicators li,
.carousel-header .carousel .carousel-indicators li {
    opacity: 0;
}

.carousel-header .carousel-inner .carousel-item {
    position: relative;
    min-height: 100vh 
}

.carousel-header .carousel-inner .carousel-item img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-header .carousel-inner .carousel-item .carousel-caption  {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 10px;
    left: 0;
    /*padding-top: 60px;*/
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, 0.5));
    background-size: cover;
}

@media (max-width: 768px) {
    .carousel-header .carousel-inner .carousel-item img,
    .carousel-header .carousel-inner .carousel-item .carousel-caption {
        height: 700px;
        margin-top: -170px;
    }

    .carousel-header {
        height: 700px !important;
    }

    .carousel-header .carousel-control-prev .carousel-control-prev-icon,
    .carousel-header .carousel-control-next .carousel-control-next-icon {
        opacity: 0;
    }
    
    .search-bar {
        margin-top: -100px;
        transition: 0.5s;
    }
}
.pa{
	padding:15px;
}
.bor-r {
    border-radius: 50px;
}
.baner{
    border: 1px solid white;
    padding: 13px;
    font-size: 20px;
	font-weight:500;
}
.pp{
	font-size: 20px;
}
.hom-p{
	font-size: 20px;
}
.hh{
	font-size: 50px;
}
/*** Carousel Hero Header End ***/


/*** Single Page Hero Header Start ***/


.flag-img {
    max-width: 120px;
    position: absolute;
    bottom: 20px;
    right: 20px;
}
.h4 {
    font-size: 20px;
    font-weight: 600;
}



.content {
            flex: 1;
            min-width: 300px;
            padding: 20px;
			    text-align: left;
        }
        .content h2 {
			color: #0249af;
			font-size: 50px;
			font-weight: 600;
		}
        .content p {
			margin: 20px 0;
			color: #000000;
			font-size: 19px;
		}
        .stats {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
        }
        .stats div {
            font-size: 24px;
            font-weight: bold;
            color: #0249af;
        }
        .cards {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
        }
        .card {
            flex: 1;
            min-width: 200px;
            padding: 20px;
            border-radius: 10px;
            color: white;
            text-align: center;
        }
        .purple {
            background: #0249af;
        }
        .blue {
            background: #0249af;
        }
        .gray {
            background: #ddd;
            color: black;
        }
        .image-container {
            flex: 1;
            min-width: 300px;
            position: relative;
        }
        .image-container img {
            width: 100%;
            border-radius: 40% 0 0 40%;
            object-fit: cover;
        }
        @media (max-width: 768px) {
            .container {
                flex-direction: column;
                text-align: center;
            }
            .image-container img {
                border-radius: 20px;
            }
        }
		.coontainer {
            max-width: 1200px;
            margin: auto;
            padding: 40px 20px;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: center;
        }
/*** Single Page Hero Header End ***/


/*** About Start ***/
.about .container .section-about-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    color: #0249af;
}

.about .container .section-about-title::before {
    /* content: ""; */
    width: 50px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    margin-right: -50px;
    border: 1px solid #0249af !important;
}
/*** About End ***/


/*** Services Start ***/
.service .service-content-inner {
    transition: 0.5s;
}
.service .service-content-inner:hover {
    position: relative;
    background: #0249af !important;
}

.service .service-content-inner .service-content h5,
.service .service-content-inner .service-content p,
.service .service-content-inner .service-icon i {
    transition: 0.5s;
}

.service .service-content-inner:hover .service-content h5,
.service .service-content-inner:hover .service-content p,
.service .service-content-inner:hover .service-icon i {
    color: var(--bs-white) !important;
}
/*** Service End ***/


/*** Destination Start ***/
.destination .tab-class .tab-content .tab-pane .destination-img {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    z-index: 1;
}

.destination .tab-class .tab-content .tab-pane .destination-img .destination-overlay {
    position: absolute;
    bottom: -100%;
    left: 0;
    z-index: 3;
    transition: 0.5s;
}

.destination .tab-class .tab-content .tab-pane .destination-img .search-icon {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    display: flex;
    justify-content: end;
    padding: 20px 20px 0 0;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    transition: 0.5s;

}

.destination .tab-class .tab-content .tab-pane .destination-img .search-icon a i {
    opacity: 0;
    transition: 0.5s;
}

.destination .tab-class .nav-item {
    padding: 0 0 20px 0;
}
.destination .tab-class .nav-item a.active {
    background: #0249af !important;
}

.destination .tab-class .nav-item a.active span {
    color: var(--bs-white) !important;
}

.destination .tab-class .tab-content .destination-img:hover .search-icon {
    background: rgb(52 179 78 / 21%);
}

.destination .tab-class .tab-content .destination-img:hover .destination-overlay {
    bottom: 0;
}

.destination .tab-class .tab-content .destination-img:hover .search-icon a i {
    opacity: 1;
}

.destination .tab-class .tab-content .destination-img img {
    transition: 0.5s;
}
.pa.active {
  animation: bounceIn 0.6s;
}
@keyframes bounceIn {
  0% { transform: scale(0.9); opacity: 0; }
  60% { transform: scale(1.05); }
  100% { transform: scale(1); opacity: 1; }
}
.destination .tab-class .tab-content .destination-img:hover img {
    transform: scale(1.2);
}
/*** Destination End ***/


/*** Packages Start ***/
.packages .packages-item .packages-img {
    position: relative;
    overflow: hidden;
    transition: 0.5s;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
    z-index: 1;
}

.packages .packages-item .packages-img .packages-info {
    background: rgba(0, 0, 0, .3);
}

.packages .packages-item .packages-img .packages-info small,
.packages .packages-item .packages-img .packages-info small i {
    color: var(--bs-white);
    transition: 0.5s;
}

.packages .packages-item .packages-img::after {
    position: absolute;
    content: "";
    width: 0;
    height: 0;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 0px solid;
    border-radius: 10px !important;
    visibility: hidden;
    transition: 0.7s;
    z-index: 3;
}

.packages .packages-item .packages-img:hover.packages-img::after {
    width: 100%;
    height: 100%;
    border: 300px solid;
    border-color: rgba(19, 53, 123, 0.6) rgba(19, 53, 123, 0.6) rgba(19, 53, 123, 0.6) rgba(19, 53, 123, 0.6);
    visibility: visible;
}

.packages .packages-item .packages-img small,
.packages .packages-item .packages-img small i {
    transition: 0.5s;
}

.packages .packages-item .packages-img:hover small,
.packages .packages-item .packages-img:hover small i {
    color: var(--bs-white) !important;

}

.packages .packages-item .packages-img img {
    transition: 0.5s;
}

.packages .packages-item .packages-img:hover img {
    transform: scale(1.3);
}

.packages .packages-item .packages-img .packages-price {
    position: absolute;
    width: 100px; 
    top: 0; 
    left: 50%; 
    transform: translateX(-50%);
    display: inline-block;
    background: #0249af;
    color: var(--bs-white);
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px; 
    z-index: 5;
}

.packages .packages-carousel {
    position: relative;
}

.packages .packages-carousel .owl-nav .owl-prev {
    position: absolute;
    top: -50px;
    left: 0;
    padding: 5px 30px;
    border: 1px solid #0249af;
    border-radius: 30px;
    transition: 0.5s;
}

.packages .packages-carousel .owl-nav .owl-next {
    position: absolute;
    top: -50px;
    right: 0;
    padding: 5px 30px;
    border: 1px solid #0249af;
    border-radius: 30px;
    transition: 0.5s;
}

.packages .packages-carousel .owl-nav .owl-prev i,
.packages .packages-carousel .owl-nav .owl-next i {
    color: #0249af;
    font-size: 17px;
    transition: 0.5s;
}

.packages .packages-carousel .owl-nav .owl-prev:hover,
.packages .packages-carousel .owl-nav .owl-next:hover {
    background: #0249af;
}

.packages .packages-carousel .owl-nav .owl-prev:hover i,
.packages .packages-carousel .owl-nav .owl-next:hover i {
    color: var(--bs-white);
}
/*** Packages End ***/


/*** Explore Tour Start ***/
.ExploreTour .tab-class .nav-item {
    padding: 0 0 20px 0;
}
.ExploreTour .tab-class .nav-item a.active {
    background: #0249af !important;
}

.ExploreTour .tab-class .nav-item a.active span {
    color: var(--bs-white) !important;
}


/* National Tour Start */
.ExploreTour #NationalTab-1 .national-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.ExploreTour #NationalTab-1 .national-item img {
    transition: 0.5s;
}

.ExploreTour #NationalTab-1 .national-item:hover img {
    transform: scale(1.2);
}

.ExploreTour #NationalTab-1 .national-item .national-content {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-radius: 10px;
    padding: 20px;
    background: rgba(0, 0, 0, .2);
    display: flex;
    align-items: end;
    justify-content: center;
    transition: 0.5s;
}

.ExploreTour #NationalTab-1 .national-item:hover .national-content {
    background: rgba(19, 53, 123, .6);
}

.ExploreTour #NationalTab-1 .national-item .national-plus-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: 0.5s;
    opacity: 0;
}

.ExploreTour #NationalTab-1 .national-item:hover .national-plus-icon {
    opacity: 1;
}

.ExploreTour #NationalTab-1 .national-item .tour-offer {
    position: absolute;
    top: -1px;
    left: -1px;
    padding: 20px;
    border-top-right-radius: 40px;
    border-top-left-radius: 20px;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 80px;
    background: #0249af;
    color: var(--bs-white);
}

/* International Tour Start */
.ExploreTour #InternationalTab-2 .international-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.ExploreTour #InternationalTab-2 .international-item img {
    transition: 0.5s;
}

.ExploreTour #InternationalTab-2 .international-item:hover img {
    transform: scale(1.2);
}

.ExploreTour #InternationalTab-2 .international-item .tour-offer {
    position: absolute;
    top: -1px;
    left: -1px;
    padding: 20px;
    border-top-right-radius: 30px;
    border-top-left-radius: 20px;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 80px;
    background: #0249af;
    color: var(--bs-white);
}

.ExploreTour #InternationalTab-2 .international-item .international-content {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-radius: 10px;
    padding: 20px;
    background: rgba(0, 0, 0, .3);
    display: flex;
    align-items: end;
    justify-content: center;
    transition: 0.5s;
}

.ExploreTour #InternationalTab-2 .international-item:hover .international-content {
    background: rgba(19, 53, 123, .6);
}

.ExploreTour #InternationalTab-2 .international-item .international-content .international-info a {
    font-size: 14px;
}

.ExploreTour #InternationalTab-2 .international-item .international-plus-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: 0.5s;
    opacity: 0;
}

.ExploreTour #InternationalTab-2 .international-item:hover .international-plus-icon {
    opacity: 1;
}

/* carousel Start */
.ExploreTour #InternationalTab-2 .InternationalTour-carousel .international-item {
    position: relative;
    overflow: hidden;
}

.ExploreTour #InternationalTab-2 .InternationalTour-carousel .owl-dots {
    margin-top: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ExploreTour #InternationalTab-2 .InternationalTour-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    background: var(--bs-light);
    border: 1px solid #0249af;
    border-radius: 10px;
    transition: 0.5s;
}

.ExploreTour #InternationalTab-2 .InternationalTour-carousel .owl-dot.active {
    width: 40px;
    background: #0249af;
}
/*** Explore Tour End ***/


/*** Gallery Start ***/
.gallery .gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.gallery .gallery-item img {
    min-height: 300px;
    object-fit: cover;
}

.gallery .gallery-item .gallery-content {
    position: absolute;
    width: 100%;
    height: 100%;
    bottom: 0;
    left: 0;
    padding: 15px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: end;
    transition: 0.5s;
}

.gallery .gallery-item .gallery-content .gallery-info {
    position: relative;
    margin-bottom: -100%;
    opacity: 0;
    transition: 0.5s;
}

.gallery .gallery-item .gallery-plus-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: 0.5s;
    opacity: 0;
}

.gallery .gallery-item:hover .gallery-content .gallery-info,
.gallery .gallery-item:hover .gallery-plus-icon {
   opacity: 1;
   margin: 0;
}

.gallery .gallery-item img {
    transition: 0.5s;
}

.gallery .gallery-item:hover img {
    transform: scale(1.2);
}

.gallery .gallery-item:hover .gallery-content {
    background: rgb(52 179 78 / 29%);
}

.gallery .tab-class .nav-item {
    padding: 0 0 20px 0;
}
.gallery .tab-class .nav-item a.active {
    background: #0249af !important;
}

.gallery .tab-class .nav-item a.active span {
    color: var(--bs-white) !important;
}

/*** Gallery End ***/

/*** Tour Booking Start ***/
.booking {
    background: linear-gradient(rgb(2 73 175 / 52%), rgb(2 73 175 / 61%)), url(../img/tour-booking-bg.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    
}


.booking .container .section-booking-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    color: var(--bs-white);
}

.booking .container .section-booking-title::before {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    margin-right: -50px;
    border: 1px solid var(--bs-white) !important;
}

.booking .container form .btn.btn-primary {
    box-shadow: inset 0 0 0 0 #30b249;
}

.booking .container form .btn.btn-primary:hover {
    box-shadow: inset 800px 0 0 0 var(--bs-light) !important;
    color: #0249af !important;
}



/*** Tour Booking end ***/

/*** Travel Guide Start ***/
.guide .guide-item .guide-img {
    position: relative;
}

.guide .guide-item .guide-img .guide-icon {
    position: absolute;
    bottom: 0; 
    left: 50%; 
    transform: translate(-50%, -50%);
    margin-bottom: -50px;
    display: flex;
    justify-content: center;
    border: 1px solid #0249af;
    background: var(--bs-light);
    z-index: 9;
}

.guide .guide-item .guide-img .guide-img-efects {
    position: relative;
    overflow: hidden;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
}

.guide .guide-item .guide-img .guide-img-efects::after {
    content: "";
    width: 100%;
    height: 0;
    position: absolute;
    top: 0;
    left: 0;
    transition: 0.5s;
}

.guide .guide-item:hover .guide-img-efects::after {
    height: 100%;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
    background: rgb(52 179 78 / 28%);
}

.guide .guide-item .guide-img-efects img {
    transition: 0.5s;
}
.guide .guide-item:hover .guide-img-efects img {
    transform: scale(1.1);
}

.guide .guide-item .guide-title {
    position: relative;
    background: var(--bs-light);
    transition: 0.5s;
}

.guide .guide-item .guide-title::after {
    content: "";
    width: 100%;
    height: 0;
    position: absolute;
    bottom: 0;
    left: 0;
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
    transition: 0.5s;
}

.guide .guide-item:hover .guide-title::after {
    height: 100%;
    background: #0249af !important;
    color: var(--bs-white);
}

.guide .guide-item .guide-title .guide-title-inner,
.guide .guide-item:hover .guide-title .guide-title-inner h4 {
    transition: 0.5s;
}

.guide .guide-item:hover .guide-title .guide-title-inner {
    position: relative;
    color: var(--bs-white) !important;
    z-index: 2;
}

.guide .guide-item:hover .guide-title .guide-title-inner h4 {
    color: var(--bs-white);
}
/*** Travel Guide End ***/


/*** Blog Start ***/
.blog .blog-item .blog-img {
    position: relative;
}

.blog .blog-item .blog-img .blog-info {
    position: absolute;
    width: 100%;
    left: 0;
    bottom: 0;
    display: flex;
    background: rgba(255, 255, 255, .2);
    color: var(--bs-white);
}

.blog .blog-item .blog-img .blog-img-inner {
    position: relative;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
}

.blog .blog-item .blog-img .blog-img-inner .blog-icon {
    position: absolute;
    width: 100%;
    height: 0;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
}

.blog .blog-item .blog-img .blog-img-inner .blog-icon a {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: 0.5s;
}

.blog .blog-item .blog-img:hover .blog-img-inner .blog-icon a {
    opacity: 1;
}

.blog .blog-item .blog-img:hover .blog-img-inner .blog-icon {
    height: 100%;
    background: rgba(19, 53, 123, .6);
    opacity: 1;
}

.blog .blog-item .blog-img .blog-img-inner {
    overflow: hidden;
}

.blog .blog-item .blog-img .blog-img-inner img {
    transition: 0.5s;
}

.blog .blog-item .blog-img:hover .blog-img-inner img {
    transform: scale(1.2);
}
/*** Blog End ***/

/*** Testimonial Start ***/
.testimonial .testimonial-carousel {
    position: relative;
}

.testimonial .testimonial-carousel .testimonial-item .testimonial-img {
    position: relative;
    width: 100px; 
    height: 100px; 
    top: 0; left: 50%; 
    transform: translate(-50%, -50%);
    border: 3px solid #0249af; 
    border-style: dotted;
    border-radius: 50%;
}

.testimonial .testimonial-carousel .owl-dots {
    margin-top: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial .testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    background: var(--bs-light);
    border: 1px solid #0249af;
    border-radius: 10px;
    transition: 0.5s;
}

.testimonial .testimonial-carousel .owl-dot.active {
    width: 40px;
    background: #0249af;
}

.testimonial .testimonial-carousel .owl-nav .owl-prev {
    position: absolute;
    top: -55px;
    left: 0;
    padding: 5px 30px;
    border: 1px solid #0249af;
    border-radius: 30px;
    transition: 0.5s;
}

.testimonial .testimonial-carousel .owl-nav .owl-next {
    position: absolute;
    top: -55px;
    right: 0;
    padding: 5px 30px;
    border: 1px solid #0249af;
    border-radius: 30px;
    transition: 0.5s;
}

.testimonial .testimonial-carousel .owl-nav .owl-prev i,
.testimonial .testimonial-carousel .owl-nav .owl-next i {
    color: #0249af;
    font-size: 17px;
    transition: 0.5s;
}

.testimonial .testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial .testimonial-carousel .owl-nav .owl-next:hover {
    background: #0249af;
}

.testimonial .testimonial-carousel .owl-nav .owl-prev:hover i,
.testimonial .testimonial-carousel .owl-nav .owl-next:hover i {
    color: var(--bs-white);
}

.testimonial .testimonial-carousel .owl-item.center .testimonial-item .testimonial-comment {
    background: #0249af !important;
    color: var(--bs-white);
    transition: 0.5s;
}

.testimonial .testimonial-carousel .owl-item.center .testimonial-item .testimonial-img {
    border: 3px solid var(--bs-white); 
    border-style: dotted;
    transition: 0.5s;
}
/*** Testimonial End ***/

/*** Contact Start ***/
.contact .container form .btn.btn-primary {
    box-shadow: inset 0 0 0 0 #30b249;
}

.contact .container form .btn.btn-primary:hover {
    box-shadow: inset 1000px 0 0 0 var(--bs-light) !important;
    color: #0249af !important;
}
/*** Contact End ***/

/*** Subscribe Start ***/
.subscribe {
    background: linear-gradient(rgb(52 179 78 / 28%), rgb(52 179 78 / 20%)), url(../img/subscribe-img.jpg);
    background-attachment: fixed;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.subscribe .subscribe-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    color: var(--bs-white);
}

.subscribe .subscribe-title::before {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    margin-right: -50px;
    border: 1px solid var(--bs-white) !important;
}

.subscribe .subscribe-title::after {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    margin-left: -50px;
    border: 1px solid var(--bs-white) !important;
}
/*** Subscribe End ***/

/*** Footer Start ***/



/*** Footer End ***/

/*** copyright Start ***/
.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: #014aae !important;
    color: white !important;
}
/*** copyright end ***/
.fade-out {
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}
.scholarship-card {
    background: #0249af0f;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    padding: 15px;
    text-align: center;
    max-width: 300px;
}

.scholarship-card img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.scholarship-card h2 {
    font-size: 20px;
    font-weight: 200;
    margin: 19px 0;
    text-align: left;
}

.scholarship-card p {
    font-size: 17px;
    margin: 11px 0;
    text-align: left;
    font-weight: 100;
}
.college-img {
    width: 110px;
    /* margin: auto; */
}
.scholarship-card i {
    margin-right: 5px;
}
	

		.rowe {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            align-items: center;
        }

        .col {
            flex: 1;
            min-width: 300px;
            padding: 20px;
        }
		.text-righttt{
			text-align:right;
		}
        .small-heading {
            font-size: 14px;
            color: #555;
            text-transform: uppercase;
            font-weight: bold;
        }

        .man-heading {
            font-size: 24px;
            font-weight: bold;
            margin: 10px 0;
        }

        .contet {
            font-size: 16px;
            color: #444;
            margin-bottom: 10px;
        }

        .cta-link {
			display: inline-block !important; /* Ensures it aligns with text */
			text-align: right !important;
		}


        .cta-link:hover {
            background: #0056b3;
        }

        .image-column img {
            width: 100%;
            height: auto;
            border-radius: 10px;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .rowe {
                flex-direction: column;
                text-align: center;
            }

            .cta-link {
				display: inline-block; /* Ensures it aligns with text */
				text-align: right;
			}

        }	
		.image-containe {
			flex: 0.7;
            min-width: 300px;
            padding: 20px;
			overflow: hidden;
			clip-path: ellipse(57% 52% at 50% 50%);
		}

		.image-containe img {
			width: 100%;
			height: 100%;
			object-fit: cover;
		}
		.fade-in {
		  opacity: 0;
		  transform: translateY(30px);
		  transition: opacity 1.5s ease-out, transform 1.5s ease-out;
		  position: relative;
		}

		.show {
		  opacity: 1;
		  transform: translateY(0);
		}

		/* Style for the seconds counter */
		.counter {
		  position: absolute;
		  top: -30px;
		  left: 50%;
		  transform: translateX(-50%);
		  font-size: 20px;
		  font-weight: bold;
		  color: red;
		  display: none;
		}
		.card {
            width: 350px;
            background: #fff;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            margin: 20px;
            transform: translateY(0);
            will-change: transform, box-shadow;
        }
        
        .card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
        }
        
        .card a {
            text-decoration: none;
            display: block;
            color: inherit;
        }
        
        .card img.imf-rad {
            width: 100%;
            height: 200px;
            object-fit: cover;
            border-radius: 14px 14px 0 0;
            transition: transform 0.5s ease, filter 0.3s ease;
            transform-origin: center center;
        }
        
        .card:hover img.imf-rad {
            transform: scale(1.03);
            filter: brightness(1.05);
        }
        
        .card-content {
            padding: 20px;
            position: relative;
            background: white;
            z-index: 2;
        }
        
        .university-info {
            display: flex;
            align-items: flex-start;
            justify-content: space-between;
            margin-bottom: 15px;
            position: relative;
        }
        
        .university-info::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 100%;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(1, 74, 174, 0.3), transparent);
        }
        
        .university-info img {
            width: 80px !important;
            height: auto !important;
            object-fit: contain;
            transition: transform 0.3s ease;
            /* filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1)); */
        }
        
        .card:hover .university-info img {
            transform: scale(1.05);
        }
        
        .university-info p {
            font-size: 14px;
            color: #555;
            display: flex;
            align-items: center;
        }
        
        .university-info i {
            color: #014aae;
            margin-right: 5px;
            font-size: 16px;
        }
        
        .course-title {
            font-size: 18px;
            font-weight: 700;
            margin: 15px 0 5px;
            color: #014aae;
            text-align: left;
            position: relative;
            display: inline-block;
        }
        
        .course-title::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: #014aae;
            transition: width 0.3s ease;
        }
        
        .card:hover .course-title::after {
            width: 100%;
        }
        
        .course-titl {
            font-size: 15px;
            font-weight: 600;
            margin-top: 10px;
            color: #444;
            text-align: left;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        .course-titl i {
            color: #014aae;
            font-size: 14px;
        }
        
        .details {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: 20px;
            padding-top: 15px;
            border-top: 1px solid rgba(221, 221, 221, 0.5);
        }
        
        a.view-courese {
            background: #014aae;
            color: white;
            padding: 8px 15px;
            border-radius: 6px;
            font-size: 14px;
            font-weight: 600;
            transition: all 0.3s ease;
            display: inline-block;
            box-shadow: 0 2px 5px rgba(1, 74, 174, 0.2);
        }
        
        a.view-courese:hover {
            background: #003b8e;
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(1, 74, 174, 0.3);
        }
        
        .right-text {
            font-size: 14px;
            color: #666;
            font-weight: 600;
            text-align: right;
            flex-shrink: 0;
            margin-left: 10px;
        }
        
        /* Hover effect for entire card */
        .card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(1, 74, 174, 0.1) 0%, rgba(255, 255, 255, 0) 100%);
            z-index: 1;
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .card:hover::before {
            opacity: 1;
        }
        
        /* Responsive Styles */
        @media (max-width: 768px) {
            .card {
                width: 320px;
                margin: 15px;
            }
            
            .card-content {
                padding: 15px;
            }
            
            .course-title {
                font-size: 17px;
            }
            
            .course-titl {
                font-size: 14px;
            }
        }
        
        @media (max-width: 480px) {
            .card {
                width: 100%;
                max-width: 350px;
                margin: 15px auto;
            }
            
            .university-info img {
                width: 70px !important;
            }
            
            .details {
                flex-direction: column;
                align-items: flex-start;
                gap: 10px;
            }
            
            .right-text {
                text-align: left;
                width: 100%;
                margin-left: 0;
            }
        }
        
        /* Animation Keyframes */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .card {
            animation: fadeInUp 0.6s ease forwards;
            opacity: 0;
        }
		/*** Single Page Hero Header Start ***/
		.bg-breadcrumb {
			background: linear-gradient(rgba(19, 53, 123, 0.5), rgba(19, 53, 123, 0.5)), url(img/carousel-3.jpg);
			background-position: center center;
			background-repeat: no-repeat;
			background-size: cover;
			background-attachment: fixed;
			padding: 150px 0 50px 0;
		}

		.bg-breadcrumb .breadcrumb-item a {
			color: var(--bs-secondary) !important;
		}
		.wrapper {
            width: 100%;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
        }

        .box {
            width: 49%; /* Two columns per row */
            background: white;
            border-radius: 10px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
            overflow: hidden;
            transition: 0.3s;
            margin-bottom: 20px;
            position: relative;
        }

        .box:hover {
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
        }

        .box img {
            width: 100%;
            height: 180px;
            object-fit: cover;
        }

        .box-header {
            font-size: 20px;
            font-weight: bold;
            color: white;
            position: absolute;
            top: 50%;
            left: 16px;
            transform: translateY(-50%);
            background: rgba(0, 0, 0, 0.5);
            padding: 8px 12px;
            border-radius: 5px;
        }

        .box-content {
            padding: 16px;
        }

        .box-description {
            font-size: 14px;
            color: #666;
            margin: 8px 0;
        }

        .box-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-top: 8px;
        }

        .label {
            background: #e0e0e0;
            padding: 6px 12px;
            border-radius: 20px;
            font-size: 12px;
        }

        .box-action {
            margin-top: 16px;
            font-size: 14px;
            color: #6200ea;
            font-weight: bold;
            cursor: pointer;
        }

        @media (max-width: 768px) {
            .box {
                width: 100%; /* Full width on smaller screens */
            }
        }
		 .containers {
            width: 100%;
            /* display: flex; */
            /* flex-wrap: wrap; */
            /* justify-content: space-between; */
        }

        .college-box {
            width: 48%;
            background: white;
            border-radius: 12px;
            box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            margin-bottom: 25px;
            display: flex;
            align-items: center;
            padding: 20px;
            position: relative;
            overflow: hidden;
            will-change: transform, box-shadow;
            animation: fadeInUp 0.6s ease forwards;
            opacity: 0;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .college-box:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
        }

        .college-box::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(2, 73, 175, 0.05) 0%, rgba(255, 255, 255, 0) 100%);
            z-index: 0;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .college-box:hover::before {
            opacity: 1;
        }

        .clog {
            display: grid;
            width: 40%;
            position: relative;
        }

        .college-image {
            width: 100%;
            height: 200px;
            object-fit: cover;
            border-radius: 8px;
            transition: transform 0.5s ease, filter 0.3s ease;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        }

        .college-box:hover .college-image {
            transform: scale(1.02);
            filter: brightness(1.03);
        }

        .college-logo {
            width: 130px;
            height: 50px;
            object-fit: contain;
            margin-bottom: 15px;
            transition: transform 0.3s ease;
            position: absolute;
            top: -25px;
            left: 10px;
            z-index: 2;
            background: white;
            padding: 5px;
            border-radius: 5px;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        }

        .college-box:hover .college-logo {
            transform: scale(1.05);
        }

        .clog > div {
            display: flex;
            justify-content: space-between;
            margin-top: 10px;
        }

        .apply-btn {
            margin-top: 11px;
            background: #0249af;
            border: none;
            width: 100%;
            padding: 8px;
            color: white;
            font-weight: 600;
            border-radius: 7px;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 2px 5px rgba(2, 73, 175, 0.2);
            z-index: 1;
        }

        .apply-btn:hover {
            background: #013b8e;
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(2, 73, 175, 0.3);
        }

        .apply-btnn {
            margin-top: 11px;
            background: dodgerblue;
            border: none;
            padding: 8px 15px;
            color: white;
            font-weight: 600;
            border-radius: 7px;
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow: 0 2px 5px rgba(30, 144, 255, 0.2);
            z-index: 1;
        }

        .apply-btnn:hover {
            background: #1a7fd8;
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(30, 144, 255, 0.3);
        }

        .college-details {
            width: 60%;
            padding-left: 25px;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
        }

        .course-name {
            font-size: 18px;
            font-weight: bold;
            color: black;
            margin-top: 8px;
            position: relative;
            display: inline-block;
        }

        .course-name::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: #0249af;
            transition: width 0.3s ease;
        }

        .college-box:hover .course-name::after {
            width: 100%;
        }

        .extra-details {
            font-size: 15px;
            color: #000000;
            margin: 8px 0 12px;
            font-weight: 500;
        }
		div#course-list {
			gap: 25px;
		}
        .fee-container {
            width: 100%;
            max-width: 297px;
            border-radius: 11px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            padding: 12px;
            margin-left: -3px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border: 1px solid #ddd;
            background: white;
            transition: transform 0.3s ease;
        }

        .college-box:hover .fee-container {
            transform: translateY(-3px);
        }

        .fee-section {
			display: flex;
			align-items: center;
			gap: 10px;
			width: 50%;
			overflow-wrap: anywhere;
		}

        .fee-icon {
            width: 25px;
            height: 25px;
            transition: transform 0.3s ease;
        }

        .fee-section:hover .fee-icon {
            transform: scale(1.1);
        }

        .fee-text {
            display: flex;
            flex-direction: column;
        }

        .fee-label {
            font-size: 12px;
            color: gray;
        }

        .fee-value {
            font-size: 14px;
            font-weight: bold;
            color: #000;
        }

        .tit {
            background: #014aae36;
            padding: 10px;
            border-radius: 6px;
            width: 100%;
            margin: 15px 0 0;
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }

        .tit > div {
            flex: 1 1 calc(50% - 10px);
            min-width: 100px;
        }

        small {
            font-weight: 600;
            color: grey;
            display: block;
            margin-bottom: 3px;
        }

        .tit p {
            font-weight: 600;
            color: #333;
        }

        /* Responsive Styles */
        @media (max-width: 992px) {
            .college-box {
                width: 100%;
            }
        }

        @media (max-width: 768px) {
            .college-box {
                flex-direction: column;
                padding: 15px;
            }

            .clog {
                width: 100%;
                margin-bottom: 15px;
            }

            .college-details {
                width: 100%;
                padding-left: 0;
                align-items: center;
                text-align: center;
            }

            .course-name::after {
                left: 50%;
                transform: translateX(-50%);
                width: 0;
            }

            .college-box:hover .course-name::after {
                width: 80%;
            }

            .fee-container {
                margin: 0 auto;
                max-width: 100%;
            }

            .clog > div {
                justify-content: center;
                gap: 15px;
            }

            .apply-btnn {
                margin-left: 0;
            }

            .college-logo {
                position: static;
                margin: 0 auto 15px;
            }
        }

        @media (max-width: 480px) {
            .tit > div {
                flex: 1 1 100%;
            }

            .apply-btn, .apply-btnn {
                width: 100%;
                margin-top: 8px;
            }

            .clog > div {
                flex-direction: column;
                gap: 8px;
            }
        }
		/* Popup Background */
		/* Popup Background */
		.popup {
			display: none;
			position: fixed;
			top: 0;
			left: 0;
			z-index: 1000;
			width: 100%;
			height: 100%;
			background: rgba(0, 0, 0, 0.5);
			justify-content: center;
			align-items: center;
			opacity: 0;
			transition: opacity 0.3s ease-in-out;
		}

		/* Popup Content Box */
		.popup-content {
			background: #fff;
			display: flex;
			flex-direction: column;
			width: 650px;
			border-radius: 10px;
			overflow: hidden;
			position: relative;
			transform: translateY(-50px);
			transition: transform 0.3s ease-in-out;
		}

		/* Show animation */
		.popup.show {
			opacity: 1;
		}

		.popup-content.show {
			transform: translateY(0);
		}

		/* Popup Inner Structure */
		.popup-inner {
			display: flex;
			width: 100%;
		}

		/* Left Side (Image) */
		.popup-left {
			width: 40%;
			background: #f5f5f5;
		}

		.popup-left img {
			width: 100%;
			height: 100%;
			object-fit: cover;
		}

		/* Right Side (Content & Form) */
		.popup-right {
			width: 60%;
			padding: 30px;
			display: flex;
			flex-direction: column;
			justify-content: center;
		}

		.popup-right h2 {
			margin-bottom: 10px;
			font-size: 22px;
			font-weight: bold;
		}

		.popup-right p {
			font-size: 14px;
			margin-bottom: 20px;
			color: #666;
		}

		/* Input Fields */
		.popup-right input {
			width: 100%;
			padding: 10px;
			margin-bottom: 10px;
			border: 1px solid #ccc;
			border-radius: 5px;
		}
		.popup-right select {
			width: 100%;
			padding: 10px;
			margin-bottom: 10px;
			border: 1px solid #ccc;
			border-radius: 5px;
		}

		/* Submit Button */
		.popup-right button {
			background: #000d33;
			color: white;
			border: none;
			padding: 10px;
			width: 100%;
			border-radius: 5px;
			cursor: pointer;
			font-weight: bold;
		}

		.popup-right button:hover {
			background: #002366;
		}

		/* Close Button */
		.close-btn {
			position: absolute;
			top: 10px;
			right: 15px;
			font-size: 24px;
			cursor: pointer;
		}

		/* Responsive Design */
		@media (max-width: 768px) {
			.popup-content {
				width: 90%;
			}
			
			.popup-inner {
				flex-direction: column;
			}

			.popup-left {
				width: 100%;
				height: 200px;
			}

			.popup-right {
				width: 100%;
				padding: 20px;
			}
		}

.admission-process-section {
            background: #003087;
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            padding: 3rem 2rem;
            position: relative;
            overflow: hidden;
        }
        
        /* Animated floating elements */
        .floating-elements {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            pointer-events: none;
            z-index: 0;
        }
        
        .floating-element {
            position: absolute;
            opacity: 0.1;
            animation: float 15s infinite ease-in-out;
        }
        
        .floating-element:nth-child(1) {
            top: 10%;
            left: 5%;
            font-size: 3rem;
            color: #0249af;
            animation-delay: 0s;
        }
        
        .floating-element:nth-child(2) {
            top: 25%;
            right: 8%;
            font-size: 4rem;
            color: var(--primary-light);
            animation-delay: 2s;
        }
        
        .floating-element:nth-child(3) {
            bottom: 15%;
            left: 10%;
            font-size: 3.5rem;
            color: #0249af;
            animation-delay: 4s;
        }
        
        .floating-element:nth-child(4) {
            bottom: 30%;
            right: 5%;
            font-size: 3rem;
            color: var(--primary-light);
            animation-delay: 6s;
        }
        
        @keyframes float {
            0%, 100% {
                transform: translateY(0) rotate(0deg);
            }
            50% {
                transform: translateY(-20px) rotate(5deg);
            }
        }
        
        .process-container {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }
        
        .section-header {
            text-align: center;
            margin-bottom: -1.5rem;
        }
        
        .section-title {
            font-family: Cambria;
            font-weight: 800;
            font-size: 2.8rem;
            color: var(--dark);
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }
        
        .section-title span {
            color: #0249af;
            position: relative;
        }
        
        .section-title span::after {
            content: '';
            position: absolute;
            bottom: 5px;
            left: 0;
            width: 100%;
            height: 8px;
            background: rgba(37, 99, 235, 0.2);
            z-index: -1;
        }
        
        .section-subtitle {
            font-family: Cambria;
            font-size: 1.2rem;
            color: var(--gray);
            max-width: 800px;
            margin: 0 auto;
            line-height: 1.8;
        }
        
        .process-content {
            display: flex;
            flex-wrap: wrap;
            gap: 3rem;
            /* align-items: center; */
        }
        
        .process-steps {
            flex: 1;
            min-width: 280px;
        }
        
        .process-image {
            flex: 0.6 .4;
            min-width: 300px;
            text-align: center;
            position: relative;
        }
        
        .process-image img {
            max-width: 92%;
            height: auto;
            border-radius: 20px;
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.2);
            transform: perspective(1000px) rotateY(-15deg);
            transition: all 0.5s ease;
        }
        
        .process-image:hover img {
            transform: perspective(1000px) rotateY(0deg);
        }
        
        .process-item {
            display: flex;
            gap: 1.5rem;
            margin-bottom: 2rem;
            transform: translateX(-20px);
            opacity: 0;
            animation: fadeInRight 0.8s forwards;
        }
        
        .process-item:nth-child(1) { animation-delay: 0.2s; }
        .process-item:nth-child(2) { animation-delay: 0.4s; }
        .process-item:nth-child(3) { animation-delay: 0.6s; }
        .process-item:nth-child(4) { animation-delay: 0.8s; }
        .process-item:nth-child(5) { animation-delay: 1.0s; }
        .process-item:nth-child(6) { animation-delay: 1.2s; }
        
        @keyframes fadeInRight {
            to {
                transform: translateX(0);
                opacity: 1;
            }
        }
        
        .process-icon {
			width: 50px;
			height: 50px;
			background: linear-gradient(135deg, #f7f7f7, #f3f3f3);
			border-radius: 50%;
			display: flex;
			align-items: center;
			justify-content: center;
			color: #0249af;
			font-size: 1.2rem;
			flex-shrink: 0;
			box-shadow: 0 5px 15px rgba(37, 99, 235, 0.3);
			transition: all 0.3s ease;
		}
        
        .process-item:hover .process-icon {
            transform: rotate(15deg) scale(1.1);
        }
        
        .process-text {
            flex: 1;
        }
        
        .process-text p {
            font-family: Cambria;
            color: #ffffff;
            line-height: 1.8;
                font-size: 17px;
        }
        
        .cta-button {
            display: inline-block;
            background: linear-gradient(to right, #0249af, var(--primary-light));
            color: white;
            font-family: Cambria;
            font-weight: 600;
            font-size: 1.1rem;
            padding: 1rem 1.5rem;
            border-radius: 50px;
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
            text-align: center;
            margin: 1rem auto 0;
            border: none;
            cursor: pointer;
            position: relative;
            overflow: hidden;
            z-index: 1;
        }
        
        .cta-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(to right, var(--primary-light), #0249af);
            transition: all 0.4s ease;
            z-index: -1;
        }
        
        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(37, 99, 235, 0.4);
        }
        
        .cta-button:hover::before {
            left: 0;
        }
        
        /* Animated checkmarks */
        .process-item::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 0;
            height: 2px;
            background: white;
            transition: all 0.5s ease;
        }
        
        .process-item:hover::after {
            width: 100%;
        }
        
        /* Ripple effect */
        .ripple {
            position: absolute;
            background: rgba(255, 255, 255, 0.4);
            border-radius: 50%;
            transform: scale(0);
            animation: ripple 0.6s linear;
            pointer-events: none;
        }
        
        @keyframes ripple {
            to {
                transform: scale(4);
                opacity: 0;
            }
        }
        
        @media (max-width: 1024px) {
            .section-title {
                font-size: 2.4rem;
            }
            
            .process-content {
                flex-direction: column;
            }
            
            .process-steps, .process-image {
                width: 100%;
            }
            
            .process-image img {
                max-width: 80%;
            }
        }
        
        @media (max-width: 768px) {
            .admission-process-section {
                padding: 4rem 1.5rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .section-subtitle {
                font-size: 1rem;
            }
            
            .process-item {
                gap: 1rem;
            }
            
            .cta-button {
                width: 100%;
                max-width: 300px;
            }
        }
        
        @media (max-width: 480px) {
            .section-title {
                font-size: 1.8rem;
            }
            
            .process-icon {
                width: 40px;
                height: 40px;
                font-size: 1rem;
            }
            
            .floating-element {
                display: none;
            }
        }
		.tuition-scholarship-section {
            background: linear-gradient(rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.95)), url('https://images.unsplash.com/photo-1523050854058-8df90110c9f1?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80');
            background-size: cover;
            background-position: center;
            z-index:1;
            padding: 3rem 2rem;
            position: relative;
            overflow: hidden;
        }
        
        /* Floating education elements */
        .floating-edu-elements {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            pointer-events: none;
            z-index: 0;
        }
        
        .floating-edu-element {
            position: absolute;
            opacity: 0.1;
            animation: floatEdu 15s infinite ease-in-out;
        }
        
        .floating-edu-element:nth-child(1) {
            top: 10%;
            left: 5%;
            font-size: 3rem;
            color: #0249af;
            animation-delay: 0s;
        }
        
        .floating-edu-element:nth-child(2) {
            top: 25%;
            right: 8%;
            font-size: 4rem;
            color: var(--pink-accent);
            animation-delay: 2s;
        }
        
        .floating-edu-element:nth-child(3) {
            bottom: 15%;
            left: 10%;
            font-size: 3.5rem;
            color: var(--blue-accent);
            animation-delay: 4s;
        }
        
        @keyframes floatEdu {
            0%, 100% {
                transform: translateY(0) rotate(0deg);
            }
            50% {
                transform: translateY(-20px) rotate(5deg);
            }
        }
        
        .edu-container {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }
        
        .edu-header {
            text-align: center;
            margin-bottom: 3rem;
        }
        
        .edu-main-title {
            font-family: Cambria;
            font-weight: 800;
            font-size: 2.8rem;
            color: var(--dark);
            /*margin-bottom: 1.5rem;*/
            line-height: 1.2;
        }
        
        .edu-main-title span {
            color: #0249af;
            position: relative;
        }
        
        .edu-main-title span::after {
            content: '';
            position: absolute;
            bottom: 5px;
            left: 0;
            width: 100%;
            height: 8px;
            background: rgba(37, 99, 235, 0.2);
            z-index: -1;
        }
        
        .du-main-title {
            font-family: Cambria;
            font-weight: 800;
            font-size: 2.8rem;
            color: #ffffff;
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }
        
        .du-main-title span {
            color: white;
            position: relative;
        }
        
       .du-main-title span::after {
            content: '';
            position: absolute;
            bottom: 5px;
            left: 0;
            width: 100%;
            height: 8px;
            background: rgb(255 255 255 / 45%);
            z-index: 1;
        }
        
        .edu-subtitle {
            font-family: Cambria;
            font-size: 1.2rem;
            color: var(--gray);
            max-width: 800px;
            margin: 0 auto;
        }
        
        /* Tuition Cards */
        .tuition-cards-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-bottom: 4rem;
        }
        
        .tuition-card {
            background: white;
            border-radius: 15px;
            padding: 2.5rem 2rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            transform: translateY(50px);
            opacity: 0;
            animation: fadeInUp 0.8s forwards;
            position: relative;
            overflow: hidden;
            border-top: 5px solid;
        }
        
        .tuition-card:nth-child(1) { 
            animation-delay: 0.2s;
            border-color: var(--pink-accent);
            background: linear-gradient(to bottom right, rgba(255, 107, 158, 0.05), white);
        }
        
        .tuition-card:nth-child(2) { 
                animation-delay: 0.4s;
    border-color: gray;
    background: linear-gradient(to bottom right, rgb(2 73 175), #0249af);
        }
        
        .tuition-card:nth-child(3) { 
            animation-delay: 0.6s;
            border-color: var(--pink-accent);
            background: linear-gradient(to bottom right, rgba(255, 107, 158, 0.05), white);
        }
        
        @keyframes fadeInUp {
            to {
                transform: translateY(0);
                opacity: 1;
            }
        }
        
        .tuition-card:hover {
            transform: translateY(-10px) scale(1.02) !important;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
        }
        
        .tuition-type {
            font-family: Cambria;
            font-weight: 700;
            font-size: 1.3rem;
            margin-bottom: 1rem;
            color: var(--dark);
        }
		.tuition-typ {
            font-family: Cambria;
            font-weight: 700;
            font-size: 1.3rem;
            margin-bottom: 1rem;
            color: white;
        }
        
        .tuition-amount {
            font-family: Cambria;
            font-weight: 800;
            font-size: 2rem;
            margin-bottom: 1rem;
        }
        
        .tuition-card:nth-child(1) .tuition-amount,
        .tuition-card:nth-child(3) .tuition-amount {
            color: #0249af;
    font-size: 30px;
        }
        
        .tuition-card:nth-child(2) .tuition-amount {
                color: white;
    font-size: 30px;
        }
        
        .tuition-desc {
            font-family: Cambria;
            color: var(--gray);
            font-size: 1.1rem;
        }
		.tuition-des {
            font-family: Cambria;
            color: white;
            font-size: 1.1rem;
        }
        
        /* Scholarship Section */
        .scholarship-wrapper {
            display: flex;
            flex-wrap: wrap;
            gap: 3rem;
            align-items: center;
            margin-top: 4rem;
            background: white;
            border-radius: 20px;
            padding: 3rem;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        }
        
        .scholarship-visual {
            flex: 1;
            min-width: 300px;
            position: relative;
        }
        
        .scholarship-image {
            width: 100%;
            border-radius: 15px;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
            transform: perspective(1000px) rotateY(-10deg);
            transition: all 0.5s ease;
        }
        
        .scholarship-visual:hover .scholarship-image {
            transform: perspective(1000px) rotateY(0deg);
        }
        
        .scholarship-badge {
            position: absolute;
            bottom: -20px;
            right: -20px;
            background: linear-gradient(135deg, #0249af, var(--primary-light));
            color: white;
            padding: 1.5rem;
            border-radius: 15px;
            font-family: Cambria;
            font-weight: 700;
            box-shadow: 0 10px 20px rgba(37, 99, 235, 0.3);
            transform: rotate(15deg);
            transition: all 0.3s ease;
        }
        
        .scholarship-visual:hover .scholarship-badge {
            transform: rotate(0deg) scale(1.05);
        }
        
        .scholarship-content {
            flex: 1;
            min-width: 300px;
        }
        
        .scholarship-title {
            font-family: Cambria;
            font-weight: 800;
            font-size: 2rem;
            color: var(--dark);
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }
        
        .scholarship-intro {
            font-family: Cambria;
            color: var(--gray);
            margin-bottom: 2rem;
            line-height: 1.8;
        }
        
        .scholarship-list {
            list-style: none;
            margin-bottom: 2rem;
        }
        
        .scholarship-list li {
            margin-bottom: 1rem;
            position: relative;
            padding-left: 30px;
            font-family: Cambria;
            color: var(--dark);
        }
        
        .scholarship-list li::before {
            content: '';
            position: absolute;
            left: 0;
            top: 8px;
            width: 15px;
            height: 15px;
            background: linear-gradient(135deg, #0249af, var(--primary-light));
            border-radius: 50%;
        }
        
        .scholarship-list strong {
            color: #0249af;
        }
        
        .scholarship-cta {
            display: inline-block;
            background: linear-gradient(to right, #0249af, var(--primary-light));
            color: white;
            font-family: Cambria;
            font-weight: 600;
            font-size: 1.1rem;
            padding: 1rem 2.5rem;
            border-radius: 50px;
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
            position: relative;
            overflow: hidden;
        }
        
        .scholarship-cta::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(to right, var(--primary-light), #0249af);
            transition: all 0.4s ease;
            z-index: -1;
        }
        
        .scholarship-cta:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(37, 99, 235, 0.4);
        }
        
        .scholarship-cta:hover::before {
            left: 0;
        }
        
        /* Responsive Adjustments */
        @media (max-width: 1024px) {
            .edu-main-title {
                font-size: 2.4rem;
            }
            .du-main-title {
                font-size: 2.4rem;
            }
            .tuition-cards-container {
                grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            }
        }
        
        @media (max-width: 768px) {
            .tuition-scholarship-section {
                padding: 4rem 1.5rem;
            }
            
            .edu-main-title {
                font-size: 2rem;
            }
            .du-main-title {
                font-size: 2rem;
            }
            
            .edu-subtitle {
                font-size: 1rem;
            }
            
            .scholarship-wrapper {
                flex-direction: column;
                padding: 2rem;
            }
            
            .scholarship-badge {
                right: 20px;
            }
        }
        
        @media (max-width: 480px) {
            .edu-main-title {
                font-size: 1.2rem !important;
            }
                .timeline-step {
                    margin-bottom: 30px;
                }
            .hom-p {
                font-size: 13px !important;
            }
            .du-main-title {
                font-size: 1.8rem;
            }
            .tuition-card {
                padding: 2rem 1.5rem;
            }
            
            .floating-edu-element {
                display: none;
            }
        }
		.gs-scholarship-section {
  padding: 2rem 1rem;
  /*background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);*/
}

.gs-scholarship-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  /*background: white;*/
  border-radius: 16px;
  padding: 0.5rem;
  /* box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1); */
}

.gs-scholarship-visual {
  width: 100%;
  position: relative;
}

.gs-scholarship-image-wrapper {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  transform: none;
}

.gs-scholarship-image {
  width: 100%;
  height: auto;
  display: block;
}

.gs-scholarship-badge {
  position: absolute;
  bottom: -15px;
  right: 10px;
  background: linear-gradient(135deg, #2563eb, #3b82f6);
  color: white;
  padding: 0.8rem 1rem;
  border-radius: 8px;
  font-family: Cambria;
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: 0 5px 15px rgba(37, 99, 235, 0.3);
  transform: none;
}

.gs-scholarship-content {
  width: 100%;
  margin-top: -11px;
}

.gs-scholarship-title {
  font-family: Cambria;
  font-weight: 700;
  font-size: 1.5rem;
  color: #1e293b;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.gs-scholarship-intro {
  font-family: Cambria;
  color: #64748b;
  margin-bottom: 1.5rem;
  line-height: 1.6;
  font-size: 0.95rem;
}

.gs-scholarship-list {
  list-style: none;
  margin-bottom: 1.5rem;
  padding: 0;
}

.gs-scholarship-item {
  margin-bottom: 1rem;
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
}

.gs-scholarship-icon {
  color: #2563eb;
  font-size: 1rem;
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.gs-scholarship-text {
  font-family: Cambria;
  color: #1e293b;
  line-height: 1.5;
  font-size: 0.9rem;
}

.gs-scholarship-text strong {
  color: #2563eb;
}

.gs-scholarship-cta {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(135deg, #2563eb, #3b82f6);
  color: white;
  font-family: Cambria;
  font-weight: 600;
  font-size: 1rem;
  padding: 0.8rem 1.5rem;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(37, 99, 235, 0.3);
  position: relative;
  overflow: hidden;
  width: 100%;
  justify-content: center;
}

.gs-scholarship-cta-icon {
  margin-left: 0.5rem;
  transition: all 0.3s ease;
}

/* Tablet and Desktop Styles */
@media (min-width: 768px) {
  .gs-scholarship-section {
    padding: 0rem 0rem;
  }
  
  .gs-scholarship-container {
    flex-direction: row;
    gap: 3rem;
    border-radius: 20px;
    /*padding: 3rem;*/
    /* box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1); */
  }
  
  .gs-scholarship-visual {
    flex: 1;
    min-width: 300px;
  }
  
  .gs-scholarship-image-wrapper {
    transform: perspective(1000px) rotateY(-10deg);
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  }
  
  .gs-scholarship-visual:hover .gs-scholarship-image-wrapper {
    transform: perspective(1000px) rotateY(0deg);
  }
  
  .gs-scholarship-badge {
            bottom: -6px;
        right: 0px;
    padding: 1.2rem 1.5rem;
    border-radius: 12px;
    transform: rotate(3deg);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  }
  
  .gs-scholarship-visual:hover .gs-scholarship-badge {
    transform: rotate(0deg) scale(1.05);
  }
  
  .gs-scholarship-content {
    flex: 1;
    min-width: 300px;
  }
  
  .gs-scholarship-title {
    font-weight: 800;
    font-size: 2rem;
    margin-bottom: 1.5rem;
  }
  
  .gs-scholarship-intro {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
  }
  
  .gs-scholarship-list {
    margin-bottom: 2rem;
  }
  
  .gs-scholarship-item {
    margin-bottom: 1.2rem;
    gap: 1rem;
  }
  
  .gs-scholarship-icon {
    font-size: 1.2rem;
  }
  
  .gs-scholarship-text {
    font-size: 1.2rem;
  }
  
  .gs-scholarship-cta {
    font-size: 1.1rem;
    padding: 1rem 2rem;
    width: auto;
    justify-content: flex-start;
  }
}

/* Large Desktop Styles */
@media (min-width: 1200px) {
  .gs-scholarship-container {
    /*padding: 3.5rem;*/
	display: flex;
  }
}
		/* Font Awesome for icons */
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css');

/* Base Styles */
.student-cities-section {
  background: #f8f9fa;
  padding: 80px 0;
  position: relative;
}

.sc-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header Styles */
.sc-header {
  text-align: center;
  margin-bottom: 60px;
}

.sc-main-title {
  font-size: 2.8rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.sc-main-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #3498db, #2ecc71);
  border-radius: 2px;
}

.sc-subtitle {
  font-size: 1.2rem;
  color: #7f8c8d;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

.sc-scroll-indicator {
  display: none;
  justify-content: center;
  margin-top: 30px;
}

.sc-indicator-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #bdc3c7;
  margin: 0 5px;
  transition: all 0.3s ease;
}

.sc-indicator-dot.active {
  background: #3498db;
  transform: scale(1.2);
}

/* City Cards Container */
.sc-cards-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
  padding: 20px 0;
}

.sc-card-wrapper {
  perspective: 1000px;
}

.sc-city-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
  position: relative;
  transform-style: preserve-3d;
  height: 90%;
  display: flex;
  /* flex-direction: column; */
}

.sc-city-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.sc-image-container {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.sc-city-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.sc-city-card:hover .sc-city-image {
  transform: scale(1.05);
}

.sc-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.7) 100%);
}

.sc-price-tag {
  position: absolute;
  bottom: 15px;
  left: 15px;
  background: rgba(255, 255, 255, 0.9);
  padding: 5px 12px;
  border-radius: 20px;
  font-weight: 600;
  color: #2c3e50;
  font-size: 0.9rem;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.sc-card-content {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.sc-city-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 15px;
}

.sc-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin: 15px 0;
}

.sc-stat-item {
  display: flex;
  flex-direction: column;
}

.sc-stat-icon {
  font-size: 1rem;
  color: #3498db;
  margin-bottom: 5px;
}

.sc-stat-label {
  font-size: 0.8rem;
  color: #7f8c8d;
  font-weight: 500;
}

.sc-stat-value {
  font-size: 0.9rem;
  color: #2c3e50;
  font-weight: 600;
}

.sc-explore-btn {
  margin-top: auto;
  padding: 10px 20px;
  background: linear-gradient(90deg, #3498db, #2ecc71);
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.sc-explore-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(52, 152, 219, 0.4);
}

.sc-explore-btn .sc-btn-icon {
  transition: transform 0.3s ease;
}

.sc-explore-btn:hover .sc-btn-icon {
  transform: translateX(3px);
}

/* AI Assistant Button */
.sc-ai-assistant {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 100;
}

.sc-ai-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #3B82F6, #6366F1);
  color: white;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  box-shadow: 0 5px 20px rgba(59, 130, 246, 0.4);
  transition: all 0.3s ease;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sc-ai-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.6);
}

.sc-ai-tooltip {
  position: absolute;
  right: 70px;
  white-space: nowrap;
  background: white;
  padding: 8px 15px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  color: #2c3e50;
  font-size: 0.9rem;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
}

.sc-ai-btn:hover .sc-ai-tooltip {
  opacity: 1;
  right: 80px;
}

/* Animations */
@keyframes scFadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.sc-card-wrapper:nth-child(1) .sc-city-card {
  animation: scFadeIn 0.6s ease-out 0.1s both;
}

.sc-card-wrapper:nth-child(2) .sc-city-card {
  animation: scFadeIn 0.6s ease-out 0.2s both;
}

.sc-card-wrapper:nth-child(3) .sc-city-card {
  animation: scFadeIn 0.6s ease-out 0.3s both;
}

.sc-card-wrapper:nth-child(4) .sc-city-card {
  animation: scFadeIn 0.6s ease-out 0.4s both;
}

.sc-card-wrapper:nth-child(5) .sc-city-card {
  animation: scFadeIn 0.6s ease-out 0.5s both;
}

/* Responsive Design */
@media (max-width: 1199px) {
  .sc-cards-container {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  }
}

@media (max-width: 991px) {
  .sc-main-title {
    font-size: 2.4rem;
  }
  
  .sc-subtitle {
    font-size: 1.1rem;
  }
}

@media (max-width: 767px) {
  .student-cities-section {
    padding: 60px 0;
  }
  
  .sc-main-title {
    font-size: 2rem;
  }
  
  .sc-scroll-indicator {
    display: flex;
  }
  
  .sc-cards-container {
    grid-auto-flow: column;
    grid-auto-columns: calc(100% - 40px);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-padding: 0 20px;
    padding-bottom: 20px;
    gap: 20px;
  }
  
  .sc-card-wrapper {
    scroll-snap-align: start;
  }
}

@media (max-width: 575px) {
  .sc-main-title {
    font-size: 1.8rem;
  }
  
  .sc-subtitle {
    font-size: 1rem;
  }
  
  .sc-image-container {
    height: 180px;
  }
  
  .sc-ai-assistant {
    bottom: 20px;
    right: 20px;
  }
  
  .sc-ai-btn {
    width: 50px;
    height: 50px;
    font-size: 1.3rem;
  }
}

/* ===== Main Section ===== */
        .student-cities-section {
            padding: 3rem 2rem;
                z-index: -1;
            position: relative;
            overflow: hidden;
            background: linear-gradient(135deg, #f5f7fa 0%, #e4e8f0 100%);
        }

        /* Floating Animated Background Elements */
        .floating-elements {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 0;
        }

        .floating-element {
            position: absolute;
            opacity: 0.1;
            font-size: 3rem;
            animation: float 15s infinite ease-in-out;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0) rotate(0deg); }
            50% { transform: translateY(-30px) rotate(10deg); }
        }

        /* Header Styling */
        .sc-header {
            text-align: center;
            margin-bottom: 3rem;
            position: relative;
            z-index: 2;
        }

        .sc-main-title {
            font-family: Cambria;
            font-weight: 800;
            font-size: 3rem;
            background: linear-gradient(90deg, #0249af, var(--accent-pink));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            margin-bottom: 1rem;
            line-height: 1.2;
        }

        .sc-subtitle {
            font-size: 1.1rem;
            color: var(--gray);
            max-width: 700px;
            margin: 0 auto;
        }

        /* ===== City Cards ===== */
        .sc-cards-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
            gap: 2rem;
            position: relative;
            z-index: 2;
        }

        .sc-city-card {
            background: white;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 0.8s forwards;
        }

        @keyframes fadeInUp {
            to { opacity: 1; transform: translateY(0); }
        }

        /* Delay animations for each card */
        .sc-city-card:nth-child(1) { animation-delay: 0.2s; }
        .sc-city-card:nth-child(2) { animation-delay: 0.4s; }
        .sc-city-card:nth-child(3) { animation-delay: 0.6s; }
        .sc-city-card:nth-child(4) { animation-delay: 0.8s; }
        .sc-city-card:nth-child(5) { animation-delay: 1s; }

        .sc-city-card:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: 0 15px 40px rgba(67, 97, 238, 0.15);
        }

        /* Card Image */
        .sc-image-container {
            height: 200px;
            overflow: hidden;
            position: relative;
        }

        .sc-city-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.8s ease;
        }

        .sc-city-card:hover .sc-city-image {
            transform: scale(1.1);
        }

        /* Price Tag */
        .sc-price-tag {
            position: absolute;
            bottom: 15px;
            left: 15px;
            background: rgba(255, 255, 255, 0.9);
            padding: 0.5rem 1rem;
            border-radius: 20px;
            font-weight: 600;
            color: var(--dark);
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        }

        /* Card Content */
        .sc-card-content {
            padding: 1.5rem;
        }

        .sc-city-name {
            font-family: Cambria;
            font-weight: 700;
            font-size: 1.4rem;
            margin-bottom: 0.5rem;
            color: var(--dark);
        }

        .sc-city-desc {
            color: var(--gray);
            font-size: 0.9rem;
            margin-bottom: 1.5rem;
        }

        /* Stats */
        .sc-stats {
            display: flex;
            justify-content: space-between;
            margin-bottom: 1.5rem;
        }

        .sc-stat-item {
            text-align: center;
        }

        .sc-stat-value {
            font-weight: 700;
            color: #0249af;
        }

        .sc-stat-label {
            font-size: 0.8rem;
            color: var(--gray);
        }

        /* Explore Button */
        .sc-explore-btn {
            display: inline-block;
            width: 100%;
            padding: 0.8rem;
            background: linear-gradient(90deg, #0249af, var(--primary-light));
            color: white;
            border: none;
            border-radius: 8px;
            font-weight: 600;
            text-align: center;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .sc-explore-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, var(--accent-pink), #0249af);
            transition: all 0.4s ease;
            z-index: -1;
        }

        .sc-explore-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(67, 97, 238, 0.3);
        }

        .sc-explore-btn:hover::before {
            left: 0;
        }

        /* AI Assistant Button */
        .sc-ai-assistant {
            position: fixed;
            bottom: 30px;
            right: 30px;
            z-index: 100;
        }

        .sc-ai-btn {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: linear-gradient(135deg, #0249af, var(--accent-pink));
            color: white;
            border: none;
            font-size: 1.5rem;
            cursor: pointer;
            box-shadow: 0 5px 20px rgba(67, 97, 238, 0.4);
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .sc-ai-btn:hover {
            transform: scale(1.1) rotate(10deg);
        }

        /* ===== Responsive Design ===== */
        @media (max-width: 1024px) {
            .sc-main-title {
                font-size: 2.5rem;
            }
        }

        @media (max-width: 768px) {
            .student-cities-section {
                padding: 4rem 1.5rem;
            }

            .sc-main-title {
                font-size: 2.2rem;
            }

            .sc-cards-container {
                grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
            }
        }

        @media (max-width: 576px) {
            .sc-main-title {
                font-size: 2rem;
            }

            .sc-subtitle {
                font-size: 1rem;
            }

            .sc-cards-container {
                grid-template-columns: 1fr;
            }
        }@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&family=Montserrat:wght@700;800;900&display=swap');
		
		
		
		/* ===== Main Section ===== */
        .svp-container {
            background: #1456b540;
            padding: 3rem 2rem;
            position: relative;
            overflow: hidden;
        }

        .svp-header {
            text-align: center;
            margin-bottom: 3rem;
        }

        .svp-main-title {
            font-family: Cambria;
            font-weight: 800;
            font-size: clamp(2rem, 5vw, 3rem);
            color: var(--svp-dark);
            margin-bottom: 1rem;
            line-height: 1.2;
        }

        .svp-main-title span {
            color: var(--svp-primary);
        }

        .svp-subtitle {
            font-size: clamp(1rem, 2vw, 1.2rem);
            color: var(--svp-dark);
            max-width: 700px;
            margin: 0 auto;
        }

        /* ===== Visa Process Timeline ===== */
        .svp-timeline {
            display: flex;
            flex-direction: column;
            align-items: center;
            position: relative;
            max-width: 1200px;
            margin: 0 auto;
            padding: 1rem 0;
        }

        /* Process Image */
        .svp-process-visual {
            width: 100%;
            height: 100%;
            margin-bottom: 3rem;
            position: relative;
            z-index: 2;
            transform: translateY(20px);
            opacity: 0;
            animation: svpFadeIn 0.8s forwards 0.3s;
        }

        @keyframes svpFadeIn {
            to { transform: translateY(0); opacity: 1; }
        }

        .svp-process-visual img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            filter: drop-shadow(0 10px 20px rgba(0,0,0,0.1));
        }

        /* Timeline Line */
        .svp-timeline-line {
            position: absolute;
            left: 50%;
            top: 220px;
            bottom: 100px;
            width: 4px;
            background: linear-gradient(to bottom, var(--svp-primary), var(--svp-accent));
            transform: translateX(-50%);
            z-index: 1;
            border-radius: 10px;
        }

        /* Steps Container */
        .svp-steps {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 2rem;
            width: 100%;
            position: relative;
            z-index: 2;
        }

        /* Individual Step */
        .svp-step {
            width: 160px;
            display: flex;
            flex-direction: column;
            align-items: center;
            position: relative;
            transform: translateY(30px);
            opacity: 0;
            animation: svpStepReveal 0.6s forwards;
        }

        @keyframes svpStepReveal {
            to { transform: translateY(0); opacity: 1; }
        }

        /* Animation delays */
        .svp-step:nth-child(1) { animation-delay: 0.4s; }
        .svp-step:nth-child(2) { animation-delay: 0.6s; }
        .svp-step:nth-child(3) { animation-delay: 0.8s; }
        .svp-step:nth-child(4) { animation-delay: 1.0s; }
        .svp-step:nth-child(5) { animation-delay: 1.2s; }
        .svp-step:nth-child(6) { animation-delay: 1.4s; }
        .svp-step:nth-child(7) { animation-delay: 1.6s; }

        /* Step Icon */
        .svp-step-icon {
            width: 60px;
            height: 60px;
            background: var(--svp-light);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: all 0.4s ease;
            position: relative;
            z-index: 2;
            border: 3px solid var(--svp-light);
        }

        .svp-step-icon i {
            font-size: 1.5rem;
            color: var(--svp-primary);
            transition: all 0.3s ease;
        }

        /* Step Text */
        .svp-step-text {
            text-align: center;
            font-weight: 600;
                font-family: Cambria;
            color: var(--svp-dark);
            padding: 0.8rem 1rem;
            background: var(--svp-light);
            border-radius: 12px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            position: relative;
            z-index: 1;
        }

        /* Step Connector */
        .svp-step::after {
            content: '';
            position: absolute;
            top: 30px;
            width: 40px;
            height: 4px;
            background: var(--svp-primary);
            opacity: 0.3;
            transition: all 0.3s ease;
        }

        /* Alternate steps left/right */
        .svp-step:nth-child(odd)::after {
            right: -40px;
        }

        .svp-step:nth-child(even)::after {
            left: -40px;
        }

        /* Hover Effects */
        .svp-step:hover .svp-step-icon {
            transform: translateY(-10px) scale(1.1);
            background: var(--svp-primary);
            box-shadow: 0 15px 30px rgba(37, 99, 235, 0.3);
        }

        .svp-step:hover .svp-step-icon i {
            color: var(--svp-light);
        }

        .svp-step:hover .svp-step-text {
            transform: translateY(5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
        }

        .svp-step:hover::after {
            opacity: 1;
            background: var(--svp-accent);
        }

        /* ===== Responsive Design ===== */
        @media (max-width: 1024px) {
            .svp-timeline-line {
                left: 100px;
            }

            .svp-steps {
                flex-direction: column;
                align-items: flex-start;
                padding-left: 140px;
            }

            .svp-step {
                width: auto;
                flex-direction: row;
                align-items: center;
                gap: 1.5rem;
            }

            .svp-step::after {
                top: auto;
                left: -60px !important;
                width: 30px;
                height: 4px;
            }

            .svp-step:nth-child(even)::after,
            .svp-step:nth-child(odd)::after {
                left: -60px !important;
            }

            .svp-step-text {
                text-align: left;
            }
        }

        @media (max-width: 768px) {
            .svp-container {
                padding: 3rem 1.5rem;
            }

            .svp-timeline-line {
                left: 70px;
            }

            .svp-steps {
                padding-left: 100px;
            }
        }
		span.sm-fo {
			font-size: 12px;
		}
        @media (max-width: 576px) {
            .svp-timeline-line {
                left: 50px;
            }

            .svp-steps {
                padding-left: 80px;
            }

            .svp-step-icon {
                width: 50px;
                height: 50px;
            }

            .svp-step-icon i {
                font-size: 1.2rem;
            }

            .svp-step-text {
                font-size: 0.9rem;
                padding: 0.6rem 0.8rem;
            }
        }
		@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&family=Montserrat:wght@700;800;900&display=swap');

        :root {
            --svp-primary: #2563eb;
            --svp-secondary: #4cc9f0;
            --svp-accent: #f72585;
            --svp-light: #ffffff;
            --svp-dark: #1a1a2e;
            --svp-bg: #ffccb952;
        }
		/* Base Styles */
  .academic-pathways-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 1rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  }
  
  .ap-header-section {
    text-align: center;
    margin-bottom: 2rem;
  }
  
  .ap-main-heading {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 0.5rem;
  }
  
  .ap-highlight {
    color: #3498db;
    position: relative;
  }
  
  .ap-highlight::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 3px;
    background: #3498db;
    opacity: 0.3;
  }
  
  .ap-subheading {
    color: #7f8c8d;
    max-width: 600px;
    margin: 0 auto;
  }
  
  /* Grid Layout */
  .ap-program-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1rem;
  }
  
  /* Card Styles */
  .ap-program-card {
    background: white;
    border-radius: 8px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
  }
  
  .ap-card-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(52, 152, 219, 0.1);
    color: #003974;
    font-size: 1.5rem;
    transition: all 0.3s ease;
  }
  
  .ap-card-title {
    font-size: 1rem;
        font-family: Cambria;
    color: #2c3e50;
    margin: 0;
    font-weight: 600;
  }
  
  /* Hover Effects */
  .ap-program-card:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }
  
  .ap-program-card:hover .ap-card-icon {
    transform: scale(1.1);
    background: #003974;
    color: white;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .ap-program-grid {
      grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
    
    .ap-main-heading {
      font-size: 1.8rem;
    }
  }
  
  @media (max-width: 480px) {
    .ap-program-grid {
      grid-template-columns: 1fr 1fr;
    }
.zh-cta-button {
    display: block;
    text-align: center;
    /* margin-top: 3rem; */
     margin-top: 0rem !important; 
    position: relative;
    z-index: 2;
}
    
    .ap-program-card {
      padding: 1rem;
    }
    
    .ap-card-icon {
      width: 40px;
      height: 40px;
      font-size: 1.2rem;
    }
    
    .ap-card-title {
      font-size: 0.9rem;
    }
  }
  
   @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&family=Montserrat:wght@700;800;900&display=swap');

        :root {
            --edux-primary: #0238a7;
            --edux-secondary: #4cc9f0;
            --edux-accent: #f72585;
            --edux-light: #ffffff;
            --edux-dark: #1a1a2e;
            --edux-gray: #6c757d;
            --edux-glass: rgba(255, 255, 255, 0.15);
        }
		.vivek{
			display:flex;
			justify-content: space-between;
		}

        /* ===== Main Section ===== */
        .edux-university-section {
            background: 
                linear-gradient(rgba(2, 56, 167, 0.85), rgba(2, 56, 167, 0.85)), 
                url('img/germany-home/ger-bac.jpeg') center center / cover no-repeat;
            background-attachment: fixed;
            padding: 2rem 2rem;
            position: relative;
            overflow: hidden;
        }

        /* Header */
        .edux-header {
            text-align: center;
            margin-bottom: 4rem;
            position: relative;
            z-index: 2;
        }

        .edux-main-title {
            font-family: Cambria;
            font-weight: 800;
            font-size: clamp(2.5rem, 5vw, 4rem);
            color: var(--edux-light);
            margin-bottom: 1rem;
            line-height: 1.2;
        }

        .edux-subtitle {
            font-size: clamp(1rem, 2vw, 1.2rem);
            color: rgba(255, 255, 255, 0.9);
            max-width: 700px;
            margin: 0 auto;
        }
		
 /* Base Styles */
  .gs-pro-banner {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 100px 0;
    color: white;
  }
  
  /* Background Styles */
  .gs-pb-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #13357b 0%, #1e4a8e 100%);
    z-index: 1;
  }
  
  .gs-pb-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://example.com/germany-campus.jpg') center/cover no-repeat;
    opacity: 0.7;
    z-index: 2;
  }
  
  /* Animated Shapes */
  .gs-pb-animated-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 3;
  }
  
  .gs-pb-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.15;
  }
  
  .gs-pb-shape-1 {
    width: 300px;
    height: 300px;
    background: #3b82f6;
    top: -50px;
    left: -50px;
    animation: gs-pb-float 15s ease-in-out infinite;
  }
  
  .gs-pb-shape-2 {
    width: 400px;
    height: 400px;
    background: #10b981;
    bottom: -100px;
    right: -100px;
    animation: gs-pb-float 18s ease-in-out infinite reverse;
  }
  
  .gs-pb-shape-3 {
    width: 200px;
    height: 200px;
    background: #f59e0b;
    top: 40%;
    left: 70%;
    animation: gs-pb-float 12s ease-in-out infinite 2s;
  }
  
  /* Content Styles */
  .gs-pb-content {
    position: relative;
    z-index: 4;
  }
  
  /* Heading Styles */
  .gs-pb-heading {
    font-family: Cambria;
    font-weight: 800;
    margin-bottom: 1.5rem;
    overflow: hidden;
  }
  
  .gs-pb-heading-line {
    display: block;
        margin-top: 70px;
    font-size: 3.5rem;
    line-height: 1.2;
    transform: translateY(100%);
    opacity: 0;
    animation: gs-pb-slideUp 0.8s forwards;
  }
  
  .gs-pb-line-1 {
    animation-delay: 0.3s;
  }
  
  .gs-pb-line-2 {
    animation-delay: 0.5s;
    color: #ffffff;
  }
  
  /* Paragraph Styles */
  .gs-pb-paragraph-wrapper {
    overflow: hidden;
    margin-bottom: 2rem;
  }
  
  .gs-pb-paragraph {
    font-family: Cambria;
    font-size: 1.1rem;
    line-height: 2;
    max-width: 600px;
    transform: translateY(50px);
    opacity: 0;
    animation: gs-pb-fadeInUp 0.8s 0.7s forwards;
  }
  
  /* Button Styles */
  .sg-ps-cta-wrapper {
    transform: translateY(20px);
    opacity: 0;
    animation: gs-pb-fadeInUp 0.8s 0.9s forwards;
    display: inline-block;
  }
  
  .sg-ps-cta-btn {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%);
    color: #1e293b;
    font-family: Cambria;
    font-weight: 700;
    font-size: 1.1rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 0 10px 20px rgba(245, 158, 11, 0.3);
    position: relative;
    overflow: hidden;
    z-index: 1;
  }
  
  .sg-ps-cta-icon {
    margin-left: 0.5rem;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  }
  
  .sg-ps-btn-hover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    opacity: 0;
    z-index: -1;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  }
  
  .sg-ps-cta-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(245, 158, 11, 0.4);
  }
  
  .sg-ps-cta-btn:hover .sg-ps-cta-icon {
    transform: translateX(5px);
  }
  
  .sg-ps-cta-btn:hover .sg-ps-btn-hover {
    opacity: 1;
  }
  
  /* Germany Flag Animation Styles */
  .gs-pb-flag-container {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
  }
  
  .gs-pb-flag-animation {
    position: relative;
    width: 100%;
    /*max-width: 400px;*/
    aspect-ratio: 3/2;
    transform: translateX(50px);
    opacity: 0;
    animation: gs-pb-fadeInRight 0.8s 1s forwards;
  }
  
  .gs-pb-flag {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transform-style: preserve-3d;
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
    animation: gs-pb-flag-float 8s ease-in-out infinite;
  }
  
  .gs-pb-flag-black,
  .gs-pb-flag-red,
  .gs-pb-flag-gold {
    position: absolute;
    width: 100%;
    height: 33.33%;
    left: 0;
  }
  
  .gs-pb-flag-black {
    top: 0;
    background: #000000;
    transform-origin: top;
    animation: gs-pb-flag-wave 8s ease-in-out infinite;
  }
  
  .gs-pb-flag-red {
    top: 33.33%;
    background: #dd0000;
    transform-origin: center;
    animation: gs-pb-flag-wave 8s ease-in-out infinite 0.2s;
  }
  
  .gs-pb-flag-gold {
    top: 66.66%;
    background: #ffce00;
    transform-origin: bottom;
    animation: gs-pb-flag-wave 8s ease-in-out infinite 0.4s;
  }
  
  .gs-pb-flag-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
  }
  
  .gs-pb-particle {
    position: absolute;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    filter: blur(1px);
    animation: gs-pb-particle-float 10s linear infinite;
  }
  
  .gs-pb-particle-1 {
    width: 6px;
    height: 6px;
    top: 20%;
    left: 15%;
    animation-delay: 0s;
    animation-duration: 12s;
  }
  
  .gs-pb-particle-2 {
    width: 4px;
    height: 4px;
    top: 60%;
    left: 30%;
    animation-delay: 2s;
    animation-duration: 14s;
  }
  
  .gs-pb-particle-3 {
    width: 5px;
    height: 5px;
    top: 40%;
    left: 70%;
    animation-delay: 1s;
    animation-duration: 16s;
  }
  
  .gs-pb-particle-4 {
    width: 3px;
    height: 3px;
    top: 80%;
    left: 50%;
    animation-delay: 3s;
    animation-duration: 18s;
  }
  
  .gs-pb-particle-5 {
    width: 4px;
    height: 4px;
    top: 30%;
    left: 85%;
    animation-delay: 4s;
    animation-duration: 20s;
  }
  
  .gs-pb-flag-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: radial-gradient(circle at center, rgba(255, 206, 0, 0.2) 0%, transparent 70%);
    animation: gs-pb-glow-pulse 6s ease-in-out infinite;
  }
  
  /* Animations */
  @keyframes gs-pb-slideUp {
    to {
      transform: translateY(0);
      opacity: 1;
    }
  }
  
  @keyframes gs-pb-fadeInUp {
    to {
      transform: translateY(0);
      opacity: 1;
    }
  }
  
  @keyframes gs-pb-fadeInRight {
    to {
      transform: translateX(0);
      opacity: 1;
    }
  }
  
  @keyframes gs-pb-float {
    0% {
      transform: translate(0, 0);
    }
    50% {
      transform: translate(50px, 50px);
    }
    100% {
      transform: translate(0, 0);
    }
  }
  
  @keyframes gs-pb-flag-float {
    0%, 100% {
      transform: perspective(1000px) rotateY(0deg) rotateX(0deg) translateY(0);
    }
    50% {
      transform: perspective(1000px) rotateY(5deg) rotateX(5deg) translateY(-20px);
    }
  }
  
  @keyframes gs-pb-flag-wave {
    0%, 100% {
      transform: scaleY(1);
    }
    50% {
      transform: scaleY(1.05);
    }
  }
  
  @keyframes gs-pb-particle-float {
    0% {
      transform: translateY(0) translateX(0);
      opacity: 0;
    }
    10% {
      opacity: 1;
    }
    90% {
      opacity: 1;
    }
    100% {
      transform: translateY(-100px) translateX(20px);
      opacity: 0;
    }
  }
  
  @keyframes gs-pb-glow-pulse {
    0%, 100% {
      opacity: 0.5;
    }
    50% {
      opacity: 0.8;
    }
  }
  
  /* Responsive Design */
  @media (max-width: 992px) {
    .gs-pro-banner {
      padding: 80px 0;
    }
    
    .gs-pb-heading-line {
      font-size: 2.8rem;
    }
    
    .gs-pb-paragraph {
      font-size: 1rem;
    }
    
    .gs-pb-flag-animation {
      max-width: 350px;
    }
  }
  
  @media (max-width: 768px) {
    .gs-pro-banner {
      padding: 60px 0;
      text-align: center;
    }
    
    .gs-pb-heading-line {
      font-size: 2.2rem;
    }
    
    .gs-pb-paragraph {
      margin: 0 auto 2rem;
    }
    
    .sg-ps-cta-wrapper {
      margin: 0 auto;
    }
    
    .gs-pb-flag-container {
      margin-top: 0rem;
      padding: 20px;
    }
    
    .gs-pb-flag-animation {
      max-width: 300px;
    }
  }
  
  @media (max-width: 576px) {
    .gs-pb-heading-line {
      font-size: 1.8rem;
    }
    
    .sg-ps-cta-btn {
      font-size: 1rem;
      padding: 0.8rem 1.5rem;
    }
    
    .gs-pb-flag-animation {
      max-width: 250px;
    }
  }
  /* Germany Flag Hover Animation */
.gs-pb-flag-animation:hover .gs-pb-flag {
  animation: gs-pb-flag-hover 1.5s ease-in-out infinite alternate;
}

.gs-pb-flag-animation:hover .gs-pb-flag-black {
  animation: gs-pb-stripe-hover 1.5s ease-in-out infinite alternate;
}

.gs-pb-flag-animation:hover .gs-pb-flag-red {
  animation: gs-pb-stripe-hover 1.5s ease-in-out 0.2s infinite alternate;
}

.gs-pb-flag-animation:hover .gs-pb-flag-gold {
  animation: gs-pb-stripe-hover 1.5s ease-in-out 0.4s infinite alternate;
}

.gs-pb-flag-animation:hover .gs-pb-particle {
  animation: gs-pb-particle-hover 3s linear infinite !important;
}

.gs-pb-flag-animation:hover .gs-pb-flag-glow {
  animation: gs-pb-glow-hover 1.5s ease-in-out infinite alternate;
}

/* Hover Animation Keyframes */
@keyframes gs-pb-flag-hover {
  0% {
    transform: perspective(1000px) rotateY(0) rotateX(0) scale(1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  }
  100% {
    transform: perspective(1000px) rotateY(10deg) rotateX(5deg) scale(1.05);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  }
}

@keyframes gs-pb-stripe-hover {
  0%, 100% {
    transform: scaleY(1);
  }
  50% {
    transform: scaleY(1.1);
  }
}

@keyframes gs-pb-particle-hover {
  0% {
    transform: translate(0, 0);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translate(random(100) - 50 + px, random(100) - 100 + px);
    opacity: 0;
  }
}

@keyframes gs-pb-glow-hover {
  0%, 100% {
    opacity: 0.7;
    filter: brightness(1);
  }
  50% {
    opacity: 0.9;
    filter: brightness(1.2);
  }
}

 .uk-flag-container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px;
}

.uk-flag-animation {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  max-width: 500px;
  transform: translateX(50px);
  opacity: 0;
  animation: uk-fadeInRight 0.8s 1s forwards;
}

.uk-flag {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 8px;
  animation: uk-flag-float 8s ease-in-out infinite;
}

.uk-flag-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: uk-wave 6s ease-in-out infinite;
  border-radius: 8px;
}

.uk-flag-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 70%);
  border-radius: 8px;
  animation: uk-glow-pulse 6s ease-in-out infinite;
}

.uk-flag-particles {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
}

.uk-particle {
  position: absolute;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  filter: blur(1px);
  animation: uk-particle-float 10s linear infinite;
}

.uk-particle-1 { width: 6px; height: 6px; top: 25%; left: 15%; animation-delay: 0s; }
.uk-particle-2 { width: 5px; height: 5px; top: 55%; left: 75%; animation-delay: 2s; }
.uk-particle-3 { width: 4px; height: 4px; top: 75%; left: 40%; animation-delay: 4s; }

/* Animations */
@keyframes uk-fadeInRight {
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes uk-flag-float {
  0%, 100% {
    transform: rotateY(0deg) rotateX(0deg);
  }
  50% {
    transform: rotateY(2deg) rotateX(3deg) translateY(-10px);
  }
}

@keyframes uk-glow-pulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 0.8; }
}

@keyframes uk-wave {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

@keyframes uk-particle-float {
  0% { transform: translateY(0); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { transform: translateY(-100px); opacity: 0; }
}
.aus-flag-container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px;
}

.aus-flag-animation {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  max-width: 500px;
  transform: translateX(50px);
  opacity: 0;
  animation: aus-fadeInRight 0.8s 1s forwards;
}

.aus-flag {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 8px;
  animation: aus-flag-float 8s ease-in-out infinite;
}

.aus-flag-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: aus-wave 6s ease-in-out infinite;
  border-radius: 8px;
}

.aus-flag-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 70%);
  border-radius: 8px;
  animation: aus-glow-pulse 6s ease-in-out infinite;
}

.aus-flag-particles {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
}

.aus-particle {
  position: absolute;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  filter: blur(1px);
  animation: aus-particle-float 10s linear infinite;
}

.aus-particle-1 { width: 6px; height: 6px; top: 20%; left: 10%; animation-delay: 0s; }
.aus-particle-2 { width: 5px; height: 5px; top: 50%; left: 80%; animation-delay: 2s; }
.aus-particle-3 { width: 4px; height: 4px; top: 70%; left: 30%; animation-delay: 4s; }

/* Animations */
@keyframes aus-fadeInRight {
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes aus-flag-float {
  0%, 100% {
    transform: rotateY(0deg) rotateX(0deg);
  }
  50% {
    transform: rotateY(2deg) rotateX(3deg) translateY(-10px);
  }
}

@keyframes aus-glow-pulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 0.8; }
}

@keyframes aus-wave {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

@keyframes aus-particle-float {
  0% { transform: translateY(0); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { transform: translateY(-100px); opacity: 0; }
}


        /* ===== University Showcase ===== */
        .edux-showcase {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
            gap: 2.5rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .edux-card {
            background: var(--edux-light);
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
            transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            opacity: 0;
            transform: translateY(30px);
            animation: eduxReveal 0.8s forwards;
        }

        @keyframes eduxReveal {
            to { opacity: 1; transform: translateY(0); }
        }

        /* Animation delays */
        .edux-card:nth-child(1) { animation-delay: 0.2s; }
        .edux-card:nth-child(2) { animation-delay: 0.4s; }
        .edux-card:nth-child(3) { animation-delay: 0.6s; }
        .edux-card:nth-child(4) { animation-delay: 0.8s; }

        /* Full-width image container */
        .edux-media-container {
            width: 100%;
            height: 220px;
            overflow: hidden;
            position: relative;
        }

        .edux-media-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.8s ease;
        }

        .edux-card:hover .edux-media-image {
            transform: scale(1.05);
        }

        /* University badge */
        .edux-badge {
            position: absolute;
            top: 15px;
            right: 15px;
            background: var(--edux-accent);
            color: var(--edux-light);
            padding: 0.5rem 1.5rem;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
        }

        /* Card content */
        .edux-content {
            padding: 1.8rem;
        }

        .edux-university-name {
            font-family: Cambria;
            font-weight: 700;
            font-size: 1.5rem;
            color: var(--edux-dark);
            margin-bottom: 0.8rem;
        }

        .edux-rank {
            display: inline-block;
            background: rgba(2, 56, 167, 0.1);
            color: var(--edux-primary);
            padding: 0.4rem 1.2rem;
            border-radius: 20px;
            font-size: 0.9rem;
            font-weight: 600;
            margin-bottom: 1.2rem;
        }

        /* Stats */
        .edux-stats {
            display: flex;
            justify-content: space-between;
            margin-bottom: 1.8rem;
        }

        .edux-stat {
            text-align: center;
            flex: 1;
        }

        .edux-stat-value {
            font-family: Cambria;
            font-weight: 700;
            font-size: 1.3rem;
            color: var(--edux-primary);
            margin-bottom: 0.3rem;
        }

        .edux-stat-label {
            font-size: 0.75rem;
            color: var(--edux-gray);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        /* Button */
        .edux-action-btn {
            display: block;
            width: 100%;
            padding: 0.9rem;
            background: linear-gradient(45deg, var(--edux-primary), var(--edux-secondary));
            color: var(--edux-light);
            border: none;
            border-radius: 8px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .edux-action-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, var(--edux-secondary), var(--edux-primary));
            transition: all 0.4s ease;
            z-index: -1;
        }

        .edux-action-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(2, 56, 167, 0.3);
        }

        .edux-action-btn:hover::before {
            left: 0;
        }

        /* ===== Responsive Design ===== */
        @media (max-width: 1024px) {
            .edux-showcase {
                grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            }
        }

        @media (max-width: 768px) {
            .edux-university-section {
                padding: 4rem 1.5rem;
            }
        }

        @media (max-width: 576px) {
            .edux-showcase {
                grid-template-columns: 1fr;
            }
            
            .edux-media-container {
                height: 180px;
            }
        }
  
  .univ-section {
      background-color: #003087;
      padding: 30px;
      font-family: Arial, sans-serif;
    }

    .univ-card-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 20px;
    }

    .univ-card {
      background-color: #fff;
      border-radius: 20px;
      overflow: hidden;
      display: flex;
      flex-direction: row;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }

    .univ-card-img {
      width: 130px;
      height: 100%;
      object-fit: cover;
    }

    .univ-card-content {
      padding: 16px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      flex: 1;
    }

    .univ-card-logo {
      height: 24px;
      margin-bottom: 8px;
    }

    .univ-card-title {
      font-weight: bold;
      font-size: 16px;
      margin-bottom: 8px;
    }

    .univ-card-courses {
      font-size: 14px;
      color: #666;
      display: flex;
      align-items: center;
      gap: 6px;
    }

    .univ-card-courses::before {
      content: "??";
    }

    @media (max-width: 768px) {
      .univ-card-grid {
        grid-template-columns: 1fr;
      }

      .univ-card {
        flex-direction: column;
      }

      .univ-card-img {
        width: 100%;
        height: 160px;
      }
    }
	
 /* Base Styles */
    .premium-university-section {
      position: relative;
      padding: 3rem 2rem;
      background-color: #003087;
      overflow: hidden;
      font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    }

    /* Background Elements */
    .pus-bg-elements {
      position: absolute;
      width: 100%;
      height: 100%;
      top: 0;
      left: 0;
      z-index: 0;
    }

    .pus-bg-circle {
      position: absolute;
      border-radius: 50%;
      filter: blur(80px);
      opacity: 0.1;
    }

    .pus-bg-1 {
      width: 500px;
      height: 500px;
      background: #3b82f6;
      top: -100px;
      left: -100px;
      animation: pusFloat 15s ease-in-out infinite;
    }

    .pus-bg-2 {
      width: 600px;
      height: 600px;
      background: #8b5cf6;
      bottom: -200px;
      right: -200px;
      animation: pusFloat 18s ease-in-out infinite reverse;
    }

    @keyframes pusFloat {
      0%, 100% { transform: translate(0, 0); }
      50% { transform: translate(50px, 50px); }
    }

    /* Header */
    .edu-header {
      position: relative;
      z-index: 2;
      max-width: 1200px;
      margin: 0 auto 2.2rem;
      text-align: center;
    }

    .du-main-title {
      font-family: Cambria;
      font-weight: 800;
      font-size: clamp(2rem, 5vw, 3rem);
      margin-bottom: 3rem;
      color: white;
    }

    /* Owl Carousel Custom Styles */
    .pus-carousel-wrapper {
      position: relative;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 15px;
    }

    .owl-carousel .pus-card {
      margin: 0 10px;
      height: 100%;
    }

    .owl-nav {
      position: absolute;
      top: 50%;
      width: 100%;
      transform: translateY(-50%);
      display: flex;
      justify-content: space-between;
      pointer-events: none;
    }

    .owl-prev, 
    .owl-next {
      pointer-events: all;
      background-color: #ffffffdd !important;
      border: none !important;
      border-radius: 999px !important;
      padding: 0.5rem 0.8rem !important;
      font-size: 1.5rem !important;
      cursor: pointer;
      height: 48px;
      width: 48px;
      display: flex !important;
      align-items: center;
      justify-content: center;
      box-shadow: 0 4px 10px rgba(0,0,0,0.1) !important;
      transition: all 0.3s ease !important;
    }

    .owl-prev:hover, 
    .owl-next:hover {
      background-color: #ffffff !important;
    }

    .owl-prev {
      left: -20px !important;
    }

    .owl-next {
      right: -20px !important;
    }

    .owl-dots {
      margin-top: 20px !important;
      text-align: center;
    }

    .owl-dot span {
      background: #d6d6d6 !important;
      width: 10px !important;
      height: 10px !important;
      margin: 5px 7px !important;
    }

    .owl-dot.active span {
      background: #003087 !important;
    }

    /* University Card */
    .pus-card {
      perspective: 1000px;
    }

    .pus-card-inner {
      position: relative;
      width: 100%;
      height: 100%;
      background: white;
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
      transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
      transform-style: preserve-3d;
      display: flex;
      flex-direction: row;
    }

    .pus-card:hover .pus-card-inner {
      transform: translateY(-10px) rotateY(5deg);
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    }

    /* Image Container */
    .pus-image-container {
          /* width: 140px; */
        flex: 0.5;
        /* height: 100%; */
        position: relative;
        overflow: hidden;
    }
        .owl-nav{
            display:none !important;
        }
    .pus-card-img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 1.2s cubic-bezier(0.165, 0.84, 0.44, 1);
    }

    .pus-card:hover .pus-card-img {
      transform: scale(1.1);
    }

    .pus-image-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.3));
    }

    /* Card Content */
    .pus-card-content {
      padding: 1.5rem;
      flex: 1;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .pus-card-logo {
      height: 50px;
      width: auto;
      max-width: 120px;
      margin-bottom: 1rem;
      object-fit: contain;
      transition: transform 0.3s ease;
    }

    .pus-card:hover .pus-card-logo {
      transform: scale(1.05);
    }

    .pus-card-title {
      font-family: Cambria;
      font-weight: 700;
      font-size: 1.1rem;
      color: #1e293b;
      margin-bottom: 0.75rem;
      line-height: 1.3;
    }

    .pus-card-courses {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      font-size: 0.9rem;
      color: #64748b;
      margin-top: 0.5rem;
    }

    .pus-card-courses svg {
      color: #f59e0b;
      flex-shrink: 0;
    }

    .divvb {
      display: flex;
      align-items: center;
      gap: 5px;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
      .owl-nav {
        display: none;
      }
      
      .pus-carousel-wrapper {
        padding: 0;
      }
      
      .pus-card-inner {
        flex-direction: column;
      }
      
      .pus-image-container {
        width: 100%;
        height: 180px;
      }
    }

    @media (max-width: 480px) {
      .premium-university-section {
        padding: 3rem 1rem;
      }
      
      .du-main-title {
        font-size: 1.8rem;
      }
    }
		.guidance-section {
      background: linear-gradient(135deg, #0249afcf, #0249af);
      padding: 2rem 2rem;
      border-radius: 20px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: space-between;
      gap: 1.5rem;
      color: #fff;
      animation: fadeInUp 1s ease forwards;
      opacity: 0;
    }

    @keyframes fadeInUp {
      from {
        transform: translateY(40px);
        opacity: 0;
      }
      to {
        transform: translateY(0);
        opacity: 1;
      }
    }

    .guidance-text {
      font-size: 1.5rem;
      font-weight: 600;
      text-align: center;
    }

    .guidance-buttons {
      display: flex;
      gap: 1rem;
      flex-wrap: wrap;
    }

    .btn-outline,
    .btn-filled {
      padding: 0.75rem 1.5rem;
      font-size: 1rem;
      border-radius: 8px;
      cursor: pointer;
      transition: all 0.3s ease;
      font-weight: 500;
    }

    .btn-outline {
      background: transparent;
      border: 2px solid #fff;
      color: #fff;
    }

    .btn-outline:hover {
      background: #ffffff22;
    }

    .btn-filled {
		background: linear-gradient(135deg, #f9f9f9, #ffffff);
		border: none;
		color: #1859b6;
		font-weight: 800;
		box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
	}

    .btn-filled:hover {
      opacity: 0.9;
    }

    @media (min-width: 768px) {
      .guidance-section {
        flex-direction: row;
        text-align: left;
        padding: 3rem 3rem;
      }
      .guidance-text {
        font-size: 1.75rem;
      }
    }
	.study-sticky-nav {
  background: #003974;
  padding: 10px 0;
  border-radius: 0 0 40px 40px;
  transition: all 0.3s ease;
  position: relative;
  z-index: 999;
  overflow-x: auto;
  white-space: nowrap;
}

.study-sticky-nav.sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  border-radius: 0;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.study-sticky-nav .nav-items {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  flex-wrap: nowrap;
  list-style: none;
  margin: 0;
  padding: 0;
  overflow-x: auto;
  white-space: nowrap;
  scroll-behavior: smooth;
}

.study-sticky-nav .nav-items li {
  display: inline-block;
  margin: 0 15px;
}

.study-sticky-nav .nav-items li a {
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  font-size: 17px;
  padding: 10px 0;
  display: inline-block;
  transition: 0.3s;
}

.study-sticky-nav .nav-items li a:hover {
  color: #ffcc00;
}

/* Optional scrollbar styling */
.study-sticky-nav .nav-items::-webkit-scrollbar {
  height: 6px;
}
.study-sticky-nav .nav-items::-webkit-scrollbar-thumb {
  background: #999;
  border-radius: 3px;
}



.gs-popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  padding: 20px;
}

.gs-popup-container {
  background: #fff;
  display: flex;
  max-width: 800px;
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  animation: slideUp 0.4s ease;
}

.gs-popup-left {
  flex: 1;
  background: #f0f0f0;
}
.gs-popup-left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gs-popup-right {
  flex: 1;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.gs-popup-right h3 {
  margin-bottom: 20px;
  font-size: 24px;
}

.gs-form-group {
  margin-bottom: 15px;
}
.gs-form-group input {
  width: 100%;
  padding: 12px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 8px;
}
.gs-popup-form button {
  background: #007bff;
  color: #fff;
  border: none;
  padding: 12px;
  width: 100%;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
}

.gs-popup-close {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 28px;
  color: #000;
  cursor: pointer;
}

/* Responsive */
@media (max-width: 767px) {
  .gs-popup-container {
    flex-direction: column;
  }
  .gs-popup-left {
    display: none;
  }
  .gs-popup-right {
    padding: 20px;
  }
}

@keyframes slideUp {
  from {
    transform: translateY(50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
/* Overlay style */
.quote-popup-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

/* Popup content */
.quote-popup-content {
  background: #fff;
  display: flex;
  width: 90%;
  max-width: 700px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
  transform: translateX(100%);
  opacity: 0;
  transition: all 0.5s ease;
}

/* Show animation class */
.quote-popup-overlay .quote-popup-content.animate-slide-in {
  transform: translateX(0);
  opacity: 1;
}

/* Close button */
.quote-popup-close {
  position: absolute;
  top: 15px;
  right: 20px;
  background: transparent;
  border: none;
  font-size: 28px;
  cursor: pointer;
}

/* Image section */
.quote-popup-image {
  width: 50%;
  background: #f0f0f0;
}
.quote-popup-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Form section */
.quote-popup-form {
  padding: 30px;
  width: 50%;
}
.quote-popup-form h3 {
  margin-bottom: 20px;
}
.quote-popup-form input {
  width: 100%;
  margin-bottom: 15px;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
}
.quote-popup-form button {
  padding: 12px 20px;
  background: #0066ff;
  color: #fff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease;
}
.quote-popup-form button:hover {
  background: #004bb5;
}

/* Responsive */
@media (max-width: 768px) {
  .quote-popup-content {
    flex-direction: column;
    transform: translateY(100%);
  }
  .quote-popup-image,
  .quote-popup-form {
    width: 100%;
  }
}
/* Bounce in on open */
.quote-popup-content.animate-slide-in {
  animation: popupIn 0.6s ease forwards;
}

@keyframes popupIn {
  from {
    opacity: 0;
    transform: translateX(100%);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

body{
        font-family: Cambria !important;
}




.usa-flag-container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px;
}

.usa-flag-animation {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  max-width: 500px;
  transform: translateX(50px);
  opacity: 0;
  animation: usa-fadeInRight 0.8s 1s forwards;
}

.usa-flag {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 8px;
  animation: usa-flag-float 8s ease-in-out infinite;
}

.usa-flag-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: usa-wave 6s ease-in-out infinite;
  border-radius: 8px;
}

.usa-flag-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 70%);
  border-radius: 8px;
  animation: usa-glow-pulse 6s ease-in-out infinite;
}

.usa-flag-particles {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
}

.usa-particle {
  position: absolute;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  filter: blur(1px);
  animation: usa-particle-float 10s linear infinite;
}

.usa-particle-1 { width: 6px; height: 6px; top: 30%; left: 10%; animation-delay: 0s; }
.usa-particle-2 { width: 5px; height: 5px; top: 60%; left: 80%; animation-delay: 2s; }
.usa-particle-3 { width: 4px; height: 4px; top: 80%; left: 35%; animation-delay: 4s; }

/* Animations */
@keyframes usa-fadeInRight {
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes usa-flag-float {
  0%, 100% {
    transform: rotateY(0deg) rotateX(0deg);
  }
  50% {
    transform: rotateY(-2deg) rotateX(2deg) translateY(-10px);
  }
}

@keyframes usa-glow-pulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 0.8; }
}

@keyframes usa-wave {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

@keyframes usa-particle-float {
  0% { transform: translateY(0); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { transform: translateY(-100px); opacity: 0; }
}


/* Base Sticky Nav Styles */
.study-sticky-nav {
  position: sticky;
  top: 0;
  background-color: #003974;
  padding: 10px 0;
  z-index: 998;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

/* Navigation Items Container */
.study-sticky-nav .nav-items {
  display: flex;
  justify-content: center;
  list-style: none;
  margin: 0;
  padding: 0;
  transition: all 0.3s ease;
}

/* Navigation Links */
.study-sticky-nav .nav-items li a {
  color: white;
  text-decoration: none;
  padding: 10px 15px;
  font-weight: 500;
  display: block;
  transition: all 0.3s ease;
}

.study-sticky-nav .nav-items li a:hover {
  color: #ffcc00;
}

/* Toggle button styling */
.nav-toggle-btn {
  display: none;
  background: #ffcc00;
  color: #003974;
  border: none;
  font-size: 16px;
  font-weight: bold;
  padding: 8px 16px;
  margin-left: 15px;
  border-radius: 5px;
  cursor: pointer;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .nav-toggle-btn {
    display: inline-block;
  }

  .study-sticky-nav .nav-items {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    background-color: #003974;
    padding: 10px 15px;
    max-height: 115vh;
    overflow-y: auto;
    width: 100%;
  }

  .study-sticky-nav .nav-items.show {
    display: flex;
  }

  .study-sticky-nav .nav-items li {
    margin: 10px 0;
    width: 100%;
  }

  .study-sticky-nav .nav-items li a {
    padding: 12px 10px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }

  /* Scrollbar styling for mobile */
  .study-sticky-nav .nav-items::-webkit-scrollbar {
    width: 6px;
  }
  
  .study-sticky-nav .nav-items::-webkit-scrollbar-track {
    background: rgba(0,0,0,0.1);
  }
  
  .study-sticky-nav .nav-items::-webkit-scrollbar-thumb {
    background: #ffcc00;
    border-radius: 3px;
  }
}




.canada-flag-container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px;
}

.canada-flag-animation {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  max-width: 500px;
  transform: translateX(50px);
  opacity: 0;
  animation: canada-fadeInRight 0.8s 1s forwards;
}

.canada-flag {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 8px;
  animation: canada-flag-float 8s ease-in-out infinite;
}

.canada-flag-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: canada-wave 6s ease-in-out infinite;
  border-radius: 8px;
}

.canada-flag-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, transparent 70%);
  border-radius: 8px;
  animation: canada-glow-pulse 6s ease-in-out infinite;
}

.canada-flag-particles {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
}

.canada-particle {
  position: absolute;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  filter: blur(1px);
  animation: canada-particle-float 10s linear infinite;
}

.canada-particle-1 { width: 6px; height: 6px; top: 25%; left: 15%; animation-delay: 0s; }
.canada-particle-2 { width: 5px; height: 5px; top: 50%; left: 75%; animation-delay: 2s; }
.canada-particle-3 { width: 4px; height: 4px; top: 70%; left: 30%; animation-delay: 4s; }

/* Animations */
@keyframes canada-fadeInRight {
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes canada-flag-float {
  0%, 100% {
    transform: rotateY(0deg) rotateX(0deg);
  }
  50% {
    transform: rotateY(-2deg) rotateX(2deg) translateY(-10px);
  }
}

@keyframes canada-glow-pulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 0.8; }
}

@keyframes canada-wave {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

@keyframes canada-particle-float {
  0% { transform: translateY(0); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { transform: translateY(-100px); opacity: 0; }
}



.ireland-flag-container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px;
}

.ireland-flag-animation {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  max-width: 500px;
  transform: translateX(50px);
  opacity: 0;
  animation: ireland-fadeInRight 0.8s 1s forwards;
}

.ireland-flag {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 8px;
  animation: ireland-flag-float 8s ease-in-out infinite;
}

.ireland-flag-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: ireland-wave 6s ease-in-out infinite;
  border-radius: 8px;
}

.ireland-flag-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, transparent 70%);
  border-radius: 8px;
  animation: ireland-glow-pulse 6s ease-in-out infinite;
}

.ireland-flag-particles {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
}

.ireland-particle {
  position: absolute;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  filter: blur(1px);
  animation: ireland-particle-float 10s linear infinite;
}

.ireland-particle-1 { width: 6px; height: 6px; top: 30%; left: 20%; animation-delay: 0s; }
.ireland-particle-2 { width: 5px; height: 5px; top: 55%; left: 70%; animation-delay: 2s; }
.ireland-particle-3 { width: 4px; height: 4px; top: 75%; left: 35%; animation-delay: 4s; }

/* Animations */
@keyframes ireland-fadeInRight {
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes ireland-flag-float {
  0%, 100% {
    transform: rotateY(0deg) rotateX(0deg);
  }
  50% {
    transform: rotateY(-2deg) rotateX(2deg) translateY(-10px);
  }
}

@keyframes ireland-glow-pulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 0.8; }
}

@keyframes ireland-wave {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

@keyframes ireland-particle-float {
  0% { transform: translateY(0); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { transform: translateY(-100px); opacity: 0; }
}



.newzealand-flag-container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px;
}

.newzealand-flag-animation {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  max-width: 500px;
  transform: translateX(50px);
  opacity: 0;
  animation: nz-fadeInRight 0.8s 1s forwards;
}

.newzealand-flag {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 8px;
  animation: nz-flag-float 8s ease-in-out infinite;
}

.newzealand-flag-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: nz-wave 6s ease-in-out infinite;
  border-radius: 8px;
}

.newzealand-flag-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 70%);
  border-radius: 8px;
  animation: nz-glow-pulse 6s ease-in-out infinite;
}

.newzealand-flag-particles {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
}

.newzealand-particle {
  position: absolute;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  filter: blur(1px);
  animation: nz-particle-float 10s linear infinite;
}

.newzealand-particle-1 { width: 6px; height: 6px; top: 30%; left: 20%; animation-delay: 0s; }
.newzealand-particle-2 { width: 5px; height: 5px; top: 55%; left: 70%; animation-delay: 2s; }
.newzealand-particle-3 { width: 4px; height: 4px; top: 75%; left: 35%; animation-delay: 4s; }

/* Animations */
@keyframes nz-fadeInRight {
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes nz-flag-float {
  0%, 100% {
    transform: rotateY(0deg) rotateX(0deg);
  }
  50% {
    transform: rotateY(-2deg) rotateX(2deg) translateY(-10px);
  }
}

@keyframes nz-glow-pulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.7; }
}

@keyframes nz-wave {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

@keyframes nz-particle-float {
  0% { transform: translateY(0); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { transform: translateY(-100px); opacity: 0; }
}


/* Existing styles remain the same */

/* Mobile & Tablet Layout Reordering */
@media (max-width: 992px) { /* Adjust breakpoint if needed */
  .gs-pb-content .row {
    flex-direction: column-reverse; /* Reverse column order */
  }
  .usa-flag-container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0px;
}
  .gs-pb-heading-line {
        display: block;
         margin-top: 0px; 
        font-size: 1.5rem;
        line-height: 1.2;
        transform: translateY(100%);
        opacity: 0;
        animation: gs-pb-slideUp 0.8s forwards;
    }
  
  .gs-pb-flag-container {
    margin-bottom: 30px; /* Add space between flag and content */
    text-align: center; /* Center the flag */
  }
  
  .gs-pb-heading {
    text-align: center !important; /* Ensure heading stays centered */
  }
  
  .gs-pb-paragraph {
    text-align: center; /* Center text on mobile */
  }
}

/* Default Desktop Layout (content left, flag right) */
.gs-pb-content .row {
  display: flex;
  flex-wrap: wrap;
}

/* Mobile & Tablet Layout (flag above content) */
@media (max-width: 992px) {
  .gs-pb-content .row {
    flex-direction: column;
  }
  
  .col-lg-5.usa-flag-container {
    order: -1; /* This forces flag to appear first */
    margin-bottom: 0px;
    display: flex;
    justify-content: center;
  }
  
  .col-lg-7 {
    width: 100%;
  }
  
  /* Center align all text elements */
  .gs-pb-heading,
  .gs-pb-paragraph-wrapper {
    text-align: center;
  }
  
  /* Adjust flag size */
  .usa-flag-img {
    max-width: 280px;
    width: 100%;
    height: auto;
  }
}


/* Default Desktop Layout (content left, flag right) */
.gs-pb-content .row {
  display: flex;
  flex-wrap: wrap;
}

/* Mobile & Tablet Layout (flag above content) */
@media (max-width: 992px) {
  .gs-pb-content .row {
    display: flex;
    flex-direction: column;
  }
      .uk-flag-container {
        display: flex;
        justify-content: center;
        align-items: center;
         padding: 0px; 
    }
  
  .col-lg-5.uk-flag-container {
    order: -1 !important; /* Forces flag to appear first */
    margin-bottom: 30px;
    width: 100%;
    text-align: center;
  }
  
  .col-lg-7 {
    width: 100%;
  }
  
  /* Center align all text elements */
  .gs-pb-heading,
  .gs-pb-paragraph-wrapper {
    text-align: center;
  }
  
  /* Adjust flag size for mobile */
  .uk-flag-img {
    max-width: 280px;
    width: 100%;
    height: auto;
    margin: 0 auto;
    display: block;
  }
  
  /* Center the flag animation container */
  .uk-flag-animation {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
  }
}


/* Canada Banner Mobile Reordering */
@media (max-width: 992px) {
  .gs-pb-content .row.align-items-center {
    display: flex;
    flex-direction: column;
  }
  .canada-flag-container {
    display: flex;
    justify-content: center;
    align-items: center;
     padding: 0px; 
    }
  
  .col-lg-5.canada-flag-container {
    order: -1;
    margin-bottom: 20px;
    width: 100%;
    text-align: center;
  }
  
  .canada-flag-img {
    max-width: 280px;
    width: 100%;
    height: auto;
    margin: 0 auto;
    display: block;
  }
  
  .canada-flag-animation {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
  }
  
  .col-lg-7 {
    width: 100%;
    text-align: center;
  }
  
  .gs-pb-paragraph {
    text-align: center;
  }
}

/* Ensure desktop layout remains unchanged */
@media (min-width: 993px) {
  .col-lg-5.canada-flag-container {
    order: initial;
  }
}



/* Australia Banner Mobile Reordering */
@media (max-width: 992px) {
  .gs-pb-content .row.align-items-center {
    display: flex;
    flex-direction: column;
  }
  .aus-flag-container {
      display: flex;
      justify-content: center;
      align-items: center;
      padding: 0px;
    }
  .col-lg-5.aus-flag-container {
    order: -1;
    margin-bottom: 0px;
    width: 100%;
    text-align: center;
  }
  
  .aus-flag-img {
    max-width: 280px;
    width: 100%;
    height: auto;
    margin: 0 auto;
    display: block;
  }
  
  .aus-flag-animation {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
  }
  
  .col-lg-7 {
    width: 100%;
  }
  
  .gs-pb-paragraph {
    text-align: center;
  }
}

/* Desktop layout remains unchanged */
@media (min-width: 993px) {
  .col-lg-5.aus-flag-container {
    order: initial;
  }
}



/* Ireland Banner Mobile Reordering */
@media (max-width: 992px) {
  .gs-pb-content .row.align-items-center {
    display: flex;
    flex-direction: column;
  }
  .ireland-flag-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0px;
}
  
  .col-lg-5.ireland-flag-container {
    order: -1; /* Forces flag to top */
    margin-bottom: 0px;
    width: 100%;
    text-align: center;
  }
  
  .ireland-flag-img {
    max-width: 280px;
    width: 100%;
    height: auto;
    margin: 0 auto;
    display: block;
  }
  
  .ireland-flag-animation {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
  }
  
  .col-lg-7 {
    width: 100%;
  }
  
  /* Center align text on mobile */
  .gs-pb-paragraph {
    text-align: center;
  }
}

/* Desktop layout reset */
@media (min-width: 993px) {
  .col-lg-5.ireland-flag-container {
    order: initial; /* Resets to original position */
  }
}


/* New Zealand Banner Mobile Reordering */
@media (max-width: 992px) {
  .gs-pb-content .row.align-items-center {
    display: flex;
    flex-direction: column;
  }
  .newzealand-flag-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}
  .col-lg-5.newzealand-flag-container {
    order: -1; /* Forces flag to top */
    margin-bottom: 0px;
    width: 100%;
    text-align: center;
  }
  
  .newzealand-flag-img {
    max-width: 280px;
    width: 100%;
    height: auto;
    margin: 0 auto;
    display: block;
  }
  
  .newzealand-flag-animation {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
  }
  
  .col-lg-7 {
    width: 100%;
  }
  
  /* Center align text on mobile */
  .gs-pb-heading,
  .gs-pb-paragraph {
    text-align: center;
  }
}

/* Desktop layout reset */
@media (min-width: 993px) {
  .col-lg-5.newzealand-flag-container {
    order: initial; /* Resets to original position */
  }
  
  /* Fix for New Zealand spelling in heading */
  .gs-pb-heading-line {
    text-transform: capitalize;
  }
}

/* Stronger selector if needed */
@media (max-width: 992px) {
  .gs-pb-content .row.align-items-center {
    display: flex !important;
    flex-direction: column !important;
  }
  
  .col-lg-5.newzealand-flag-container {
    order: -1 !important;
  }
}

.singapore-flag-container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px;
}

.singapore-flag-animation {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  max-width: 500px;
  transform: translateX(50px);
  opacity: 0;
  animation: sg-fadeInRight 0.8s 1s forwards;
}

.singapore-flag {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 8px;
  animation: sg-flag-float 8s ease-in-out infinite;
}

.singapore-flag-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: sg-wave 6s ease-in-out infinite;
  border-radius: 8px;
}

.singapore-flag-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 70%);
  border-radius: 8px;
  animation: sg-glow-pulse 6s ease-in-out infinite;
}

.singapore-flag-particles {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
}

.singapore-particle {
  position: absolute;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  filter: blur(1px);
  animation: sg-particle-float 10s linear infinite;
}

.singapore-particle-1 { width: 6px; height: 6px; top: 20%; left: 30%; animation-delay: 0s; }
.singapore-particle-2 { width: 5px; height: 5px; top: 60%; left: 65%; animation-delay: 2s; }
.singapore-particle-3 { width: 4px; height: 4px; top: 80%; left: 40%; animation-delay: 4s; }

/* Animations */
@keyframes sg-fadeInRight {
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes sg-flag-float {
  0%, 100% {
    transform: rotateY(0deg) rotateX(0deg);
  }
  50% {
    transform: rotateY(-2deg) rotateX(2deg) translateY(-10px);
  }
}

@keyframes sg-glow-pulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.7; }
}

@keyframes sg-wave {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

@keyframes sg-particle-float {
  0% { transform: translateY(0); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { transform: translateY(-100px); opacity: 0; }
}
/* Singapore Banner Mobile Reordering */
@media (max-width: 992px) {
  .gs-pb-content .row.align-items-center {
    display: flex;
    flex-direction: column;
  }
  .singapore-flag-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0px !important;
}
  
  .col-lg-5.singapore-flag-container {
    order: -1; /* Forces flag to top */
    margin-bottom: 30px;
    width: 100%;
    text-align: center;
  }
  
  .singapore-flag-img {
    max-width: 280px;
    width: 100%;
    height: auto;
    margin: 0 auto;
    display: block;
  }
  
  .singapore-flag-animation {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
  }
  
  .col-lg-7 {
    width: 100%;
  }
  
  /* Center align text on mobile */
  .gs-pb-heading,
  .gs-pb-paragraph {
    text-align: center;
  }
}

/* Desktop layout reset */
@media (min-width: 993px) {
  .col-lg-5.singapore-flag-container {
    order: initial; /* Resets to original position */
  }
}

/* Stronger selectors if needed */
@media (max-width: 992px) {
  .gs-pb-content .row.align-items-center {
    display: flex !important;
    flex-direction: column !important;
  }
  
  .col-lg-5.singapore-flag-container {
    order: -1 !important;
  }
}


.netherlands-flag-container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px;
}

.netherlands-flag-animation {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  max-width: 500px;
  transform: translateX(50px);
  opacity: 0;
  animation: nl-fadeInRight 0.8s 1s forwards;
}

.netherlands-flag {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 8px;
  animation: nl-flag-float 8s ease-in-out infinite;
}

.netherlands-flag-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: nl-wave 6s ease-in-out infinite;
  border-radius: 8px;
}

.netherlands-flag-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 70%);
  border-radius: 8px;
  animation: nl-glow-pulse 6s ease-in-out infinite;
}

.netherlands-flag-particles {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
}

.netherlands-particle {
  position: absolute;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  filter: blur(1px);
  animation: nl-particle-float 10s linear infinite;
}

.netherlands-particle-1 { width: 6px; height: 6px; top: 15%; left: 35%; animation-delay: 0s; }
.netherlands-particle-2 { width: 5px; height: 5px; top: 55%; left: 60%; animation-delay: 2s; }
.netherlands-particle-3 { width: 4px; height: 4px; top: 75%; left: 45%; animation-delay: 4s; }

/* Animations */
@keyframes nl-fadeInRight {
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes nl-flag-float {
  0%, 100% {
    transform: rotateY(0deg) rotateX(0deg);
  }
  50% {
    transform: rotateY(-2deg) rotateX(2deg) translateY(-10px);
  }
}

@keyframes nl-glow-pulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.7; }
}

@keyframes nl-wave {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

@keyframes nl-particle-float {
  0% { transform: translateY(0); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { transform: translateY(-100px); opacity: 0; }
}
/* Netherlands Banner Mobile Reordering */
@media (max-width: 992px) {
  .gs-pb-content .row.align-items-center {
    display: flex !important;
    flex-direction: column !important;
  }
  .netherlands-flag-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0px;
}
  .col-lg-5.netherlands-flag-container {
    order: -1 !important;
    margin-bottom: 30px !important;
    width: 100% !important;
    text-align: center !important;
  }
  
  .netherlands-flag-img {
    max-width: 280px !important;
    width: 100% !important;
    height: auto !important;
    margin: 0 auto !important;
    display: block !important;
  }
  
  .netherlands-flag-animation {
    display: flex !important;
    justify-content: center !important;
    flex-direction: column !important;
    align-items: center !important;
  }
  
  .col-lg-7 {
    width: 100% !important;
  }
  
  /* Center align text on mobile */
  .gs-pb-heading,
  .gs-pb-paragraph {
    text-align: center !important;
  }
}

/* Desktop layout reset */
@media (min-width: 993px) {
  .col-lg-5.netherlands-flag-container {
    order: initial !important;
  }
}

.hungary-flag-container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px;
}

.hungary-flag-animation {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  max-width: 500px;
  transform: translateX(50px);
  opacity: 0;
  animation: hu-fadeInRight 0.8s 1s forwards;
}

.hungary-flag {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 8px;
  animation: hu-flag-float 8s ease-in-out infinite;
}

.hungary-flag-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: hu-wave 6s ease-in-out infinite;
  border-radius: 8px;
}

.hungary-flag-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 70%);
  border-radius: 8px;
  animation: hu-glow-pulse 6s ease-in-out infinite;
}

.hungary-flag-particles {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
}

.hungary-particle {
  position: absolute;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  filter: blur(1px);
  animation: hu-particle-float 10s linear infinite;
}

.hungary-particle-1 { width: 6px; height: 6px; top: 20%; left: 30%; animation-delay: 0s; }
.hungary-particle-2 { width: 5px; height: 5px; top: 60%; left: 65%; animation-delay: 2s; }
.hungary-particle-3 { width: 4px; height: 4px; top: 75%; left: 50%; animation-delay: 4s; }

/* Animations */
@keyframes hu-fadeInRight {
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes hu-flag-float {
  0%, 100% {
    transform: rotateY(0deg) rotateX(0deg);
  }
  50% {
    transform: rotateY(-2deg) rotateX(2deg) translateY(-10px);
  }
}

@keyframes hu-glow-pulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.7; }
}

@keyframes hu-wave {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

@keyframes hu-particle-float {
  0% { transform: translateY(0); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { transform: translateY(-100px); opacity: 0; }
}
/* Hungary Banner Mobile Reordering */
@media (max-width: 992px) {
  .gs-pb-content .row.align-items-center {
    display: flex;
    flex-direction: column;
  }
 .hungary-flag-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0px;
}
  .col-lg-5.hungary-flag-container {
    order: -1; /* Forces flag to top */
    margin-bottom: 30px;
    width: 100%;
    text-align: center;
  }
  
  .hungary-flag-img {
    max-width: 280px;
    width: 100%;
    height: auto;
    margin: 0 auto;
    display: block;
  }
  
  .hungary-flag-animation {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
  }
  
  .col-lg-7 {
    width: 100%;
  }
  
  /* Center align text on mobile */
  .gs-pb-heading,
  .gs-pb-paragraph {
    text-align: center;
  }
}

/* Desktop layout reset */
@media (min-width: 993px) {
  .col-lg-5.hungary-flag-container {
    order: initial; /* Resets to original position */
  }
}

/* Stronger selectors if needed */
@media (max-width: 992px) {
  .gs-pb-content .row.align-items-center {
    display: flex !important;
    flex-direction: column !important;
  }
  
  .col-lg-5.hungary-flag-container {
    order: -1 !important;
  }
}

.spain-flag-container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px;
}

.spain-flag-animation {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  max-width: 500px;
  transform: translateX(50px);
  opacity: 0;
  animation: es-fadeInRight 0.8s 1s forwards;
}

.spain-flag {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 8px;
  animation: es-flag-float 8s ease-in-out infinite;
}

.spain-flag-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: es-wave 6s ease-in-out infinite;
  border-radius: 8px;
}

.spain-flag-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 70%);
  border-radius: 8px;
  animation: es-glow-pulse 6s ease-in-out infinite;
}

.spain-flag-particles {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
}

.spain-particle {
  position: absolute;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  filter: blur(1px);
  animation: es-particle-float 10s linear infinite;
}

.spain-particle-1 { width: 6px; height: 6px; top: 25%; left: 30%; animation-delay: 0s; }
.spain-particle-2 { width: 5px; height: 5px; top: 55%; left: 65%; animation-delay: 2s; }
.spain-particle-3 { width: 4px; height: 4px; top: 80%; left: 45%; animation-delay: 4s; }

/* Animations */
@keyframes es-fadeInRight {
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes es-flag-float {
  0%, 100% {
    transform: rotateY(0deg) rotateX(0deg);
  }
  50% {
    transform: rotateY(-2deg) rotateX(2deg) translateY(-10px);
  }
}

@keyframes es-glow-pulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.7; }
}

@keyframes es-wave {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

@keyframes es-particle-float {
  0% { transform: translateY(0); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { transform: translateY(-100px); opacity: 0; }
}
/* Spain Banner Mobile Reordering */
@media (max-width: 992px) {
  .gs-pb-content .row.align-items-center {
    display: flex !important;
    flex-direction: column !important;
  }
  .spain-flag-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0px;
}
  
  .col-lg-5.spain-flag-container {
    order: -1 !important;
    margin-bottom: 30px !important;
    width: 100% !important;
    text-align: center !important;
  }
  
  .spain-flag-img {
    max-width: 280px !important;
    width: 100% !important;
    height: auto !important;
    margin: 0 auto !important;
    display: block !important;
  }
  
  .spain-flag-animation {
    display: flex !important;
    justify-content: center !important;
    flex-direction: column !important;
    align-items: center !important;
  }
  
  .col-lg-7 {
    width: 100% !important;
  }
  
  /* Center align text on mobile */
  .gs-pb-heading,
  .gs-pb-paragraph {
    text-align: center !important;
  }
}

/* Desktop layout reset */
@media (min-width: 993px) {
  .col-lg-5.spain-flag-container {
    order: initial !important;
  }
}
.tuition-card:nth-child(1) .tuition-amount, .tuition-card:nth-child(3) .tuition-amount {
    color: #0249af;
    font-size: 20px;
}
.tuition-card:nth-child(2) .tuition-amount {
    color: white;
    font-size: 20px;
}

.france-flag-container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px;
}

.france-flag-animation {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  max-width: 500px;
  transform: translateX(50px);
  opacity: 0;
  animation: fr-fadeInRight 0.8s 1s forwards;
}

.france-flag {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 8px;
  animation: fr-flag-float 8s ease-in-out infinite;
}

.france-flag-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: fr-wave 6s ease-in-out infinite;
  border-radius: 8px;
}

.france-flag-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 70%);
  border-radius: 8px;
  animation: fr-glow-pulse 6s ease-in-out infinite;
}

.france-flag-particles {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
}

.france-particle {
  position: absolute;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  filter: blur(1px);
  animation: fr-particle-float 10s linear infinite;
}

.france-particle-1 { width: 6px; height: 6px; top: 25%; left: 30%; animation-delay: 0s; }
.france-particle-2 { width: 5px; height: 5px; top: 55%; left: 65%; animation-delay: 2s; }
.france-particle-3 { width: 4px; height: 4px; top: 80%; left: 45%; animation-delay: 4s; }

/* Animations */
@keyframes fr-fadeInRight {
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes fr-flag-float {
  0%, 100% {
    transform: rotateY(0deg) rotateX(0deg);
  }
  50% {
    transform: rotateY(-2deg) rotateX(2deg) translateY(-10px);
  }
}

@keyframes fr-glow-pulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.7; }
}

@keyframes fr-wave {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

@keyframes fr-particle-float {
  0% { transform: translateY(0); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { transform: translateY(-100px); opacity: 0; }
}


/* France Banner Mobile Reordering */
@media (max-width: 992px) {
  .gs-pb-content .row.align-items-center {
    display: flex !important;
    flex-direction: column !important;
  }
  .france-flag-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0px;
}
  
  .col-lg-5.france-flag-container {
    order: -1 !important;
    margin-bottom: 30px !important;
    width: 100% !important;
    text-align: center !important;
  }
  
  .france-flag-img {
    max-width: 280px !important;
    width: 100% !important;
    height: auto !important;
    margin: 0 auto !important;
    display: block !important;
  }
  
  .france-flag-animation {
    display: flex !important;
    justify-content: center !important;
    flex-direction: column !important;
    align-items: center !important;
  }
  
  .col-lg-7 {
    width: 100% !important;
  }
  
  /* Center align text on mobile */
  .gs-pb-heading,
  .gs-pb-paragraph {
    text-align: center !important;
  }
}

/* Desktop layout reset */
@media (min-width: 993px) {
  .col-lg-5.france-flag-container {
    order: initial !important;
  }
}



.sweden-flag-container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px;
}

.sweden-flag-animation {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  max-width: 500px;
  transform: translateX(50px);
  opacity: 0;
  animation: sw-fadeInRight 0.8s 1s forwards;
}

.sweden-flag {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 8px;
  animation: sw-flag-float 8s ease-in-out infinite;
}

.sweden-flag-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: sw-wave 6s ease-in-out infinite;
  border-radius: 8px;
}

.sweden-flag-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, transparent 70%);
  border-radius: 8px;
  animation: sw-glow-pulse 6s ease-in-out infinite;
}

.sweden-flag-particles {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
}

.sweden-particle {
  position: absolute;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  filter: blur(1px);
  animation: sw-particle-float 10s linear infinite;
}

.sweden-particle-1 { width: 6px; height: 6px; top: 20%; left: 35%; animation-delay: 0s; }
.sweden-particle-2 { width: 5px; height: 5px; top: 60%; left: 70%; animation-delay: 2s; }
.sweden-particle-3 { width: 4px; height: 4px; top: 85%; left: 50%; animation-delay: 4s; }

/* Animations */
@keyframes sw-fadeInRight {
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes sw-flag-float {
  0%, 100% {
    transform: rotateY(0deg) rotateX(0deg);
  }
  50% {
    transform: rotateY(-2deg) rotateX(2deg) translateY(-10px);
  }
}

@keyframes sw-glow-pulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.7; }
}

@keyframes sw-wave {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

@keyframes sw-particle-float {
  0% { transform: translateY(0); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { transform: translateY(-100px); opacity: 0; }
}
/* Sweden Banner Mobile Reordering */
@media (max-width: 992px) {
  .gs-pb-content .row.align-items-center {
    display: flex !important;
    flex-direction: column !important;
  }
  .sweden-flag-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0px;
}
  
  .col-lg-5.sweden-flag-container {
    order: -1 !important;
    margin-bottom: 30px !important;
    width: 100% !important;
    text-align: center !important;
  }
  
  .sweden-flag-img {
    max-width: 280px !important;
    width: 100% !important;
    height: auto !important;
    margin: 0 auto !important;
    display: block !important;
  }
  
  .sweden-flag-animation {
    display: flex !important;
    justify-content: center !important;
    flex-direction: column !important;
    align-items: center !important;
  }
  
  .col-lg-7 {
    width: 100% !important;
  }
  
  /* Center align text on mobile */
  .gs-pb-heading,
  .gs-pb-paragraph {
    text-align: center !important;
  }
}

/* Desktop layout reset */
@media (min-width: 993px) {
  .col-lg-5.sweden-flag-container {
    order: initial !important;
  }
}

.finland-flag-container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px;
}

.finland-flag-animation {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  max-width: 500px;
  transform: translateX(50px);
  opacity: 0;
  animation: fi-fadeInRight 0.8s 1s forwards;
}

.finland-flag {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 8px;
  animation: fi-flag-float 8s ease-in-out infinite;
}

.finland-flag-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: fi-wave 6s ease-in-out infinite;
  border-radius: 8px;
}

.finland-flag-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, transparent 70%);
  border-radius: 8px;
  animation: fi-glow-pulse 6s ease-in-out infinite;
}

.finland-flag-particles {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
}

.finland-particle {
  position: absolute;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  filter: blur(1px);
  animation: fi-particle-float 10s linear infinite;
}

.finland-particle-1 { width: 6px; height: 6px; top: 15%; left: 40%; animation-delay: 0s; }
.finland-particle-2 { width: 5px; height: 5px; top: 70%; left: 75%; animation-delay: 2s; }
.finland-particle-3 { width: 4px; height: 4px; top: 90%; left: 55%; animation-delay: 4s; }

/* Animations */
@keyframes fi-fadeInRight {
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes fi-flag-float {
  0%, 100% {
    transform: rotateY(0deg) rotateX(0deg);
  }
  50% {
    transform: rotateY(-2deg) rotateX(2deg) translateY(-10px);
  }
}

@keyframes fi-glow-pulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.7; }
}

@keyframes fi-wave {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

@keyframes fi-particle-float {
  0% { transform: translateY(0); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { transform: translateY(-100px); opacity: 0; }
}


.italy-flag-container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px;
}

.italy-flag-animation {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  max-width: 500px;
  transform: translateX(50px);
  opacity: 0;
  animation: it-fadeInRight 0.8s 1s forwards;
}

.italy-flag {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 8px;
  animation: it-flag-float 8s ease-in-out infinite;
}

.italy-flag-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: it-wave 6s ease-in-out infinite;
  border-radius: 8px;
}

.italy-flag-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, transparent 70%);
  border-radius: 8px;
  animation: it-glow-pulse 6s ease-in-out infinite;
}

.italy-flag-particles {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
}

.italy-particle {
  position: absolute;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  filter: blur(1px);
  animation: it-particle-float 10s linear infinite;
}

.italy-particle-1 { width: 6px; height: 6px; top: 10%; left: 60%; animation-delay: 0s; }
.italy-particle-2 { width: 5px; height: 5px; top: 75%; left: 20%; animation-delay: 2s; }
.italy-particle-3 { width: 4px; height: 4px; top: 85%; left: 50%; animation-delay: 4s; }

/* Animations */
@keyframes it-fadeInRight {
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes it-flag-float {
  0%, 100% {
    transform: rotateY(0deg) rotateX(0deg);
  }
  50% {
    transform: rotateY(-2deg) rotateX(2deg) translateY(-10px);
  }
}

@keyframes it-wave {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

@keyframes it-glow-pulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.7; }
}

@keyframes it-particle-float {
  0% { transform: translateY(0); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { transform: translateY(-100px); opacity: 0; }
}

/* Services Section */
        .services-section {
            padding: 30px 0;
            position: relative;
            overflow: hidden;
            background: linear-gradient(135deg, #f5f7fa 0%, #e4eef9 100%);
        }
        
        /* Animated Background Elements */
        .service-bg-shape {
            position: absolute;
            border-radius: 50%;
            background: rgba(0, 123, 255, 0.05);
            filter: blur(60px);
            z-index: 0;
        }
        
        .shape-1 {
            width: 500px;
            height: 500px;
            top: -150px;
            left: -150px;
            animation: float 15s ease-in-out infinite;
        }
        
        .shape-2 {
            width: 400px;
            height: 400px;
            bottom: -100px;
            right: -100px;
            background: rgba(255, 193, 7, 0.05);
            animation: float 18s ease-in-out infinite reverse;
        }
        
        @keyframes float {
            0%, 100% {
                transform: translate(0, 0);
            }
            50% {
                transform: translate(-30px, 30px);
            }
        }
        
        /* Section Header */
        .section-header {
            text-align: center;
            margin-bottom: 60px;
            position: relative;
            z-index: 1;
        }
        
        .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: #0249af;
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }
        
        .section-title:after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, #0249af, #FFD700);
            border-radius: 2px;
        }
        
        .section-subtitle {
            font-size: 1.1rem;
            color: #6c757d;
            max-width: 700px;
            margin: 0 auto;
        }
        
        /* Service Grid */
        .service-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            position: relative;
            z-index: 1;
        }
        
        /* Service Card */
        .service-card {
            background: white;
            border-radius: 20px;
            padding: 35px 30px;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
            transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(2, 73, 175, 0.1);
            opacity: 0;
            transform: translateY(30px);
        }
        
        .service-card.animate {
            opacity: 1;
            transform: translateY(0);
        }
        
        .service-card:hover {
            transform: translateY(-10px) !important;
            box-shadow: 0 25px 50px rgba(2, 73, 175, 0.15);
        }
        
        .service-card:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, #0249af, #00a1ff);
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .service-card:hover:before {
            opacity: 1;
        }
        
        /* Service Icon */
        .service-icon {
            font-size: 2.5rem;
            width: 80px;
            height: 80px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            position: relative;
            z-index: 1;
        }
        
        .service-icon:after {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            background: rgba(2, 73, 175, 0.1);
            border-radius: 50%;
            z-index: -1;
            transform: scale(0.9);
            transition: all 0.3s ease;
        }
        
        .service-card:hover .service-icon:after {
            transform: scale(1.1);
            background: rgba(2, 73, 175, 0.15);
        }
        
        /* Service Content */
        .service-title {
            font-size: 1.4rem;
            font-weight: 600;
            color: #0249af;
            margin-bottom: 15px;
            text-align: center;
        }
        
        .service-description {
            color: #6c757d;
            margin-bottom: 20px;
            text-align: center;
        }
        
        .service-highlight {
            background: rgba(255, 215, 0, 0.1);
            border-left: 3px solid #FFD700;
            padding: 12px 15px;
            margin-bottom: 20px;
            border-radius: 0 8px 8px 0;
        }
        
        .service-highlight p {
            color: #333;
            font-weight: 500;
            margin: 0;
            font-size: 0.95rem;
        }
        
        .service-cta {
            text-align: center;
        }
        
        .service-link {
            color: #0249af;
            font-weight: 500;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            transition: all 0.3s ease;
        }
        
        .service-link:hover {
            color: #00a1ff;
        }
        
        .service-link i {
            transition: transform 0.3s ease;
        }
        
        .service-link:hover i {
            transform: translateX(5px);
        }
        
        /* CTA Button */
        .cta-container {
            text-align: center;
            margin-top: 50px;
            position: relative;
            z-index: 1;
        }
        
        .cta-btn {
            display: inline-flex;
            align-items: center;
            background: linear-gradient(45deg, #0249af, #00a1ff);
            color: white;
            font-weight: 600;
            padding: 15px 22px;
            border-radius: 50px;
            text-decoration: none;
            box-shadow: 0 10px 20px rgba(2, 73, 175, 0.2);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            border: none;
            cursor: pointer;
        }
        
        .cta-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 30px rgba(2, 73, 175, 0.3);
        }
        
        .cta-btn i {
            margin-left: 10px;
            transition: transform 0.3s ease;
        }
        
        .cta-btn:hover i {
            transform: translateX(5px);
        }
        
        .cta-btn:after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, #00a1ff, #0249af);
            z-index: -1;
            transition: transform 0.5s ease;
            transform: scaleX(0);
            transform-origin: right;
        }
        
        .cta-btn:hover:after {
            transform: scaleX(1);
            transform-origin: left;
        }
        
        /* Responsive Design */
        @media (max-width: 992px) {
            .section-title {
                font-size: 2.2rem;
            }
            
            .service-grid {
                grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            }
        }
        
        @media (max-width: 768px) {
            .services-section {
                padding: 60px 0;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .section-subtitle {
                font-size: 1rem;
            }
            
            .service-card {
                padding: 25px 20px;
            }
        }
        
        @media (max-width: 576px) {
            .section-title {
                font-size: 1.8rem;
            }
            
            .service-title {
                font-size: 1.3rem;
            }
            
            .service-description {
                font-size: 0.95rem;
            }
            
            .service-highlight p {
                font-size: 0.9rem;
            }
            
            .cta-btn {
                padding: 12px 25px;
                font-size: 0.95rem;
            }
        }
		
		
		:root {
            --rev-primary: #4a6bff;
            --rev-secondary: #ff6b6b;
            --rev-text: #333;
            --rev-light: #f8f9fa;
            --rev-dark: #6c757d;
            --rev-white: #ffffff;
            --rev-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            --rev-transition: all 0.3s ease;
        }
        .rev-container {
            max-width: 1200px;
            margin: 0 auto;
            /*padding: 60px 20px;*/
        }

        .rev-section-title {
            text-align: center;
            margin-bottom: 50px;
            opacity: 0;
            transform: translateY(20px);
            animation: rev-fadeInUp 0.8s forwards 0.3s;
        }

        .rev-section-title h2 {
            font-size: 2.5rem;
            color: #0249af;
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }

        .rev-section-title h2::after {
            content: '';
            position: absolute;
            width: 60%;
            height: 4px;
            background: linear-gradient(to right, #0249af, var(--rev-secondary));
            bottom: -10px;
            left: 20%;
            border-radius: 2px;
        }

        .rev-section-title p {
            font-size: 1.1rem;
            color: var(--rev-dark);
            max-width: 700px;
            margin: 0 auto;
        }

        .rev-stories-wrapper {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
            justify-content: center;
        }

        .rev-testimonial-carousel {
            flex: 1 1 500px;
            min-width: 300px;
            position: relative;
            opacity: 0;
            transform: translateX(-20px);
            animation: rev-fadeInRight 0.8s forwards 0.5s;
        }

        .rev-google-reviews {
            flex: 1 1 400px;
            min-width: 300px;
            background: var(--rev-white);
            padding: 30px;
            border-radius: 15px;
            box-shadow: var(--rev-shadow);
            opacity: 0;
            transform: translateX(20px);
            animation: rev-fadeInLeft 0.8s forwards 0.7s;
        }

        .rev-testimonial-card {
            background: var(--rev-white);
            padding: 30px;
            border-radius: 15px;
            box-shadow: var(--rev-shadow);
            margin-bottom: 20px;
            transition: var(--rev-transition);
            opacity: 0;
            transform: translateY(20px);
            animation: rev-fadeInUp 0.8s forwards;
        }

        .rev-testimonial-card.active {
            display: block;
        }

        .rev-student-profile {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }

        .rev-student-avatar {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            object-fit: cover;
            border: 3px solid #0249af;
            margin-right: 20px;
            transition: var(--rev-transition);
        }

        .rev-student-avatar:hover {
            transform: scale(1.1);
        }

        .rev-student-details h4 {
            font-size: 1.3rem;
            margin-bottom: 5px;
            color: #0249af;
        }

        .rev-student-meta {
            font-size: 0.9rem;
            color: var(--rev-dark);
            font-style: italic;
            display: flex;
            align-items: center;
        }

        .rev-student-meta span {
            margin-left: 5px;
            font-size: 1.2rem;
        }

        .rev-testimonial-content {
            position: relative;
            padding-left: 30px;
            margin-bottom: 20px;
        }

        .rev-testimonial-content::before {
            content: '"';
            position: absolute;
            left: 0;
            top: -10px;
            font-size: 4rem;
            color: rgba(74, 107, 255, 0.1);
            font-family: Georgia, serif;
            line-height: 1;
        }

        .rev-testimonial-text {
            font-size: 1rem;
            line-height: 1.7;
        }

        .rev-read-toggle {
            color: #0249af;
            font-weight: 600;
            cursor: pointer;
            display: inline-block;
            margin-top: 10px;
            transition: var(--rev-transition);
        }

        .rev-read-toggle:hover {
            color: var(--rev-secondary);
            text-decoration: underline;
        }

        .rev-rating-stars {
            color: #ffc107;
            margin-top: 15px;
        }

        .rev-rating-stars i {
            margin-right: 3px;
            transform: scale(1);
            display: inline-block;
        }

        .rev-rating-stars i:nth-child(1) { animation: rev-pulse 1s infinite 0.1s }
        .rev-rating-stars i:nth-child(2) { animation: rev-pulse 1s infinite 0.2s }
        .rev-rating-stars i:nth-child(3) { animation: rev-pulse 1s infinite 0.3s }
        .rev-rating-stars i:nth-child(4) { animation: rev-pulse 1s infinite 0.4s }
        .rev-rating-stars i:nth-child(5) { animation: rev-pulse 1s infinite 0.5s }

        .rev-carousel-nav {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-top: 20px;
        }

        .rev-carousel-btn {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: var(--rev-white);
            color: #0249af;
            border: none;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: var(--rev-transition);
            box-shadow: 0 4px 10px rgba(74, 107, 255, 0.3);
        }

        .rev-carousel-btn:hover {
            background: var(--rev-secondary);
            transform: translateY(-3px);
        }

        .rev-reviews-header {
            font-size: 1.5rem;
            color: #0249af;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
        }

        .rev-reviews-header i {
            margin-right: 10px;
            color: #4285F4;
        }

        .rev-rating-summary {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }

        .rev-rating-value {
            font-size: 2.5rem;
            font-weight: 700;
            color: #0249af;
            margin-right: 15px;
        }

        .rev-rating-meta {
            flex: 1;
        }

        .rev-review-count {
            font-size: 0.9rem;
            color: var(--rev-dark);
            margin-bottom: 5px;
        }

        .rev-star-display {
            font-size: 1.2rem;
            color: #ffc107;
            letter-spacing: 2px;
        }

        .rev-featured-review {
            background: rgba(74, 107, 255, 0.05);
            padding: 20px;
            border-radius: 10px;
            margin-bottom: 25px;
            border-left: 4px solid #0249af;
        }

        .rev-review-actions {
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
        }

        .rev-review-btn {
            padding: 12px 20px;
            border-radius: 30px;
            font-weight: 600;
            cursor: pointer;
            transition: var(--rev-transition);
            display: flex;
            align-items: center;
        }

        .rev-write-review {
            background: #0249af;
            color: var(--rev-white);
            border: none;
            box-shadow: 0 4px 15px rgba(74, 107, 255, 0.4);
        }

        .rev-write-review:hover {
            background: #3a5ae8;
            transform: translateY(-3px);
        }

        .rev-view-reviews {
            background: transparent;
            border: 2px solid #0249af;
            color: #0249af;
        }

        .rev-view-reviews:hover {
            background: rgba(74, 107, 255, 0.1);
            transform: translateY(-3px);
        }

        .rev-review-btn i {
            margin-right: 8px;
        }

        @keyframes rev-fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes rev-fadeInRight {
            from {
                opacity: 0;
                transform: translateX(-20px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes rev-fadeInLeft {
            from {
                opacity: 0;
                transform: translateX(20px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes rev-pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.2); }
            100% { transform: scale(1); }
        }

        /* Responsive adjustments */
        @media (max-width: 992px) {
            .rev-stories-wrapper {
                flex-direction: column;
            }
            
            .rev-testimonial-carousel, .rev-google-reviews {
                flex: 1 1 auto;
                width: 100%;
            }
            
            .rev-section-title h2 {
                font-size: 2rem;
            }
        }

        @media (max-width: 576px) {
            .rev-container {
                padding: 40px 15px;
            }
            
            .rev-section-title h2 {
                font-size: 1.8rem;
            }
            
            .rev-student-profile {
                flex-direction: column;
                text-align: center;
            }
            
            .rev-student-avatar {
                margin-right: 0;
                margin-bottom: 15px;
            }
            
            .rev-review-actions {
                flex-direction: column;
            }
            
            .rev-review-btn {
                justify-content: center;
            }
        }
		
		
		:root {
            --zh-primary: #6c63ff;
            --zh-secondary: #4a42e8;
            --zh-accent: #ff6584;
            --zh-dark: #2d3748;
            --zh-light: #f7fafc;
            --zh-gradient: linear-gradient(135deg, #0249afb8, #0249af);
        }
        .zh-scholarships-section {
            padding: 5rem 2rem;
            position: relative;
            max-width: 1400px;
            margin: 0 auto;
        }

        .zh-section-header {
            text-align: center;
            margin-bottom: 4rem;
            position: relative;
            z-index: 2;
        }

        .zh-section-header h2 {
            font-size: 3rem;
            font-weight: 800;
            background: var(--zh-gradient);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            margin-bottom: 1rem;
            line-height: 1.2;
            display: inline-block;
        }

        .zh-wave-animation {
            display: inline-block;
            animation: zh-wave 2s ease-in-out infinite;
            transform-origin: 70% 70%;
        }

        @keyframes zh-wave {
            0%, 100% { transform: rotate(0deg); }
            25% { transform: rotate(5deg); }
            75% { transform: rotate(-5deg); }
        }

        .zh-section-header h3 {
            font-size: 1.5rem;
            font-weight: 400;
            color: #4a5568;
            max-width: 700px;
            margin: 0 auto;
        }

        .zh-floating-bg {
            position: absolute;
            width: 100%;
                background: #0249af;
            height: 100%;
            top: 0;
            left: 0;
            z-index: 1;
            overflow: hidden;
        }

        .zh-floating-circle {
            position: absolute;
            border-radius: 50%;
            filter: blur(60px);
            opacity: 0.15;
        }

        .zh-circle-1 {
            width: 600px;
            height: 600px;
            background: var(--zh-primary);
            top: -50px;
            left: -50px;
            animation: zh-float 8s ease-in-out infinite;
        }

        .zh-circle-2 {
            width: 600px;
            height: 600px;
            background: var(--zh-accent);
            bottom: -100px;
            right: -100px;
            animation: zh-float 10s ease-in-out infinite reverse;
        }

        .zh-circle-3 {
            width: 600px;
            height: 600px;
            background: var(--zh-secondary);
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            animation: zh-float 12s ease-in-out infinite alternate;
        }

        @keyframes zh-float {
            0%, 100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-20px);
            }
        }

        .zh-scholarships-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            position: relative;
            z-index: 2;
        }

        .zh-scholarship-card {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            position: relative;
            transform: translateY(50px);
            opacity: 0;
        }

        .zh-animated {
            animation: zh-fadeInUp 0.8s forwards;
        }

        .zh-scholarship-card:nth-child(1).zh-animated {
            animation-delay: 0.2s;
        }

        .zh-scholarship-card:nth-child(2).zh-animated {
            animation-delay: 0.4s;
        }

        .zh-scholarship-card:nth-child(3).zh-animated {
            animation-delay: 0.6s;
        }

        @keyframes zh-fadeInUp {
            to {
                transform: translateY(0);
                opacity: 1;
            }
        }

        .zh-scholarship-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
        }

        .zh-card-header {
            padding: 1.5rem;
            background: var(--zh-gradient);
            color: white;
            position: relative;
        }

        .zh-card-header h4 {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
            position: relative;
            z-index: 2;
        }

        .zh-card-header .zh-icon {
            position: absolute;
            right: 1.5rem;
            top: 50%;
            transform: translateY(-50%);
            font-size: 3rem;
            opacity: 0.2;
            z-index: 1;
            color: white; /* Ensure icons are visible */
        }

        .zh-card-body {
            padding: 1.5rem;
        }

        .zh-card-body ul {
            list-style: none;
        }

        .zh-card-body li {
            margin-bottom: 1rem;
            display: flex;
            align-items: flex-start;
        }

        .zh-card-body li:before {
            content: "";
            color: var(--zh-primary);
            font-weight: bold;
            font-size: 1.5rem;
            margin-right: 0.5rem;
            line-height: 1;
        }

        .zh-deadline {
            background: #fff3f3;
            color: #e53e3e;
            padding: 0.5rem 1rem;
            border-radius: 50px;
            font-weight: 600;
            font-size: 0.9rem;
            display: inline-block;
            margin-top: 1rem;
        }

        .zh-cta-button {
            display: block;
            text-align: center;
            /*margin-top: 3rem;*/
            margin-top: 3rem !important;
            position: relative;
            z-index: 2;
        }

        .zh-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 1rem 2rem;
            background: var(--zh-gradient);
            color: white;
            border-radius: 50px;
            font-weight: 600;
            text-decoration: none;
            box-shadow: 0 4px 15px rgba(108, 99, 255, 0.3);
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            overflow: hidden;
            position: relative;
        }

        .zh-btn:hover {
            transform: translateY(-3px);
            border: 2px solid white;
            color: white;
            box-shadow: 0 8px 25px rgba(108, 99, 255, 0.4);
        }

        .zh-btn:active {
            transform: translateY(1px);
        }

        .zh-btn i {
            margin-left: 0.5rem;
            transition: transform 0.3s ease;
        }

        .zh-btn:hover i {
            transform: translateX(5px);
        }

        .zh-btn:before {
            content: "";
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: 0.5s;
        }

        .zh-btn:hover:before {
            left: 100%;
        }

        /* Special animation for the third card */
        .zh-scholarship-card.zh-special {
            position: relative;
            overflow: hidden;
        }

        .zh-scholarship-card.zh-special:after {
            content: "Limited!";
            position: absolute;
            top: 20px;
            right: -30px;
            background: var(--zh-accent);
            color: white;
            padding: 0.25rem 2rem;
            font-weight: 700;
            transform: rotate(45deg);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            font-size: 0.8rem;
        }

        /* Wave divider */
        .zh-wave-divider {
            position: absolute;
            bottom: -1px;
            left: 0;
            width: 100%;
            overflow: hidden;
            line-height: 0;
            transform: rotate(180deg);
        }

        .zh-wave-divider svg {
            position: relative;
            display: block;
            width: calc(100% + 1.3px);
            height: 50px;
        }

        .zh-wave-divider .zh-wave-shape {
            fill: #FFFFFF;
        }

        /* Responsive adjustments */
        @media (max-width: 768px) {
            .zh-section-header h2 {
                font-size: 2.2rem;
            }

            .zh-section-header h3 {
                font-size: 1.2rem;
            }

            .zh-scholarships-container {
                grid-template-columns: 1fr;
            }

            .zh-circle-1, .zh-circle-2, .zh-circle-3 {
                display: none;
            }
        }
		
		/* Base Styles */
.sx-search-container {
    width: 100%;
    padding: 2rem 1rem;
    position: relative;
    z-index: 10;
}

.sx-search-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.sx-search-card {
    background: rgba(2, 73, 175, 0.59);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.sx-search-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.sx-search-fields {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.sx-search-field {
    flex: 1 1 200px;
    min-width: 0;
    position: relative;
}

.sx-select-wrapper {
    position: relative;
    height: 100%;
}

.sx-select-field {
    width: 100%;
    padding: 1rem 1.5rem;
    padding-right: 3rem;
    border: none;
    border-radius: 50px;
    background-color: white;
    color: #333;
    font-size: 1rem;
    appearance: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.sx-select-field:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(2, 73, 175, 0.3);
}

.sx-select-arrow {
    position: absolute;
    top: 50%;
    right: 1.5rem;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 8px solid #555;
    pointer-events: none;
    transition: all 0.3s ease;
}

.sx-select-field:focus + .sx-select-arrow {
    border-top-color: #0249af;
}

.sx-search-button {
    width: 100%;
    height: 100%;
    padding: 1rem 1.5rem;
    border: none;
    border-radius: 50px;
        background: #124475;
    border: 1px solid white;
    color: white;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(2, 73, 175, 0.4);
    position: relative;
    overflow: hidden;
}

.sx-search-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(2, 73, 175, 0.5);
    background: white;
    color: #184085;
}

.sx-search-button:active {
    transform: translateY(0);
}

.sx-button-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.sx-button-icon svg {
    width: 18px;
    height: 18px;
}

/* Animation for button */
.sx-search-button::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 5px;
    height: 5px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 0;
    border-radius: 100%;
    transform: scale(1, 1) translate(-50%, -50%);
    transform-origin: 50% 50%;
}

.sx-search-button:focus:not(:active)::after {
    animation: sx-ripple 1s ease-out;
}

@keyframes sx-ripple {
    0% {
        transform: scale(0, 0);
        opacity: 0.5;
    }
    100% {
        transform: scale(20, 20);
        opacity: 0;
    }
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .sx-search-fields {
        gap: 0.8rem;
    }
    
    .sx-search-field {
        flex: 1 1 180px;
    }
}

@media (max-width: 768px) {
    .sx-search-card {
        padding: 1rem;
    }
    
    .sx-search-fields {
        gap: 0.6rem;
    }
    
    .sx-search-field {
        flex: 1 1 150px;
    }
    
    .sx-select-field {
        padding: 0.8rem 1.2rem;
        padding-right: 2.5rem;
    }
}

@media (max-width: 576px) {
    .sx-search-container {
        padding: 1rem 0.5rem;
    }
    
    .sx-search-field {
        flex: 1 1 100%;
    }
    
    .sx-search-button .sx-button-text {
        display: block;
    }
    
    .sx-search-button .sx-button-icon {
        display: none;
    }
}

/* Loading animation for search (optional) */
.sx-search-loading .sx-button-text {
    visibility: hidden;
}

.sx-search-loading .sx-button-icon::after {
    content: "";
    position: absolute;
    width: 20px;
    height: 20px;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    border: 3px solid transparent;
    border-top-color: white;
    border-radius: 50%;
    animation: sx-spinner 0.8s ease infinite;
}

@keyframes sx-spinner {
    from {
        transform: rotate(0turn);
    }
    to {
        transform: rotate(1turn);
    }
}

 /* Timeline Styles */
        .timeline-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            position: relative;
        }
        
        .timeline {
            position: relative;
            /*padding: 40px 0;*/
        }
        
        /* Enhanced Center Line Design */
        .timeline::before {
            content: '';
            position: absolute;
            width: 6px;
            background: linear-gradient(to bottom, 
                rgba(52, 152, 219, 0.2), 
                #3498db, 
                #2ecc71, 
                rgba(46, 204, 113, 0.2));
            top: 0;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            border-radius: 10px;
            opacity: 0;
            z-index: 1;
            transition: opacity 1s ease 0.5s;
            box-shadow: 0 0 15px rgba(46, 204, 113, 0.3);
        }
        
        .timeline::before.visible {
            opacity: 1;
            animation: lineGlow 3s ease-in-out infinite alternate;
        }
        
        /* Center Line Dots */
        .timeline::after {
            content: '';
            position: absolute;
            width: 16px;
            height: 16px;
            background: linear-gradient(135deg, #3498db, #2ecc71);
            border-radius: 50%;
            left: 50%;
            transform: translateX(-50%) scale(0);
            top: 0;
            z-index: 2;
            box-shadow: 0 0 10px rgba(52, 152, 219, 0.8);
            transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }
        
        .timeline::after.visible {
            transform: translateX(-50%) scale(1);
        }
        
        /* Step Dots on Center Line */
        .timeline-step::before {
            content: '';
            position: absolute;
            width: 12px;
            height: 12px;
            background: white;
            border-radius: 50%;
            left: 50%;
            transform: translateX(-50%) scale(0);
            top: 45px;
            z-index: 2;
            border: 3px solid currentColor;
            transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            opacity: 0;
        }
        
        .timeline-step.visible::before {
            transform: translateX(-50%) scale(1);
            opacity: 1;
            animation: dotPulse 2s infinite 0.5s;
        }
        
        /* Step-specific dot colors */
        .timeline-step:nth-child(1)::before { color: #e74c3c; }
        .timeline-step:nth-child(2)::before { color: #3498db; }
        .timeline-step:nth-child(3)::before { color: #f39c12; }
        .timeline-step:nth-child(4)::before { color: #2ecc71; }
        .timeline-step:nth-child(5)::before { color: #9b59b6; }
        
        .timeline-step {
            position: relative;
            <!-- margin-bottom: 80px; -->
            width: 100%;
            opacity: 0;
        }
        
        .timeline-step.visible {
            animation: fadeInUp 0.8s ease forwards;
        }
        
        .timeline-content {
            position: relative;
            width: 45%;
            padding: 30px;
            background: white;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: all 0.4s ease;
            transform: scale(0.95);
            z-index: 3;
        }
        
        .timeline-step.visible .timeline-content {
            transform: scale(1);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
        }
        
        .timeline-step:nth-child(odd) .timeline-content {
            left: 0;
            animation-delay: 0.2s;
        }
        
        .timeline-step:nth-child(even) .timeline-content {
            left: 55%;
            animation-delay: 0.4s;
        }
        
        .timeline-icon {
            position: absolute;
            width: 90px;
            height: 90px;
            background: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 36px;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
            left: 50%;
            transform: translateX(-50%) scale(0);
            top: 20px;
            z-index: 4;
            transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }
        
        .timeline-step.visible .timeline-icon {
            transform: translateX(-50%) scale(1);
        }
        
        .step-number {
            position: absolute;
            top: -15px;
            left: -15px;
            width: 40px;
            height: 40px;
            background: #fff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 18px;
            color: white;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            opacity: 0;
            transform: scale(0);
            transition: all 0.4s ease 0.3s;
        }
        
        .timeline-step.visible .step-number {
            opacity: 1;
            transform: scale(1);
        }
        
        /* Step-specific colors */
        .timeline-step:nth-child(1) .timeline-icon {
            background: #e74c3c;
            color: white;
        }
        .timeline-step:nth-child(1) .step-number {
            background: #e74c3c;
        }
        
        .timeline-step:nth-child(2) .timeline-icon {
            background: #3498db;
            color: white;
        }
        .timeline-step:nth-child(2) .step-number {
            background: #3498db;
        }
        
        .timeline-step:nth-child(3) .timeline-icon {
            background: #f39c12;
            color: white;
        }
        .timeline-step:nth-child(3) .step-number {
            background: #f39c12;
        }
        
        .timeline-step:nth-child(4) .timeline-icon {
            background: #2ecc71;
            color: white;
        }
        .timeline-step:nth-child(4) .step-number {
            background: #2ecc71;
        }
        
        .timeline-step:nth-child(5) .timeline-icon {
            background: #9b59b6;
            color: white;
        }
        .timeline-step:nth-child(5) .step-number {
            background: #9b59b6;
        }
        
        .step-title {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: #2c3e50;
            position: relative;
            padding-left: 45px;
        }
        
        .step-title::before {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 30px;
            height: 3px;
            background: currentColor;
            opacity: 0;
            transition: all 0.4s ease 0.5s;
        }
        
        .timeline-step.visible .step-title::before {
            opacity: 1;
            width: 35px;
        }
        
        .step-description {
            color: #7f8c8d;
            font-size: 1rem;
            line-height: 1.6;
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.4s ease 0.6s;
        }
        
        .timeline-step.visible .step-description {
            opacity: 1;
            transform: translateY(0);
        }
        
        .cta-container {
            text-align: center;
            margin: 40px 0;
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease;
        }
        
        .cta-container.visible {
            opacity: 1;
            transform: translateY(0);
        }
        
        .cta-button {
            display: inline-block;
            padding: 18px 45px;
            /*background: linear-gradient(45deg, #3498db, #2ecc71);*/
            color: white;
            font-size: 1.2rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            box-shadow: 0 5px 15px rgba(52, 152, 219, 0.4);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(52, 152, 219, 0.6);
        }
        
        .cta-button::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            border:2px solid white !important;
            width: 100%;
            color:white !important;
            height: 100%;
            /*background: linear-gradient(45deg, #2ecc71, #3498db);*/
            opacity: 0;
            transition: opacity 0.3s ease;
            z-index: -1;
        }
        
        .cta-button:hover::after {
            opacity: 1;
        }
        
        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes pulse {
            0% {
                transform: translateX(-50%) scale(1);
            }
            50% {
                transform: translateX(-50%) scale(1.05);
            }
            100% {
                transform: translateX(-50%) scale(1);
            }
        }
        
        @keyframes dotPulse {
            0% {
                box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
            }
            70% {
                box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
            }
            100% {
                box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
            }
        }
        
        @keyframes lineGlow {
            0% {
                box-shadow: 0 0 10px rgba(46, 204, 113, 0.3);
            }
            100% {
                box-shadow: 0 0 20px rgba(46, 204, 113, 0.6);
            }
        }
        
        /* Responsive Styles */
        @media (max-width: 768px) {
            .timeline::before {
                left: 40px;
            }
            
            .timeline::after {
                left: 40px;
            }
            
            .timeline-step {
                padding-left: 80px;
            }
            
            .timeline-step::before {
                left: 40px;
            }
            
            .timeline-step:nth-child(odd) .timeline-content,
            .timeline-step:nth-child(even) .timeline-content {
                left: 0;
                width: 100%;
            }
            
            .timeline-icon {
                left: 40px;
                transform: translateX(0) scale(0);
            }
            
            .timeline-step.visible .timeline-icon {
                transform: translateX(0) scale(1);
                animation: pulse 1.5s ease infinite 0.5s;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .section-subtitle {
                font-size: 1rem;
            }
            
            .timeline-content {
                padding: 25px;
            }
            
            .step-title {
                font-size: 1.3rem;
                padding-left: 35px;
            }
            
            .step-title::before {
                width: 25px;
            }
        }
        
        @media (max-width: 480px) {
            .timeline-icon {
                width: 70px;
                height: 70px;
                font-size: 28px;
            }
            
            .step-number {
                width: 30px;
                height: 30px;
                font-size: 14px;
                top: -10px;
                left: -10px;
            }
            
            .step-title {
                font-size: 1.2rem;
            }
            
            .step-description {
                font-size: 0.9rem;
            }
            
            .cta-button {
                padding: 15px 35px;
                font-size: 1rem;
            }
        }
		/* Mega Menu Styles */
.mega-menu {
  position: static !important;
}

.mega-menu-content {
  width: 100%;
  left: 0;
  right: 0;
}

.menu-section-title {
  font-size: 1rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #eee;
}

.menu-country .dropdown-item {
  display: flex;
  align-items: end;
  padding: 0.5rem 1rem;
  margin-bottom: 0.25rem;
  border-radius: 4px;
}

.menu-country .dropdown-item:hover {
  background-color: #f8f9fa;
}

.country-flag {
  width: 20px;
  height: 15px;
  margin-right: 10px;
  object-fit: cover;
}

.country-name {
  flex-grow: 1;
}

.resources-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.resources-list li a {
  display: block;
  padding: 0.5rem 0;
  color: #333;
  text-decoration: none;
}

.resources-list li a:hover {
  color: #0d6efd;
}

.menu-cta {
  background-color: #f8f9fa;
  padding: 1rem;
  border-radius: 4px;
}

.menu-cta h6 {
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}
/* About Dropdown Styles */
.dropdown-menu-about {
  min-width: 280px;
  border: none;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  border-radius: 8px;
}

.dropdown-menu-about .dropdown-header {
  font-size: 0.75rem;
  text-transform: uppercase;
  font-weight: 600;
  color: #6c757d;
  padding: 0.25rem 1rem;
}

.dropdown-menu-about .dropdown-item {
  border-radius: 6px;
  transition: all 0.2s;
  padding: 0.5rem 1rem;
}

.dropdown-menu-about .dropdown-item:hover {
  background-color: #f8f9fa;
}

.dropdown-menu-about .icon-wrapper {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dropdown-menu-about .dropdown-divider {
  border-color: #e9ecef;
  margin: 0.5rem 0;
}
.footer {
      position: relative;
      background-color: #092672;
      color: white;
      padding-top: 60px;
      padding-bottom: 40px;
      overflow: hidden;
    }

    .footer .top-curve {
      position: absolute;
      top: -60px;
      left: 0;
      width: 100%;
      height: 60px;
      overflow: hidden;
      line-height: 0;
      transform-origin: bottom;
      animation: waveAnimation 8s ease-in-out infinite alternate;
    }

    @keyframes waveAnimation {
      0% {
        transform: scaleX(1);
      }
      50% {
        transform: scaleX(1.1);
      }
      100% {
        transform: scaleX(1);
      }
    }

    .footer .top-curve svg {
      position: relative;
      display: block;
      width: calc(150% + 1.3px);
      height: 100px;
    }

    .footer .top-curve path {
      fill: #1c1c1c;
    }

    .footer-content {
      /*max-width: 1200px;*/
      margin: auto;
      padding: 0 20px;
      opacity: 0;
      transform: translateY(30px);
      animation: fadeInUp 0.8s ease-out forwards;
      animation-delay: 0.3s;
    }

    @keyframes fadeInUp {
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .footer-top {
      text-align: center;
      margin-bottom: 40px;
    }

    .footer-top h1 {
      margin-bottom: 20px;
      font-size: 3rem;
      background: linear-gradient(90deg, #ffffff, #ff4d4d);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
      animation: gradientShift 8s ease infinite;
      background-size: 200% 200%;
    }

    @keyframes gradientShift {
      0% {
        background-position: 0% 50%;
      }
      50% {
        background-position: 100% 50%;
      }
      100% {
        background-position: 0% 50%;
      }
    }

    .footer-form {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 40px;
    }

    .footer-form input,
    .footer-form select {
      padding: 12px 15px;
      border-radius: 5px;
      border: none;
      width: 220px;
      transition: all 0.3s ease;
      box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    }

    .footer-form input:focus,
    .footer-form select:focus {
      outline: none;
      box-shadow: 0 0 0 2px #00aaff;
      transform: translateY(-2px);
    }

    .footer-form button {
      background-color: #ff4d4d;
      color: white;
      border: none;
      padding: 12px 25px;
      border-radius: 5px;
      cursor: pointer;
      font-weight: bold;
      transition: all 0.3s ease;
      box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    }

    .footer-form button:hover {
      background-color: #ff3333;
      transform: translateY(-2px);
      box-shadow: 0 6px 8px rgba(0,0,0,0.15);
    }

    .footer-form button:active {
      transform: translateY(0);
    }

    .footer-columns {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      gap: 30px;
    }

    .footer-column {
      flex: 1 1 220px;
      opacity: 0;
      transform: translateY(20px);
      animation: fadeInUpColumns 0.6s ease-out forwards;
    }

    /* Column animation delays */
    .footer-column:nth-child(1) { animation-delay: 0.4s; }
    .footer-column:nth-child(2) { animation-delay: 0.5s; }
    .footer-column:nth-child(3) { animation-delay: 0.6s; }
    .footer-column:nth-child(4) { animation-delay: 0.7s; }

    @keyframes fadeInUpColumns {
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .footer-column h4 {
      color: #ff4d4d;
      margin-bottom: 15px;
      font-size: 1.3rem;
      position: relative;
      display: inline-block;
    }

    .footer-column h4::after {
      content: '';
      position: absolute;
      bottom: -5px;
      left: 0;
      width: 0;
      height: 2px;
      background: #ff4d4d;
      transition: width 0.3s ease;
    }

    .footer-column:hover h4::after {
      width: 100%;
    }

    .footer-column ul {
      list-style: none;
      padding: 0;
    }

    .footer-column ul li {
      margin-bottom: 8px;
      transition: transform 0.2s ease;
    }

    .footer-column ul li:hover {
      transform: translateX(5px);
    }

    .footer-column ul li a {
      color: #ffffff;
      font-size: 17px;
      text-decoration: none;
      transition: all 0.2s;
      display: inline-block;
      padding: 2px 0;
    }

    .footer-column ul li a:hover {
      color: #ffffff;
    }

    .footer-column ul li span {
      background: #00aaff;
      font-size: 10px;
      padding: 2px 5px;
      border-radius: 4px;
      margin-left: 5px;
      color: white;
      animation: pulse 2s infinite;
    }

    @keyframes pulse {
      0% {
        transform: scale(1);
      }
      50% {
        transform: scale(1.05);
      }
      100% {
        transform: scale(1);
      }
    }

    /* Social Icons - if you want to add them */
    .social-icons {
      display: flex;
      gap: 15px;
      margin-top: 20px;
    }

    .social-icons a {
      color: white;
      background: rgba(255,255,255,0.1);
      width: 36px;
      height: 36px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.3s ease;
    }

    .social-icons a:hover {
      background: #00aaff;
      transform: translateY(-3px);
    }

    @media (max-width: 768px) {
      .footer-form {
        flex-direction: column;
        align-items: center;
      }

      .footer-form input,
      .footer-form select {
        width: 100%;
        max-width: 300px;
      }

      .footer-form button {
        width: 100%;
        max-width: 300px;
      }

      .footer-columns {
        flex-direction: column;
        text-align: left;
      }

      .footer-column {
        margin-bottom: 30px;
      }

      .footer-column ul li:hover {
        transform: none;
      }

      .footer-top h2 {
        font-size: 1.5rem;
      }
    }

    /* Floating elements animation */
    .floating {
      position: absolute;
      opacity: 0.1;
      z-index: 0;
      animation: floating 15s infinite linear;
    }

    @keyframes floating {
      0% {
        transform: translateY(0) rotate(0deg);
      }
      50% {
        transform: translateY(-20px) rotate(180deg);
      }
      100% {
        transform: translateY(0) rotate(360deg);
      }
    }

    /* Add floating shapes */
    .floating:nth-child(1) {
      top: 10%;
      left: 5%;
      width: 30px;
      height: 30px;
      border-radius: 50%;
      background: #00aaff;
      animation-delay: 0s;
    }

    .floating:nth-child(2) {
      top: 20%;
      right: 10%;
      width: 40px;
      height: 40px;
      border-radius: 5px;
      background: #ff4d4d;
      animation-delay: 2s;
      animation-duration: 12s;
    }

    .floating:nth-child(3) {
      bottom: 15%;
      left: 15%;
      width: 25px;
      height: 25px;
      border-radius: 50%;
      background: #00aaff;
      animation-delay: 4s;
      animation-duration: 18s;
    }
	
	.blog-img {
    position: relative;
    height: 250px; /* Set your static height here */
    overflow: hidden;
  }

  .blog-img-inner {
    height: 100%;
  }

  .blog-img-inner img {
    height: 100%;
    width: 100%;
    object-fit: cover; /* Ensures image covers the box without distortion */
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
  }

  .blog-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.5);
    padding: 10px;
    border-radius: 50%;
  }
  /* Add these styles to your CSS file */

.blog-item {
    transition: all 0.3s ease;
    transform: translateY(0);
}

.blog-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.blog-img-inner {
    overflow: hidden;
    border-radius: 5px 5px 0 0 !important;
}

.blog-img-inner img {
    transition: transform 0.5s ease;
}

.blog-item:hover .blog-img-inner img {
    transform: scale(1.05);
}

.zh-btn {
    transition: all 0.3s ease;
    display: inline-block;
}

.blog-item:hover .zh-btn {
    transform: translateX(5px);
    color: #fff;
    background-color: #0066cc; /* Change to your preferred hover color */
}

.blog-content {
    transition: all 0.3s ease;
}

.blog-item:hover .blog-content {
    border-color: #dee2e6 !important; /* Slightly lighter border on hover */
}

.oiu-flag-top {
        height: 170px;
        display: flex;
		    border-bottom-right-radius: 50px !important;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 50px;
        position: relative;
        overflow: hidden;
        text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
    }

    /* Flag image background */
    .oiu-flag-top::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-size: cover;
        background-position: center;
        z-index: 0;
    }

    /* Black overlay */
    .oiu-flag-top::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgb(0 0 0 / 18%);
        z-index: 1;
    }

    /* White diagonal cut */
    .oiu-flag-top .oiu-cut-effect {
        position: absolute;
        bottom: -20px;
        left: 0;
        right: 0;
        height: 40px;
        background: white;
        transform: rotate(-3deg);
        transform-origin: top left;
        z-index: 2;
    }

    .oiu-country-name {
        font-size: 18px;
        font-weight: bold;
        margin-top: 5px;
        color: white;
        text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
        position: relative;
        z-index: 3;
    }

    /* Individual flag images */
    .oiu-uk::before { background-image: url('https://flagcdn.com/w640/gb.png'); }
    .oiu-canada::before { background-image: url('https://flagcdn.com/w640/ca.png'); }
    .oiu-australia::before { background-image: url('https://flagcdn.com/w640/au.png'); }
    .oiu-germany::before { background-image: url('https://flagcdn.com/w640/de.png'); }
    .oiu-netherlands::before { background-image: url('https://flagcdn.com/w640/nl.png'); }
    .oiu-usa::before { background-image: url('https://flagcdn.com/w640/us.png'); }
    .oiu-ireland::before { background-image: url('https://flagcdn.com/w640/ie.png'); }
    .oiu-finland::before { background-image: url('https://flagcdn.com/w640/fi.png'); }
    .oiu-spain::before { background-image: url('https://flagcdn.com/w640/es.png'); }
    .oiu-hungary::before { background-image: url('https://flagcdn.com/w640/hu.png'); }
    .oiu-italy::before { background-image: url('https://flagcdn.com/w640/it.png'); }
    .oiu-sweden::before { background-image: url('https://flagcdn.com/w640/se.png'); }
    .oiu-singapore::before { background-image: url('https://flagcdn.com/w640/sg.png'); }
    .oiu-newzealand::before { background-image: url('https://flagcdn.com/w640/nz.png'); }
    .oiu-france::before { background-image: url('https://flagcdn.com/w640/fr.png'); }

    .oiu-carddd-container {
      display: flex;
      flex-wrap: wrap;
      gap: 30px;
      justify-content: center;
      max-width: 1400px;
      margin: 0 auto;
    }

    .oiu-carddd {
      background: #fff;
      border-radius: 20px;
      width: 280px;
      overflow: hidden;
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      position: relative;
    }

    .oiu-carddd:hover {
      transform: translateY(-10px);
      box-shadow: 0 15px 25px rgba(0, 0, 0, 0.2);
    }

    .oiu-carddd-content {
      padding: 25px 20px;
    }

    .oiu-carddd-content h3 {
      margin-bottom: 15px;
      font-size: 22px;
      font-weight: 700;
      color: #333;
      text-align: center;
    }

    .oiu-featuresss {
      list-style: none;
      margin-bottom: 20px;
    }

    .oiu-featuresss li {
      font-size: 14px;
      color: #555;
      margin-bottom: 10px;
      display: flex;
      align-items: flex-start;
    }

    .oiu-featuresss li::before {
      content: '✔';
    color: #4CAF50;
    font-weight: bold;
    margin-right: 8px;
    }

    .oiu-explore-btn {
      display: block;
      width: 100%;
      padding: 12px;
      border-radius: 30px;
      background: linear-gradient(135deg, #0249afba, #0249af);
      color: white;
      text-align: center;
      text-decoration: none;
      font-weight: 600;
      transition: all 0.3s ease;
      border: none;
      cursor: pointer;
      font-size: 15px;
    }
    .oiu-explore-btn:hover {
        background: linear-gradient(135deg, #0249af, #0d51b3a1);
        transform: translateY(-2px);
        color: white;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }
    @media (max-width: 768px) {
      .oiu-carddd {
        width: 100%;
        max-width: 350px;
      }
    }
.fored-services-container {
      display: flex;
      flex-wrap: wrap;
      background: #fff;
      border-radius: 15px;
      overflow: hidden;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
      animation: fadeInScale 1.2s ease-in-out;
    }
    .fored-intro-section {
      flex: 1 1 300px;
      padding: 40px;
          border-top-left-radius: 40px;
    border-bottom-left-radius: 40px;
        text-align: center;
      background: linear-gradient(to bottom right, rgb(2 73 175), rgb(2 73 175)), url(img/hloh.jpg) center / cover no-repeat;
      color: #fff;
      position: relative;
      overflow: hidden;
    }
    .fored-intro-section::before {
      content: '';
      position: absolute;
      top: -50%;
      left: -50%;
      
      width: 200%;
      height: 200%;
      background: radial-gradient(circle, rgba(255,165,52,0.1) 0%, transparent 70%);
      animation: rotateGradient 15s linear infinite;
    }
    .fored-intro-section h2 {
          font-size: 32px;
    color: white !important;
      margin-bottom: 20px;
      position: relative;
    }
    .fored-intro-section p {
      margin-bottom: 30px;
      line-height: 1.6;
      position: relative;
    }
    .fored-cta-button {
      padding: 12px 24px;
          background: white;
    color: #0249af;
      border: none;
      border-radius: 30px;
      cursor: pointer;
      font-size: 16px;
      transition: all 0.3s ease;
      position: relative;
      overflow: hidden;
    }
    .fored-cta-button:hover {
      background: #0249af;
      transform: translateY(-2px);
      box-shadow: 0 5px 15px rgba(255,165,52,0.4);
    }
    .fored-cta-button::after {
      content: '';
      position: absolute;
      top: 50%;
      left: 50%;
      width: 5px;
      height: 5px;
      background: rgba(255, 255, 255, 0.5);
      opacity: 0;
      border-radius: 100%;
      transform: scale(1, 1) translate(-50%);
      transform-origin: 50% 50%;
    }
    .fored-cta-button:focus:not(:active)::after {
      animation: ripple 1s ease-out;
    }
    .fored-service-grid {
  flex: 2 1 600px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 366px), 1fr));
  gap: 20px;
  padding: 20px;
  width: 100%;
  box-sizing: border-box;
}

.fored-service-card {
  background: #f9f9f9;
  border-radius: 12px;
  padding: 20px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  width: 100%;
  box-sizing: border-box;
}
    .fored-service-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 4px;
      background: #0249af;
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.4s ease;
    }
    .fored-service-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 12px 25px rgba(0,0,0,0.12);
    }
    .fored-service-card:hover::before {
      transform: scaleX(1);
    }
    .fored-service-card h3 {
      font-size: 20px;
      margin-bottom: 15px;
      transition: color 0.3s ease;
    }
    .fored-service-card:hover h3 {
      color: #0249af;
    }
    .fored-service-card p, .fored-service-card ul {
      font-size: 15px;
      color: #444;
      line-height: 1.6;
    }
    .fored-service-card ul {
      list-style: disc inside;
      margin-top: 10px;
    }
    .fored-service-icon {
      width: 60px;
      height: 60px;
      margin-bottom: 15px;
      object-fit: contain;
      transition: transform 0.3s ease;
    }
    .fored-service-card:hover .fored-service-icon {
      transform: scale(1.1) rotate(5deg);
    }
    @keyframes fadeInScale {
      0% {
        opacity: 0;
        transform: scale(0.95);
      }
      100% {
        opacity: 1;
        transform: scale(1);
      }
    }
    @keyframes rotateGradient {
      from {
        transform: rotate(0deg);
      }
      to {
        transform: rotate(360deg);
      }
    }
    @keyframes ripple {
      0% {
        transform: scale(0, 0);
        opacity: 1;
      }
      20% {
        transform: scale(25, 25);
        opacity: 1;
      }
      100% {
        opacity: 0;
        transform: scale(40, 40);
      }
    }
    @media (max-width: 768px) {
      .fored-intro-section, .fored-service-grid {
        padding: 20px;
      }
    }
    @media (max-width: 768px) {
  .fored-service-grid {
    padding: 15px;
    grid-template-columns: 1fr; /* Single column on mobile */
    gap: 15px;
  }
  
  .fored-service-card {
    padding: 18px;
  }
  
  .fored-service-icon {
    width: 50px;
    height: 50px;
  }
  
  .fored-service-card h3 {
    font-size: 18px;
  }
  
  .fored-service-card p, 
  .fored-service-card ul {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .fored-service-grid {
    padding: 10px;
    gap: 12px;
  }
  
  .fored-service-card {
    padding: 15px;
  }
  
  .fored-service-card h3 {
    font-size: 17px;
    margin-bottom: 12px;
  }
}
    
    .yui-grid-container {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
      max-width: 1400px;
      margin: 0 auto;
    }

    .yui-card-item {
      background: white;
      padding: 30px;
      border-radius: 20px;
      box-shadow: 0 10px 30px rgba(0,0,0,0.05);
      position: relative;
      overflow: hidden;
      transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
      border: 1px solid rgba(255,255,255,0.3);
      z-index: 1;
    }

    .yui-card-item::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(135deg, rgba(106,17,203,0.1) 0%, rgba(37,117,252,0.1) 100%);
      z-index: -1;
      opacity: 0;
      transition: opacity 0.3s ease;
    }

    .yui-card-item:hover {
      transform: translateY(-10px) scale(1.02);
      box-shadow: 0 15px 35px rgba(0,0,0,0.12);
    }

    .yui-card-item:hover::before {
      opacity: 1;
    }

    .yui-icon-wrapper {
      width: 70px;
      height: 70px;
      border-radius: 20px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 20px;
      transition: all 0.3s ease;
      position: relative;
      overflow: hidden;
    }

    .yui-icon-wrapper::after {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(135deg, rgba(255,255,255,0.3) 0%, rgba(255,255,255,0) 100%);
      z-index: 1;
    }

    .yui-card-item:nth-child(1) .yui-icon-wrapper {
      background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
    }
    .yui-card-item:nth-child(2) .yui-icon-wrapper {
      background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
    }
    .yui-card-item:nth-child(3) .yui-icon-wrapper {
      background: linear-gradient(135deg, #f46b45 0%, #eea849 100%);
    }
    .yui-card-item:nth-child(4) .yui-icon-wrapper {
      background: linear-gradient(135deg, #8e2de2 0%, #4a00e0 100%);
    }
    .yui-card-item:nth-child(5) .yui-icon-wrapper {
      background: linear-gradient(135deg, #c31432 0%, #240b36 100%);
    }
    .yui-card-item:nth-child(6) .yui-icon-wrapper {
      background: linear-gradient(135deg, #00b09b 0%, #96c93d 100%);
    }
    .yui-card-item:nth-child(7) .yui-icon-wrapper {
      background: linear-gradient(135deg, #0575e6 0%, #021b79 100%);
    }

    .yui-card-item:hover .yui-icon-wrapper {
      transform: rotate(5deg) scale(1.1);
      box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    }

    .yui-feature-icon {
      font-size: 30px;
      color: white;
      z-index: 2;
    }

    .yui-card-title {
      font-size: 18px;
      font-weight: 600;
      margin-bottom: 15px;
      color: #333;
      position: relative;
      display: inline-block;
    }

    .yui-card-title::after {
      content: '';
      position: absolute;
      bottom: -5px;
      left: 0;
      width: 40px;
      height: 3px;
      background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
      border-radius: 3px;
      transition: width 0.3s ease;
    }

    .yui-card-item:hover .yui-card-title::after {
      width: 70px;
    }

    .yui-card-description {
      color: #555;
      font-size: 15px;
      line-height: 1.6;
      transition: color 0.3s ease;
    }

    .yui-card-item:hover .yui-card-description {
      color: #333;
    }

    @media (max-width: 768px) {
      .yui-grid-container {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      }
      
      .yui-card-item {
        padding: 25px;
      }
      
      .yui-icon-wrapper {
        width: 60px;
        height: 60px;
      }
    }

    @media (max-width: 480px) {
      
      .yui-grid-container {
        grid-template-columns: 1fr;
      }
    }
    /* Journey Path */
        .journey-path {
            position: relative;
            padding: 40px 0;
        }
        
        .path-line {
            position: absolute;
            left: 50px;
            top: 0;
            bottom: 0;
            width: 4px;
            background: linear-gradient(to bottom, var(--primary), var(--secondary));
            z-index: 1;
            border-radius: 2px;
        }
        
        /* Milestones */
        .milestone {
            display: flex;
            margin-bottom: 60px;
            position: relative;
            z-index: 2;
        }
        
        .milestone-icon {
            width: 80px;
            height: 80px;
            background: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 30px;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
            margin-right: 30px;
            flex-shrink: 0;
            position: relative;
            border: 3px solid;
        }
        
        .milestone:nth-child(odd) .milestone-icon {
            background: var(--light);
            color: var(--primary);
            border-color: var(--primary);
        }
        
        .milestone:nth-child(even) .milestone-icon {
            background: var(--light);
            color: var(--secondary);
            border-color: var(--secondary);
        }
        
        .milestone-content {
            background: white;
            padding: 25px;
            border-radius: 12px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            flex-grow: 1;
            transform: translateY(-10px);
            border-left: 4px solid;
        }
        
        .milestone:nth-child(odd) .milestone-content {
            border-left-color: var(--primary);
        }
        
        .milestone:nth-child(even) .milestone-content {
            border-left-color: var(--secondary);
        }
        
        .milestone h3 {
            font-size: 1.5rem;
            margin-top: 0;
            margin-bottom: 10px;
            color: var(--dark);
        }
        
        .milestone p {
            color: #64748b;
            line-height: 1.6;
            margin-bottom: 15px;
        }
        
        .tagline {
            font-style: italic;
            color: var(--dark);
            font-weight: 600;
            position: relative;
            padding-left: 15px;
        }
        
        .tagline::before {
            content: '';
            position: absolute;
            left: 0;
            top: 8px;
            height: 2px;
            width: 10px;
            background: var(--secondary);
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .milestone {
                flex-direction: column;
            }
            
            .milestone-icon {
                margin-right: 0;
                margin-bottom: 20px;
            }
            
            .path-line {
                left: 40px;
            }
        }
        
     .footer-column .social-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 15px; /* spacing between icons */
}

.footer-column .social-links li {
  margin: 0;
}

.footer-column .social-links a img {
  display: block;
  width: 35px;
  height: 35px;
}
.destination-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.destination-columns ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.destination-columns li {
  margin: 6px 0;
}

.destination-columns a {
  text-decoration: none;
  color: #fff; /* change if needed */
  font-size: 14px;
  display: flex;
  align-items: center;
}

.bullet {
  color: #ffcc00; /* yellow bullet, change as needed */
  margin-right: 8px;
  font-size: 14px;
}
.footer-contact {
  margin-top: 15px;
  font-size: 14px;
  color: #fff; /* or your theme color */
}

.footer-contact p {
  margin: 5px 0;
}

.footer-contact a {
  color: #fff;
  text-decoration: none;
}

/* Button Styles */
        .vth-cta-btn {
            display: inline-flex        ;
            align-items: center;
            justify-content: center;
            padding: 12px 24px;
            background-color: #ffffff;
            color: #2d4cb1;
            text-decoration: none;
            border-radius: 50px;
            border-color: #2d4bb1 !important;
                border: 2px solid;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(74, 108, 247, 0.3);
        }

        .vth-cta-btn:hover {
            background-color: #2c4bb2;
            color: white !important;
            transform: translateY(-2px);
            border-color: blue;
            border-color: #ffffff !important;
            box-shadow: 0 6px 20px rgba(74, 108, 247, 0.4);
        }

        .vth-cta-btn i {
            margin-left: 8px;
            font-size: 16px;
        }

        /* Popup Overlay */
        .vth-popup-overlay {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: rgba(0, 0, 0, 0.7);
            z-index: 9999;
            display: none;
            justify-content: center;
            align-items: center;
            opacity: 0;
            transition: opacity 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }

        .vth-popup-overlay.active {
            display: flex;
            opacity: 1;
        }

        /* Popup Container */
        .vth-popup-container {
            background-color: white;
            border-radius: 15px;
            overflow: hidden;
            max-width: 900px;
            width: 90%;
            max-height: 90vh;
            display: flex;
            transform: translateY(50px) scale(0.95);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
            position: relative;
        }

        .vth-popup-overlay.active .vth-popup-container {
            transform: translateY(0) scale(1);
            animation: vth-pulse 0.6s ease 0.3s;
        }

        @keyframes vth-pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.02); }
            100% { transform: scale(1); }
        }

        /* Left Side - Image */
        .vth-popup-image {
            width: 40%;
            background-image: url('https://images.unsplash.com/photo-1600880292203-757bb62b4baf?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80');
            background-size: cover;
            background-position: center;
            display: none;
            animation: vth-fadeInLeft 0.6s ease;
        }

        /* Right Side - Form */
        .vth-popup-form {
            width: 100%;
            padding: 40px;
            overflow-y: auto;
            scrollbar-width: thin;
            scrollbar-color: #4a6cf7 #f1f1f1;
        }

        /* Custom scrollbar */
        .vth-popup-form::-webkit-scrollbar {
            width: 8px;
        }

        .vth-popup-form::-webkit-scrollbar-track {
            background: #f1f1f1;
            border-radius: 10px;
        }

        .vth-popup-form::-webkit-scrollbar-thumb {
            background-color: #4a6cf7;
            border-radius: 10px;
        }

        /* Close Button */
        .vth-popup-close {
            position: absolute;
            top: 15px;
            right: 15px;
            font-size: 28px;
            color: #777;
            cursor: pointer;
            transition: all 0.3s ease;
            z-index: 1;
            transform: scale(1);
        }

        .vth-popup-close:hover {
            color: #333;
            transform: scale(1.1) rotate(90deg);
        }

        /* Form Heading */
        .vth-popup-heading {
            text-align: center;
            margin-bottom: 30px;
            animation: vth-fadeInDown 0.6s ease;
        }

        .vth-popup-heading h2 {
            color: #2d3748;
            font-size: 32px;
            margin-bottom: 10px;
            background: linear-gradient(90deg, #4a6cf7, #8a2be2);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .vth-popup-heading p {
            color: #718096;
            font-size: 16px;
        }

        /* Form Elements */
        .vth-form-group {
            margin-bottom: 25px;
            animation: vth-fadeInUp 0.6s ease;
            animation-fill-mode: both;
        }

        .vth-form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: #4a5568;
        }

        .vth-form-control {
            width: 100%;
            padding: 14px 15px;
            border: 1px solid #e2e8f0;
            border-radius: 8px;
            font-size: 16px;
            transition: all 0.3s ease;
            background-color: #f8fafc;
        }

        .vth-form-control:focus {
            border-color: #4a6cf7;
            outline: none;
            box-shadow: 0 0 0 3px rgba(74, 108, 247, 0.2);
            transform: translateY(-2px);
        }

        /* Date Picker - Positioned outside */
        .vth-date-picker-container {
            position: relative;
        }

        .vth-date-picker-container .vth-form-control {
            padding-right: 40px;
        }

        .vth-date-picker-container::after {
            content: "\f073";
            font-family: "Font Awesome 6 Free";
            font-weight: 900;
            position: absolute;
            right: 15px;
            top: 50%;
            transform: translateY(-50%);
            color: #a0aec0;
            pointer-events: none;
        }

        /* Time Slots */
        .vth-time-slots {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
            gap: 12px;
            margin-top: 10px;
        }

        .vth-time-slot {
            padding: 12px;
            text-align: center;
            border: 1px solid #e2e8f0;
            border-radius: 8px;
                color: black;
            cursor: pointer;
            transition: all 0.3s ease;
            background-color: #f8fafc;
            font-weight: 500;
        }

        .vth-time-slot:hover {
            border-color: #4a6cf7;
            color: #4a6cf7;
            transform: translateY(-3px);
            box-shadow: 0 5px 10px rgba(74, 108, 247, 0.1);
        }

        .vth-time-slot.selected {
            background-color: #4a6cf7;
            color: white;
            border-color: #4a6cf7;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(74, 108, 247, 0.3);
        }

        /* Submit Button */
        .vth-submit-btn {
            width: 100%;
            padding: 16px;
            background: linear-gradient(90deg, #4a6cf7, #8a2be2);
            color: white;
            border: none;
            border-radius: 8px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-top: 10px;
            position: relative;
            overflow: hidden;
        }

        .vth-submit-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(74, 108, 247, 0.4);
        }

        .vth-submit-btn:active {
            transform: translateY(0);
        }

        .vth-submit-btn::after {
            content: "";
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(
                to bottom right,
                rgba(255, 255, 255, 0.3),
                rgba(255, 255, 255, 0)
            );
            transform: rotate(30deg);
            transition: all 0.3s ease;
        }

        .vth-submit-btn:hover::after {
            left: 100%;
        }

        /* Custom Animations */
        @keyframes vth-fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes vth-fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes vth-fadeInLeft {
            from {
                opacity: 0;
                transform: translateX(-30px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        /* Responsive Styles */
        @media (min-width: 992px) {
            .vth-popup-image {
                display: block;
            }
            .vth-popup-form {
                width: 60%;
            }
        }

        /* Delay animations for form groups */
        .vth-form-group:nth-child(1) {
            animation-delay: 0.1s;
        }
        .vth-form-group:nth-child(2) {
            animation-delay: 0.2s;
        }
        .vth-form-group:nth-child(3) {
            animation-delay: 0.3s;
        }
        .vth-form-group:nth-child(4) {
            animation-delay: 0.4s;
        }
        .vth-form-group:nth-child(5) {
            animation-delay: 0.5s;
        }
       /* Button Styles */
    .bibo-journey-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 14px 28px;
      background: linear-gradient(135deg, #0249af 0%, #0249afb8 100%);
      color: white;
      text-decoration: none;
      border-radius: 50px;
      font-weight: 600;
      font-size: 16px;
      transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
      box-shadow: 0 4px 15px rgba(110, 72, 170, 0.3);
      border: none;
      cursor: pointer;
      position: relative;
      overflow: hidden;
    }

    .bibo-journey-btn:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 25px rgba(110, 72, 170, 0.4);
      background: linear-gradient(135deg, #0249af8a 0%, #0649ae 100%);
    }

    .bibo-journey-btn i {
      margin-left: 10px;
      font-size: 14px;
      transition: transform 0.3s ease;
    }

    .bibo-journey-btn:hover i {
      transform: translateX(5px);
    }

    .bibo-btn-container {
      margin-top: 0.5rem;
      text-align: center;
    }

    /* Overlay */
    .bibo-overlay {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background-color: rgba(0, 0, 0, 0.8);
      z-index: 9999;
      display: none;
      justify-content: center;
      align-items: center;
      opacity: 0;
      transition: opacity 0.5s ease;
      backdrop-filter: blur(5px);
    }

    .bibo-overlay.active {
      display: flex;
      opacity: 1;
    }

    .bibo-form-container {
      background: white;
      border-radius: 20px;
      overflow: hidden;
      max-width: 800px;
      width: 90%;
      max-height: 90vh;
      display: flex;
      transform: scale(0.9) rotate(-2deg);
      transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
      box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
      position: relative;
    }

    .bibo-overlay.active .bibo-form-container {
      transform: scale(1) rotate(0);
      animation: biboPulse 0.8s ease 0.3s;
    }

    @keyframes biboPulse {
      0% { transform: scale(1); }
      50% { transform: scale(1.03); }
      100% { transform: scale(1); }
    }

    .bibo-form-image {
      width: 40%;
      background: linear-gradient(rgba(110, 72, 170, 0.7), rgba(157, 80, 187, 0.7)),
                  url('https://images.unsplash.com/photo-1522202176988-66273c2fd55f?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1471&q=80');
      background-size: cover;
      background-position: center;
      display: none;
      padding: 40px;
      color: white;
      flex-direction: column;
      justify-content: flex-end;
      animation: biboFadeInLeft 0.8s ease;
    }

    @keyframes biboFadeInLeft {
      from { opacity: 0; transform: translateX(-30px); }
      to { opacity: 1; transform: translateX(0); }
    }

    .bibo-form-content {
      width: 100%;
      padding: 40px;
      overflow-y: auto;
      scrollbar-width: thin;
      scrollbar-color: #9d50bb #f1f1f1;
    }

    .bibo-form-content::-webkit-scrollbar {
      width: 8px;
    }

    .bibo-form-content::-webkit-scrollbar-track {
      background: #f1f1f1;
      border-radius: 10px;
    }

    .bibo-form-content::-webkit-scrollbar-thumb {
      background-color: #9d50bb;
      border-radius: 10px;
    }

    .bibo-close-btn {
      position: absolute;
      top: 20px;
      right: 20px;
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: #f8f9fa;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: all 0.3s ease;
      z-index: 10;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }

    .bibo-close-btn:hover {
      transform: rotate(90deg);
      background: #e9ecef;
    }

    .bibo-close-btn i {
      color: #6e48aa;
      font-size: 20px;
    }

    .bibo-form-header {
      text-align: center;
      margin-bottom: 30px;
      animation: biboFadeInDown 0.8s ease;
    }

    @keyframes biboFadeInDown {
      from { opacity: 0; transform: translateY(-20px); }
      to { opacity: 1; transform: translateY(0); }
    }

    .bibo-form-title {
      font-size: 32px;
      margin-bottom: 10px;
      color: #6e48aa;
      background: linear-gradient(to right, #6e48aa, #9d50bb);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    .bibo-form-subtitle {
      color: #6c757d;
      font-size: 16px;
    }

    .bibo-form-group {
      margin-bottom: 25px;
      animation: biboFadeInUp 0.8s ease;
      animation-fill-mode: both;
    }

    @keyframes biboFadeInUp {
      from { opacity: 0; transform: translateY(20px); }
      to { opacity: 1; transform: translateY(0); }
    }

    .bibo-form-label {
      display: block;
      margin-bottom: 8px;
      font-weight: 600;
      color: #495057;
    }

    .bibo-form-input {
      width: 100%;
      padding: 14px 20px;
      border: 2px solid #e9ecef;
      border-radius: 10px;
      font-size: 16px;
      transition: all 0.3s ease;
      background-color: #f8f9fa;
    }

    .bibo-form-input:focus {
      border-color: #9d50bb;
      outline: none;
      box-shadow: 0 0 0 3px rgba(157, 80, 187, 0.2);
      background-color: white;
    }

    .bibo-form-select {
      appearance: none;
      background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
      background-repeat: no-repeat;
      background-position: right 15px center;
      background-size: 15px;
    }

    .bibo-submit-btn {
      width: 100%;
      padding: 16px;
      background: linear-gradient(135deg, #6e48aa 0%, #9d50bb 100%);
      color: white;
      border: none;
      border-radius: 10px;
      font-size: 16px;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s ease;
      margin-top: 10px;
      position: relative;
      overflow: hidden;
    }

    .bibo-submit-btn:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 20px rgba(110, 72, 170, 0.4);
    }

    .bibo-submit-btn:active {
      transform: translateY(0);
    }

    @media (min-width: 992px) {
      .bibo-form-image {
        display: flex;
      }

      .bibo-form-content {
        width: 60%;
      }
    }
    .navbar.sticky-top {
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
    @media (max-width: 991px) {
      .bibo-form-container {
        flex-direction: column;
      }

      .bibo-form-image {
        display: none;
      }
    }
   /* Main Floating Button */
        .yoyo-main-btn {
            position: fixed;
            right: 25px;
            bottom: 25px;
            width: 60px;
            height: 60px;
            background: #25D366;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
            z-index: 1000;
            cursor: pointer;
            animation: yoyo-float 3s ease-in-out infinite;
            transition: all 0.3s ease;
        }

        /* Social Media Sub-Buttons */
        .yoyo-social-btn {
            position: fixed;
            right: 25px;
            bottom: 25px;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
            z-index: 999;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            opacity: 0;
            visibility: hidden;
        }

        /* Button Colors */
        .yoyo-whatsapp { background: #25D366; }
        .yoyo-facebook { background: #1877F2; }
        .yoyo-instagram { background: #E4405F; }
        .yoyo-youtube { background: #FF0000; }
        .yoyo-call { background: #25D366; }

        /* Button Images */
        .yoyo-social-btn img {
            width: 60%;
            height: auto;
        }

        /* Active State */
        .active .yoyo-social-btn {
            opacity: 1;
            visibility: visible;
        }

        /* Compact Positions - Reduced gaps between icons */
        .active .yoyo-whatsapp {
            transform: translateY(-280px);
        }
        .active .yoyo-facebook {
            transform: translateY(-115px);
        }
        .active .yoyo-instagram {
            transform: translateY(-170px);
        }
        .active .yoyo-youtube {
            transform: translateY(-225px);
        }
        .active .yoyo-call {
            transform: translateY(-60px);
        }

        /* Animations */
        @keyframes yoyo-float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }

        @keyframes yoyo-pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.1); }
            100% { transform: scale(1); }
        }

        /* Mobile Responsiveness */
        @media (max-width: 768px) {
            .yoyo-main-btn, .yoyo-social-btn {
                width: 50px;
                height: 50px;
                right: 15px;
                bottom: 15px;
            }
            .active .yoyo-whatsapp { transform: translateY(-255px); }
            .active .yoyo-facebook { transform: translateY(-105px); }
            .active .yoyo-instagram { transform: translateY(-155px); }
            .active .yoyo-youtube { transform: translateY(-205px); }
            .active .yoyo-call { transform: translateY(-55px); }
        }
        
        /* Popup overlay with unique class */
        .fer-popup-overlay {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: rgba(0, 0, 0, 0.7);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 9999;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }

        .fer-popup-overlay.fer-active {
            opacity: 1;
            visibility: visible;
        }

        /* Popup container with unique class */
        .fer-popup-container {
            background-color: white;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            width: 90%;
            max-width: 400px;
            padding: 30px;
            position: relative;
            transform: translateY(20px) scale(0.95);
            transition: all 0.3s ease;
        }

        .fer-popup-overlay.fer-active .fer-popup-container {
            transform: translateY(0) scale(1);
        }

        /* Popup content */
        .fer-popup-header {
            text-align: center;
            margin-bottom: 20px;
        }

        .fer-popup-header h2 {
            color: #2c3e50;
            font-size: 24px;
            margin-bottom: 10px;
        }

        .fer-popup-header p {
            color: #7f8c8d;
            font-size: 16px;
        }

        /* Form styles */
        .fer-phone-form {
            display: flex;
            flex-direction: column;
        }

        .fer-form-group {
            margin-bottom: 20px;
        }

        .fer-phone-input {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-size: 16px;
            outline: none;
            transition: border-color 0.3s;
        }

        .fer-phone-input:focus {
            border-color: #3498db;
        }

        .fer-submit-btn {
             display: inline-flex;
                    align-items: center;
                    justify-content: center;
                    padding: 12px 24px;
                    background-color: #4a6cf7;
					border:none;
                    color: white;
                    text-decoration: none;
                    border-radius: 50px;
                    font-weight: 600;
                    transition: all 0.3s ease;
                    box-shadow: 0 4px 15px rgba(74, 108, 247, 0.3);
        }

        .fer-submit-btn:hover {
             background-color: white !important;
			 color:#4a6cf7 !important;
			transform: translateY(-2px) !important;
			/* box-shadow: 0 6px 20px rgba(74, 108, 247, 0.4); */
			border: blue !important;
			border: 1px solid blue !important;
        }

        /* Close button */
        .fer-close-btn {
            position: absolute;
            top: 15px;
            right: 15px;
            width: 30px;
            height: 30px;
            background-color: #eee;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            cursor: pointer;
            transition: all 0.3s;
        }

        .fer-close-btn:hover {
            background-color: #ddd;
        }

        .fer-close-btn::before,
        .fer-close-btn::after {
            content: '';
            position: absolute;
            width: 15px;
            height: 2px;
            background-color: #333;
        }

        .fer-close-btn::before {
            transform: rotate(45deg);
        }

        .fer-close-btn::after {
            transform: rotate(-45deg);
        }

        /* Unique animation classes */
        @keyframes ferPopupIn {
            0% {
                opacity: 0;
                transform: translateY(20px) scale(0.95);
            }
            80% {
                transform: translateY(-5px) scale(1.02);
            }
            100% {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }

        @keyframes ferPopupOut {
            0% {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
            20% {
                transform: translateY(-5px) scale(1.02);
            }
            100% {
                opacity: 0;
                transform: translateY(20px) scale(0.95);
            }
        }

        .fer-popup-animate-in {
            animation: ferPopupIn 0.6s ease forwards;
        }

        .fer-popup-animate-out {
            animation: ferPopupOut 0.4s ease forwards;
        }

        /* Responsive adjustments */
        @media (max-width: 480px) {
            .fer-popup-container {
                padding: 20px;
            }
            
            .fer-popup-header h2 {
                font-size: 20px;
            }
            
            .fer-popup-header p {
                font-size: 14px;
            }
            
            .fer-phone-input {
                padding: 10px 15px;
            }
        }
        
        div#vvv\ vth-cta-continer\ d-none\ d-lg-block{
                text-align: center;
                margin: auto;
                display: flex;
                justify-content: center;
                align-items: center;
        }
        
        
        
        