
         :root {
         --primary-yellow: #ffe14f;
         --secondary-black: #000000;
         --dark-gray: #1a1a1a;
         --medium-gray: #2d2d2d;
         --light-gray: #f8f9fa;
         --accent-red: #ff4757;
         }
         body {
         font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
         background-color: #f5f5f5;
         }
         .hero-section-offers {
         min-height: 100vh;
         background: linear-gradient(135deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.6) 100%), 
         url('https://images.unsplash.com/photo-1492144534655-ae79c964c9d7?ixlib=rb-4.0.3&auto=format&fit=crop&w=2000&q=80');
         background-size: cover;
         background-position: center;
         background-attachment: fixed;
         display: flex;
         align-items: center;
         position: relative;
         overflow: hidden;
         }
         .hero-content-offers {
         position: relative;
         z-index: 2;
         }
         .hero-title {
         font-size: 4rem;
         font-weight: 800;
         margin-bottom: 20px;
         line-height: 1.1;
         color: #fff;
         }
         .hero-title span {
         color: var(--primary-yellow);
         }
         .hero-subtitle {
         font-size: 1.3rem;
         margin-bottom: 30px;
         color: #ccc;
         max-width: 600px;
         }
         .btn-hero {
         background: var(--primary-yellow);
         color: var(--secondary-black);
         border: none;
         padding: 15px 35px;
         border-radius: 50px;
         font-weight: 700;
         font-size: 1.1rem;
         transition: all 0.3s ease;
         position: relative;
         overflow: hidden;
         z-index: 1;
         }
         .btn-hero:before {
         content: '';
         position: absolute;
         top: 0;
         left: -100%;
         width: 100%;
         height: 100%;
         background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
         transition: all 0.6s ease;
         z-index: -1;
         }
         .btn-hero:hover:before {
         left: 100%;
         }
         .btn-hero:hover {
         transform: translateY(-3px);
         box-shadow: 0 10px 25px rgba(255, 225, 79, 0.4);
         }
         .floating-elements {
         position: absolute;
         width: 100%;
         height: 100%;
         top: 0;
         left: 0;
         overflow: hidden;
         }
         .floating-element {
         position: absolute;
         background: rgba(255, 225, 79, 0.1);
         border-radius: 50%;
         animation: float 15s infinite linear;
         }
         @keyframes float {
         0% {
         transform: translateY(0) rotate(0deg);
         opacity: 1;
         }
         100% {
         transform: translateY(-1000px) rotate(720deg);
         opacity: 0;
         }
         }
         .section-title {
         font-size: 2.5rem;
         font-weight: 800;
         margin-bottom: 60px;
         text-align: center;
         position: relative;
         color: #000;
         }
         .section-title:after {
         content: '';
         position: absolute;
         bottom: -15px;
         left: 50%;
         transform: translateX(-50%);
         width: 80px;
         height: 5px;
         background: #000;
         border-radius: 5px;
         }
         .offers_section {
         padding: 44px 0;
         background: #eee;
         }
         .offer-card {
         background: #fff;
         border-radius: 20px;
         overflow: hidden;
         box-shadow: 0 15px 30px rgba(0,0,0,0.3);
         transition: all 0.4s ease;
         margin-bottom: 30px;
         height: 100%;
         position: relative;
         border: 1px solid rgba(255, 225, 79, 0.1);
         }
         .offer-card:hover {
         transform: translateY(-15px);
         box-shadow: 0 25px 50px rgba(0,0,0,0.5);
         border-color: rgba(255, 225, 79, 0.3);
         }
         .card-header {
         background: linear-gradient(135deg, var(--primary-yellow) 0%, #ffd700 100%);
         color: var(--secondary-black);
         padding: 25px;
         text-align: center;
         position: relative;
         overflow: hidden;
         }
         .card-header:before {
         content: '';
         position: absolute;
         top: -50%;
         left: -50%;
         width: 200%;
         height: 200%;
         background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, transparent 70%);
         opacity: 0;
         transition: opacity 0.5s ease;
         }
         .offer-card:hover .card-header:before {
         opacity: 1;
         }
         .card-title {
         font-weight: 800;
         font-size: 1.5rem;
         margin-bottom: 5px;
         font-family: unset;
         }
         .card-subtitle {
         font-weight: 600;
         opacity: 0.8;
         }
         .card-body {
  padding: 0px 30px 30px 30px;
  color: #000;
}
         .price-section {
         text-align: center;
         margin: 20px 0 30px;
         position: relative;
         }
         .price-container {
         display: inline-block;
         position: relative;
         }
         .original-price {
         font-size: 1.5rem;
         text-decoration: line-through;
         color: #888;
         position: relative;
         }
         .discounted-price {
         font-size: 23px;
         font-weight: 800;
         color: #000;
         margin: 0 15px;
         }
         .savings {
         background: var(--primary-yellow);
         color: var(--secondary-black);
         padding: 8px 15px;
         border-radius: 30px;
         font-weight: 700;
         display: inline-block;
         margin-top: 15px;
         box-shadow: 0 5px 15px rgba(255, 225, 79, 0.3);
         }
         .services-grid {
         display: grid;
         grid-template-columns: repeat(2, 1fr);
         gap: 15px;
         margin-bottom: 25px;
         }
         .service-item {
         display: flex;
         align-items: center;
         padding: 12px 15px;
         background: #ddd;
         border-radius: 10px;
         transition: all 0.3s ease;
         }
         .service-item:hover {
         background: rgba(255, 225, 79, 0.1);
         transform: translateX(5px);
         }
         .service-item i {
         color: var(--primary-yellow);
         margin-right: 10px;
         font-size: 1.1rem;
         }
         .validity {
         background: rgba(255, 225, 79, 0.1);
         padding: 15px;
         border-radius: 10px;
         text-align: center;
         margin: 20px 0;
         border-left: 4px solid var(--primary-yellow);
         }
         .terms {
         font-size: 0.85rem;
         color: #443f3f;
         margin-top: 25px;
         }
         .terms h6 {
         color: var(--primary-yellow);
         margin-bottom: 10px;
         font-weight: 700;
         }
         .btn-book {
         background: var(--primary-yellow);
         color: #000;
         border: 2px solid var(--primary-yellow);
         padding: 12px 25px;
         border-radius: 50px;
         font-weight: 700;
         transition: all 0.3s ease;
         width: 100%;
         margin-top: 20px;
         position: relative;
         overflow: hidden;
         z-index: 1;
         }
         .btn-book:before {
         content: '';
         position: absolute;
         top: 0;
         left: 0;
         width: 0;
         height: 100%;
         background: var(--primary-yellow);
         transition: all 0.5s ease;
         z-index: -1;
         }
         .btn-book:hover:before {
         width: 100%;
         }
         .btn-book:hover {
         color: var(--secondary-black);
         }
         .contact-info {
         background: #212228;
         padding: 20px;
         text-align: center;
         border-top: 1px solid rgba(255, 225, 79, 0.1);
         color: #fff;
         }
         /* Custom Tabs Styling */

         .nav-tabs {
         border: none;
         justify-content: center;
         margin-bottom: 30px;
         }
         .nav-tabs .nav-link {
         background: transparent;
       border: 1px solid #000 !important;
         color: #000 !important;
         font-weight: 600;
         padding: 15px 30px;
         position: relative;
         transition: all 0.3s ease;
         margin: 0 10px;
         border-radius: 50px;
         }
         .nav-tabs .nav-link.active {
         background: #000;
         color: #ffe14f !important;
         /* box-shadow: 0 5px 15px rgba(255, 225, 79, 0.3); */
         }
         .nav-tabs .nav-link:not(.active):hover {
         color: #000;
         background: rgba(255, 225, 79, 0.2);
         }
         .tab-content {
         position: relative;
         }
         .tab-pane {
         animation: fadeIn 0.5s ease;
         }
         @keyframes fadeIn {
         from { opacity: 0; transform: translateY(10px); }
         to { opacity: 1; transform: translateY(0); }
         }

         /* OFFER TITLE */
         .offer-title{
         font-weight: 700;
         margin-bottom: 10px;
         color: #222;
         }
         /* SERVICES GRID (KEEP STRUCTURE) */
         .services-grid{
         display: grid;
         grid-template-columns: repeat(2, 1fr);
         gap: 6px 12px;
         }
         .service-item{
         font-size: 14px;
         display: flex;
         align-items: center;
         gap: 6px;
         }
         .service-item i{
         color: #28a745;
         }
         /* FOC BOX */
         .foc-box{
         background: #f8f9fa;
         padding: 12px;
         border-radius: 6px;
         margin-top: 15px;
         }
         .foc-box h6{
         margin-bottom: 6px;
         font-weight: 700;
         }
         /* TERMS / NOTE */
         .terms{
         background: #fff7e6;
         border: 1px solid #ffd27f;
         padding: 12px;
         border-radius: 6px;
         margin-top: 12px;
         }
         .terms h6{
         font-weight: 700;
         margin-bottom: 6px;
         }
         /* CONTACT & ADDRESS */
         .contact-info{
         background: #111;
         color: #fff;
         padding: 12px;
         font-size: 14px;
         border-radius: 0 0 0px 0px;
         }
         .contact-info i{
         color: #F6BA26;
         margin-right: 6px;
         }
         /* FIX SLIDER HEIGHT – NO JUMPING */
         .offers-wrapper{
         height: 260px;            /* 👈 adjust if needed */
         overflow: hidden;
         margin-bottom: 10px;
         }
         /* ALLOW SCROLL INSIDE SLIDE */
         .carousel-item{
         height: 100%;
         overflow-y: auto;
         padding-right: 6px;
         }
         /* SMOOTH SCROLL LOOK */
         .carousel-item::-webkit-scrollbar{
         width: 4px;
         }
         .carousel-item::-webkit-scrollbar-thumb{
         background: #ccc;
         border-radius: 4px;
         }

         /* New Styles for Improved Design */

