

            .border-image {
                  position: relative;
                  width: 500px; /* তোমার প্রয়োজন অনুযায়ী change করো */
           }

           .video-wrapper {
                     position: absolute;
                     top: 50%;
                     left: 50%;
                     width: 70%;      /* video size control */
                     height: 60%;
                     transform: translate(-50%, -50%);
            }

            .video-wrapper iframe {
                     width: 100%;
                     height: 100%;
                     border-radius: 10px;
             }


        .travel-theme {
  max-width: 1300px;
  margin: 0 auto;
  padding: 4rem 2rem;
  font-family: 'Poppins', 'Segoe UI', system-ui, sans-serif;
  background: linear-gradient(to bottom, #ffffff, #f8faff); /* Soft sky/sea gradient */
  border-radius: 24px;
}

.travel-theme h2 {
  font-size: 2.5rem;
  font-weight: 600;
  color: #0B2A4A; /* Deep navy blue */
  text-align: center;
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}

.travel-theme .section-intro {
  text-align: center;
  font-size: 1.2rem;
  color: #2C4C6B;
  margin-bottom: 3rem;
  font-weight: 300;
}

.travel-theme .indicators-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.travel-theme .indicator-item {
  background: white;
  border-radius: 20px;
  padding: 2rem 1.5rem;
  box-shadow: 0 10px 30px rgba(0, 40, 80, 0.08);
  border: 1px solid rgba(0, 110, 230, 0.1);
  transition: all 0.3s ease;
  text-align: center;
}

.travel-theme .indicator-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 35px rgba(0, 80, 160, 0.15);
  border-color: #00A6D1; /* Travel teal */
}

.travel-theme .indicator-icon {
  font-size: 3.2rem;
  margin-bottom: 1rem;
  background: #E6F0FA; /* Light blue circle behind icon */
  width: 80px;
  height: 80px;
  line-height: 80px; /* Adjust if using text instead of emoji */
  border-radius: 50%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0B2A4A;
}

.travel-theme .indicator-item h3 {
  font-size: 1.4rem;
  font-weight: 600;
  color: #0B2A4A;
  margin-bottom: 0.75rem;
}

.travel-theme .indicator-item p {
  color: #3A5668;
  line-height: 1.6;
  font-size: 0.95rem;
}

/* Certification badges row */
.travel-theme .certification-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem 2.5rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px dashed #B0D0EE;
}

.travel-theme .certification-badges span {
  font-size: 1rem;
  font-weight: 500;
  color: #0F3B5E;
  background: #E4EEF7;
  padding: 0.5rem 1.2rem;
  border-radius: 40px;
  letter-spacing: 0.3px;
}

/* How It Works Section – consistent with travel agency theme */
.how-it-works {
  max-width: 1300px;
  margin: 0 auto;
  padding: 4rem 2rem;
  background: #ffffff; /* or keep the soft gradient if desired */
  font-family: 'Poppins', 'Segoe UI', system-ui, sans-serif;
}

.how-it-works h2 {
  font-size: 2.5rem;
  font-weight: 600;
  color: #0B2A4A;
  text-align: center;
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}

.how-it-works .section-intro {
  text-align: center;
  font-size: 1.2rem;
  color: #2C4C6B;
  margin-bottom: 3rem;
  font-weight: 300;
}

/* Steps container – vertical on mobile, horizontal on larger screens */
.steps-container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .steps-container {
    flex-direction: row;
    justify-content: space-between;
    position: relative;
  }

  /* Optional connecting line between steps (desktop) */
  .steps-container::before {
    content: '';
    position: absolute;
    top: 70px; /* align with step icons */
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(90deg, #B0D0EE 0%, #00A6D1 50%, #B0D0EE 100%);
    z-index: 0;
  }

  .step-item {
    flex: 1;
    position: relative;
    z-index: 1;
    background: white; /* so line doesn't cut through text */
    margin: 0 0.5rem;
  }
}

/* Individual step card */
.step-item {
  background: white;
  border-radius: 20px;
  padding: 2rem 1.5rem;
  box-shadow: 0 10px 30px rgba(0, 40, 80, 0.08);
  border: 1px solid rgba(0, 110, 230, 0.1);
  transition: transform 0.3s ease;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.step-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 35px rgba(0, 80, 160, 0.15);
  border-color: #00A6D1;
}

