html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
  font-family: 'Poppins', sans-serif;
  color: #333;
  background-color: #f9f9f9;
}

/* Shopping Cart Styles */
#basketCount {
    position: relative;
    margin-right: 15px;
}

#basketCount .option-item {
    position: relative;
    display: inline-block;
}

#basketCount .option-item a {
    display: flex;
    align-items: center;
    padding: 8px 15px;
    border-radius: 25px;
    background-color: transparent;
    transition: all 0.3s ease;
    text-decoration: none;
}

/* Sticky navbar styles */
.navbar-area.is-sticky #basketCount .option-item a {
    background-color: rgba(139, 47, 161, 0.1);
}

.navbar-area.is-sticky #basketCount .option-item a:hover {
    background-color: rgba(139, 47, 161, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(139, 47, 161, 0.15);
}

#basketCount .option-item i {
    font-size: 1.2rem;
    margin-right: 5px;
    color: #8b2fa1;
}

#basket_count {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: #8b2fa1;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: bold;
    transition: all 0.3s ease;
}

#basketCount .option-item:hover #basket_count {
    transform: scale(1.1);
    background-color: #6b2385;
}

/* Modern Banner Styles */
/*#home_one_banner {
    background: linear-gradient(135deg, #8b2fa1 0%, #6b2385 100%);
    padding: 80px 0;
    color: white;
    position: relative;
    overflow: hidden;
      background-image: url(../img/banner/bg.png);
}

#home_one_banner:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('/images/pattern.png');
    opacity: 0.1;
    z-index: 1;
}*/

.banner_one_text {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.banner_one_text h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.banner_one_text h3 {
    font-size: 1.5rem;
    font-weight: 400;
    opacity: 0.9;
}

/* Modern Service Cards */
.theme_common_box_two {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.theme_common_box_two:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.theme_two_box_img {
    position: relative;
    overflow: hidden;
}

.theme_two_box_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.theme_common_box_two:hover .theme_two_box_img img {
    transform: scale(1.1);
}

.theme_two_box_content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.theme_two_box_content h4 {
    margin-bottom: 0;
    font-size: 1.2rem;
    font-weight: 600;
}

.theme_two_box_content h4 a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.theme_two_box_content h4 a:hover {
    color: #8b2fa1;
}

/* Modern Team Cards */
.team-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    height: 100%;
    margin-bottom: 30px;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.team-img {
    position: relative;
    overflow: hidden;
    height: 240px;
}

.team-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.team-card:hover .team-img img {
    transform: scale(1.1);
}

.team-info {
    padding: 20px;
    text-align: center;
}

.team-info h3 {
    margin-bottom: 10px;
    font-size: 1.2rem;
    font-weight: 600;
}

.team-info h3 a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.team-info h3 a:hover {
    color: #8b2fa1;
}

/* Modern News Cards */
.news_card_nine_wrapper {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    height: 100%;
    margin-bottom: 30px;
}

.news_card_nine_wrapper:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.news_card_nine_img {
    position: relative;
    overflow: hidden;
    height: 200px;
}

.news_card_nine_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.news_card_nine_wrapper:hover .news_card_nine_img img {
    transform: scale(1.1);
}

.news_card_nine_heading {
    padding: 20px;
}

.news_card_nine_heading h3 {
    margin-bottom: 10px;
    font-size: 1.2rem;
    font-weight: 600;
}

.news_card_nine_heading h3 a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.news_card_nine_wrapper:hover .news_card_nine_heading h3 a {
    color: #8b2fa1;
}

.news_card_nine_heading ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.news_card_nine_heading ul li {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Section Headings */
.section_heading_center {
    text-align: center;
    /*margin-bottom: 50px;*/
}

.section_heading_center h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section_heading_center h2:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: #8b2fa1;
}

.section_heading_left {
    margin-bottom: 30px;
}

.section_heading_left h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.section_heading_left_view_all {
    text-align: right;
}

.section_heading_left_view_all a {
    color: #8b2fa1;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.section_heading_left_view_all a:hover {
    color: #6b2385;
    text-decoration: underline;
}

/* About Section */
#three_about_area {
    padding: 100px 0;
    background-color: #f5f5f5;
}

.three_about_left {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.three_about_left img {
    width: 100%;
    border-radius: 15px;
    transition: transform 0.5s ease;
}

.three_about_left:hover img {
    transform: scale(1.05);
}

.three_heading_area {
    color: #8b2fa1;
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}


.three_about_right h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.three_about_right p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

.about_three_flex {
    display: flex;
    flex-wrap: wrap;
    margin-top: 30px;
}

.about_counter_item {
    flex: 1;
    min-width: 150px;
    text-align: center;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    margin: 10px;
    transition: all 0.3s ease;
}

.about_counter_item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.about_counter_item h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #8b2fa1;
    margin-bottom: 5px;
}

.about_counter_item p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

/* Width Offer Section */
#width_offer_area {
    padding: 80px 0;
}

.width_offer_item {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    align-items: center;
}

.width_offer_item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.width_offer_icon {
    margin-right: 20px;
    flex-shrink: 0;
}

.width_offer_icon img {
    width: 60px;
    height: 60px;
    transition: transform 0.3s ease;
}

.width_offer_item:hover .width_offer_icon img {
    transform: scale(1.1);
}

.width_offer_text h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.width_offer_text p {
    color: #666;
    margin: 0;
    line-height: 1.6;
}

/* Why Choose Section */
#home_seven_why_choose {
    padding: 100px 0;
    background-color: #f5f5f5;
}

.why_choose_andtour_card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    height: 100%;
    text-align: center;
}

.why_choose_andtour_card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.choose_img {
    margin-bottom: 20px;
}

.choose_img img {
    width: 70px;
    height: 70px;
    transition: transform 0.3s ease;
}

.why_choose_andtour_card:hover .choose_img img {
    transform: scale(1.1);
}

.why_choose_andtour_card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.why_choose_andtour_card p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .banner_one_text h1 {
        font-size: 2.5rem;
    }
    
    .banner_one_text h3 {
        font-size: 1.2rem;
    }
    
    .section_heading_center h2 {
        font-size: 2rem;
    }
    
}

@media (max-width: 767px) {
    .banner_one_text h1 {
        font-size: 2rem;
    }
    
    .banner_one_text h3 {
        font-size: 1rem;
    }
    
    .section_heading_center h2 {
        font-size: 1.8rem;
    }
    

    
    .about_counter_item {
        min-width: 100%;
    }
}