/* Discount Message */
.discount-message {
    background: rgba(255, 225, 79, 0.1);
    border: 1px solid rgba(255, 225, 79, 0.3);
    border-radius: 8px;
    padding: 12px 15px;
    margin-top: 15px;
    font-size: 14px;
    text-align: center;
}

.discount-message i {
    color: #ffc107;
}

/* Visible Offers Section */
.visible-offers-section {
    margin: 20px 0;
}

.section-label {
    color: #333;
    font-weight: 700;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0f0f0;
    display: flex;
    align-items: center;
}

/* Improved Tab Design */
.offers-tabs-preview {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    overflow: hidden;
}

/* Tab Navigation with badges */
.maintenance-tab-nav {
    display: flex;
    grid-template-columns: repeat(3, 1fr);
    gap: 5px;
    padding: 8px;
    background: #f8f9fa;
    border-bottom: 2px solid #dee2e6;
}

@media (min-width: 768px) {
    .maintenance-tab-nav {
        grid-template-columns: repeat(6, 1fr);
    }
}
.maintenance-tab-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 12px 1px 1px 1px;
    background: white;
    border: 1px solid #dee2e6;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    min-height: 70px;
    width: 105px;
}

.maintenance-tab-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-color: #007bff;
}



.offer-tab-label {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #333;
}