/* Icon circle */
.step-icon {
  font-size: 2.8rem;
  background: #E6F0FA;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: #0B2A4A;
}

.step-number {
  display: inline-block;
  background: #0B2A4A;
  color: white;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.3rem 1rem;
  border-radius: 30px;
  letter-spacing: 0.5px;
  margin-bottom: 0.75rem;
}

.step-content h3 {
  font-size: 1.4rem;
  font-weight: 600;
  color: #0B2A4A;
  margin-bottom: 0.75rem;
}

.step-content p {
  color: #3A5668;
  line-height: 1.6;
  font-size: 0.95rem;
}

/* Call-to-action area */
.how-it-works-cta {
  text-align: center;
  margin-top: 2rem;
  padding: 2rem 1rem;
  background: #F0F7FF;
  border-radius: 40px;
}

.how-it-works-cta p {
  font-size: 1.3rem;
  color: #0B2A4A;
  margin-bottom: 1.5rem;
}

.cta-button {
  display: inline-block;
  background: #00A6D1;
  color: white;
  font-weight: 600;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1.1rem;
  transition: background 0.2s ease, transform 0.2s ease;
  box-shadow: 0 8px 20px rgba(0,166,209,0.3);
}

.cta-button:hover {
  background: #0B2A4A;
  transform: scale(1.02);
}

.why-choose-us {
    padding: 4rem 0;
}

.why-choose-us .section-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: #0B2A4A;
    margin-bottom: 0.5rem;
}

.why-choose-us .section-subtitle {
    font-size: 1.2rem;
    color: #2C4C6B;
    margin-bottom: 3rem;
    font-weight: 300;
}

.why-choose-us .feature-card-items {

    border-radius: 100px;
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 40, 80, 0.08);
    border: 1px solid rgba(0, 110, 230, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.why-choose-us .feature-card-items:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 35px rgba(0, 80, 160, 0.15);
}

.why-choose-us .icon {
    background: #E6F0FA;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.2rem;
}

.why-choose-us .icon.bg-color {
    background: #D4E7F7;   /* slightly different shade for variation */
}

.why-choose-us .icon img {
    width: 50px;
    height: auto;
}

.why-choose-us .content h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #0B2A4A;
    margin-bottom: 0.75rem;
}

.why-choose-us .content p {
    color: #3A5668;
    line-height: 1.6;
    font-size: 0.95rem;
    margin: 0;
}

