 * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
   
  }

  body {
    background: #ffffff;
  }

  /* SECTION */
  .tour-section {
    background: #ffffff;
    padding: 40px 15px 80px;
    position: relative;
    overflow: hidden;
  }

  /* =========================
     HEADING RIBBON
  ========================= */
  .ribbon-wrap {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
  }

  .ribbon {
    position: relative;
    display: inline-block;
    background: #ffdf04;
    padding: 14px 40px;
    font-weight: 900;
    border-radius: 12px;
  }

  .ribbon::before,
  .ribbon::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 30px;
    height: 30px;
    background: #ffdf04;
    transform: translateY(-50%) rotate(45deg);
  }

  .ribbon::before { left: -15px; }
  .ribbon::after { right: -15px; }

  .ribbon h2 {
    font-size: 22px;
    text-transform: uppercase;
    background: linear-gradient(90deg, #ff003c, #ff6a00, #ff003c);
    background-size: 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: titleMove 4s linear infinite;
  }

  @keyframes titleMove {
    to { background-position: 300%; }
  }

  /* GRID */
  .tour-grid {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 2;
  }

  /* CARD */
  .tour-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
    padding: 20px;
    transition: 0.3s;
  }
  .tour-card:hover { transform: translateY(-6px); }

  /* IMAGE */
 .tour-image {
  width: 100%;           /* Make it fill the card width */
  height: 290px;         /* Fixed height */
  object-fit: cover;     /* Cover without distortion */
  border-radius: 16px;
  display: block;
  margin-bottom: 15px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.25);
  border: 3px solid #fff;
}

  /* CARD HEADINGS */
  .tour-card h3 {
    font-size: 18px;
    font-weight: 900;
    text-transform: uppercase;
    position: relative;
    margin-bottom: 10px;
    background: linear-gradient(90deg, #ff003c, #ff6a00, #ff003c, #ff6a00);
    background-size: 400%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: h3Gradient 4s linear infinite;
  }

  @keyframes h3Gradient {
    0% { background-position: 0%; }
    100% { background-position: 400%; }
  }

  /* animated underline */
  .tour-card h3::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #ff003c, #ff6a00, #ff003c);
    background-size: 200%;
    animation: underline 2s linear infinite;
  }

  @keyframes underline {
    0% { background-position: 0%; }
    100% { background-position: 200%; }
  }

  /* PARAGRAPH CONTENT */
  .tour-card p {
    font-size: 14px;
    color: #333;
    margin-bottom: 15px;
    line-height: 1.5;
  }

  /* BUTTON */
  .read-more {
    display: inline-block;
    padding: 10px 30px;
    border-radius: 40px;
    background: linear-gradient(45deg, #ffdf04, #eed006, #ffdf04);
    background-size: 300%;
    animation: btnMove 3s infinite;
    color: red;
    font-weight: 800;
    text-decoration: none;
  }

  @keyframes btnMove {
    to { background-position: 300%; }
  }

  /* MOBILE FIXES */
  @media (max-width: 600px) {
    .ribbon h2 { font-size: 16px; }
    .tour-image { height: 250px; }
    .tour-card h3 { font-size: 16px; }
  }
  
  
  
    .container {
        max-width: 1100px;
        margin: auto;
        padding: 40px 20px;
    }

    /* Animated Gradient Heading */
    .section-title {
        position: relative;
        display: inline-block;
        font-size: 32px;
        margin-bottom: 25px;
        padding-bottom: 12px;
    }

    .section-title::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: 0;
        height: 4px;
        width: 0;
        background: linear-gradient(90deg, #ffdf04, #ff8c00);
        border-radius: 2px;
        animation: underlineGrow 2s ease forwards;
    }

    @keyframes underlineGrow {
        from { width: 0; }
        to { width: 100%; }
    }

    /* Shadow Section Boxes */
    .box {
        background: #ffffff;
        padding: 28px;
        border-radius: 18px;
        margin-bottom: 35px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.08);
        transition: transform 0.4s ease, box-shadow 0.4s ease;
        animation: fadeUp 1.2s ease forwards;
    }

    .box:hover {
        transform: translateY(-6px);
        box-shadow: 0 18px 45px rgba(0,0,0,0.15);
    }

    @keyframes fadeUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* Grid Layout */
    .grid {
        display: grid;
        grid-template-columns: 1.1fr 0.9fr;
        gap: 30px;
        align-items: center;
    }

    img {
        width: 100%;
        border-radius: 16px;
        box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    }

    /* Bullet Icons */
    ul22 {
        list-style: none;
        padding: 0;
        margin: 15px 0;
    }

    ul22 li {
        padding-left: 28px;
        margin-bottom: 10px;
        position: relative;
    }

    ul22 li::before {
        content: "?";
        position: absolute;
        left: 0;
        color: #ff8c00;
        font-weight: bold;
    }

    .price {
        font-size: 18px;
        font-weight: bold;
        color: #ff8c00;
    }

 

    /* Responsive */
    @media (max-width: 900px) {
        .grid {
            grid-template-columns: 1fr;
        }
    }
	
	.safari-heading {
    position: relative;
    display: inline-block;
    padding: 14px 28px;
    font-size: 32px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    background: #ffdf04;
    color: transparent;
    background-clip: text;
    -webkit-background-clip: text;
    margin: 20px 0;
}

/* Animated text gradient */
.safari-heading {
    background-image: linear-gradient(
        90deg,
        #020100,
        #4a3b00,
        #020100
    );
    background-size: 200% 100%;
    animation: textGradient 3s linear infinite;
}

/* Background shape */
.safari-heading::before {
    content: "";
    position: absolute;
    inset: 0;
    background: #ffdf04;
    border-radius: 16px;
    z-index: -1;
    box-shadow: 0 10px 25px rgba(255, 223, 4, 0.45);
}

/* Gradient animation */
@keyframes textGradient {
    0% {
        background-position: 0% 50%;
    }
    100% {
        background-position: 200% 50%;
    }
}
	
	