.maintenance-tab-btn.active .offer-tab-label {
    color: #000;
    font-weight: 700;
}

.offer-badge {
    font-size: 10px;
    padding: 2px 5px;
    border-radius: 12px;
    font-weight: 600;
    min-width: 50px;
    text-align: center;
    color: #fff;
}

/* Tab Content Improvements */
.maintenance-tab-content-wrapper {
    padding: 20px;
    background: #fff;
    min-height: 220px;
}

.offer-detail-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
    flex-wrap: wrap;
    gap: 10px;
}

.maint-offer-title {
    font-size: 16px;
    font-weight: 700;
    color: #333;
    margin: 0;
}

.offer-validity {
    font-size: 12px;
    color: #666;
    background: #f8f9fa;
    padding: 4px 10px;
    border-radius: 12px;
}

.maintenance-offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 8px;
    margin: 15px 0;
}

.maintenance-offer-item {
    padding: 6px;
    background: #f8f9fa;
    border-radius: 6px;
    font-size: 14px;
    display: flex;
    align-items: center;
    transition: all 0.2s ease;
    border: 1px solid #e9ecef;
}

.maintenance-offer-item:hover {
    background: #e9ecef;
    transform: translateX(3px);
}

.maintenance-offer-item i {
    color: #28a745;
    margin-right: 10px;
    font-size: 14px;
}

