This commit is contained in:
2026-01-22 11:39:59 +05:45
parent c8eb0f29df
commit 6df68a626e
6 changed files with 136 additions and 121 deletions

View File

@@ -23541,7 +23541,8 @@ iframe {
flex-direction: column;
align-items: flex-start;
}
.time-table-area-wrapper .inner-container .table-outer .table-inner .tabs-box .tab-country{
.time-table-area-wrapper .inner-container .table-outer .table-inner .tabs-box .tab-country {
display: block;
}
@@ -25718,7 +25719,7 @@ iframe {
display: flex;
align-items: center;
justify-content: center;
padding: 50px 50px 45px;
padding: 13px 50px 45px;
gap: 50px;
margin-left: 140px;
}
@@ -34994,7 +34995,7 @@ body.tmp-body-star::before {
}
.active-light-mode .tmp-btn {
color: #fff;
color: #fff !important;
}
.active-light-mode .profile-share a img {
@@ -35006,12 +35007,12 @@ body.tmp-body-star::before {
}
.active-light-mode .tmp-btn.btn-border {
color: #1b1b1b;
color: #1b1b1b !important;
border-color: #e3e3e3 !important;
}
.active-light-mode .tmp-btn.btn-border:hover {
color: #fff;
color: #fff !important;
}
.active-light-mode .banner-12-shape-controlder .tmp-btn.rounded-player.popup-video i {
@@ -37138,9 +37139,8 @@ body.tmp-body-star::before {
background-color: var(--color-btn) !important;
}
.query11 .tmp-btn .btn-text,
.btn-icon {
color: white !important;
.query11 .tmp-btn .btn-text {
color: white;
}
.thumbnail11 {
@@ -37159,10 +37159,13 @@ body.tmp-body-star::before {
text-align: center;
background-size: cover;
}
.cta-content121{
.cta-content121 {
display: flex;
align-items: center;
justify-content: space-around;
}
/* Tablet */
@media (max-width: 991px) {
.page-title {
@@ -37177,6 +37180,7 @@ body.tmp-body-star::before {
min-height: 240px;
padding: 60px 0 60px;
}
.time-table-area-wrapper .inner-container .table-outer .table-inner .tabs-box .tab-country {
display: block;
}
@@ -37572,15 +37576,19 @@ hr {
border-radius: 50%;
transition: 0.3s all ease-out;
}
.tmp-btn.hover-icon-reverse .btn-text{
color: white;
.tmp-btn.hover-icon-reverse .btn-text {
/* color: white; */
}
.active-light-mode .social-default li a:hover {
color: var(--color-btn) !important;
}
.cta-btn-group1{
justify-content: center !important;
.cta-btn-group1 {
justify-content: start !important;
}
/* class detail */
section {
/* padding: 70px 0; */
@@ -37738,10 +37746,11 @@ section {
border-width: 2px;
background-color: #fff;
color: #0d6efd;
border-color: var(--color-primary);
}
.faq-buttons .btn.active {
background-color: #0d6efd;
background-color: var(--color-primary);
color: #fff;
/* white text */
box-shadow: 0 4px 10px rgba(13, 110, 253, 0.2);
@@ -37749,12 +37758,13 @@ section {
}
.faq-buttons .btn:hover {
background-color: #0b5ed7;
background-color: var(--color-btn);
/* darker blue on hover */
color: #fff;
transform: translateY(-2px);
/* slight lift effect */
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
border-color: var(--color-btn) ;
}
.band-info h4 {
@@ -37825,6 +37835,7 @@ section {
background: #F5821F;
color: #fff;
}
/* cta section */
/* CTA Section */
.cta-fixed-bg {
@@ -37845,7 +37856,7 @@ section {
.cta-overlay {
position: absolute;
inset: 0;
background:linear-gradient(to right, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.1));
background: linear-gradient(to right, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.1));
z-index: 1;
}
@@ -37856,13 +37867,15 @@ section {
max-width: 800px;
margin: auto;
}
.cta-content121 .content{
z-index: 1;
.cta-content121 .content {
z-index: 1;
}
.cta-content121 h2 {
font-size: 42px;
margin-bottom: 15px;
color:white !important;
color: white !important;
}
.cta-content121 p {

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 MiB

View File

@@ -8,7 +8,7 @@
</div>
</div>
</section>
<div class="tmp-faq-area tmp-section-gap">
<div class="tmp-faq-area ptb--80">
<div class="container">
<div class="row">
<div class="col-lg-12 mb_md--30 mb_sm--30">

View File

@@ -14,7 +14,10 @@
country, and university with confidence.</p>
<div class="cta-btn-group cta-btn-group1 mt--30">
<div class="tmp-load-more d-flex justify-content-center">
<a class="tmp-btn btn-large hover-icon-re0eather-loader"></i></span>
<a class="tmp-btn btn-large hover-icon-reverse" href="./contact.php">
<span class="icon-reverse-wrapper">
<span class="btn-text">Contact Us</span>
<span class="btn-icon"><i class="feather-loader"></i></span>
<span class="btn-icon"><i class="feather-loader"></i></span>
</span>
</a>
@@ -339,7 +342,7 @@
});
</script>
<script>
$(document).ready(function () {
$(document).ready(function() {
// Initialize only **visible sliders**
$('.tab.active-tab .uni-slider').slick({
@@ -366,7 +369,7 @@
});
// On tab click
$('.tab-btn').on('click', function () {
$('.tab-btn').on('click', function() {
// Remove active from tabs
$('.tab-btn').removeClass('active-btn');
$(this).addClass('active-btn');

View File

@@ -1,5 +1,5 @@
<!-- Start Blog Area -->
<div class="blog-area">
<div class="blog-area mb--110">
<div class="container">
<div class="row">
<div class="col-lg-12">

View File

@@ -1,6 +1,5 @@
<!-- tmp faq area start -->
<div class="tmp-faq-area tmp-section-gap">
<!-- tmp faq area start -->
<div class="tmp-faq-area tmp-section-gap">
<div class="container">
<div class="row">
<div class="col-lg-6 mb_md--30 mb_sm--30 faqimg">
@@ -76,5 +75,5 @@
</div>
</div>
</div>
</div>
<!-- tmp faq area end -->
</div>
<!-- tmp faq area end -->