/* 
 * MERGED CSS FILE
 * Combined from: Home.css, styles.css, Detail.css, Contact.css, Aboutus.css
 * Priority: Home.css values used for duplicates
 * Generated on: 2025-10-01
 */

/* Global Reset and Base Styles (from Home.css) */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f8f8;
}
html, body {
    max-width: 100%;
    overflow-x: hidden;
}

/* CSS Variables (from Aboutus.css) */
:root {
    --primary-color: #00355f;
    --secondary-color: #3498db;
    --accent-color: #ffcc00;
    --light-color: #ecf0f1;
    --dark-color: #00355f;
}

/* Container Styles */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.Details-container {
    max-width: 1200px;
    margin: auto;
    padding: 20px;
}

/* Links and Lists */
a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* Button Styles (Priority: Home.css) */
.btn {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: #ffcc00;
    color: #333;
    border: 2px solid #ffcc00;
}

.btn-primary:hover {
    background-color: #e6b800;
    border-color: #e6b800;
}

.btn-outline {
    background-color: #e6b800;
    color: #080707;
    border: 2px solid #e6b800;
}

.btn-outline:hover {
    background-color: #2d113d;
    color: #ffffff;
    border: 2px solid #2d113d;
}

.btn-block {
    display: block;
    width: 100%;
}

/* Back to Top Button */
#backToTop {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #00355F;
    color: #fcfcfc;
    z-index: 99;
    display: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

#backToTop:hover {
    background-color: #FFD700;
    color: #FFD700;
    transform: translateY(-5px);
}

/* About Back to Top (unified) */
.About-back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--secondary-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    font-size: 20px;
}

.About-back-to-top:hover {
    transform: translateY(-5px);
    background-color: #e67200;
}

.About-back-to-top.show {
    opacity: 1;
    visibility: visible;
}



/* Hero Slider Styles */
.hero-slider-carsole {
    position: relative;
    height: 600px;
    margin-top: 79px;
}

.slider-container-carsole {
    position: relative;
    height: 100%;
    overflow: hidden;
}

.slide-carsole {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease;
    display: flex;
    align-items: center;
}

.slide-carsole::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.slide-carsole.active {
    opacity: 1;
    z-index: 1;
}

.slide-content-carsole {
    position: relative;
    color: #fff;
    max-width: 600px;
    z-index: 2;
}

.slide-content-carsole h1 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 700;
}

.slide-content-carsole p {
    font-size: 18px;
    margin-bottom: 30px;
}

/* Slider Controls */
.slider-controls-carsole {
    position: absolute;
    bottom: 112px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
}

.prev-slide-carsole,
.next-slide-carsole,
.prev-slide,
.next-slide {
    background-color: rgba(255, 255, 255, 0.3);
    border: none;
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    margin: 0 10px;
    transition: background-color 0.3s ease;
}

.prev-slide:hover,
.next-slide:hover {
    background-color: rgba(255, 255, 255, 0.5);
}

.slider-dot-carsole {
    display: flex;
    justify-content: center;
    align-items: center;
}

.dot-carsole {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    margin: 0 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.dot-carsole.active {
    background: #ffcc00;
}

/* Booking Form Styles */
.booking-form-container-carsole {
    position: absolute;
    bottom: 19px;
    left: 66%;
    width: 33%;
    z-index: 100;
}

.booking-form-carsole {
    background-color: #00355F;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.form-header-carsole {
    background-color: #f8f8f8;
    border-bottom: 1px solid #eee;
}

.form-tabs-carsole {
    display: flex;
}

.form-tabs-carsole li {
    padding: 15px 20px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
}

.form-tabs-carsole li:hover {
    color: #00355F;
}

.form-tabs-carsole li.active {
    color: #00355F;
    border-bottom-color: #ffcc00;
}

.form-body-carsole {
    padding: 30px;
}

.form-tab-content-carsole {
    display: none;
}

.form-tab-content-carsole.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

.form-group-carsole {
    margin-bottom: 20px;
}

.form-row-carsole {
    display: flex;
    gap: 20px;
}

.form-row-carsole .form-group-carsole {
    flex: 1;
}

.form-group-carsole label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #fff3f3;
}

.form-group-carsole input,
.form-group-carsole select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-group-carsole input:focus,
.form-group-carsole select:focus {
    border-color: #00355F;
    outline: none;
}

.radio-group-carsole {
    display: flex;
    gap: 20px;
}

.radio-carsole {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.radio-carsole input {
    margin-right: 8px;
    width: auto;
}

/* Fleet Section Styles */
.fleet-section {
    padding: 80px 0;
    background: linear-gradient(to bottom, #f3f3f3 50%, #00355F 50%);
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
    padding: 0 15px;
}

.section-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: #00355f;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-header h2 span {
    color: #ffcc00;
}

.section-header p {
    font-size: 18px;
    color: #777;
    max-width: 700px;
    margin: 0 auto;
}

.fleet-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 30px;
    padding: 0 15px;
}

.fleet-card {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-left 0.3s ease;
    border-left: 4px solid transparent;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.fleet-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    border-left: 4px solid #00355F;
}