.offer-value {
    background: #f8f9fa;
    padding: 10px 15px;
    border-radius: 6px;
    font-size: 14px;
    margin-top: 15px;
    border-left: 4px solid #007bff;
}



/* Improved FOC Box */
.foc-items {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 10px;
    margin-top: 10px;
}

.foc-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 12px;
    background: rgba(40, 167, 69, 0.1);
    border-radius: 6px;
    border-left: 3px solid #28a745;
}

.foc-service {
    font-size: 14px;
}

.foc-price {
    font-weight: 600;
    font-size: 14px;
}

/* Improved Terms */
.terms ul {
    padding-left: 0;
}

.terms li {
    display: flex;
    align-items: center;
    padding: 8px 10px;
    background: rgba(255, 225, 79, 0.05);
    border-radius: 6px;
}

.terms li i {
    color: #ffc107;
    min-width: 20px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .maintenance-tab-nav {
        overflow-x: auto;
        display: flex;
        flex-wrap: nowrap;
        padding-bottom: 10px;
    }
    
    .maintenance-tab-btn {
        min-width: 90px;
        flex-shrink: 0;
    }
    
    .maintenance-offers-grid {
        grid-template-columns: 1fr;
    }
    
    .foc-items {
        grid-template-columns: 1fr;
    }
    
    .offer-detail-header {
        flex-direction: column;
    }
}
.modal-content {
  border-radius: 12px;
}

.modal-title {
  font-weight: 700;
}
/* Modal backdrop (soft) */
.modal-backdrop.show {
  backdrop-filter: blur(5px);
  background-color: rgba(0, 0, 0, 0.4);
}

/* Modal box */
#bookPackageModal .modal-content {
 background-color: #f4f5f7;  border-radius: 16px;
  border: 1px solid rgba(255, 215, 0, 0.4);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

/* Header */
#bookPackageModal .modal-header {
  background: linear-gradient(135deg, var(--primary-yellow) 0%, #ffd700 100%);
  border-radius: 16px 16px 0 0;
  border-bottom: none;
}

#bookPackageModal .modal-title {
  color: #000;
  font-weight: 800;
  letter-spacing: 0.4px;
}

/* Close button */
#bookPackageModal .btn-close {
  filter: brightness(0);
  opacity: 0.8;
}

/* Labels */
#bookPackageModal .form-label {
  color: #333;
  font-weight: 600;
  font-size: 14px;
}

/* Inputs */
#bookPackageModal .form-control {
  background: #ffffff;
  border: 1px solid #e5e5e5;
  color: #333;
  padding: 12px;
  border-radius: 10px;
}

#bookPackageModal .form-control::placeholder {
  color: #aaa;
}

/* Focus */
#bookPackageModal .form-control:focus {
  border-color: #ffd700;
  box-shadow: 0 0 0 0.2rem rgba(255, 215, 0, 0.25);
}

/* Footer */
#bookPackageModal .modal-footer {
  border-top: none;
}

/* Submit button */
#bookPackageModal .btn-primary {
  background: linear-gradient(135deg, var(--primary-yellow) 0%, #ffd700 100%);
  border: none;
  color: #000;
  font-weight: 700;
  padding: 12px 28px;
  border-radius: 30px;
  transition: 0.3s ease;
}

#bookPackageModal .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(255, 215, 0, 0.45);
}

/* Cancel button */
#bookPackageModal .btn-secondary {
  background: transparent;
  border: 1px solid #ccc;
  color: #555;
  border-radius: 30px;
  padding: 10px 24px;
}

#bookPackageModal .btn-secondary:hover {
  background: #f5f5f5;
}
@media (max-width: 576px) {
  .nav-tabs {
    flex-wrap: nowrap;   /* aik line mein rakhe */
  }

  .nav-tabs .nav-item {
    width: auto !important; /* 100% hata do */
    flex: 1; /* optional: equal width chaho to */
  }

.nav-tabs .nav-link {
    white-space: nowrap;
    font-size: 14px;
    padding: 10px 33px;
}
}

