.home-page .search-wrapper {
    margin-top: -50px;
  }
  
  /* fishing adventure section starts */
  .fishing-adventure-section {
    margin-top: 200px;
  }
  
  .section-title {
    color: #252c32;
    text-align: center;
    font-family: "Kumbh Sans";
    font-size: 48px;
    font-style: normal;
    font-weight: 700;
    line-height: 132%; /* 63.36px */
    letter-spacing: -0.48px;
    margin-bottom: 60px;
  }
  
  .home-page .testimonial-section .section-title {
    margin-bottom: 60px !important;
  }
  
  .fishing-adventure-grid-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  
  .fishing-adventure-card {
    background: #f0f4f8;
    border: 1px solid #d1e1f1;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    position: relative;
  }
  
  .fishing-adventure-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .fishing-adventure-content-wrapper-wrapper {
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
  }
  
  .fishing-adventure-content-wrapper {
    padding: 24px 12px 24px 12px;
    border-radius: 8px;
    background: #fff;
    margin: 0 45px 28px 45px;
    cursor: pointer;
  }
  
  .fishing-adventure-content-wrapper:hover .adventure-arrow {
    transform: rotate(45deg);
  }
  
  .fishing-adventure-content-border-top {
    width: 45px;
    height: 3px;
    border-radius: 3px;
    background: #fdc;
    margin-bottom: 15px;
  }
  
  .fishing-adventure-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  
  .fishing-adventure-content-left h3 {
    color: #161c26;
    font-family: "Kumbh Sans";
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 132%; /* 26.4px */
    letter-spacing: -0.4px;
  }
  
  .fishing-adventure-content-left p {
    color: #6b7280;
    font-family: "Kumbh Sans";
    font-size: 13px;
    font-style: normal;
    font-weight: 400;
    line-height: 164%; /* 16.4px */
  }
  
  .fishing-adventure-content-right {
    display: flex;
    width: 42.002px;
    height: 42.002px;
    padding: 12.007px 13.131px 12px 13.124px;
    justify-content: center;
    align-items: center;
    border-radius: 21px;
    background: #61a745;
    cursor: pointer;
  }
  .fishing-adventure-content-right .adventure-arrow {
    transition: 0.3s ease;
  }
  /* fishing adventure ends */
  
  /* opportunity starts */
  .opportunity-section {
    display: flex;
    gap: 64px;
    align-items: center;
    margin-top: 145px;
  }
  
  .opportunity-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  /* Title Styles */
  .timeline-title {
    margin-bottom: 40px;
  }
  
  .timeline-badge {
    display: flex;
    padding: 9px 22px;
    justify-content: center;
    align-items: center;
    border-radius: 4px;
    background: #edfadd;
    width: fit-content;
    margin-bottom: 15px;
  }
  
  .timeline-heading {
    color: #252c32;
    font-family: "Kumbh Sans";
    font-size: 48px;
    font-style: normal;
    font-weight: 700;
    line-height: 132%; /* 63.36px */
    letter-spacing: -0.48px;
  }
  
  /* Timeline Container */
  .timeline-container {
    position: relative;
    margin-top: 26px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }
  
  /* Timeline Line */
  .timeline-line {
    position: absolute;
    left: 40px;
    top: 0;
    width: 2px;
    height: 100%;
    background: repeating-linear-gradient(
      to bottom,
      #e0e0e0,
      #e0e0e0 5px,
      transparent 5px,
      transparent 10px
    );
  }
  
  /* Timeline Items */
  .timeline-item {
    display: flex;
    align-items: center;
    position: relative;
    gap: 30px;
    margin-bottom: 40px;
  }
  
  .timeline-item .timeline-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
  }
  
  .timeline-item .timeline-icon svg {
    width: 40px;
    height: 40px;
  }
  
  .timeline-item .timeline-content {
    max-width: 600px;
  }
  
  .timeline-item h3 {
    color: #252c32;
    font-family: "Kumbh Sans";
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 132%; /* 26.4px */
    letter-spacing: -0.4px;
  }
  
  .timeline-item p {
    color: #6b7280;
    font-family: "Kumbh Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 164%; /* 26.24px */
  }
  
  /* opportunity ends */
  
  /* fishing types starts */
  .fishing-types-section {
    margin-top: 150px;
  }
  
  .fishing-types-card-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  
  /* Fishing Types Card Styles */
  .fishing-types-card {
    position: relative;
    overflow: hidden;
    background-color: #f8fafc;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: transform 0.3s ease-in-out;
    border-radius: 4px;
  }
  
  .fishing-types-card .fishing-types-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: 0.3s ease-in-out;
  }
  
  /* Title Styles (Initially hidden) */
  .fishing-types-card-title {
    position: absolute;
    bottom: -60px;
    left: 0;
    width: 100%;
    background-image: url("../images/fishing-types-title-bg.png");
    background-repeat: no-repeat;
    background-size: cover;
    font-family: "Kumbh Sans";
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 132%; /* 31.68px */
    letter-spacing: -0.48px;
    color: #fff;
    padding: 30px 64px;
    border-radius: 0 0 8px 8px;
    transition: bottom 0.3s ease-in-out; /* Smooth transition */
  }
  
  /* Hover Effect */
  .fishing-types-card:hover .fishing-types-image {
    transform: scale(1.1); /* Slight lift on hover */
  }
  
  .fishing-types-card:hover .fishing-types-card-title {
    bottom: 0; /* Slide title up into view */
  }
  
  .fishing-types-btn-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 60px;
  }
  
  .fishing-types-btn-wrapper .common-btn {
    width: 171px !important;
    height: 54px !important;
    justify-content: center;
    align-items: center;
    transition: 0.3s ease-in-out;
  }
  
  .fishing-types-btn-wrapper .common-btn:hover {
    background: #509136;
  }
  
  /* fishing types ends */
  
  /* fishing species starts */
  .fish-species-section,
  .fishing-techniques-section {
    margin-top: 150px;
  }
  
  .fish-species-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  
  .fish-species-item {
    display: flex;
    padding: 33px 20px;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    border: 1px solid rgba(176, 186, 191, 0.5);
    background: #fff;
  }
  
  .fish-species-item img {
    max-width: 100%;
    height: auto;
    margin-bottom: 10px;
  }
  
  .fish-species-item p {
    background: #f0f2f5;
    color: #252c32;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 132%; /* 26.4px */
    letter-spacing: -0.4px;
    width: 100%;
    max-width: 250px;
    padding: 10px 0;
    text-align: center;
  }
  
  .fish-species-button-container,
  .fishing-techniques-button-container {
    display: flex;
    justify-content: center;
    margin-top: 60px;
  }
  
  /* fishing species ends */
  
  /* fishing-techniques starts */
  .fishing-techniques-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  
  .fishing-techniques-item {
    display: flex;
    padding: 53px 24px 52px 24px;
    flex-direction: column;
    justify-content: space-between;
    gap: 28px;
    border-radius: 12px;
    border: 1px solid rgba(176, 186, 191, 0.5);
    background: #fff;
  }
  
  .fishing-techniques-item img {
    max-width: 183px;
    border-radius: 12px;
  }
  
  .fishing-techniques-content h4 {
    color: #252c32;
    font-family: "Kumbh Sans";
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 132%; /* 31.68px */
    letter-spacing: -0.48px;
  }
  
  .fishing-techniques-content p {
    color: #6b7280;
    font-family: "Kumbh Sans";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 154%; /* 32.8px */
    margin-top: 15px;
  }
  /* fishing-techniques ends */
  
  /* reviews starts */
  .testimonial-section {
    padding: 110px 0;
    background: url("../images/reviews-bg.png");
    background-repeat: no-repeat;
    background-size: cover;
    margin-top: 150px;
  }
  
  .testimonial-card {
    background-color: transparent;
    border-radius: 12px;
    border: 1px solid #9ca3af;
    padding: 40px 0 0 28px;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
  }
  
  .rating {
    font-size: 1.5rem;
    color: #ff0202;
    margin-bottom: 10px;
  }
  
  .description {
    color: #65737e;
    font-family: "Kumbh Sans";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 164%; /* 22.96px */
    padding-right: 28px;
  }
  
  .testimonial-footer {
    display: flex;
    justify-content: space-between;
    align-items: end;
  }
  
  .person-info {
    text-align: left;
    margin-bottom: 40px;
  }
  
  .person-info .name {
    color: #252c32;
    font-family: "Kumbh Sans";
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 132%; /* 23.76px */
    letter-spacing: -0.36px;
  }
  
  .person-info .designation {
    color: #757575;
    font-family: "Kumbh Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 164%; /* 26.24px */
  }
  
  .image-container img {
    max-width: 204px;
    max-height: 204px;
  }
  
  .slick-slide {
    margin: 0 11px; /* 22px total gap divided between left and right */
  }
  
  .slick-list {
    margin: 0 -11px; /* To account for the outer margin of the first and last items */
  }
  /* reviews ends */
  
  /* blog section starts */
  .blog-section {
    margin-top: 150px;
  }
  
  .blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    justify-items: center;
  }
  
  .blog-card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 16px;
  }
  
  .blog-image {
    position: relative;
  }
  
  .blog-image img {
    width: 100%;
    height: auto;
  }
  
  .date-badge {
    position: absolute;
    top: 0px;
    right: 30px;
    display: flex;
    width: 47.97px;
    padding: 12px;
    flex-direction: column;
    align-items: flex-start;
    border-radius: 0px 0px 8px 8px;
    background: #ff0202;
    gap: 10px;
  }
  
  .date-badge span {
    color: #fff;
    text-align: center;
    font-family: "Kumbh Sans";
    font-size: 10px;
    font-style: normal;
    font-weight: 500;
    line-height: 11px; /* 110% */
    letter-spacing: 1px;
    text-transform: uppercase;
    text-align: center;
    width: 100%;
  }
  
  .blog-content {
    padding: 20px;
  }
  
  .blog-meta {
    display: flex;
    justify-content: flex-start;
    gap: 16px;
    font-size: 0.85rem;
    color: #777;
    margin-bottom: 10px;
  }
  
  .blog-meta .admin,
  .blog-meta .comments {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    color: #777;
    color: #797f89;
    font-family: "Kumbh Sans";
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 18px; /* 128.571% */
    text-transform: capitalize;
  }
  
  .blog-title {
    color: #252c32;
    font-family: "Kumbh Sans";
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 132%; /* 26.4px */
    letter-spacing: -0.4px;
  }
  
  .blog-description {
    color: #6b7280;
    font-family: "Kumbh Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 164%; /* 26.24px */
    margin: 22px 0;
  }
  
  .read-more {
    color: #6b7280;
    font-family: "Kumbh Sans";
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 25.2px; /* 180% */
    cursor: pointer;
  }
  
  .read-more svg {
    margin-left: 8px;
  }
  
  .read-more:hover .read-more svg {
    margin-left: 15px;
  }
  /* blog section ends */
  
  /* galler section starts */
  .gallery-section {
    margin-top: 150px;
  }
  
  .rk--hero--marquee {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    margin-top: 30px !important;
    display: flex;
  }
  .rk--hero--marquee .slide {
    display: flex;
    align-items: center;
    animation: 20s slide infinite linear;
    animation-delay: 0s;
  }
  .all-categories .rk--hero--marquee .slide .slider--item .img--area {
    width: 244px;
    height: 311px;
  }
  
  @keyframes slide {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-100%);
    }
  }
  
  .rk--hero--marquee .slide .slider--item {
    position: relative;
  }
  .rk--hero--marquee .slide .slider--item .img--area {
    width: 313px;
    height: 349px;
    position: relative;
  }
  
  .rk--hero--marquee .slide .slider--item .img--area img {
    width: 100%;
    height: 100%;
  }
  /* .rk--hero--marquee .slide .slider--item h3 {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 31.68px;
    letter-spacing: -0.48px;
    color: var(--white);
  } */
  .rk--hero--marquee:hover .slide {
    animation-play-state: paused;
  }
  /* galler section ends */
  
  /* Responsive Styles */
  @media (max-width: 1075px) {
    .home-page .search-wrapper {
      flex-direction: column !important;
    }
  }
  
  @media (max-width: 1024px) {
    .fishing-adventure-grid-container {
      gap: 16px;
    }
    .section-title {
      font-size: 36px; /* Smaller font size for section title */
      line-height: 1.3; /* Adjust line height */
    }
    .fishing-adventure-content-wrapper {
      margin: 0 30px 20px 30px; /* Adjust margins */
    }
  
    /* opportunity  starts*/
    .opportunity-section {
      flex-direction: column; /* Stack items vertically */
      gap: 48px; /* Reduce gap */
      margin-top: 100px; /* Adjust margin */
      align-items: flex-start;
    }
  
    .timeline-heading {
      font-size: 40px; /* Smaller title font size */
    }
  
    .timeline-container {
      max-width: 700px; /* Reduce container width */
    }
  
    .timeline-line {
      left: 35px;
    }
  
    .timeline-item {
      gap: 20px; /* Reduce gap between icon and content */
    }
  
    .timeline-item h3 {
      font-size: 18px; /* Smaller font size */
    }
  
    .timeline-item p {
      font-size: 14px; /* Smaller font size */
    }
  
    .timeline-item .timeline-icon {
      width: 70px; /* Smaller icon size */
      height: 70px;
    }
  
    .timeline-item .timeline-icon svg {
      width: 35px; /* Smaller SVG icon */
      height: 35px;
    }
    /* opportunity  ends*/
  
    /* species starts */
    .fish-species-container {
      grid-template-columns: repeat(2, 1fr); /* Use 2 columns */
      gap: 16px; /* Reduce gap */
    }
  
    .fish-species-item {
      padding: 30px 18px; /* Reduce padding */
      gap: 8px; /* Reduce internal gap */
    }
  
    .fish-species-item p {
      font-size: 18px; /* Smaller font size */
      padding: 8px 0; /* Reduce padding */
    }
  
    .fish-species-button-container,
    .fishing-techniques-button-container {
      margin-top: 50px; /* Adjust margin */
    }
    /* species ends */
  
    /* fishing techniques starts */
    .fishing-techniques-container {
      grid-template-columns: repeat(2, 1fr); /* Use 2 columns */
      gap: 16px; /* Reduce gap */
    }
  
    .fishing-techniques-item {
      padding: 45px 20px; /* Reduce padding */
      gap: 24px; /* Reduce internal gap */
    }
  
    .fishing-techniques-content h4 {
      font-size: 22px; /* Slightly smaller heading */
      line-height: 30px;
    }
  
    .fishing-techniques-content p {
      font-size: 16px; /* Slightly smaller paragraph */
      line-height: 28px;
      margin-top: 12px;
    }
    /* fishing techniques ends */
  
    /* blog section starts */
    .blog-grid {
      grid-template-columns: repeat(2, 1fr); /* Use 2 columns */
      gap: 30px; /* Reduce gap */
    }
  
    .blog-card {
      padding: 14px; /* Reduce card padding */
    }
  
    .blog-content {
      padding: 18px; /* Reduce content padding */
    }
  
    .blog-title {
      font-size: 18px; /* Slightly smaller title */
      line-height: 24px;
    }
  
    .blog-description {
      font-size: 14px; /* Slightly smaller description */
      line-height: 22px;
      margin: 18px 0;
    }
  
    .read-more {
      font-size: 13px; /* Slightly smaller read-more */
      line-height: 22px;
    }
    /* blog section ends */
  
    /* slider starts */
    .testimonial-section {
      padding: 80px 0; /* Reduce section padding */
    }
  
    .testimonial-card {
      padding: 30px 0 0 24px; /* Adjust card padding */
    }
  
    .description {
      font-size: 13px; /* Smaller font size */
      line-height: 22px;
      padding-right: 24px; /* Adjust padding */
    }
  
    .person-info .name {
      font-size: 16px; /* Smaller name font size */
      line-height: 21px;
    }
  
    .person-info .designation {
      font-size: 14px; /* Smaller designation font size */
      line-height: 24px;
    }
  
    .image-container img {
      max-width: 180px; /* Reduce image size */
      max-height: 180px;
    }
  
    .slick-slide {
      margin: 0 9px; /* Adjust margin for better spacing */
    }
  
    .slick-list {
      margin: 0 -9px; /* Adjust outer margin */
    }
    /* slider ends */
  
    .fishing-adventure-section {
      margin-top: 150px; /* Reduce top margin for better spacing */
    }
  
    .section-title {
      margin-bottom: 50px; /* Slightly reduce margin for tablets */
    }
  
    .gallery-section,
    .blog-section {
      margin-top: 100px;
    }
  
    .fishing-types-section {
      margin-top: 100px; /* Reduce margin-top for better spacing */
    }
  
    .fishing-types-card-wrapper {
      grid-template-columns: repeat(2, 1fr); /* Use 2 columns for tablet view */
      gap: 20px; /* Slightly reduce gap */
    }
  
    .fishing-types-card-title {
      font-size: 20px; /* Decrease font size */
      padding: 24px 48px; /* Adjust padding */
    }
  
    .fishing-types-btn-wrapper .common-btn {
      width: 150px !important;
      height: 48px !important; /* Reduce button size for tablet view */
    }
  }
  
  @media (max-width: 768px) {
    .fishing-adventure-grid-container {
      grid-template-columns: repeat(2, 1fr); /* Change to 2 columns */
    }
  
    .fishing-adventure-content-wrapper {
      margin: 0 20px 15px 20px; /* Further reduce margins */
      padding: 20px 10px; /* Adjust padding */
    }
    .fishing-adventure-content-left h3 {
      font-size: 18px; /* Smaller font size */
    }
    .fishing-adventure-content-left p {
      font-size: 12px; /* Smaller font size */
    }
    .fishing-adventure-content-right {
      width: 38px;
      height: 38px;
    }
  
    /* opportunity starts */
    .opportunity-section {
      gap: 32px; /* Further reduce gap */
    }
  
    .timeline-heading {
      font-size: 32px; /* Smaller title font size */
      margin-bottom: 30px; /* Adjust margin */
    }
  
    .timeline-container {
      /* padding: 0 20px; */
      max-width: 100%; /* Full width */
    }
  
    .timeline-line {
      left: 28px; /* Adjust line position */
    }
  
    .timeline-item {
      align-items: flex-start; /* Align items to the left */
      gap: 15px; /* Reduce gap */
      margin-bottom: 30px; /* Reduce bottom margin */
    }
  
    .timeline-item .timeline-icon {
      width: 60px; /* Smaller icon size */
      height: 60px;
    }
  
    .timeline-item .timeline-icon svg {
      width: 30px; /* Smaller SVG icon */
      height: 30px;
    }
  
    .timeline-item .timeline-content {
      max-width: 100%; /* Full width content */
    }
    /* opportunity ends */
  
    /* fish species starts */
    .fish-species-container {
      gap: 12px; /* Further reduce gap */
    }
  
    .fish-species-section,
    .fishing-techniques-section {
      margin-top: 100px; /* Adjust top margin */
    }
  
    .fish-species-item {
      padding: 25px 16px; /* Further reduce padding */
    }
  
    .fish-species-item p {
      font-size: 16px; /* Smaller font size */
      padding: 6px 0; /* Adjust padding */
    }
  
    .fish-species-button-container,
    .fishing-techniques-button-container {
      margin-top: 40px; /* Further reduce margin */
    }
    /* fish species ends */
  
    /* fish technique starts */
    .fishing-techniques-container {
      gap: 12px; /* Further reduce gap */
    }
  
    .fishing-techniques-item {
      padding: 40px 16px; /* Further reduce padding */
      gap: 20px; /* Adjust internal gap */
    }
  
    .fishing-techniques-item img {
      max-width: 160px; /* Smaller image size */
    }
  
    .fishing-techniques-content h4 {
      font-size: 20px; /* Smaller heading size */
      line-height: 28px;
    }
  
    .fishing-techniques-content p {
      font-size: 14px; /* Smaller paragraph */
      line-height: 26px;
    }
    /* fish technique ends */
  
    /* blog section starts */
    .blog-grid {
      gap: 20px; /* Further reduce gap */
    }
  
    .blog-card {
      padding: 12px; /* Reduce card padding */
    }
  
    .blog-content {
      padding: 16px; /* Further reduce content padding */
    }
  
    .date-badge {
      top: 0px; /* Adjust position */
      right: 20px;
      width: 45px; /* Adjust width */
      padding: 10px; /* Adjust padding */
    }
  
    .date-badge span {
      font-size: 9px; /* Smaller text */
    }
  
    .blog-title {
      font-size: 16px; /* Smaller title size */
      line-height: 22px;
    }
  
    .blog-description {
      font-size: 13px; /* Smaller description */
      line-height: 20px;
      margin: 16px 0;
    }
  
    .read-more {
      font-size: 12px; /* Smaller read-more */
      line-height: 20px;
    }
  
    .read-more svg {
      margin-left: 6px;
    }
  
    .read-more:hover .read-more svg {
      margin-left: 12px;
    }
    /* blog section ends */
  
    /* slider starts */
    .home-page .testimonial-section .section-title {
      margin-bottom: 40px !important;
    }
  
    .testimonial-section {
      padding: 60px 0; /* Further reduce section padding */
    }
  
    .testimonial-card {
      padding: 24px 0 0 20px; /* Adjust card padding */
    }
  
    .description {
      font-size: 12px; /* Smaller font size */
      line-height: 20px;
      padding-right: 20px; /* Adjust padding */
    }
  
    .person-info .name {
      font-size: 14px; /* Smaller name font size */
      line-height: 20px;
    }
  
    .person-info .designation {
      font-size: 13px; /* Smaller designation font size */
      line-height: 22px;
    }
  
    .image-container img {
      max-width: 150px; /* Further reduce image size */
      max-height: 150px;
    }
  
    .slick-slide {
      margin: 0 8px; /* Adjust margin for better spacing */
    }
  
    .slick-list {
      margin: 0 -8px; /* Adjust outer margin */
    }
    /* slider ends */
  
    .fishing-adventure-section {
      margin-top: 100px; /* Further reduce top margin */
    }
  
    .section-title {
      margin-bottom: 40px; /* Slightly reduce margin for tablets */
    }
  
    .gallery-section,
    .blog-section {
      margin-top: 90px;
    }
  
    .fishing-types-section {
      margin-top: 80px; /* Further reduce margin-top */
    }
  
    .fishing-types-card {
      border-radius: 6px; /* Adjust border-radius for mobile */
    }
  
    .fishing-types-card-title {
      font-size: 18px; /* Further decrease font size */
      padding: 20px 32px; /* Adjust padding */
    }
  
    .fishing-types-btn-wrapper .common-btn {
      width: 140px !important;
      height: 44px !important; /* Further reduce button size for mobile view */
    }
  }
  
  @media (max-width: 480px) {
    .fishing-adventure-grid-container {
      grid-template-columns: repeat(1, 1fr); /* Single column layout */
      gap: 15px; /* Reduce gap */
    }
    .section-title {
      font-size: 28px; /* Smaller font size for mobile */
      margin-bottom: 40px; /* Reduce margin */
    }
    .fishing-adventure-card {
      box-shadow: none; /* Remove box shadow for small screens */
      border: none; /* Remove border */
    }
    .fishing-adventure-content-wrapper {
      margin: 0 15px 10px 15px; /* Adjust margin */
    }
    .fishing-adventure-content-left h3 {
      font-size: 16px; /* Smaller font size */
    }
    .fishing-adventure-content-left p {
      font-size: 11px; /* Smaller font size */
    }
  
    /* opportunity starts */
    .opportunity-section {
      margin-top: 60px; /* Smaller top margin */
    }
  
    .timeline-heading {
      font-size: 24px; /* Smaller font size */
    }
  
    .timeline-badge {
      font-size: 14px; /* Smaller badge font size */
    }
  
    .timeline-item {
      margin-bottom: 20px; /* Reduce bottom margin */
      gap: 10px; /* Further reduce gap */
    }
  
    .timeline-item .timeline-icon {
      width: 50px; /* Smaller icon size */
      height: 50px;
    }
  
    .timeline-item .timeline-icon svg {
      width: 25px; /* Smaller SVG icon */
      height: 25px;
    }
  
    .timeline-item h3 {
      font-size: 16px; /* Smaller font size */
    }
  
    .timeline-item p {
      font-size: 12px; /* Smaller font size */
    }
  
    .timeline-line {
      left: 25px; /* Adjust line position */
    }
    /* opportunity ends */
  
    /* species starts */
    .fish-species-container {
      grid-template-columns: repeat(1, 1fr);
      gap: 12px; /* Further reduce gap */
    }
  
    .fish-species-item {
      padding: 20px 12px; /* Reduce padding for small screens */
    }
  
    .fish-species-item p {
      font-size: 14px; /* Smaller font size */
      padding: 6px 0;
    }
  
    .fish-species-section,
    .fishing-techniques-section {
      margin-top: 80px; /* Smaller top margin */
    }
  
    .fish-species-button-container,
    .fishing-techniques-button-container {
      margin-top: 30px; /* Smaller button container margin */
    }
    /* species ends */
  
    /* fish technique starts */
    .fishing-techniques-container {
      grid-template-columns: repeat(1, 1fr);
      gap: 12px;
    }
  
    .fishing-techniques-item {
      padding: 35px 12px; /* Reduce padding further */
      gap: 16px; /* Smaller internal gap */
    }
  
    .fishing-techniques-item img {
      max-width: 140px; /* Further reduce image size */
    }
  
    .fishing-techniques-content h4 {
      font-size: 18px; /* Smaller heading size */
      line-height: 26px;
    }
  
    .fishing-techniques-content p {
      font-size: 13px; /* Smaller paragraph size */
      line-height: 24px;
      margin-top: 10px;
    }
    /* fish technique ends */
  
    /* blog section starts */
    .blog-grid {
      grid-template-columns: 1fr; /* Single column layout */
      gap: 12px; /* Further reduce gap */
    }
  
    .blog-card {
      padding: 10px; /* Reduce card padding further */
    }
  
    .blog-content {
      padding: 12px; /* Further reduce content padding */
    }
  
    .date-badge {
      top: 0px;
      right: 15px;
      width: 40px; /* Further adjust width */
      padding: 8px; /* Further adjust padding */
    }
  
    .date-badge span {
      font-size: 8px; /* Smaller text */
    }
  
    .blog-title {
      font-size: 14px; /* Smaller title size */
      line-height: 20px;
    }
  
    .blog-description {
      font-size: 12px; /* Smaller description */
      line-height: 18px;
      margin: 12px 0;
    }
  
    .read-more {
      font-size: 11px; /* Smaller read-more */
      line-height: 18px;
    }
  
    .read-more svg {
      margin-left: 4px;
    }
  
    .read-more:hover .read-more svg {
      margin-left: 8px;
    }
    /* blog section ends */
  
    /* slider starts */
    .home-page .testimonial-section .section-title {
      margin-bottom: 20px !important;
    }
  
    .testimonial-section {
      padding: 40px 0; /* Reduce section padding further */
    }
  
    .testimonial-card {
      padding: 20px 0 0 16px; /* Further reduce card padding */
    }
  
    .description {
      font-size: 11px; /* Smaller font size */
      line-height: 18px;
      padding-right: 16px; /* Adjust padding */
    }
  
    .person-info .name {
      font-size: 12px; /* Smaller name font size */
      line-height: 18px;
    }
  
    .person-info .designation {
      font-size: 11px; /* Smaller designation font size */
      line-height: 20px;
    }
  
    .image-container img {
      max-width: 120px; /* Further reduce image size */
      max-height: 120px;
    }
  
    .slick-slide {
      margin: 0 6px; /* Adjust margin for better spacing */
    }
  
    .slick-list {
      margin: 0 -6px; /* Adjust outer margin */
    }
    /* slider ends */
  
    .rk--hero--marquee .slide .slider--item .img--area {
      width: 235px !important;
      height: 250px !important;
    }
  
    .fishing-adventure-section {
      margin-top: 80px; /* Reduce top margin further for compact layout */
    }
  
    .section-title {
      margin-bottom: 30px; /* Slightly reduce margin for tablets */
    }
  
    .gallery-section,
    .blog-section {
      margin-top: 60px;
    }
  
    .fishing-types-section {
      margin-top: 60px; /* Further reduce margin-top for smaller devices */
    }
  
    .fishing-types-card-title {
      font-size: 16px; /* Further decrease font size for compact view */
      padding: 16px 24px; /* Adjust padding for small screens */
    }
  
    .fishing-types-btn-wrapper .common-btn {
      width: 120px !important;
      height: 40px !important; /* Compact button size for very small screens */
    }
  
    .fishing-types-card-wrapper {
      gap: 12px; /* Reduce gap for a tighter layout */
    }
  }
  