.fleet-image {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.fleet-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.fleet-card:hover .fleet-image img {
    transform: scale(1.05);
}

.fleet-info {
    padding: 15px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.fleet-features {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid #eee;
}

.feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.feature i {
    font-size: 18px;
    color: #00355F;
    margin-bottom: 4px;
    transition: color 0.3s ease;
}

.feature i:hover {
    color: #FF7F00;
}

.feature span {
    font-size: 14px;
    color: #666;
}

.fleet-price {
    text-align: center;
    margin-bottom: 12px;
}

.price {
    font-size: 22px;
    font-weight: 700;
    color: #ffcc00;
}

.unit {
    font-size: 14px;
    color: #777;
}

.fleet-description {
    margin-bottom: 15px;
    min-height: 40px;
    text-align: center;
}

.fleet-description p {
    font-size: 13px;
    color: #777;
}

.btn-details {
    display: block;
    text-align: center;
    padding: 10px;
    background-color: #00355F;
    color: #fff;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.3s ease;
    margin-top: auto;
}

.btn-details:hover {
    background-color: #FF7F00;
}

/* Services Section Styles */
.services-section {
    padding: 80px 0;
    background-color: #f8f8f8;
}

.services-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background-color: #fff;
    border-radius: 8px;
    padding: 15px 68px;
    width: 306px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 3px;
    background-color: #00355F;
    transition: width 0.3s ease;
}

.service-card:hover::before {
    width: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-icon {
    width: 80px;
    height: 80px;
    background-color: #f0f8ff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
}

.service-icon i {
    font-size: 32px;
    color: #00355F;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    background-color: #ff7e00;
}

.service-card:hover .service-icon i {
    color: #fff;
}

.service-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #00355F;
    transition: color 0.3s ease;
}

.service-card p {
    font-size: 15px;
    color: #777;
    margin-bottom: 20px;
}

.service-link {
    display: inline-block;
    color: #ff7e00;
    font-weight: 600;
    transition: all 0.3s ease;
}

.service-link i {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.service-card:hover .service-link {
    color: #00355F;
}

.service-card:hover .service-link i {
    transform: translateX(5px);
}

/* Routes Section */
.routes-section {
    padding: 80px 0;
    background: #f8f8f8;
}

.routes-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.route-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 220px;
    display: flex;
    align-items: flex-end;
    color: #fff;
    cursor: pointer;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.route-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.route-card img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
}

.route-card:hover img {
    transform: scale(1.1);
}

.route-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.2));
    z-index: 1;
}

.route-content {
    position: relative;
    z-index: 2;
    padding: 20px;
    width: 100%;
}

.route-content h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}

.route-info {
    font-size: 14px;
    margin-bottom: 10px;
    display: flex;
    gap: 15px;
}

.route-info span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.route-info i {
    color: #FFD700;
}

.route-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.route-price {
    font-size: 18px;
    font-weight: 700;
    color: #FFD700;
}

.btn-book {
    background: #FFD700;
    color: #f6f8f9;
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    transition: all .3s ease;
}

.btn-book:hover {
    background: #00355F;
    color: #fff;
}

/* About Section Styles */
.about-section {
    padding: 80px 0;
    background-color: #fff;
}

