This commit is contained in:
Roshan476
2026-01-21 23:11:58 +05:45
parent 74f28a8963
commit a1dc35aaf5
9 changed files with 1035 additions and 704 deletions

View File

@@ -23541,6 +23541,9 @@ iframe {
flex-direction: column;
align-items: flex-start;
}
.time-table-area-wrapper .inner-container .table-outer .table-inner .tabs-box .tab-country{
display: block;
}
.band-card {
width: 100% !important;
@@ -35261,6 +35264,8 @@ body.tmp-body-star::before {
}
.time-table-area-wrapper .inner-container .table-outer .table-inner .tabs-box .tab-country {
display: flex;
justify-content: space-around;
/* min-width: 1200px; */
}
@@ -35328,7 +35333,7 @@ body.tmp-body-star::before {
.time-table-area-wrapper .timetable-tabs .tab-btns .tab-btn {
position: relative;
display: block;
display: flex;
margin: 0;
font-size: 14px;
color: #ffffff;
@@ -35338,13 +35343,13 @@ body.tmp-body-star::before {
margin-right: 12px;
margin-bottom: 10px;
padding: 12px 8px;
display: inline-block;
transition: all 500ms ease;
text-transform: uppercase;
background-color: var(--color-primary);
border-top: 3px solid var(--color-primary);
border-radius: 4px;
width: 188px;
width: 215px;
/* text-align: center; */
transition: all 500ms ease;
}
@@ -35371,7 +35376,7 @@ body.tmp-body-star::before {
}
.time-table-area-wrapper .timetable-tabs .tab-btns .tab-btn {
width: 142px;
width: 179px;
font-size: 13px;
}
}
@@ -35385,14 +35390,14 @@ body.tmp-body-star::before {
}
.tab-country .tab-btn img {
max-height: 14px;
max-height: 30px;
margin-right: 3px;
}
}
.time-table-area-wrapper .timetable-tabs .tab-btn {
display: flex;
flex-direction: column;
/* flex-direction: column; */
align-items: center;
gap: 8px;
/* space between image and text */
@@ -35401,6 +35406,7 @@ body.tmp-body-star::before {
.time-table-area-wrapper .timetable-tabs .tab-btns .tab-btn.active-btn {
background-color: #F5821F;
display: flex;
}
.time-table-area-wrapper .timetable-tabs .tab-btns .tab-btn:hover {
@@ -37153,7 +37159,10 @@ body.tmp-body-star::before {
text-align: center;
background-size: cover;
}
.cta-content121{
display: flex;
justify-content: space-around;
}
/* Tablet */
@media (max-width: 991px) {
.page-title {
@@ -37168,6 +37177,9 @@ 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;
}
}
.auto-container {
@@ -37560,14 +37572,18 @@ hr {
border-radius: 50%;
transition: 0.3s all ease-out;
}
.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;
}
/* class detail */
section {
padding: 70px 0;
/* padding: 70px 0; */
}
.section-title h2 {
@@ -37808,4 +37824,78 @@ section {
.uni-next:hover {
background: #F5821F;
color: #fff;
}
/* cta section */
/* CTA Section */
.cta-fixed-bg {
position: relative;
background-image: url("../images/photos/cta.jpg");
/* replace with your image */
background-size: cover;
background-position: center;
background-attachment: fixed;
/* KEY PART */
padding: 60px 20px;
text-align: center;
color: #fff;
overflow: hidden;
}
/* Dark overlay for better text visibility */
.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));
z-index: 1;
}
/* Content */
.cta-content {
position: relative;
z-index: 2;
max-width: 800px;
margin: auto;
}
.cta-content121 .content{
z-index: 1;
}
.cta-content121 h2 {
font-size: 42px;
margin-bottom: 15px;
color:white !important;
}
.cta-content121 p {
font-size: 18px;
margin-bottom: 30px;
opacity: 0.9;
color: wheat;
}
/* Button */
.cta-btn {
display: inline-block;
padding: 14px 36px;
background: #ffb703;
color: #000;
font-weight: 600;
border-radius: 30px;
text-decoration: none;
transition: all 0.3s ease;
}
.cta-btn:hover {
background: #fff;
transform: translateY(-3px);
}
/* Mobile fix (background-attachment issues) */
@media (max-width: 768px) {
.cta-fixed-bg {
background-attachment: scroll;
}
.cta-content h2 {
font-size: 30px;
}
}