
        :root {
             --primary1-color: #054f60;
            --primary-color: #136072;
            --secondary-color: #eea286;
            --light-bg: #f2f4f6;
            --dark-text: #000000;
            --light-text: #737373;
            --white: #ffffff;
            --border-color: #e4e6e8;
        }
        
        body {
            font-family: 'Manrope', sans-serif;
            color: var(--dark-text);
            overflow-x: hidden;
        }
        
        .navbar-brand {
            font-weight: 800;
            font-size: 1.5rem;
            color: var(--white);
            margin-right: 70px;
        }
         .navbar-brand:hover {
            color: var(--secondary-color) !important;
        }
        
        .navbar-nav .nav-link {
            font-weight: 700;
            font-size: 0.9rem;
            color: var(--white);
        }
        .navbar-nav .nav-link:hover {
            color: var(--secondary-color) !important;
        }
        
        .top-bar {
            background-color: var(--primary1-color);
            color: var(--white);
            font-size: 0.85rem;
            padding: 8px 0;
        }
        .top-bar a {
            color: var(--white);
            text-decoration: none;
        }
        .top-bar a:hover {
            color: var(--secondary-color) !important;
        }
       .navbar {
         background-color: var(--primary-color) !important;
       }

       .navbar-nav .nav-link.active, .navbar-nav .nav-link.show {
    color: var(--secondary-color);
}
        
        .hero-section {
            background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), 
                        url('https://codia-f2c.s3.us-west-1.amazonaws.com/image/2025-11-19/kgE0YVAgLB.png');
            background-size: cover;
            background-position: center;
            color: var(--white);
            padding: 120px 0 80px;
            position: relative;
        }
        
        .hero-content {
            max-width: 600px;
        }

        .carousel-indicators {

    bottom: 265px;
        }

        .search-section{
                position: relative;
    top: -64px;
        }
        
      .search-container {
            background-color: white;
            border-radius: 16px;
            padding: 30px;
            box-shadow: 0 10px 20px 0 rgba(0, 0, 0, 0.05);
            margin-bottom: 30px;
        }
        
        .search-tabs {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin-bottom: 25px;
            padding-bottom: 15px;
            border-bottom: 1px solid var(--border-color);
        }
        
        .search-tab {
            background-color: white;
            border: 1px solid var(--border-color);
            border-radius: 50px;
            padding: 8px 20px;
            font-size: 14px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s;
        }
        
        .search-tab.active {
            background-color: var(--primary-color);
            color: white;
            border-color: var(--primary-color);
        }
        
        .search-tab:hover:not(.active) {
            background-color: var(--light-bg);
        }
        
        .help-link {
            display: flex;
            align-items: center;
            gap: 8px;
            color: #737373;
            font-size: 14px;
            font-weight: 500;
            margin-left: auto;
        }
        
        .search-form {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            position: relative;
        }
        
        .form-group {
            position: relative;
            margin-bottom: 0;
        }
        
        .form-label {
            font-size: 14px;
            font-weight: 700;
            color: #737373;
            margin-bottom: 8px;
            display: block;
        }
        
        .form-control {
            border: 1px solid var(--border-color);
            border-radius: 8px;
            padding: 12px 15px;
            font-size: 14px;
            font-weight: 700;
            height: 48px;
            padding-left: 40px;
        }
        
        .form-control:focus {
            box-shadow: none;
            border-color: var(--primary-color);
        }
        
        .form-icon {
            position: absolute;
            left: 15px;
            top: 50%;
            transform: translateY(-50%);
            color: #737373;
            z-index: 5;
        }
        
        .search-btn {
            background-color: var(--primary-color);
            color: white;
            border: none;
            border-radius: 50px;
            padding: 12px 30px;
            font-size: 16px;
            font-weight: 700;
            height: 48px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            transition: all 0.3s;
            margin-top: 26px;
        }
        
        .search-btn:hover {
            background-color: #1a4a68;
            transform: translateY(-2px);
        }
        
        .vertical-divider {
            position: absolute;
            width: 1px;
            height: 58px;
            background-color: var(--border-color);
            top: 50%;
            transform: translateY(-50%);
        }
        
        /* Responsive adjustments */
        @media (max-width: 992px) {
            .search-form {
                grid-template-columns: 1fr 1fr;
            }
            
            .search-btn {
                grid-column: span 2;
            }
        }
        
        @media (max-width: 768px) {
            .search-form {
                grid-template-columns: 1fr;
            }
            
            .search-btn {
                grid-column: span 1;
            }
            
            .search-tabs {
                justify-content: center;
            }
            
            .help-link {
                margin-left: 0;
                margin-top: 10px;
                justify-content: center;
                width: 100%;
            }
        }
        
        @media (max-width: 576px) {
            .search-container {
                padding: 20px;
            }
            
            .search-tab {
                padding: 6px 15px;
                font-size: 13px;
            }
        }
        
        .btn-primary {
            background-color: var(--primary-color);
            border-color: var(--primary-color);
            border-radius: 50px;
            padding: 10px 30px;
            font-weight: 700;
        }
        
        .section-title {
            color: var(--primary-color);
            font-weight: 800;
            margin-bottom: 20px;
        }
        
        .section-subtitle {
            color: var(--light-text);
            margin-bottom: 15px;
        }
        
        .card {
            border-radius: 16px;
            border: 1px solid var(--border-color);
            overflow: hidden;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        
        .card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px 0 rgba(0, 0, 0, 0.1);
        }
        
        .card-img-top {
            height: 200px;
            object-fit: cover;
        }
        
        .card-badge {
            position: absolute;
            top: 15px;
            left: 15px;
            background-color: var(--white);
            padding: 5px 15px;
            border-radius: 50px;
            font-size: 0.8rem;
            font-weight: 700;
        }
        
        .rating {
            color: #f09814;
        }
        
        .price {
            font-weight: 800;
            font-size: 1.5rem;
        }
        
        .category-card {
            height: 100%;
            border-radius: 16px;
            overflow: hidden;
            position: relative;
        }
        
        .category-img {
            height: 150px;
            object-fit: cover;
        }
        
        .category-content {
            padding: 20px;
        }
        
        .footer {
            background-color: #000000;
            color: var(--white);
            padding: 60px 0 20px;
        }
        
        .footer h5 {
            margin-bottom: 20px;
            font-weight: 500;
        }
        
        .footer a {
            color: #8e8e8e;
            text-decoration: none;
            margin-bottom: 10px;
            display: block;
        }
        
        .footer a:hover {
            color: var(--white);
            text-decoration: underline;
        }
        
        .subscribe-form {
            position: relative;
        }
        
        .subscribe-form .form-control {
            background-color: #000000;
            border: 1px solid var(--light-text);
            border-radius: 100px;
            color: var(--white);
            padding-left: 50px;
        }
        
        .subscribe-form .btn {
            position: absolute;
            right: 5px;
            top: 5px;
            bottom: 5px;
            background-color: var(--secondary-color);
            color: #000000;
            border-radius: 50px;
            font-weight: 700;
        }
        
        .hero-slider .carousel-item {
            height: 600px;
        }
        
        .hero-slider .carousel-item img {
            object-fit: cover;
            height: 100%;
        }
        
        .carousel-caption {
            bottom: 30%;
            text-align: left;
        }
        
        /* Transportation Services Section */
        .transportation-section {
            background-color: #e4f9f9;
            padding: 80px 0;
        }
        
        .transportation-section .section-title {
            color: var(--primary-color);
        }
        
        .brand-logos {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 20px;
            margin: 40px 0;
        }
        
        .brand-logo {
            background-color: var(--white);
            border-radius: 16px;
            padding: 15px 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            height: 60px;
            width: max-content;
        }
        
        .brand-logo img {
            max-height: 40px;
            max-width: 100%;
        }
        
        .car-card {
            border-radius: 32px;
            overflow: hidden;
            background-color: var(--white);
            border: 1px solid var(--border-color);
        }
        
        .car-img {
            height: 326px;
            object-fit: cover;
        }
        
        .car-details {
            padding: 30px;
        }
        
        .car-feature {
            display: flex;
            align-items: center;
            margin-bottom: 10px;
        }
        
        .car-feature i {
            width: 24px;
            margin-right: 10px;
            color: var(--primary-color);
        }
        
        /* Top Hotels Section */
        .hotels-section {
            padding: 60px 0;
                background: url(../image/hotel-bg.png) no-repeat center;
    background-size: cover;
    z-index: 311;
        }
        
        .hotel-card {
            border-radius: 16px;
            overflow: hidden;
            background-color: var(--white);
            border: 1px solid var(--border-color);
        }
        
        .hotel-img {
            height: 250px;
            object-fit: cover;
        }
        
        .hotel-details {
            padding: 20px;
        }
        
        .hotel-features {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin: 15px 0;
        }
        
        .hotel-feature {
            background-color: var(--light-bg);
            padding: 5px 10px;
            border-radius: 20px;
            font-size: 0.85rem;
        }
        
        .hotel-price {
            font-weight: 800;
            font-size: 1.25rem;
            color: var(--primary-color);
        }
        
        @media (max-width: 768px) {
            .hero-section {
                padding: 80px 0 40px;
            }
            
            .hero-slider .carousel-item {
                height: 400px;
            }
            
            .search-form {
                padding: 20px;
            }
            
            .brand-logo {
                width: 120px;
                height: 60px;
            }
            .slide-img{  
                display: none !important;
           }
        }