.about-container {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-image {
    flex: 1;
    position: relative;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.experience-badge {
    position: absolute;
    bottom: -25px;
    right: -25px;
    width: 150px;
    height: 150px;
    background-color: #ff7e00;
    color: #fff;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    box-shadow: 0 5px 15px rgba(255, 126, 0, 0.3);
    animation: pulse 2s infinite;
}

.experience-badge .years {
    font-size: 36px;
    font-weight: 700;
    line-height: 1;
}

.experience-badge .text {
    font-size: 14px;
    font-weight: 600;
    max-width: 80%;
}

.about-content {
    flex: 1;
}

.section-subtitle {
    font-size: 16px;
    font-weight: 600;
    color: #ff7e00;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    color: #00355F;
    margin-bottom: 20px;
    line-height: 1.3;
}

.section-title span {
    color: #ff7e00;
}

.about-description {
    font-size: 16px;
    color: #666;
    margin-bottom: 30px;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-bottom: 30px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(255, 126, 0, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ff7e00;
    font-size: 20px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.feature-item:hover .feature-icon {
    background-color: #ff7e00;
    color: #fff;
    transform: rotateY(180deg);
}

.feature-text h4 {
    font-size: 18px;
    font-weight: 600;
    color: #00355F;
    margin-bottom: 5px;
}

.feature-text p {
    font-size: 14px;
    color: #777;
}

.about-stats {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
    padding: 20px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-size: 30px;
    font-weight: 700;
    color: #ff7e00;
}

.stat-text {
    font-size: 14px;
    color: #777;
}

.about-buttons {
    display: flex;
    gap: 15px;
}

/* Details Page Styles */
.Details-breadcrumb {
    font-size: 14px;
    margin-bottom: 20px;
}

.Details-breadcrumb a {
    color: #00355F;
    text-decoration: none;
}

.Details-breadcrumb span {
    color: #ff7e00;
    font-weight: 600;
}

.Details-flex {
    display: flex;
    flex-wrap: wrap;
    margin: 24px;
    gap: 30px;
}

.Details-gallery {
    flex: 1;
}

.Details-main-image {
    border-radius: 8px;
    overflow: hidden;
}

.Details-main-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: 0.4s;
}

.Details-main-image:hover img {
    transform: scale(1.05);
}

.Details-thumbs {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.Details-thumb {
    width: 80px;
    height: 60px;
    overflow: hidden;
    border: 2px solid transparent;
    cursor: pointer;
}

.Details-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.Details-thumb.active {
    border-color: #ff7e00;
}

.Details-info {
    flex: 1;
}

.Details-title {
    font-size: 32px;
    color: #00355F;
}

.Details-subtitle {
    color: #777;
    margin: 10px 0;
}

.Details-price {
    display: flex;
    justify-content: space-between;
    padding: 15px;
    background: #f0f8ff;    
    border-radius: 6px;
    margin-bottom: 15px;
}

/* .Details-price-amount {
    font-size: 28px;
    color: #ff7e00;
} */

.Details-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin: 15px 0;
}

.Details-feature {
    background: #fff;
    padding: 10px;
    border-radius: 6px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    transition: 0.3s;
}

.Details-feature:hover {
    transform: translateY(-4px);
    background: #ff7e00;
    color: #fff;
}

.Details-amenities ul {
    list-style: none;
}

.Details-amenities li {
    margin: 8px 0;
    color: #555;
}

.Details-amenities i {
    color: #ff7e00;
    margin-right: 6px;
}

.Details-buttons {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.Details-btn-book,
.Details-btn-enquire {
    padding: 12px 20px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.Details-btn-book {
    background: #ff7e00 !important;
    color: #fff !important;
    border: none;
}

.Details-btn-book:hover {
    background: #e66a00 !important;
}

.Details-btn-enquire {
    border: 2px solid #00355F;
    color: #00355F;
}

.Details-btn-enquire:hover {
    background: #00355F;
    color: #fff;
}

.Details-tabs {
    margin-top: 30px;
    background: #fff;
    border-radius: 6px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
}

.Details-tab-header {
    display: flex;
    background: #00355F;
}

.Details-tab {
    flex: 1;
    padding: 12px;
    color: #fff;
    text-align: center;
    cursor: pointer;
    transition: 0.3s;
}

.Details-tab.active {
    background: #ff7e00;
}

.Details-tab-content {
    display: none;
    padding: 20px;
    animation: fade 0.5s;
}

.Details-tab-content.active {
    display: block;
}

.Details-faq {
    border-bottom: 1px solid #ddd;
    padding: 10px 0;
    cursor: pointer;
}

.Details-faq-answer {
    display: none;
    padding: 5px 0;
    color: #555;
}

/* Banner Section */
/* .custom-banner-section {
    position: relative;
    height: 250px;
    color: white;
    display: flex;
    margin-top: 53px;
    left: -195px;
    width: 125%;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(45, 17, 61, 0.7), rgba(255, 165, 0, 0.7));
} */

/* About Us Specific Styles */
/* .About-navbar {
    background-color: var(--primary-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
} */

.About-hero {
    background: linear-gradient(rgba(44, 62, 80, 0.8), rgba(44, 62, 80, 0.9)), url('https://images.unsplash.com/photo-1521737711867-e3b97375f902?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 100px 0;
    text-align: center;
}

.About-section {
    padding: 80px 0;
}

.About-section-light {
    background-color: var(--light-color);
}

.About-section-dark {
    background-color: var(--primary-color);
    color: white;
}

.About-heading {
    font-weight: 700;
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
}

.About-heading::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background-color: var(--secondary-color);
}

.About-team-card {
    transition: transform 0.3s ease;
    border: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.About-team-card:hover {
    transform: translateY(-10px);
}

.About-team-img {
    height: 250px;
    object-fit: cover;
}

.About-values-icon {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.About-timeline {
    position: relative;
    padding-left: 30px;
    margin-bottom: 30px;
}

.About-timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background-color: var(--secondary-color);
}

.About-timeline-item {
    position: relative;
    margin-bottom: 30px;
}

.About-timeline-item::before {
    content: '';
    position: absolute;
    left: -37px;
    top: 5px;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background-color: var(--secondary-color);
}

.About-testimonial {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.About-testimonial-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
}

/* Footer Styles */
.footer-logo img {
    width: 119%;
    margin-left: -51px;
    margin-top: -17px;
}

.travel-footer {
    background-color: #050505; /*#00355F*/
    color: #fff;
    padding: 60px 20px 20px;
    font-family: Arial, sans-serif;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 8px;
    max-width: 1200px;
    margin: auto;
}

.footer-about h2 {
    font-size: 26px;
    margin-bottom: 10px;
    color: #ffcc00;
}

.footer-about p {
    font-size: 14px;
    margin-bottom: 15px;
}

.footer-social a {
    display: inline-block;
    margin-right: 10px;
    color: #fff;
    font-size: 18px;
    transition: 0.3s;
}

.footer-social a:hover {
    color: #ffcc00;
    transform: scale(1.2);
}

.footer-links h3 {
    font-size: 18px;
    margin-bottom: 15px;
    border-bottom: 2px solid #ffcc00;
    display: inline-block;
    padding-bottom: 5px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links ul li {
    margin-bottom: 8px;
}

.footer-links ul li a {
    color: #ddd;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
}

.footer-links ul li a:hover {
    color: #ffcc00;
    padding-left: 5px;
}

.footer-contact h3 {
    font-size: 18px;
    margin-bottom: 15px;
    border-bottom: 2px solid #ffcc00;
    display: inline-block;
    padding-bottom: 5px;
}

.footer-contact p {
    font-size: 14px;
    margin: 5px 0;
}

.footer-contact i {
    margin-right: 8px;
    color: #ffcc00;
}

.footer-subscribe {
    display: flex;
    margin: 15px 0;
}

.footer-subscribe input {
    flex: 1;
    padding: 10px;
    border: none;
    border-radius: 4px 0 0 4px;
    outline: none;
}

.footer-subscribe button {
    padding: 10px 15px;
    background: #ff7e00;
    border: none;
    color: #fff;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    transition: 0.3s;
}

.footer-subscribe button:hover {
    background: #e67300;
}

.footer-payments img {
    height: 25px;
    margin: 5px;
    background: #fff;
    padding: 3px 6px;
    border-radius: 4px;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 15px;
    margin-top: 30px;
    font-size: 14px;
    color: #ddd;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fade {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.service-card {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }
.service-card:nth-child(4) { animation-delay: 0.4s; }
.service-card:nth-child(5) { animation-delay: 0.5s; }
.service-card:nth-child(6) { animation-delay: 0.6s; }

.route-card {
    animation: fadeInUp .7s ease forwards;
    opacity: 0;
}

.route-card:nth-child(1) { animation-delay: .1s; }
.route-card:nth-child(2) { animation-delay: .2s; }
.route-card:nth-child(3) { animation-delay: .3s; }
.route-card:nth-child(4) { animation-delay: .4s; }
.route-card:nth-child(5) { animation-delay: .5s; }
.route-card:nth-child(6) { animation-delay: .6s; }

/* Responsive Styles */
@media (max-width: 1200px) {
    .fleet-container {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 1024px) {
    .services-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .routes-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .fleet-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .fleet-image {
        height: 160px;
    }

    .section-title {
        font-size: 32px;
    }

    .experience-badge {
        width: 120px;
        height: 120px;
        bottom: -15px;
        right: -15px;
    }

    .experience-badge .years {
        font-size: 30px;
    }

    .experience-badge .text {
        font-size: 12px;
    }
}

@media (max-width: 992px) {
    .plackraj-booking-content {
        flex-direction: column;
    }

    .plackraj-map {
        height: 250px;
    }
}

@media (max-width: 768px)
 {

   
    .hero-slider-carsole {
        height: 500px;
    }

    .slide-content-carsole h1 {
        font-size: 36px;
    }

    .booking-form-container-carsole {
        position: relative;
        bottom: 0;
        margin-top: 0;
        width: 100%;
        margin: 20px auto 0;
        left: 0;
    }

    .form-tabs-carsole {
        overflow-x: auto;
        white-space: nowrap;
    }

    .form-row-carsole {
        flex-direction: column;
        gap: 10px;
    }

    .form-body-carsole {
        padding: 20px;
    }

    .section-header h2 {
        font-size: 30px;
    }

    .section-header p {
        font-size: 16px;
    }

    .services-section {
        width: 100%;
    }

    .about-container {
        flex-direction: column;
    }

    .about-image,
    .about-content {
        width: 100%;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .about-stats {
        flex-wrap: wrap;
        gap: 20px;
    }

    .stat-item {
        width: 45%;
    }

    .section-title {
        font-size: 28px;
    }

    .Details-flex {
        flex-direction: column;
        margin-left: -8px;
        margin-top: 21px;
    }

    .Details-main-image img {
        height: 250px;
    }

    .plackraj-section-header h2 {
        font-size: 28px;
    }

    .plackraj-booking-section {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .services-container {
        grid-template-columns: 1fr;
    }

    .service-card {
        max-width: 350px;
        margin: 0 auto;
    }

    .section-header h2 {
        font-size: 26px;
    }

    .routes-container {
        grid-template-columns: 1fr;
    }

    .route-card {
        height: auto;
        width: 100%;
        margin-left: 0;
        text-align: center;
    }

    .fleet-container {
        grid-template-columns: 1fr;
    }

    .fleet-section {
        margin-left: 0;
    }

    .fleet-card {
        max-width: 360px;
        margin: 0 auto;
    }

    .fleet-image {
        height: 140px;
    }

    .feature i {
        font-size: 16px;
    }

    .feature span {
        font-size: 12px;
    }

    .price {
        font-size: 20px;
    }

    .hero-slider-carsole {
        height: 260px;
        width: 100%;
        left: 0;
        margin-top: 60px;
    }

    .slide-content-carsole h1 {
        font-size: 21px;
    }

    .slide-content-carsole p {
        font-size: 9px;
        margin: 11px;
    }

    .booking-form-container-carsole {
        margin-top: -60px;
    }

    .about-section {
        padding: 60px 0;
        width: 100%;
    }

    .section-title {
        font-size: 24px;
    }

    .experience-badge {
        width: 100px;
        height: 100px;
        bottom: -10px;
        right: -10px;
    }

    .experience-badge .years {
        font-size: 24px;
    }

    .experience-badge .text {
        font-size: 10px;
    }

    .about-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        text-align: center;
        font-size: 16px;
    }

    .stat-item {
        width: 100%;
    }

    .About-back-to-top {
        width: 45px;
        height: 45px;
        font-size: 18px;
        bottom: 20px;
        right: 20px;
    }

    .footer-logo img {
        width: 100%;
        margin-left: 0;
        margin-top: 0;
    }
}

/* Modal Styles */
.modal-header {
    background-color: #00355F;
    color: #fff;
}

/* Additional utility classes and specific component styles would continue here... */
/* '''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''Service -details ''''''''' */
/* Service Details Section */
.Seri_detialss-section {
    padding: 60px 20px;
    background-color: #f8f8f8;
}

.Seri_detialss-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1200px;
    margin: auto;
    align-items: flex-start;
}

.Seri_detialss-left {
    flex: 1 1 45%;
    position: relative;
}

.Seri_detialss-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.Seri_detialss-img:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.Seri_detialss-right {
    flex: 1 1 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.Seri_detialss-title {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #2d113d;
}

.Seri_detialss-paragraph {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #333;
}

.Seri_detialss-subtitle {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #ff6600;
}

.Seri_detialss-list {
    list-style: disc;
    padding-left: 28px;
}

.Seri_detialss-list li {
    margin-bottom: 10px;
}

.Seri_detialss-package {
    margin-top: 30px;
}

.Seri_detialss-btn {
    padding: 12px 30px;
    background: #2d113d;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1rem;
    transition: 0.3s;
}

.Seri_detialss-btn:hover {
    background: orange;
    transform: scale(1.05);
}

/* Responsive */
@media (max-width: 992px) {
    .Seri_detialss-container {
        flex-direction: column;
    }

    .Seri_detialss-left,
    .Seri_detialss-right {
        flex: 1 1 100%;
    }

    .Seri_detialss-img {
        height: 300px;
    }

    .Seri_detialss-list {
        padding-left: 0px;
    }
}

@media (max-width: 576px) {
    .Seri_detialss-title {
        font-size: 1.5rem;
    }

    .Seri_detialss-paragraph {
        font-size: 0.95rem;
    }

    .Seri_detialss-btn {
        width: 100%;
        text-align: center;
    }
}

/* '''''''''''''''''''''''''''''''''''''''''''''''''''''packagee''''''''''''' */
/* Section */

.package-details-section {
    padding: 60px 20px;
    background: #f8f8f8;
}

.package-details-header {
    text-align: center;
    margin-top: -39px;
    padding: 27px;
}

/* Card */
.package-details-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s ease;
}

.package-details-card:hover {
    transform: translateY(-10px);
}

/* Card Image */
.package-details-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.package-details-card:hover .package-details-img {
    transform: scale(1.1);
}

/* Overlay */
.package-details-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
}

/* Title */
.package-details-title {
    font-size: 20px;
    margin-bottom: 10px;
}

/* Buttons */
.package-details-buttons {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.package-details-buttons a {
    flex: 1;
    text-align: center;
    padding: 10px;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.package-details-btn-details {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.package-details-btn-details:hover {
    background: #fff;
    color: #333;
}

.package-details-btn-book {
    background: #ff7e00;
    color: #fff;
}

.package-details-btn-book:hover {
    background: #e56b00;
}

/* Swiper Navigation */
.package-details-swiper-button-next,
.package-details-swiper-button-prev {
    color: #00355f;
    font-weight: bold;
}

/* Pagination */
.package-details-swiper-pagination .swiper-pagination-bullet {
    background: #ff7e00;
}

/* Responsive Tweaks */
@media (max-width: 992px) {
    .package-details-card img {
        height: 220px;
    }
}

@media (max-width: 576px) {
    .package-details-card img {
        height: 200px;
    }

    .package-details-title {
        font-size: 18px;
    }

    .package-details-buttons a {
        padding: 8px;
        font-size: 0.9rem;
    }
}

/* ''''''''''''''''''''''''[[[[[[[[[[[[[[[[[[  Serivecss Pagee]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]'''''''''''''''''''''''''''''''''''''''''''''''''''''''' */
/* ''''''''''-----------offer----------------===---'''''''' */

/* Deals Section Styles */
.S-C-deals-section {
    padding: 80px 0;
    background-color: #f8f8f8;
}

.S-C-section-header {
    text-align: center;
    margin-bottom: 40px;
}

.S-C-section-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
    display: inline-block;
    position: relative;
}

.S-C-section-header h2 span {
    color: #ff7e00;
}

.S-C-section-header p {
    font-size: 18px;
    color: #777;
    max-width: 700px;
    margin: 0 auto;
}

/* Filter Tabs */
.S-C-filter-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    position: relative;
    border-bottom: 1px solid #eee;
    overflow-x: auto;
}

.S-C-filter-tab {
    padding: 12px 25px;
    font-weight: 600;
    color: #777;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.S-C-filter-tab:hover,
.S-C-filter-tab.active {
    color: #ff7e00;
}

.S-C-filter-indicator {
    position: absolute;
    bottom: 0;
    height: 3px;
    background-color: #ff7e00;
    transition: 0.3s;
}

/* Deals Slider */
.S-C-deals-slider-container {
    position: relative;
    margin-bottom: 40px;
}

.S-C-deals-slider {
    display: flex;
    gap: 25px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 10px 5px 30px;
    scrollbar-width: none;
}

.S-C-deals-slider::-webkit-scrollbar {
    display: none;
}

/* Deal Card */
.S-C-deal-card {
    /* min-width: 320px;
    max-width: 350px; */
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: 0.3s;
}

.S-C-deal-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.S-C-deal-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #ff7e00;
    color: #fff;
    padding: 6px 12px;
    font-size: 13px;
    font-weight: 600;
    border-radius: 4px;
}

.S-C-deal-image {
    height: 180px;
    overflow: hidden;
}

.S-C-deal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

.S-C-deal-card:hover .S-C-deal-image img {
    transform: scale(1.1);
}

.S-C-deal-content {
    padding: 20px;
}

.S-C-deal-content h3 {
    font-size: 20px;
    color: #00355f;
    margin-bottom: 10px;
}

.S-C-deal-content p {
    font-size: 14px;
    color: #777;
    margin-bottom: 15px;
}

/* Buttons */
.S-C-deal-buttons {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.S-C-deal-buttons a {
    flex: 1;
    padding: 10px;
    border-radius: 4px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    transition: 0.3s;
}

.S-C-btn-view {
    background: #00355f;
    color: #fff;
}

.S-C-btn-view:hover {
    background: #ff7e00;
}

.S-C-btn-whatsapp {
    background: #25d366;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
}

.S-C-btn-whatsapp:hover {
    background: #1ebe57;
}

/* Slider Navigation */
.S-C-slider-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    gap: 15px;
}

.S-C-slider-prev,
.S-C-slider-next {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.3s;
}

.S-C-slider-prev:hover,
.S-C-slider-next:hover {
    background: #ff7e00;
    color: #fff;
    border-color: #ff7e00;
}

.S-C-slider-dots {
    display: flex;
    gap: 6px;
}

.S-C-slider-dot {
    width: 10px;
    height: 10px;
    background: #ccc;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s;
}

.S-C-slider-dot.active {
    background: #ff7e00;
    transform: scale(1.2);
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .S-C-section-header h2 {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .S-C-section-header h2 {
        font-size: 28px;
    }

    .S-C-section-header p {
        font-size: 16px;
    }

    .S-C-deal-card {
        min-width: 280px;
    }
}

@media (max-width: 576px) {
    .S-C-section-header h2 {
        font-size: 24px;
    }

    .S-C-deal-card {
        min-width: 250px;
    }

    .S-C-deal-buttons {
        flex-direction: column;
    }
}






.truncate-2-lines {
    display: -webkit-box;
    -webkit-line-clamp: 2; /* limit to 2 lines */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.read-more {
    display: inline-block;
    margin-top: 5px;
    color: #007bff;
    cursor: pointer;
    font-size: 0.9rem;
}

    .team-section--slider-team {
        padding: 60px 20px;
        text-align: center;
        background: #eef5ff;
    }

    .team-section--slider-team h2 {
        font-size: 2.5rem;
        color: #004aad;
        margin-bottom: 10px;
    }

    .team-section--slider-team p {
        font-size: 1.1rem;
        color: #333;
        margin-bottom: 40px;
    }

    /* ===== Swiper Slider ===== */
    .myTeamSwiper--slider-team {
        padding-bottom: 50px;
    }

    .swiper-slide--slider-team {
        display: flex;
        justify-content: center;
    }

    .team-card--slider-team {
        background: #ffffff;
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
        width: 280px;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        text-align: center;
        padding: 20px 15px;
        position: relative;
    }

    .team-card--slider-team:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25);
    }

    /* ===== Team Image ===== */
    .team-card--slider-team img {
        width: 120px;
        height: 120px;
        border-radius: 50%;
        object-fit: cover;
        margin-bottom: 15px;
        border: 4px solid #ffd700;
    }

    /* ===== Social Icons ===== */
    .social-icons {
        position: absolute;
        bottom: 15px;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        gap: 15px;
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .team-card--slider-team:hover .social-icons {
        opacity: 1;
    }

    .social-icons a {
        color: #004aad;
        font-size: 1.2rem;
        transition: color 0.3s ease;
    }

    .social-icons a:hover {
        color: #ffd700;
    }

    /* ===== Text Content ===== */
    .team-card--slider-team h3 {
        color: #004aad;
        font-size: 1.3rem;
        margin-bottom: 5px;
    }

    .team-card--slider-team h5 {
        color: #666;
        font-size: 1rem;
        margin-bottom: 10px;
    }

    .team-card--slider-team p {
        font-size: 0.95rem;
        color: #444;
        line-height: 1.4;
    }

    /* ===== Swiper Arrows ===== */
    .swiper-button-next--slider-team,
    .swiper-button-prev--slider-team {
        color: #004aad;
        background: rgba(255, 215, 0, 0.8);
        padding: 10px;
        border-radius: 50%;
        width: 45px;
        height: 45px;
        top: 45%;
    }

    .swiper-button-next--slider-team:hover,
    .swiper-button-prev--slider-team:hover {
        background: #ffd700;
    }

    /* ===== Responsive ===== */
    @media (max-width: 1024px) {
        .team-card--slider-team {
            width: 250px;
        }
    }

    @media (max-width: 768px) {
        .team-card--slider-team {
            width: 220px;
        }

        .team-section--slider-team h2 {
            font-size: 2rem;
        }

        .team-section--slider-team p {
            font-size: 1rem;
        }
    }

    @media (max-width: 480px) {
        .team-card--slider-team {
            width: 90%;
        }

        .swiper-button-next--slider-team,
        .swiper-button-prev--slider-team {
            display: none;
        }
    }

.custom-card-row {
    display: flex;
    flex-wrap: wrap; /* allow wrapping after 3 cards */
    justify-content: flex-start;
    margin-right: 10px;
    gap: 20px;
}

/* Deals Section Styles */
.S-C-deals-section {
    padding: 80px 0;
    background-color: #f8f8f8;
}

.S-C-section-header {
    text-align: center;
    margin-bottom: 40px;
}

.S-C-section-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
    display: inline-block;
    position: relative;
}

.S-C-section-header h2 span {
    color: #ff7e00;
}

.S-C-section-header p {
    font-size: 18px;
    color: #777;
    max-width: 700px;
    margin: 0 auto;
}

/* Filter Tabs */
.S-C-filter-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    position: relative;
    border-bottom: 1px solid #eee;
    overflow-x: auto;
}

.S-C-filter-tab {
    padding: 12px 25px;
    font-weight: 600;
    color: #777;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.S-C-filter-tab:hover,
.S-C-filter-tab.active {
    color: #ff7e00;
}

.S-C-filter-indicator {
    position: absolute;
    bottom: 0;
    height: 3px;
    background-color: #ff7e00;
    transition: 0.3s;
}

/* Deals Slider */
.S-C-deals-slider-container {
    position: relative;
    margin-bottom: 40px;
}

.S-C-deals-slider {
    display: flex;
    gap: 25px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 10px 5px 30px;
    scrollbar-width: none;
}

.S-C-deals-slider::-webkit-scrollbar {
    display: none;
}

/* Deal Card */
.S-C-deal-card {
    min-width: 320px;
    max-width: 350px;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: 0.3s;
}

.S-C-deal-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.S-C-deal-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #ff7e00;
    color: #fff;
    padding: 6px 12px;
    font-size: 13px;
    font-weight: 600;
    border-radius: 4px;
}

.S-C-deal-image {
    height: 180px;
    overflow: hidden;
}

.S-C-deal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

.S-C-deal-card:hover .S-C-deal-image img {
    transform: scale(1.1);
}

.S-C-deal-content {
    padding: 20px;
}

.S-C-deal-content h3 {
    font-size: 20px;
    color: #00355f;
    margin-bottom: 10px;
}

.S-C-deal-content p {
    font-size: 14px;
    color: #777;
    margin-bottom: 15px;
}

/* Buttons */
.S-C-deal-buttons {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.S-C-deal-buttons a {
    flex: 1;
    padding: 10px;
    border-radius: 4px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    transition: 0.3s;
}

.S-C-btn-view {
    background: #00355f;
    color: #fff;
}

.S-C-btn-view:hover {
    background: #ff7e00;
}

.S-C-btn-whatsapp {
    background: #25d366;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
}

.S-C-btn-whatsapp:hover {
    background: #1ebe57;
}

/* Slider Navigation */
.S-C-slider-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    gap: 15px;
}

.S-C-slider-prev,
.S-C-slider-next {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.3s;
}

.S-C-slider-prev:hover,
.S-C-slider-next:hover {
    background: #ff7e00;
    color: #fff;
    border-color: #ff7e00;
}

.S-C-slider-dots {
    display: flex;
    gap: 6px;
}

.S-C-slider-dot {
    width: 10px;
    height: 10px;
    background: #ccc;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s;
}

.S-C-slider-dot.active {
    background: #ff7e00;
    transform: scale(1.2);
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .S-C-section-header h2 {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .S-C-section-header h2 {
        font-size: 28px;
    }

    .S-C-section-header p {
        font-size: 16px;
    }

    .S-C-deal-card {
        min-width: 280px;
    }
}

@media (max-width: 576px) {
    .S-C-section-header h2 {
        font-size: 24px;
    }

    .S-C-deal-card {
        min-width: 250px;
    }

    .S-C-deal-buttons {
        flex-direction: column;
    }
}

/* Detail.css*/
/* Deals Section Styles */
.S-C-deals-section {
    padding: 80px 0;
    background-color: #f8f8f8;
}

.S-C-section-header {
    text-align: center;
    margin-bottom: 40px;
}

.S-C-section-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
    display: inline-block;
    position: relative;
}

.S-C-section-header h2 span {
    color: #ff7e00;
}

.S-C-section-header p {
    font-size: 18px;
    color: #777;
    max-width: 700px;
    margin: 0 auto;
}

/* Filter Tabs */
.S-C-filter-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    position: relative;
    border-bottom: 1px solid #eee;
    overflow-x: auto;
}

.S-C-filter-tab {
    padding: 12px 25px;
    font-weight: 600;
    color: #777;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.S-C-filter-tab:hover,
.S-C-filter-tab.active {
    color: #ff7e00;
}

.S-C-filter-indicator {
    position: absolute;
    bottom: 0;
    height: 3px;
    background-color: #ff7e00;
    transition: 0.3s;
}

/* Deals Slider */
.S-C-deals-slider-container {
    position: relative;
    margin-bottom: 40px;
}

.S-C-deals-slider {
    display: flex;
    gap: 25px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 10px 5px 30px;
    scrollbar-width: none;
}

.S-C-deals-slider::-webkit-scrollbar {
    display: none;
}

/* Deal Card */
.S-C-deal-card {
    min-width: 320px;
    max-width: 350px;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: 0.3s;
}

.S-C-deal-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.S-C-deal-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #ff7e00;
    color: #fff;
    padding: 6px 12px;
    font-size: 13px;
    font-weight: 600;
    border-radius: 4px;
}

.S-C-deal-image {
    height: 180px;
    overflow: hidden;
}

.S-C-deal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

.S-C-deal-card:hover .S-C-deal-image img {
    transform: scale(1.1);
}

.S-C-deal-content {
    padding: 20px;
}

.S-C-deal-content h3 {
    font-size: 20px;
    color: #00355f;
    margin-bottom: 10px;
}

.S-C-deal-content p {
    font-size: 14px;
    color: #777;
    margin-bottom: 15px;
}

/* Buttons */
.S-C-deal-buttons {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.S-C-deal-buttons a {
    flex: 1;
    padding: 10px;
    border-radius: 4px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    transition: 0.3s;
}

.S-C-btn-view {
    background: #00355f;
    color: #fff;
}

.S-C-btn-view:hover {
    background: #ff7e00;
}

.S-C-btn-whatsapp {
    background: #25d366;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
}

.S-C-btn-whatsapp:hover {
    background: #1ebe57;
}

/* Slider Navigation */
.S-C-slider-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    gap: 15px;
}

.S-C-slider-prev,
.S-C-slider-next {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.3s;
}

.S-C-slider-prev:hover,
.S-C-slider-next:hover {
    background: #ff7e00;
    color: #fff;
    border-color: #ff7e00;
}

.S-C-slider-dots {
    display: flex;
    gap: 6px;
}

.S-C-slider-dot {
    width: 10px;
    height: 10px;
    background: #ccc;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s;
}

.S-C-slider-dot.active {
    background: #ff7e00;
    transform: scale(1.2);
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .S-C-section-header h2 {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .S-C-section-header h2 {
        font-size: 28px;
    }

    .S-C-section-header p {
        font-size: 16px;
    }

    .S-C-deal-card {
        min-width: 280px;
    }
}

@media (max-width: 576px) {
    .S-C-section-header h2 {
        font-size: 24px;
    }

    .S-C-deal-card {
        min-width: 250px;
    }

    .S-C-deal-buttons {
        flex-direction: column;
    }
}




/* Floating buttons wrapper */
.floating-buttons {
    position: fixed;
    bottom: 140px;
    left: 20px;
    right: 20px;
    z-index: 1000;
}

/* Common style for both buttons */
.btn-floating {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 22px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
}

/* Hover animation */
.btn-floating:hover {
    transform: scale(1.1);
}

/* Call button (left) */
.btn-call {
    background-color: #28a745; /* Bootstrap green */
    position: absolute;
    left: 0;
}

/* WhatsApp button (right) */
.btn-whatsapp {
    background-color: #25D366; /* WhatsApp green */
    position: absolute;
    right: 0;
}





/* Reset and Base */
.Navbar-header * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.Navbar-header body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Header */
.Navbar-header {
    background-color: #fff;
    color: #262121;
    padding: 4px 0;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.Navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.Navbar-logo img {
    height: 67px;
}

/* Menu */
.Navbar-main-menu {
    display: flex;
    list-style: none;
}

.Navbar-main-menu li {
    margin: 0 15px;
}

.Navbar-main-menu a {
    position: relative;
    padding: 5px 0;
    font-weight: 500;
    text-decoration: none;
    color: #000000;
    transition: color 0.3s ease;
}

.Navbar-main-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #146fb9;
    transition: width 0.3s ease;
}   

.Navbar-main-menu a:hover::after,
.Navbar-main-menu a.Navbar-active::after {
    width: 100%;
}

/* Right Section */
.Navbar-right {
    display: flex;
    align-items: center;
}

.Navbar-btn {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.Navbar-btn-outline {
    background-color: #e6b800;
    color: #333;
    border: 2px solid #e6b800;
}

.Navbar-btn-outline:hover {
    background-color: #2d113d;
    color: #fff;
    border: 2px solid #2d113d;
}

/* Mobile Toggle */
.Navbar-mobile-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

/* Responsive */
@media (max-width: 768px) { 
    .Navbar-main-menu {
        display: none;
        flex-direction: column;
        background-color: #2d113d;
        position: absolute;
        top: 48px;
        left: 165px;
        width: 51%;
        text-align: center;
        padding: 15px 0;
        z-index: 999;
    }

    .Navbar-main-menu.show {
        display: flex;
    }

    .Navbar-main-menu li {
        margin: 12px 0;
    }

    .Navbar-right {
        display: none;
    }

    .Navbar-mobile-toggle {
        display: block;
    }

    .Navbar-logo img {
        height: 45px;
        max-width: 150px;
    }

    .Navbar-main-menu a {
        /* position: relative; */
        /* padding: 5px 0; */
        /* font-weight: 500; */
        /* text-decoration: none; */
        color: #fff9f9;
        transition: color 0.3s ease;
    }

    .Navbar-main-menu a::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0;
        height: 2px;
        background-color: #5ecb1b;
        transition: width 0.3s ease;
    }
}
 .full-text-wrapper.collapsed {
            display: none;
        }

        .promo-section {
            padding: 60px 20px;
            background: #f8f9fa;
        }

        .promo-container {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            max-width: 1200px;
            margin: 0 auto;
        }

        .promo-content {
            flex: 1 1 45%;
            padding: 20px;
        }

        .promo-title {
            font-size: 2.2rem;
            font-weight: 700;
            margin-bottom: 15px;
            color: #2c3e50;
        }

        .promo-text {
            font-size: 1.1rem;
            line-height: 1.6;
            margin-bottom: 25px;
            color: #555;
        }

        .promo-buttons {
            display: flex;
            gap: 15px;
        }

        .promo-btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 12px 20px;
            font-size: 1rem;
            font-weight: 600;
            border-radius: 30px;
            text-decoration: none;
            transition: all 0.3s ease-in-out;
        }

        .promo-call {
            background: #007bff;
            color: #fff;
        }

        .promo-call:hover {
            background: #0056b3;
        }

        .promo-whatsapp {
            background: #25d366;
            color: #fff;
        }

        .promo-whatsapp:hover {
            background: #128c7e;
        }

        .promo-image {
            flex: 1 1 45%;
            text-align: center;
            padding: 20px;
        }

        .promo-image img {
            /* max-width: 100%; */
            border-radius: 15px;
            box-shadow: 0px 6px 20px rgba(0, 0, 0, 0.15);
            width: 100%;
        }

        /* Responsive */
        @media (max-width: 991px) {
            .promo-container {
                flex-direction: column;
                text-align: center;
            }

            .promo-content,
            .promo-image {
                flex: 1 1 100%;
            }

            .promo-buttons {
                justify-content: center;
            }
        }