/* Video Background Styles for CTA Section */
.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Dark overlay for text readability */
    z-index: 1;
}



        /* main card – white background, fresh green accents */
        .profile-section {
            max-width: 1280px;
            width: 100%;
            padding: 3rem 2.5rem;
            transition: all 0.2s ease;
            margin-top:50px;
            margin-left: 400px;

        }

        /* theme colours */
        :root {
            --green-deep: #1e5f2e;        /* pine green – headings */
            --green-medium: #2e7d32;       /* fresh leaf */
            --green-soft: #a5d6a7;         /* subtle mint */
            --green-light: #e8f5e9;        /* background tint */
            --white: #ffffff;
            --grey-text: #2c3e2f;
        }

        /* headings & accents */
        .section-title {
            font-size: 2.4rem;
            font-weight: 700;
            color: var(--green-deep);
            letter-spacing: -0.02em;
            margin-bottom: 0.5rem;
            display: inline-block;
            border-bottom: 4px solid var(--green-soft);
            padding-bottom: 0.6rem;
            margin-left: 100px;
        }

        .section-subhead {
            color: #3b5e3f;
            font-size: 1.1rem;
            font-weight: 400;
            margin-top: 0.75rem;
            margin-bottom: 2.5rem;
            max-width: 700px;
        }

        /* two column layout (intro + stats) */
        .profile-grid {
            display: grid;
            grid-template-columns: 1.2fr 0.8fr;
            gap: 2rem 3rem;
            margin: 2.5rem 0 2rem;
        }

        /* left side – company name & description */
        .company-intro .greeting {
            color: var(--green-medium);
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            font-size: 0.9rem;
            margin-bottom: 0.75rem;
        }

        .company-name {
            font-size: 2.8rem;
            font-weight: 800;
            color: var(--green-deep);
            line-height: 1.1;
            margin-bottom: 1.25rem;
        }

        .company-name span {
            color: var(--green-medium);
            font-weight: 300;
            display: block;
            font-size: 1.4rem;
            letter-spacing: -0.01em;
            margin-top: 0.3rem;
        }

        .description {
            color: #2e3d31;
            font-size: 1.05rem;
            margin-bottom: 2rem;
            padding-right: 1rem;
        }

        .feature-list {
            list-style: none;
            margin-top: 1.5rem;
        }

        .feature-list li {
            display: flex;
            align-items: center;
            gap: 0.8rem;
            margin-bottom: 1rem;
            font-weight: 500;
            color: #1b4c2b;
        }

        .feature-list i {
            width: 2rem;
            height: 2rem;
            background: var(--green-light);
            color: var(--green-deep);
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 1rem;
        }

        /* right side – stat cards (green tint) */
        .stats-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.2rem;
            background: var(--green-light);
            padding: 1.8rem 1.5rem;
            border-radius: 2rem;
            border: 1px solid var(--green-soft);
        }

        .stat-item {
            background: white;
            border-radius: 1.5rem;
            padding: 1.2rem 0.8rem;
            text-align: center;
            box-shadow: 0 6px 12px rgba(30, 95, 46, 0.08);
            transition: transform 0.1s ease;
            border: 1px solid rgba(76, 175, 80, 0.2);
        }

        .stat-item:hover {
            transform: translateY(-3px);
            border-color: var(--green-medium);
        }

        .stat-number {
            font-size: 2.1rem;
            font-weight: 800;
            color: var(--green-deep);
            line-height: 1.2;
        }

        .stat-label {
            font-size: 0.85rem;
            font-weight: 500;
            color: #3d5e42;
            text-transform: uppercase;
            letter-spacing: 0.4px;
        }

        /* mission | vision | values cards (green-white pattern) */
        .cards-row {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.8rem;
            margin: 3rem 0 2rem;
        }

        .info-card {
            background: #ffffff;
            border-radius: 1.8rem;
            padding: 2rem 1.5rem;
            box-shadow: 0 12px 26px -8px rgba(46, 125, 50, 0.18);
            border: 1px solid #dcf0dd;
            transition: all 0.25s;
        }

        .info-card:hover {
            border-color: var(--green-medium);
            box-shadow: 0 18px 30px -8px #2e7d3240;
        }

        .card-icon {
            background: var(--green-light);
            width: 3.5rem;
            height: 3.5rem;
            border-radius: 1.2rem;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            color: var(--green-deep);
            font-size: 1.8rem;
        }

        .info-card h3 {
            color: var(--green-deep);
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 0.75rem;
        }

        .info-card p {
            color: #2b4a2f;
            font-weight: 400;
            font-size: 0.98rem;
            opacity: 0.9;
        }

        /* bottom – team / signature */
        .footer-note {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 1.5rem;
            margin-top: 2.8rem;
            padding-top: 1.8rem;
            border-top: 2px solid var(--green-light);
        }

        .team-mini {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .team-mini .avatars {
            display: flex;
        }

        .team-mini .avatars span {
            width: 2.8rem;
            height: 2.8rem;
            background: var(--green-soft);
            border-radius: 50%;
            border: 2px solid white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 600;
            color: var(--green-deep);
            margin-right: -0.8rem;
            box-shadow: 0 2px 8px rgba(0,40,0,0.1);
            background: linear-gradient(145deg, #d4eed5, #b8dfba);
        }

        .team-mini p {
            font-weight: 500;
            color: #236b31;
        }

        .signature-green {
            background: var(--green-deep);
            color: white;
            padding: 0.75rem 2rem;
            border-radius: 3rem;
            font-weight: 600;
            font-size: 1rem;
            border: none;
            cursor: default;
            box-shadow: 0 4px 10px rgba(30, 95, 46, 0.3);
            letter-spacing: 0.3px;
        }

        /* responsive */
        @media (max-width: 850px) {
            .profile-section {
                padding: 2rem 1.5rem;
            }
            .profile-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
            .cards-row {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
            .company-name {
                font-size: 2.2rem;
            }
            .stats-grid {
                max-width: 500px;
            }
        }

        @media (max-width: 480px) {
            .section-title {
                font-size: 2rem;
            }
            .stat-number {
                font-size: 1.8rem;
            }
            .footer-note {
                flex-direction: column;
                align-items: flex-start;
            }
        }

        /* extra green touches */
        .highlight {
            background: var(--green-light);
            padding: 0.1rem 0.4rem;
            border-radius: 0.5rem;
            color: var(--green-deep);
            font-weight: 600;
        }


         /* Custom filter button styling */
        .filter-buttons-section {
            background-color: #f9f9f9;
            border-bottom: 1px solid #e8e8e8;
        }
        .filter-btn {
            min-width: 130px;
            text-align: center;
            cursor: pointer;
        }
        .filter-btn.active {
            background-color: #033b5e; /* theme primary color */
            color: #fff;
            border-color: #033b5e;
        }
        /* Customizer panel styling */
        .customizer-panel {
            background: #fff;
            border-radius: 15px;
            padding: 40px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            margin-top: 30px;
        }
        .customizer-panel h3 {
            margin-bottom: 25px;
            font-size: 24px;
            font-weight: 600;
            color: #031220;
        }
        .customizer-panel .form-group {
            margin-bottom: 20px;
        }
        .customizer-panel label {
            font-weight: 500;
            color: #555;
            margin-bottom: 8px;
            display: block;
        }
        .customizer-panel .form-control, .customizer-panel .nice-select {
            height: 55px;
            border: 1px solid #e5e5e5;
            border-radius: 8px;
            padding: 0 20px;
            width: 100%;
            background: #fff;
        }
        .customizer-panel .nice-select {
            line-height: 53px;
        }
        .customizer-panel textarea.form-control {
            height: 120px;
            padding: 15px 20px;
        }
        .submit-custom {
            background-color: #033b5e;
            color: #fff;
            border: none;
            padding: 14px 35px;
            border-radius: 8px;
            font-weight: 600;
            transition: all 0.3s;
        }
        .submit-custom:hover {
            background-color: #022b44;
        }

           .service-icon {
            font-size: 48px;
            color: #033b5e;
            background: #f3f9ff;
            width: 100px;
            height: 100px;
            line-height: 100px;
            text-align: center;
            border-radius: 50%;
            margin: 0 auto 20px;
            transition: 0.3s;
        }
        .destination-card-items:hover .service-icon {
            background: #033b5e;
            color: #fff;
        }

        /* main component – travel booking section */
        .travel-booking {
            background-color: #ffffff;
            border-radius: 2rem;
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
            width: 100%;
            max-width: 1280px;
            padding: 2.5rem 2rem;
            transition: all 0.2s ease;
        }

        .booking-header {
            text-align: center;
            margin-bottom: 2.5rem;
        }

        .booking-header h2 {
            font-size: 2.2rem;
            font-weight: 600;
            color: #0f172a;
            letter-spacing: -0.02em;
            margin-bottom: 0.5rem;
        }

        .booking-header p {
            font-size: 1.1rem;
            color: #475569;
            font-weight: 300;
        }

        /* ----- tabs (flights / hotels / cars) ----- */
        .search-tabs {
            display: flex;
            justify-content: center;
            gap: 0.5rem;
            margin-bottom: 2rem;
            flex-wrap: wrap;
        }

        .tab-btn {
            background: transparent;
            border: none;
            padding: 0.75rem 2rem;
            font-family: 'Poppins', sans-serif;
            font-size: 1rem;
            font-weight: 500;
            color: #64748b;
            border-radius: 40px;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: all 0.2s;
            background-color: #f8fafc;
        }

        .tab-btn i {
            font-size: 1.1rem;
        }

        .tab-btn.active {
            background-color: #0f172a;
            color: white;
            box-shadow: 0 10px 15px -3px rgba(15, 23, 42, 0.2);
        }

        .tab-btn:not(.active):hover {
            background-color: #e2e8f0;
            color: #1e293b;
        }

        /* ----- search form (cards style) ----- */
        .search-panel {
            background: #f8fafc;
            border-radius: 2rem;
            padding: 1.8rem 1.8rem;
            margin-bottom: 3rem;
            box-shadow: inset 0 2px 8px rgba(0,0,0,0.02), 0 6px 12px -8px rgba(0,0,0,0.1);
        }

        .form-row {
            display: flex;
            flex-wrap: wrap;
            align-items: flex-end;
            gap: 1rem;
        }

        .input-group {
            flex: 1 1 180px;
            min-width: 150px;
        }

        .input-group label {
            display: block;
            font-size: 0.75rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.03em;
            color: #64748b;
            margin-bottom: 0.25rem;
        }

        .input-field {
            display: flex;
            align-items: center;
            background: white;
            border-radius: 60px;
            padding: 0.5rem 1rem;
            border: 1px solid #e2e8f0;
            transition: border 0.2s, box-shadow 0.2s;
        }

        .input-field i {
            color: #94a3b8;
            font-size: 1rem;
            margin-right: 8px;
            width: 20px;
        }

        .input-field input,
        .input-field select {
            width: 100%;
            border: none;
            outline: none;
            font-family: 'Poppins', sans-serif;
            font-size: 0.95rem;
            background: transparent;
            color: #1e293b;
        }

        .input-field input::placeholder {
            color: #a0afc0;
            font-weight: 300;
        }

        .input-field:focus-within {
            border-color: #0f172a;
            box-shadow: 0 0 0 3px rgba(15,23,42,0.1);
        }

        /* passenger select custom style */
        .input-field select {
            cursor: pointer;
        }

        .search-btn {
            background: #0f172a;
            border: none;
            border-radius: 60px;
            padding: 0.85rem 2.5rem;
            font-weight: 600;
            font-size: 1rem;
            color: white;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            cursor: pointer;
            transition: background 0.2s, transform 0.1s;
            white-space: nowrap;
            margin-left: auto;
            border: 1px solid #0f172a;
        }

        .search-btn i {
            font-size: 1.1rem;
        }

        .search-btn:hover {
            background: #1e293b;
            transform: scale(1.02);
        }

        .search-btn:active {
            transform: scale(0.98);
        }

        /* ----- destinations grid ----- */
        .destinations-heading {
            display: flex;
            align-items: baseline;
            justify-content: space-between;
            margin: 2rem 0 1.5rem 0;
        }

        .destinations-heading h3 {
            font-size: 1.6rem;
            font-weight: 600;
            color: #0f172a;
        }

        .destinations-heading a {
            color: #3b82f6;
            text-decoration: none;
            font-weight: 500;
            display: inline-flex;
            align-items: center;
            gap: 4px;
            transition: color 0.2s;
        }

        .destinations-heading a i {
            font-size: 0.8rem;
        }

        .destinations-heading a:hover {
            color: #1d4ed8;
        }

        .card-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 1.8rem;
        }

        .destination-card {
            background: white;
            border-radius: 1.5rem;
            overflow: hidden;
            box-shadow: 0 12px 24px -10px rgba(0, 0, 0, 0.1);
            transition: all 0.25s ease;
            border: 1px solid #f1f5f9;
        }

        .destination-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 24px 36px -12px rgba(15, 23, 42, 0.2);
        }

        .card-img {
            height: 160px;
            background-size: cover;
            background-position: center;
            position: relative;
            display: flex;
            align-items: flex-end;
            justify-content: flex-start;
            padding: 0.8rem;
        }

        /* image placeholders – each with different gradient / pattern (for demonstration) */
        .img-1 { background-image: linear-gradient(145deg, #0284c7, #38bdf8), url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI4MCIgaGVpZ2h0PSI4MCIgdmlld0JveD0iMCAwIDQwIDQwIj48cGF0aCBkPSJNMjAgM0wxIDMzbDE5LTUgMTkgNS0xOS0zMHoiIGZpbGw9IiNmZmZmZmYiIG9wYWNpdHk9IjAuMiIvPjwvc3ZnPg=='); background-blend-mode: overlay; background-size: cover, auto; }
        .img-2 { background-image: linear-gradient(145deg, #b45309, #f59e0b), repeating-linear-gradient(45deg, rgba(255,255,255,0.1) 0px, rgba(255,255,255,0.1) 8px, transparent 8px, transparent 16px); }
        .img-3 { background-image: linear-gradient(145deg, #0d9488, #2dd4bf), radial-gradient(circle at 30% 30%, rgba(255,255,255,0.2) 0%, transparent 30%); }
        .img-4 { background-image: linear-gradient(145deg, #7e22ce, #c084fc), repeating-linear-gradient(90deg, rgba(255,255,255,0.15) 0px, rgba(255,255,255,0.15) 4px, transparent 4px, transparent 12px); }

        .price-tag {
            background: rgba(15, 23, 42, 0.8);
            backdrop-filter: blur(4px);
            color: white;
            font-weight: 600;
            font-size: 0.9rem;
            padding: 0.3rem 1rem;
            border-radius: 40px;
            border: 1px solid rgba(255,255,255,0.3);
        }

        .card-content {
            padding: 1.2rem 1rem 1.2rem 1rem;
        }

        .card-content h4 {
            font-size: 1.25rem;
            font-weight: 600;
            color: #0f172a;
            margin-bottom: 0.3rem;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .card-content h4 i {
            color: #fbbf24;
            font-size: 1rem;
        }

        .location {
            display: flex;
            align-items: center;
            gap: 5px;
            color: #64748b;
            font-size: 0.85rem;
            font-weight: 400;
            margin-bottom: 0.8rem;
        }

        .location i {
            font-size: 0.75rem;
            color: #94a3b8;
        }

        .card-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-top: 1px solid #e9eef3;
            padding-top: 0.8rem;
            margin-top: 0.2rem;
        }

        .rating {
            color: #f59e0b;
            font-weight: 600;
            font-size: 0.9rem;
        }

        .rating span {
            color: #94a3b8;
            font-weight: 400;
            font-size: 0.8rem;
            margin-left: 3px;
        }

        .book-now {
            color: #0f172a;
            font-weight: 500;
            font-size: 0.9rem;
            text-decoration: none;
            border-bottom: 1px dashed #94a3b8;
        }

        .book-now:hover {
            color: #2563eb;
            border-bottom-color: #2563eb;
        }

        /* small adjustments for mobile */
        @media (max-width: 700px) {
            .travel-booking {
                padding: 1.8rem 1.2rem;
            }
            .form-row {
                flex-direction: column;
                align-items: stretch;
            }
            .search-btn {
                justify-content: center;
                margin-left: 0;
                width: 100%;
            }
            .booking-header h2 {
                font-size: 1.8rem;
            }
            .tab-btn {
                padding: 0.6rem 1.2rem;
                font-size: 0.9rem;
            }
        }

        @media (max-width: 480px) {
            .card-grid {
                grid-template-columns: 1fr;
            }
        }

        .gallery-popup {
            display: block;
            cursor: pointer;
        }
        .news-card-items-3:hover .news-image img {
            transform: scale(1.05);
        }

        /* Offer badge */
        .offer-badge {
            position: absolute;
            top: 15px;
            left: 15px;
            background: #ff6b35;
            color: #fff;
            font-weight: 600;
            padding: 5px 15px;
            border-radius: 30px;
            font-size: 14px;
            z-index: 2;
        }
        .news-card-items-3 {
            position: relative;
            overflow: hidden;
        }
        .offer-price {
            font-size: 18px;
            font-weight: 700;
            color: #033b5e;
        }
        .offer-price del {
            font-size: 14px;
            color: #999;
            margin-left: 5px;
            font-weight: 400;
        }
        .offer-valid {
            font-size: 13px;
            color: #666;
            margin-top: 5px;
        }

           /* main terms container */
        .terms-section {


            margin-left: 500px;
            width:auto;
            max-width: 1000px;
            padding: 2.5rem 2.5rem;
            transition: all 0.2s ease;
        }

        .terms-header {
            text-align: left;
            margin-bottom: 2rem;
            border-bottom: 2px solid #f1f5f9;
            padding-bottom: 1.5rem;
        }

        .terms-header h2 {
            font-size: 2.2rem;
            font-weight: 600;
            color: #0f172a;
            letter-spacing: -0.02em;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .terms-header h2 i {
            color: #3b82f6;
            font-size: 2rem;
        }

        .terms-header .last-updated {
            color: #64748b;
            font-size: 0.9rem;
            margin-top: 0.4rem;
            font-weight: 300;
        }

        .terms-intro {
            background: #f8fafc;
            padding: 1.5rem 2rem;
            border-radius: 1.5rem;
            margin-bottom: 2.5rem;
            border-left: 6px solid #0f172a;
            font-size: 1.05rem;
            line-height: 1.6;
            color: #1e293b;
        }

        .terms-intro i {
            color: #2563eb;
            margin-right: 8px;
        }

        /* grid for term blocks */
        .terms-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 1.8rem;
            margin-bottom: 2.5rem;
        }

        .term-card {
            background: #ffffff;
            border-radius: 1.5rem;
            padding: 1.6rem 1.6rem 1.8rem 1.6rem;
            box-shadow: 0 8px 20px -6px rgba(0, 0, 0, 0.05);
            border: 1px solid #eef2f6;
            transition: transform 0.2s, box-shadow 0.2s;
        }

        .term-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 20px 28px -10px rgba(15, 23, 42, 0.1);
            border-color: #d9e2ef;
        }

        .term-icon {
            background: #eef2ff;
            width: 48px;
            height: 48px;
            border-radius: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.2rem;
            color: #1e3a8a;
            font-size: 1.5rem;
        }

        .term-card h3 {
            font-size: 1.3rem;
            font-weight: 600;
            color: #0f172a;
            margin-bottom: 0.75rem;
        }

        .term-card p {
            color: #475569;
            font-size: 0.95rem;
            line-height: 1.6;
            margin-bottom: 1rem;
        }

        .term-card ul {
            list-style: none;
            padding: 0;
        }

        .term-card li {
            color: #334155;
            font-size: 0.9rem;
            margin-bottom: 0.6rem;
            display: flex;
            align-items: flex-start;
            gap: 8px;
        }

        .term-card li i {
            color: #22c55e;
            font-size: 0.85rem;
            margin-top: 0.2rem;
            min-width: 18px;
        }

        .important-note {
            background: #fff7ed;
            border-radius: 1.5rem;
            padding: 1.5rem 2rem;
            border: 1px solid #fed7aa;
            margin: 2rem 0 1.8rem 0;
            display: flex;
            align-items: flex-start;
            gap: 1.2rem;
        }

        .important-note i {
            font-size: 2.2rem;
            color: #f97316;
        }

        .important-note p {
            color: #7b4a1e;
            font-weight: 400;
            line-height: 1.6;
        }

        .important-note a {
            color: #2563eb;
            text-decoration: underline;
            font-weight: 500;
        }

        .checkbox-agree {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin: 2rem 0 1rem 0;
            padding: 1rem 0;
            border-top: 2px solid #f1f5f9;
            border-bottom: 2px solid #f1f5f9;
        }

        .checkbox-agree input[type="checkbox"] {
            width: 22px;
            height: 22px;
            accent-color: #0f172a;
            cursor: pointer;
        }

        .checkbox-agree label {
            font-size: 1rem;
            font-weight: 500;
            color: #1e293b;
            cursor: pointer;
        }

        .checkbox-agree label a {
            color: #2563eb;
            text-decoration: none;
            border-bottom: 1px dotted #94a3b8;
        }

        .terms-footer {
            display: flex;
            justify-content: flex-end;
            gap: 1.2rem;
            margin-top: 2rem;
        }

        .btn {
            padding: 0.9rem 2.2rem;
            border-radius: 60px;
            font-weight: 600;
            font-size: 1rem;
            border: none;
            cursor: pointer;
            transition: background 0.2s, transform 0.1s;
            font-family: 'Poppins', sans-serif;
        }

        .btn-primary {
            background: #0f172a;
            color: white;
            border: 1px solid #0f172a;
        }

        .btn-primary:hover {
            background: #1e293b;
            transform: scale(1.02);
        }

        .btn-outline {
            background: transparent;
            color: #1e293b;
            border: 1px solid #cbd5e1;
        }

        .btn-outline:hover {
            background: #f1f5f9;
            border-color: #94a3b8;
        }

        /* small adjustments */
        @media (max-width: 700px) {
            .terms-section {
                padding: 1.8rem 1.5rem;
            }
            .terms-header h2 {
                font-size: 1.8rem;
            }
            .terms-intro {
                padding: 1.2rem 1.5rem;
            }
            .important-note {
                flex-direction: column;
                gap: 0.6rem;
            }
            .terms-footer {
                flex-direction: column-reverse;
            }
            .btn {
                width: 100%;
                text-align: center;
            }
        }