.slide-img{
    display: flex;
    gap: 10px;
    margin-top: 20px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: relative;
    top:100px;
}

.slide-img img{
   width: 200px;
height: 120.11px;
border: 3px solid #FFFFFF;
border-radius: 16px;
transform: matrix(-1, 0, 0, 1, 0, 0);


}


.body-card-tours{
        margin: 0 auto;
  
    top: -20px;
    position: relative;
    background:var(--white);
    border-radius: 20px;
       /* box-shadow: 0 10px 20px 0 rgba(0, 0, 0, 0.05); */
       padding-top: 26px;
}
.CategoriesImg{
        width: 90%;
    margin: 20px auto;
    border-radius: 20px;
    border: 1px solid #cbcbcb;
    box-shadow: 1px 8px #cbcbcb5c;
}
.CategoriesImg img{
    border-radius: 20px;
}


.category-card {
            border-radius: 16px;
            border: 1px solid #e4e6e8;
            overflow: hidden;
            transition: transform 0.3s, box-shadow 0.3s;
            height: 100%;
            position: relative;
        }
        
        .category-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px 0 rgba(0, 0, 0, 0.1);
        }
        
        .CategoriesImg {
            position: relative;
            overflow: hidden;
        }
        
        .category-img {
            height: 150px;
            object-fit: cover;
            transition: transform 0.3s ease;
        }
        
        .category-card:hover .category-img {
            transform: scale(1.05);
        }
        
        .card-badge {
            position: absolute;
            top: 15px;
            left: 15px;
            background-color: #ffffff;
            padding: 5px 15px;
            border-radius: 50px;
            font-size: 0.8rem;
            font-weight: 700;
            /* z-index: 2; */
        }
        
        .category-content {
            padding: 20px;
        }
        
        /* Hover Overlay Styles */
        .hover-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(34, 92, 129, 0.85); /* 50% transparent primary color */
            color: white;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 20px;
            opacity: 0;
            transition: opacity 0.3s ease;
            z-index: 1;
            text-align: center;
        }
        
        .category-card:hover .hover-overlay {
            opacity: 1;
        }
        
        .overlay-title {
            font-size: 1.25rem;
            font-weight: 700;
            margin-bottom: 10px;
        }
        
        .overlay-description {
            font-size: 0.9rem;
            line-height: 1.5;
            margin-bottom: 15px;
        }
        
        .overlay-features {
            display: flex;
            gap: 15px;
            margin-bottom: 20px;
        }
        
        .overlay-feature {
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        
        .overlay-feature i {
            font-size: 1.2rem;
            margin-bottom: 5px;
        }
        
        .overlay-feature span {
            font-size: 0.8rem;
        }
        
        .overlay-btn {
            background-color: white;
            color: #225c81;
            border: none;
            border-radius: 50px;
            padding: 8px 20px;
            font-weight: 700;
            transition: all 0.3s;
        }
        
        .overlay-btn:hover {
            background-color: #f2f4f6;
            transform: translateY(-2px);
        }


        .promotion-section {
            padding: 80px 0 40px;
        }
        
        .banner-card {
            border-radius: 16px;
            overflow: hidden;
            position: relative;
            height: 300px;
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            padding: 30px;
            color: white;
            transition: transform 0.3s ease;
        }
        
        .banner-card:hover {
            transform: translateY(-5px);
        }
        
        .banner-1 {
                        background:url(../image/offer2.png);
    border: 1px solid #cbcbcb;
    background-position: center;
   
    background-size: cover;
        }
        
        .banner-2 {
                background:url(../image/offer1.png);
    border: 1px solid #cbcbcb;
    background-position: center;
   
    background-size: cover;
        }
        
        .banner-content {
            width: 100%;
        }
        
        .promotion-text {
            font-size: 28px;
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 20px;
            color:#000;
        }
        
        .view-more-btn {
            background-color: #f78f69;
            color: #000000;
            border: none;
            border-radius: 50px;
            padding: 12px 30px;
            font-weight: 700;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: all 0.3s ease;
        }
        
        .view-more-btn:hover {
            background-color: #225c81;
            transform: translateY(-2px);
            color: #fff;
        }
        

        
        /* Responsive adjustments */
        @media (max-width: 992px) {
            .banner-card {
                height: 250px;
                padding: 25px;
            }
            
            .promotion-text {
                font-size: 24px;
            }
        }
        
        @media (max-width: 768px) {
            .promotion-section {
                padding: 60px 0 20px;
            }
            
            .banner-card {
                height: 200px;
                padding: 20px;
                margin-bottom: 20px;
            }
            
            .promotion-text {
                font-size: 20px;
                margin-bottom: 15px;
            }
            
            .view-more-btn {
                padding: 10px 25px;
                font-size: 14px;
            }
        }
        
        @media (max-width: 576px) {
            .banner-card {
                height: 180px;
                padding: 15px;
            }
            
            .promotion-text {
                font-size: 18px;
            }
            
            .view-more-btn {
                padding: 8px 20px;
                font-size: 13px;
            }
            
            .heading-element {
                margin-top: 30px;
            }
        }

         .hotel-slider-container {
            position: relative;
            overflow: hidden;
            padding: 20px 0;
        }
        
        .hotel-slider-track {
            display: flex;
            transition: transform 0.5s ease-in-out;
            gap: 20px;
        }
        
        .hotel-card {
            flex: 0 0 calc(33.333% - 14px);
            border-radius: 16px;
            overflow: hidden;
            background-color: white;
            border: 1px solid #e4e6e8;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
            transition: transform 0.3s, box-shadow 0.3s;
        }
        
        .hotel-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.15);
        }
        
        .hotel-img {
            height: 200px;
            object-fit: cover;
            width: 100%;
        }

         .hotel-details {
            padding: 20px;
        }
        
        .rating {
            color: #f09814;
        }
        
        .hotel-features {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin: 15px 0;
        }
        
        .hotel-feature {
            background-color: #f2f4f6;
            padding: 4px 10px;
            border-radius: 20px;
            font-size: 0.85rem;
        }
        
        .hotel-price {
            font-weight: 800;
            font-size: 1.25rem;
            color: #225c81;
        }
        
        .slider-nav {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-top: 30px;
        }
        
        .slider-btn {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            border: 2px solid #225c81;
            background: white;
            color: #225c81;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s;
        }
        
        .slider-btn:hover {
            background: #225c81;
            color: white;
        }
        
        .slider-btn.disabled {
            opacity: 0.5;
            cursor: not-allowed;
        }
        
        /* Responsive adjustments */
        @media (max-width: 992px) {
            .hotel-card {
                flex: 0 0 calc(50% - 10px);
            }
        }
        
        @media (max-width: 768px) {
            .hotel-card {
                flex: 0 0 calc(100% - 10px);
            }
            
            .slider-btn {
                width: 45px;
                height: 45px;
            }
        }

        .btn:hover {
    color: var(--bs-btn-hover-color);
    background-color: #eea286;
    border-color: #e17148;
}


 .section-13e {
            width: 100%;
            position: relative;
        }

        .background-13f {
                background: linear-gradient(135deg, #054f60 0%, #136072 100%);
             border-radius: 20px;
            padding: 60px 40px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
            position: relative;
            overflow: hidden;
        }

        .background-13f::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 45%;
            height: 100%;
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,0 L100,0 L100,100 Z" fill="rgba(255,255,255,0.05)"/></svg>');
            background-size: cover;
        }

        .flex-column-bcc {
            flex: 1;
            max-width: 500px;
            z-index: 2;
        }

        .background-140 {
            background-color: #ee8a65;
            display: inline-block;
            padding: 10px 25px;
            border-radius: 30px;
            margin-bottom: 30px;
            box-shadow: 0 5px 15px rgba(247, 183, 49, 0.3);
        }

        .easy-payment {
            color: #1a2a57;
            font-weight: 700;
            font-size: 16px;
            letter-spacing: 1px;
        }

        .luxury-travel-redefined {
            display: block;
            color: white;
            font-size: 42px;
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 25px;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
        }

        .discover-carbon-offset {
            display: block;
            color: rgba(255, 255, 255, 0.85);
            font-size: 18px;
            line-height: 1.6;
            margin-bottom: 30px;
        }

        .cta-button {
            display: inline-block;
            background: #ee8a65;
            color: #1a2a57;
            padding: 14px 32px;
            border-radius: 30px;
            font-weight: 700;
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
            background: #ffcc4d;
        }

        .flex-column-e {
            flex: 1;
            display: flex;
            justify-content: flex-end;
            align-items: center;
            z-index: 2;
        }

        .payment-container {
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .container-141 {
            width: 320px;
            height: 200px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 15px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 20px;
            margin-bottom: 20px;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }

        .payment-title {
            color: white;
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 15px;
        }

        .payment-icons {
            display: flex;
            gap: 15px;
            margin-bottom: 20px;
        }

        .payment-icon {
            width: 50px;
            height: 35px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 5px;
            display: flex;
            justify-content: center;
            align-items: center;
            color: white;
            font-size: 20px;
        }

        .payment-features {
            display: flex;
            gap: 20px;
        }

        .feature {
            display: flex;
            flex-direction: column;
            align-items: center;
            color: white;
        }

        .feature i {
            font-size: 24px;
            margin-bottom: 8px;
            color: #ee8a65;
        }

        .feature span {
            font-size: 14px;
        }

        .payment {
            width: 80px;
            height: 80px;
            background: #ee8a65;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            color: #1a2a57;
            font-size: 32px;
            box-shadow: 0 5px 15px rgba(247, 183, 49, 0.4);
        }

        .container-142 {
            width: 100%;
            height: 20px;
            background: linear-gradient(90deg, #f7b731, #e74c3c);
            border-radius: 0 0 20px 20px;
            margin-top: -10px;
        }

        /* Responsive design */
        @media (max-width: 992px) {
            .background-13f {
                flex-direction: column;
                text-align: center;
                padding: 40px 20px;
            }
            
            .flex-column-bcc {
                margin-bottom: 40px;
            }
            
            .flex-column-e {
                justify-content: center;
            }
            
            .luxury-travel-redefined {
                font-size: 36px;
            }
        }

        @media (max-width: 576px) {
            .luxury-travel-redefined {
                font-size: 28px;
            }
            /* .paymentList{
                flex-direction: column;
            } */
            .container-141 {
                width: 280px;
                height: 180px;
            }
            
            .payment-features {
                gap: 15px;
            }
        }

        .heading-why-travel {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
   
    color: #225c81;
    font-family: Manrope, var(--default-font-family);
    font-size: 52px;
    font-weight: 800;
    line-height: 76px;
    text-align: center;
    white-space: nowrap;
    z-index: 324;
}
.best-booking-platform {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
 
    color: #737373;
    font-family: Manrope, var(--default-font-family);
    font-size: 20px;
    font-weight: 500;
    line-height: 32px;
    text-align: center;
    white-space: nowrap;
    z-index: 325;
}
.background-145 {
    flex-shrink: 0;
    position: relative;
    /* width: 288px; */
    height: 289px;
    background: #e4f9f9;
    z-index: 326;
    border-radius: 16px;
}
.background-shadow {
    position: relative;
    width: 64px;
    height: 64px;
    margin: 35px auto;
    background: #ffffff;
    z-index: 327;
    overflow: visible auto;
    border-radius: 16px;
    box-shadow: 0 6px 22px 0 rgba(0, 0, 0, 0.09);
}
.background-shadow {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: rgba(52, 152, 219, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}
.security-svg-fill {
    background-color: #3498db;
}
.security-svg-fill, .support-svg-fill, .policy-svg-fill, .repu-svg-fill {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
}
 .best-booking-platform {
            display: block;
            font-size: 32px;
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 50px;
        }
        
        .feature-card {
            /* background-color: white;
            border-radius: 10px; */
            padding: 30px 25px;
            
            height: 100%;
            transition: all 0.3s ease;
            border: 1px solid #e9ecef;
            position: relative;
            overflow: hidden;
            text-align: center;
        }
        
        .feature-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        }
        
        .background-shadow {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            background-color: rgba(52, 152, 219, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
        }
        
        .security-svg-fill, .support-svg-fill, .policy-svg-fill, .repu-svg-fill {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 18px;
        }
        
        .security-svg-fill {
            background-color: #3498db;
        }
        
        .support-svg-fill {
            background-color: #2ecc71;
        }
        
        .policy-svg-fill {
            background-color: #e67e22;
        }
        
        .repu-svg-fill {
            background-color: #9b59b6;
        }
        
        .link-security-assurance, .link-security-assurance-14b, 
        .link-security-assurance-152, .link-security-assurance-159 {
            display: block;
            font-size: 20px;
            font-weight: 600;
            color: var(--primary-color);
            margin-bottom: 15px;
            text-align: center;
        }
        
        .commitment-user-data, .commitment-user-data-14c, 
        .commitment-user-data-153, .commitment-user-data-15a {
            display: block;
            font-size: 15px;
            color: #7f8c8d;
            line-height: 1.6;
            margin-bottom: 20px;
        }
        
        .learn-more, .learn-more-14d, .learn-more-154, .learn-more-15b {
            display: inline-flex;
            align-items: center;
            font-size: 15px;
            font-weight: 600;
            color: var(--secondary-color);
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .learn-more:hover, .learn-more-14d:hover, .learn-more-154:hover, .learn-more-15b:hover {
            color: var(--primary-color);
            transform: translateX(5px);
        }
        
        .svg-147, .svg-14e, .svg-155, .svg-15c {
            display: inline-block;
            width: 20px;
            height: 20px;
            margin-left: 8px;
            background-color: var(--secondary-color);
            -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M8.59 16.59L13.17 12 8.59 7.41 10 6l6 6-6 6-1.41-1.41z'/%3E%3C/svg%3E") no-repeat center;
            mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M8.59 16.59L13.17 12 8.59 7.41 10 6l6 6-6 6-1.41-1.41z'/%3E%3C/svg%3E") no-repeat center;
        }
        
        .container-15d {
            margin-top: 60px;
            padding: 30px 0;
            border-top: 1px solid #e9ecef;
        }
        
        .payment-partner {
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            filter: grayscale(100%);
            opacity: 0.7;
            transition: all 0.3s ease;
        }
        
        .payment-partner:hover {
            filter: grayscale(0%);
            opacity: 1;
        }

        .background-148 {
    flex-shrink: 0;
    position: relative;
 
    background: #fcf2fa;
    z-index: 336;
    border-radius: 16px;
}

.background-14f {
    flex-shrink: 0;
    position: relative;

    background: #e3f0ff;
    z-index: 346;
    border-radius: 16px;
}
.background-156 {
    flex-shrink: 0;
    position: relative;

    background: #f6f3fc;
    z-index: 356;
    border-radius: 16px;
}
.paymentList{
     position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 41px;
    margin: 65px 0px;
    z-index: 366;
    overflow: hidden;
    gap: 20px;
    overflow: auto;
}

 .car-rental-section {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        
        /* .section-title {
            text-align: center;
            margin-bottom: 40px;
        }
        
        .section-title h2 {
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 15px;
        }
        
        .section-title p {
            color: #7f8c8d;
            font-size: 18px;
        } */
        .viewport {
  overflow: hidden;
  width: 100%;
}

/* slides container is a single-row flexbox */
.slides {
  display: flex;
  gap: 1rem; /* spacing between slides */
  transition: transform 400ms ease;
  will-change: transform;
  padding-bottom: 1rem;
  /* remove row negative margins if using Bootstrap columns*/
  margin-left: 0;
  margin-right: 0;
}

/* each slide will size itself via CSS percent (set below) */
.slideC {
  box-sizing: border-box;
  flex: 0 0 auto; /* prevent shrinking/growing */
  padding: 0; /* keep inner card spacing inside slide */
  max-width: 100%;
}
 .car-card {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
            height: 100%;
            margin-bottom: 20px;
        }
        
        .car-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.15);
        }
        
        .car-image-container {
            position: relative;
            height: 200px;
            overflow: hidden;
        }
        
        .car-image {
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            transition: transform 0.5s ease;
        }
        
        .car-card:hover .car-image {
            transform: scale(1.05);
        }
        
        .car-image-1 {
            background: linear-gradient(135deg, #3498db, #2c3e50);
        }
        
        .car-image-2 {
            background: linear-gradient(135deg, #e74c3c, #c0392b);
        }
        
        .car-image-3 {
            background: linear-gradient(135deg, #2ecc71, #27ae60);
        }
        
        .car-image-4 {
            background: linear-gradient(135deg, #9b59b6, #8e44ad);
        }
        
        .favorite-icon {
            position: absolute;
            top: 15px;
            right: 15px;
            width: 36px;
            height: 36px;
            background: rgba(255, 255, 255, 0.9);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #7f8c8d;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .favorite-icon:hover {
            background: white;
            color: var(--accent-color);
        }
        
        .car-details {
            padding: 20px;
        }
        
        .car-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 15px;
        }
        
        .car-title {
            font-size: 18px;
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 5px;
        }
        
        .rating {
            display: flex;
            align-items: center;
            background: rgba(52, 152, 219, 0.1);
            padding: 5px 10px;
            border-radius: 20px;
            font-size: 14px;
        }
        
        .rating-value {
            font-weight: 700;
            color: var(--primary-color);
            margin-right: 5px;
        }
        
        .rating-count {
            color: #7f8c8d;
        }
        
        .stars {
            color: #f1c40f;
            margin-right: 8px;
        }
        
        .location {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
            color: #7f8c8d;
            font-size: 14px;
        }
        
        .location i {
            margin-right: 8px;
            color: var(--secondary-color);
        }
        
        .car-specs {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 10px;
            margin-bottom: 20px;
            padding-bottom: 20px;
            border-bottom: 1px solid #e9ecef;
        }
        
        .spec {
            display: flex;
            align-items: center;
            font-size: 14px;
        }
        
        .spec i {
            margin-right: 8px;
            color: var(--secondary-color);
            width: 20px;
            text-align: center;
        }
        
        .car-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .price {
            font-size: 24px;
            font-weight: 700;
            color: var(--primary-color);
        }
        
        .price-unit {
            font-size: 14px;
            color: #7f8c8d;
        }
        
        .book-btn {
            background: var(--secondary-color);
            color: white;
            border: none;
            padding: 10px 20px;
            border-radius: 30px;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        
        .book-btn:hover {
            background: #2980b9;
            transform: translateY(-2px);
        }
        
        /* Slider Styles */
        .car-slider {
            position: relative;
        }
    /* Controls */
/* Controls container */
.slider-controls {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  width: 100%;
  pointer-events: none; /* parent non-clickable, buttons override with pointer-events:auto */
  z-index: 40; /* put controls above slides */
}

/* Buttons */
.slider-controls .slider-btn2 {
  pointer-events: auto;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.95);
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 41;
}

/* explicit left/right anchors */
.slider-controls .slider-btn2#prevBtn2 { left: 10px; }
.slider-controls .slider-btn2#nextBtn2 { right: 10px; }

/* small responsive tweak so buttons don't collide on very narrow screens */
@media (max-width: 420px) {
  .slider-controls .slider-btn2 { width: 38px; height: 38px; }
  .slider-controls .slider-btn2#prevBtn2 { left: 6px; }
  .slider-controls .slider-btn2#nextBtn2 { right: 6px; }
}
/* Dots */
.slider-dots {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 8px;
}
.slider-dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ddd;
  cursor: pointer;
}
.slider-dots .dot.active {
  background: #333;
}

/* Responsive widths:
   - Desktop: show 3 cards -> each slide width = 100% / 3
   - Tablet: you may let Bootstrap handle 2 per row (optional)
   - Mobile: show 1 card -> 100% */
@media (min-width: 992px) { /* desktop and up */
  .slideC { width: calc(100% / 3 - ( (1rem * 2) / 3 )); } 
  /* The small subtraction accounts for gaps; it's fine to just use 33.333% if you prefer */
}
@media (min-width: 576px) and (max-width: 991.98px) { /* tablet */
  .slideC { width: calc(100% / 2 - ( (1rem * 1) / 2 )); }
}
@media (max-width: 575.98px) { /* mobile */
  .slideC { width: 100%; }
}

   .testimonials-section {
            padding: 60px 0;
            background-color: var(--light-gray);
        }

         .testimonial-card {
            background: white;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            padding: 30px;
            margin-bottom: 30px;
            /* height: 100%; */
            height:400px ;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border: 1px solid var(--border-color);
        }
        
        .testimonial-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }
        
        .testimonial-text {
            font-size: 1.1rem;
            line-height: 1.6;
            color: #555;
            margin-bottom: 20px;
            font-style: italic;
        }
         .testimonial-author{
       width: fit-content;
    float: left;
    display: flex;
    align-items: center;
    gap: 15px;
   
    text-align: center;

         }
         .testimonial-author .info{
           display: flex;
            align-items: center;
            gap: 0px;
          
            text-align: center;
            flex-direction: column;
         }
        .testimonial-author h4{
            font-weight: 600;
            font-size: 1.2rem;
            color: var(--primary-color);
            margin-bottom: 5px;

        }
        
        .testimonial-location {
            color: var(--accent-color);
            font-size: 0.9rem;
        }
        
        .divider {
            height: 1px;
            background-color: var(--border-color);
            margin: 25px 0;
        }
        
       .rating2 {
            color: #ffc107;
            margin-bottom: 15px;
            text-align: right;
           display: flex;
    align-items: center;
    justify-content: flex-end;
        }
        
        .testimonial-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
        }
        
        .testimonial-title {
            font-weight: 700;
            font-size: 1.3rem;
            color: var(--primary-color);
            margin: 0;
        }
        
        .quote-icon {
            color: var(--accent-color);
            font-size: 1.5rem;
        }
        
        /* Carousel controls */
        .carousel-control-prev, .carousel-control-next {
            width: 5%;
            opacity: 0.7;
        }
        
        .carousel-control-prev:hover, .carousel-control-next:hover {
            opacity: 1;
        }
        
        /* Responsive adjustments */
        @media (max-width: 768px) {
            .testimonial-card {
                padding: 20px;
            }
            
            .section-title {
                font-size: 2rem;
            }
        }

        /* innerPage */
        .hero-sectionInner {
    background: linear-gradient(rgba(9, 99, 132, 0.5), rgba(0, 0, 0, 0.5)), url(https://images.unsplash.com/photo-1507525428034-b723cf961d3e?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; */
}
.hero-sectionInner h1 {
    font-weight: 700;
    font-size: 44px;
    margin-bottom: 18px;
}
.tag {
    display: inline-block;
    background: #ffb69a;
    color: #7a3a21;
    padding: 6px 12px;
    border-radius: 20px;
    font-weight: 600;
    margin-bottom: 12px;
}
.btn.active {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}
 .package-card {
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s, box-shadow 0.3s;
            margin-bottom: 30px;
            background: white;
        }
        
        .package-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
        }
        
        .package-img {
            height: 200px;
            object-fit: cover;
        }
        
        .package-badge {
            position: absolute;
            top: 15px;
            right: 15px;
            background: var(--primary-color);
            color: white;
            padding: 5px 10px;
            border-radius: 20px;
            font-size: 0.8rem;
        }
        
        .package-price {
            color: var(--primary-color);
            font-weight: bold;
            font-size: 1.2rem;
        }
        .package-item{
            margin-bottom: 20px;
        }
        
        .filter-btn {
            border-radius: 20px;
            margin: 5px;
            transition: all 0.3s;
        }
        
        .filter-btn.active {
            background-color: var(--primary-color);
            border-color: var(--primary-color);
        }

            .breadcrumb {
            background-color: transparent;
            padding: 15px 0;
        }
        
        .breadcrumb-item a {
            color: var(--primary-color);
            text-decoration: none;
        }

          .hero-section-D {
            position: relative;
            height: 500px;
            overflow: hidden;
            border-radius: 10px;
            margin-bottom: 30px;
        }
        
        .hero-image-D {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .hero-overlay-D {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(transparent, rgba(0,0,0,0.8));
            color: white;
            padding: 30px;
        }
        .hero-overlay-D .package-badge{
            position: static !important;
        }


         .booking-card {
            background-color: white;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            padding: 25px;
            position: sticky;
            top: 20px;
        }
        
        .price {
            font-size: 2rem;
            font-weight: bold;
            color: var(--primary-color);
        }
        
        .original-price {
            text-decoration: line-through;
            color: #6c757d;
            font-size: 1.2rem;
        }
        
        .discount {
            background-color: #28a745;
            color: white;
            padding: 3px 8px;
            border-radius: 5px;
            font-size: 0.8rem;
            margin-left: 10px;
        }
        
        .gallery-item {
            border-radius: 10px;
            overflow: hidden;
            margin-bottom: 20px;
            height: 200px;
        }
        
        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s;
        }
        
        .gallery-item:hover img {
            transform: scale(1.05);
        }
        
        .review-card {
            background-color: white;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            padding: 20px;
            margin-bottom: 20px;
        }
        
        .review-header {
            display: flex;
            justify-content: space-between;
            margin-bottom: 15px;
        }
        
        .reviewer-info {
            display: flex;
            align-items: center;
        }
        
        .reviewer-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            object-fit: cover;
            margin-right: 15px;
        }

         .package-details {
            background-color: white;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgb(0 0 0 / 18%);
            padding: 30px;
            margin-bottom: 30px;
        }
        
         .package-details .nav-tabs {
            border-bottom: 2px solid #e9ecef;
        }
        
        .package-details .nav-tabs .nav-link {
            border: none;
            color: #6c757d;
            font-weight: 500;
            padding: 15px 25px;
        }
        
        .package-details .nav-tabs .nav-link.active {
            color: var(--primary-color);
            border-bottom: 3px solid var(--primary-color);
            background-color: transparent;
        }
        
        .package-details .tab-content {
            padding: 30px 0;
        }
        
        .highlight-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 15px;
        }
        
        .highlight-icon {
            background-color: rgba(232, 62, 140, 0.1);
            color: var(--primary-color);
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            flex-shrink: 0;
        }
        
        .included-item {
            display: flex;
            align-items: center;
            margin-bottom: 10px;
        }
        
        .included-icon {
            color: var(--primary-color);
            margin-right: 10px;
        }
        
        .accommodation-card {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            margin-bottom: 30px;
        }
        
        .accommodation-image {
            height: 250px;
            object-fit: cover;
        }
        
        .amenity-badge {
            background-color: rgba(232, 62, 140, 0.1);
            color: var(--primary-color);
            padding: 5px 10px;
            border-radius: 20px;
            font-size: 0.8rem;
            margin-right: 10px;
            margin-bottom: 10px;
            display: inline-block;
        }
        .bg-primary {
    --bs-bg-opacity: 1;
    background-color: var(--primary-color) !important;
}


 .hero-section-contact {
            background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('https://images.unsplash.com/photo-1530789257038-9d9358ed7b6c?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;
            border-radius: 10px;
            margin-bottom: 50px;
        }
        
        .contact-card {
            background-color: white;
            border-radius: 10px;
                box-shadow: 0 5px 15px rgb(0 0 0 / 22%);
            padding: 30px;
            margin-bottom: 30px;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        
        .contact-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        }
        
        .contact-icon {
            font-size: 2.5rem;
            color: var(--primary-color);
            margin-bottom: 20px;
        }
        
        .form-control {
            border-radius: 8px;
            padding: 12px 15px;
            border: 1px solid #e1e1e1;
            transition: all 0.3s;
        }
        
        .form-control:focus {
            border-color: var(--primary-color);
            box-shadow: 0 0 0 0.2rem rgba(232, 62, 140, 0.25);
        }

        .contact-info-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 25px;
        }
        
        .contact-info-icon {
            background-color: rgba(232, 62, 140, 0.1);
            color: var(--primary-color);
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            flex-shrink: 0;
        }
        
        .contact-info-content h5 {
            margin-bottom: 5px;
        }
        
        .social-icons a {
            display: inline-block;
            width: 40px;
            height: 40px;
            background: rgba(232, 62, 140, 0.1);
            border-radius: 50%;
            text-align: center;
            line-height: 40px;
            margin-right: 10px;
            color: var(--primary-color);
            transition: all 0.3s;
        }
        
        .social-icons a:hover {
            background: var(--primary-color);
            color: white;
            transform: translateY(-5px);
        }
        
        .map-container {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            margin-bottom: 30px;
        }

        /* login */
         .auth-container {
            flex: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 40px 0;
        }
        
        .auth-card {
            background-color: white;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            padding: 40px;
            width: 100%;
            max-width: 450px;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        
        .auth-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.15);
        }
        
        .auth-header {
            text-align: center;
            margin-bottom: 30px;
        }
        
        .auth-icon {
            font-size: 3rem;
            color: var(--primary-color);
            margin-bottom: 15px;
        }
        
        .auth-title {
            font-weight: 700;
            color: var(--dark-color);
            margin-bottom: 10px;
        }
        
        .auth-subtitle {
            color: #6c757d;
            font-size: 1rem;
        }
        
 
        .form-control:focus {
            border-color: var(--primary-color);
            box-shadow: 0 0 0 0.2rem rgba(232, 62, 140, 0.25);
        }
        
        .form-label {
            font-weight: 600;
            color: #495057;
            margin-bottom: 8px;
        }
        
        .btn-auth {
            background-color: var(--primary-color);
            border-color: var(--primary-color);
            padding: 12px;
            border-radius: 8px;
            font-weight: 600;
            font-size: 1rem;
            transition: all 0.3s;
            width: 100%;
            color: #fff;
        }
        
        .btn-auth:hover {
            background-color: var(--secondary-color);
            border-color: var(--secondary-color);
            transform: translateY(-2px);
        }
        
        .divider {
            display: flex;
            align-items: center;
            margin: 25px 0;
        }
        
        .divider::before,
        .divider::after {
            content: '';
            flex: 1;
            border-bottom: 1px solid #e1e1e1;
        }
        
        .divider-text {
            padding: 0 15px;
            color: #6c757d;
            font-size: 0.9rem;
        }
        
        .social-auth {
            display: flex;
            gap: 15px;
            margin-bottom: 25px;
        }
        
        .social-btn {
            flex: 1;
            padding: 10px;
            border-radius: 8px;
            border: 1px solid #e1e1e1;
            background: white;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
            font-weight: 500;
        }
        
        .social-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        .social-btn.google {
            color: #DB4437;
        }
        
        .social-btn.facebook {
            color: #4267B2;
        }
        
        .social-icon {
            margin-right: 8px;
            font-size: 1.1rem;
        }
        
        .auth-footer {
            text-align: center;
            margin-top: 25px;
        }
        
        .auth-link {
            color: var(--primary-color);
            text-decoration: none;
            font-weight: 600;
            transition: color 0.3s;
        }
        
        .auth-link:hover {
            color: #d81b7a;
            text-decoration: underline;
        }
        
        .form-check-input:checked {
            background-color: var(--primary-color);
            border-color: var(--primary-color);
        }
        
        .password-toggle {
            position: absolute;
            right: 15px;
            top: 50%;
            transform: translateY(-50%);
            background: none;
            border: none;
            color: #6c757d;
            cursor: pointer;
        }
        
        .password-container {
            position: relative;
        }

          /* Tabs for login/register */
        .auth-tabs {
            display: flex;
            border-bottom: 1px solid #e1e1e1;
            margin-bottom: 25px;
        }
        
        .auth-tab {
            flex: 1;
            text-align: center;
            padding: 12px;
            background: none;
            border: none;
            font-weight: 600;
            color: #6c757d;
            transition: all 0.3s;
            position: relative;
        }
        
        .auth-tab.active {
            color: var(--primary-color);
        }
        
        .auth-tab.active::after {
            content: '';
            position: absolute;
            bottom: -1px;
            left: 0;
            width: 100%;
            height: 3px;
            background: var(--primary-color);
        }
        
        .auth-content {
            display: none;
        }
        
        .auth-content.active {
            display: block;
        }
        

 .package-features {
            list-style: none;
            padding-left: 0;
        }
        .package-feature {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
        }
        
        .package-features li {
            margin-bottom: 8px;
            display: flex;
            align-items: center;
        }
        
        .package-features li:before {
            content: "âœ“";
            color: var(--primary-color);
            font-weight: bold;
            margin-right: 10px;
        }
        .feature-icon {
    margin-right: 8px;
    font-size: 20px;
}