.about-section .about-text {
    max-width: 1100px !important;
    /* wider */
    margin: 0 auto !important;
    text-align: justify;
    display: block;
    line-height: 1.7;
}

.about-title {
    text-align: center !important;
    width: 100%;
}


/* Bottom image (overlapping) */
.about-img{
    position: relative;
    overflow: hidden;        /* ✅ hard stop: cannot enter left column */
}

/* top image */
.about-img .img-1{
    width: 70%;
    height: auto;
    display: block;
    border: 8px solid #8b6f1d;
    background: #fff;
    position: relative;
    z-index: 1;
}

/* overlapping image */
.about-img .img-2{
    width: 70%;              /* ✅ smaller, stays inside column */
    height: auto;
    display: block;

    margin-top: -50px;      /* ✅ overlap */
    margin-left: 48px;       /* ✅ move RIGHT (never left) */

    border: 8px solid #8b6f1d;
    background: #fff;

    position: relative;
    z-index: 2;
}

/* scrollable row */
.features-scroll {
    display: flex;
    overflow-x: auto;
    gap: 1.5rem;
    /* padding: 1rem 0; */
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    /* Firefox */
}

.features-scroll::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari */
}

.feature-item {
    display: flex;
    align-items: center;
    white-space: nowrap;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .features-scroll {
        justify-content: center;
        flex-wrap: wrap;
    }

    .feature-item {
        white-space: normal;
        flex: 0 1 calc(25% - 1.5rem);
    }

    .about-img{
        overflow: visible;
        margin-top: 24px;
    }

    /* top image – slightly narrower */
    .about-img .img-1{
        width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    /* second image – smaller + centered */
    .about-img .img-2{
        width: 92%;
        margin-top: 16px;   /* no overlap on mobile */
        margin-left: auto;
        margin-right: auto;
    }
}

/* Footer */
/* footer {
    background-image: url('http://127.0.0.1:8000/uploads/general/footer.jpg');
    color: #FFFFFF;
} */

footer a {
   color: #ffffff;
    /* Golden orange from your logo */
}

footer a:hover {
    color: #F7B11D;
    /* Warm orange accent */
}

/* Footer Styling with Primary Color #4A3020 */
.footer-section {
    background-image: url('/uploads/general/footer.jpg');
    color: #f5f5f5;
}

.footer-menu-wrap {
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Widget Title */
.footer-widget .widget-title h6 {
    color: #F7B11D !important;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Footer Logo */
.footer-logo {
    display: inline-block;
    margin-bottom: 20px;
}

.footer-logo img {
    filter: brightness(1.1);
}

/* Contact List */
.contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.single-contact {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.single-contact .icon {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.single-contact .icon img {
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(1);
}

.single-contact .content span {
    display: block;
    color: #d4c4b0;
    font-size: 13px;
    margin-bottom: 5px;
}

.single-contact .content a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.single-contact .content a:hover {
    color: #d4c4b0;
}

/* Widget List */
.widget-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.widget-list li {
    margin-bottom: 12px;
}

.widget-list li a {
    color: #e0e0e0;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    padding-left: 15px;
}

.widget-list li a:before {
    content: "›";
    position: absolute;
    left: 0;
    color: #d4c4b0;
    transition: left 0.3s ease;
}

.widget-list li a:hover {
    color: #ffffff;
    padding-left: 20px;
}

.widget-list li a:hover:before {
    left: 5px;
}

/* Footer Bottom */
.footer-bottom {
    padding: 25px 0;
    background-color: #3a2618;
    /* background-color: #F7B11D; */
}

.copyright-and-payment-method-area {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.copyright-and-payment-method-area p {
    margin: 0;
    /* color: #d4c4b0; */
    color: #fff;
    font-size: 14px;
}

.copyright-and-payment-method-area p a {
    color: #fff  !important;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.copyright-and-payment-method-area p a:hover {
    color: #d4c4b0;
}

/* Payment Methods */
.payment-method-area {
    display: flex;
    align-items: center;
    gap: 15px;
}

.payment-method-area span {
    color: #d4c4b0;
    font-size: 14px;
}

.payment-method-area ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 10px;
}

.payment-method-area ul li img {
    height: 30px;
    width: auto;
    filter: brightness(1.2);
    transition: transform 0.3s ease;
}

.payment-method-area ul li img:hover {
    transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 991px) {
    .footer-section {
        padding: 40px 0 0;
    }

    .footer-widget {
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .copyright-and-payment-method-area {
        flex-direction: column;
        text-align: center;
    }

    .payment-method-area {
        flex-direction: column;
    }
}



/* breadcrumb */
/* Breadcrumb Container */
.breadcrumb-wrap {
    width: 100%;
    padding: 12px 0;
     background-color: #f8f9fa;
}

.safari-breadcrumb {
    margin: 0;
    padding: 0;
    background: transparent;
    font-size: 14px;
    color: #6c757d; /* muted gray */
}

.safari-breadcrumb .breadcrumb-item a {
    color: #6c757d;
    text-decoration: none;
}

.safari-breadcrumb .breadcrumb-item a:hover {
    text-decoration: underline;
}

.safari-breadcrumb .breadcrumb-item.active {
    color: #6c757d;
}

/* Arrow separator exactly like screenshot */
.safari-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
    content: "›";
    padding: 0 8px;
    color: #adb5bd;
}


/* Demo Content */
.demo-content {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.demo-content h1 {
    color: #4A3020;
    margin-bottom: 15px;
}

.demo-content p {
    color: #666;
    line-height: 1.6;
}


.single-contact-contact {
    flex-direction: column; /* stack children vertically */
}

.home1-offer-banner-section {
    background-size: cover;
    background-position: center;
    padding: 80px 0;
    position: relative;
}

.banner-content {
    text-align: center;
    color: #ffffff;
    max-width: 700px;
    margin: 0 auto;
}

.banner-content span {
    display: block;
    font-size: 16px;
    font-weight: 500;
    color: #d4c4b0;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.banner-content h2 {
    font-size: 42px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.3;
}

.banner-content .cta-description {
    font-size: 18px;
    color: #f5f5f5;
    margin-bottom: 35px;
    line-height: 1.6;
}


@media (max-width: 768px) {
    .home1-offer-banner-section {
        padding: 60px 0;
    }

    .banner-content h2 {
        font-size: 32px;
    }

    .banner-content .cta-description {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .banner-content h2 {
        font-size: 26px;
    }

    .banner-content span {
        font-size: 14px;
    }
}

/* why section */
/* Blue section like the screenshot */
.why-choose-visa-section.why-blue{
  background: #D99500; /* close to the screenshot blue */
  padding: 90px 0;
}

.why-choose-visa-section.why-blue .section-title{
  margin-bottom: 20px;
}

.why-choose-visa-section.why-blue .why-pill{
  display: inline-block;
  padding: 10px 22px;
  border: 2px solid rgba(255,255,255,.75);
  border-radius: 999px;
  color: #fff;
  font-weight: 700;
  letter-spacing: .08em;
  font-size: 12px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.why-choose-visa-section.why-blue .why-title{
  color: #fff;
  font-size: 44px;
  line-height: 1.2;
  margin: 0;
}

/* cards */
.why-choose-visa-section.why-blue .why-card{
  background: transparent; /* like screenshot */
  padding: 0;
  border: 0;
  box-shadow: none;
  color: #fff;
}

/* icon */
.why-choose-visa-section.why-blue .why-icon{
  width: 56px;
  height: 56px;
  color: #fff;
  margin-bottom: 18px;
  display: inline-block;
}

/* headings and text inside card */
.why-choose-visa-section.why-blue .why-card h5{
  color: #fff;
  font-size: 22px;
  margin-bottom: 10px;
}

.why-choose-visa-section.why-blue .why-card p{
  color: rgba(255,255,255,.88);
  margin: 0;
  font-size: 15px;
  line-height: 1.7;
}

/* responsive tweaks */
@media (max-width: 991px){
  .why-choose-visa-section.why-blue{
    padding: 70px 0;
  }
  .why-choose-visa-section.why-blue .why-title{
    font-size: 34px;
  }
}


/* footer list */
.contact-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.contact-list i {
    font-size: 18px;
    color: #25d366; /* change if needed */
}

/* logo affilliation */
.affiliation-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.affiliation-item {
    margin-bottom: 16px;
}

.affiliation-item a {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.affiliation-item img {
    max-width: 140px;
    height: auto;
}

.affiliation-text {
    font-size: 13px;
    color: #6c757d; /* Bootstrap muted */
    white-space: nowrap;
}

/* tour highlihts */
.topbar-area a { color:#fff; text-decoration:none; }
.topbar-area a:hover { opacity:.9; }

.topbar-icon{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width:32px;
    height:32px;
    border-radius:999px;
    background: rgba(255,255,255,.12);
}

.topbar-icon i{ font-size:18px; }


/* gallery */

.gallery-section {
    background: #fff;
}

.gallery-header h3 {
    font-weight: 700;
}

.gallery-header p {
    opacity: 0.75;
}

/* Card */
.gallery-card {
    position: relative;
    display: block;
    border-radius: 14px;
    overflow: hidden;
    background: #f3f3f3;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08);
    transform: translateZ(0);
}

/* Consistent image ratio */
.gallery-img {
    width: 100%;
    aspect-ratio: 4 / 3;      /* makes the grid look clean */
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease;
}

/* Hover overlay */
.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0) 30%,
        rgba(0, 0, 0, 0.55) 100%
    );
    opacity: 0;
    transition: opacity 0.25s ease;
    display: flex;
    align-items: flex-end;
    padding: 12px;
}

.gallery-caption {
    color: #fff;
    font-size: 0.95rem;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Hover effects */
.gallery-card:hover .gallery-img {
    transform: scale(1.06);
}

.gallery-card:hover .gallery-overlay {
    opacity: 1;
}

/* Keyboard focus (accessibility) */
.gallery-card:focus {
    outline: 3px solid rgba(37, 211, 102, 0.45);
    outline-offset: 4px;
}

/* Whatsapp */


/* top hide svg on mobile */