/* responsive */
        @media screen and (max-width:1400px) {

        }
        @media screen and (min-width:1200px) and   (max-width:1399.98px) {
                .hero-section-offers {
    min-height: auto;
    height: 800px !important;
}
        }
        @media screen and (min-width:992px) and   (max-width:1199.98px) {
                .hero-section-offers {
    min-height: auto;
    height: 800px !important;
}
.hero-title {
    font-size: 47px;
}

        }
        @media screen  and (min-width:768px) and (max-width:991.98px) {
                .hero-section-offers {
    min-height: auto;
    height: 600px !important;
}
.hero-content-offers {
    margin-top: 255px;
}
  .nav-tabs {
    flex-wrap: nowrap;   /* aik line mein rakhe */
  }

  .nav-tabs .nav-item {
    width: auto !important; /* 100% hata do */
    flex: unset; /* optional: equal width chaho to */
  }
   .p_card{padding-left: 0px !important;padding-right: 0px !important;}

        }
        @media screen and (min-width:576px) and (max-width:767.98px) {
    .hero-section-offers {
    min-height: auto;
    height: 500px !important;
}
.hero-content-offers {
    margin-top: 255px;
}
.hero-title {
    font-size: 32px;
}
.hero-subtitle {
    font-size: 16px;
}
.btn-hero {
    padding: 12px 20px;
    border-radius: 50px;
    font-size: 16px;
}
.section-title {
    font-size: 26px;
}
 .p_card{padding-left: 0px !important;padding-right: 0px !important;}
  
        }
        @media screen  and (min-width:381px) and (max-width:575.98px){
    .hero-section-offers {
    min-height: auto;
    height: 500px !important;
}
.hero-content-offers {
    margin-top: 255px;
}
.hero-title {
    font-size: 26px;
}
.hero-subtitle {
    font-size: 14px;
}
.btn-hero {
    padding: 12px 20px;
    border-radius: 50px;
    font-size: 14px;
}
.section-title {
    font-size: 22px;
}
.nav-tabs .nav-link {
    padding: 8px 12px;
    font-size: 12px;margin: 0px 3px;
}
.nav-tabs .nav-link i{    font-size: 8px;}
.p_card{padding-left: 0px !important;padding-right: 0px !important;}
.card-title {
    font-size: 18px;
}
.original-price {
    font-size: 20px;
}
.card-body {
    padding: 0px 14px 20px 14px;
}
.validity {
    padding: 9px;
    margin: 15px 0;
    font-size: 14px;
}
.terms {
    padding: 10px;
}
.btn-book {
    font-size: 15px;
}
.tabs-container {
    margin-bottom: 0px;
}
.section-label {
    font-size: 11px;
}
.maintenance-tab-btn {
    width: 93px;
}
.maintenance-tab-nav {
    display: inline-grid;
}
        }
        @media screen and (min-width:320px) and (max-width:380.98px) {
 .hero-section-offers {
    min-height: auto;
    height: 500px !important;
}
.hero-content-offers {
    margin-top: 255px;
}
.hero-title {
    font-size: 26px;
}
.hero-subtitle {
    font-size: 14px;
}
.btn-hero {
    padding: 12px 20px;
    border-radius: 50px;
    font-size: 14px;
}
.section-title {
    font-size: 22px;
}
.nav-tabs .nav-link {
    padding: 8px 12px;
    font-size: 12px;margin: 0px 3px;
}
.nav-tabs .nav-link i{    font-size: 8px;}
.p_card{padding-left: 0px !important;padding-right: 0px !important;}
.card-title {
    font-size: 18px;
}
.original-price {
    font-size: 20px;
}
.card-body {
    padding: 0px 14px 20px 14px;
}
.validity {
    padding: 9px;
    margin: 15px 0;
    font-size: 14px;
}
.terms {
    padding: 10px;
}
.btn-book {
    font-size: 15px;
}
.tabs-container {
    margin-bottom: 0px;
}
.section-label {
    font-size: 11px;
}
.maintenance-tab-btn {
    width: 93px;
}
.maintenance-tab-nav {
    display: inline-grid;
}
        }