/* Top Decorative Strip */
.top-strip{
    height:3px;
background: linear-gradient(135deg, #0B5ED7, #003B8E);}

/* Navbar */
.custom-navbar{
    background: #FF5722;
    padding:15px 0;
    border-bottom:3px dashed #003B8E;
}

.brand-text{
    font-family:'Playfair Display',serif;
    font-weight:700;
    color:#5a3b1c;
}

/* Nav Links */
.nav-link{
    color:white !important;
    font-weight:500;
    margin:0 10px;
    transition:0.3s;
}


/* Call Button */
.call-btn{
    background:white;
    color:#003B8E;
    padding:8px 20px;
    border-radius:30px;
    text-decoration:none;
    font-weight:500;
    transition:0.3s;
}

.call-btn:hover{
    background:#FF5722;
    color:#fff;
}

/* Toggler */
.navbar-toggler{
    border:none;
}

.navbar-toggler:focus{
    box-shadow:none;
}


/* Section */
.services-section{
    padding:30px 0;
    background-color: white;
}

/* Title */
.section-title{
    font-family:'Playfair Display',serif;
    font-size:38px;
    font-weight:700;
    color:#003B8E ;
}

/* Card */
.service-card{
    background:#edeff1;
    border-radius:20px;
    padding:30px 25px;
    box-shadow:0 10px 25px rgba(0,0,0,0.08);
    border:2px dashed #003B8E;
    transition:0.3s ease;
    height:100%;
}

.service-card:hover{
    transform:translateY(-6px);
}

/* Icon Image */
.service-icon{
    height:70px;
    margin-bottom:15px;
}

/* Heading */
.service-card h4{
    font-family:'Playfair Display',serif;
    color:#003B8E;
    font-weight:600;
    margin-bottom:10px;
}

/* Paragraph */
.service-card p{
    font-size:14px;
    color:#003B8E;
}

/* List */
.service-list{
    list-style:none;
    padding:0;
    margin:18px 0;
}

.service-list li{
    font-size:14px;
    margin-bottom:10px;
    color:#003B8E !important;
    display:flex;
    align-items:center;
    gap:8px;
}

/* Golden Check Icon */
.service-list i{
    color:#003B8E !important;
    font-size:15px;
}

/* Button */
.service-btn{
    display:inline-block;
    background:#FF5722 !important;
    color:#fff;
    padding:10px 22px;
    border-radius:30px;
    font-size:14px;
    text-decoration:none;
    transition:0.3s;
    border: 2px solid #003B8E;
}

.service-btn:hover{
    background:#1b5e20;
    color:#fff;
}

/* Responsive */
@media(max-width:992px){
    .section-title{
        font-size:30px;
    }
}

@media(max-width:576px){
    .section-title{
        font-size:24px;
    }

    .service-list{
        text-align:center;
        display: none;
    }

    .service-list li{
        justify-content:center;
    }
}
/* Service List Wrapper */
.service-list{
    list-style:none;
    padding:0;
    margin:20px auto;
    max-width:220px;   /* Control width so it stays centered */
}

/* Each Item */
.service-list li{
    display:flex;
    align-items:center;
    gap:8px;
    font-size:14px;
    color:#5a3b1c;
    margin-bottom:10px;
}

/* Icon */
.service-list i{
    color:#c1792b;
    font-size:16px;
    min-width:18px;   /* Keeps icons perfectly aligned */
}


/* ===== Cab Section ===== */



.cab-section{
    background:#f4f5f7;
    border-top:4px solid #003B8E ;
    border-bottom:8px solid #003B8E ;
    padding:30px 0;
}
.cab-features{
    display:flex;
    justify-content:center;
    gap:15px;
    margin:10px 0;
    flex-wrap:wrap;
}

.cab-features span{
    font-size:13px;
    color:#003B8E ;
    display:flex;
    align-items:center;
    gap:6px;
    background:#ffdbd0;
    padding:5px 10px;
    border-radius:20px;
    border:1px solid #e2c7a3;
}

.cab-features i{
    color:#003B8E ;
    font-size:14px;
}
/* Title */
.cab-title{
    font-family:'Playfair Display', serif;
    font-size:38px;
    font-weight:700;
    color:#003B8E ;
}

.cab-subtitle{
    font-size:14px;
    color:#003B8E ;
    max-width:600px;
    margin:auto;
}

/* Card */
.cab-card{
    background:#ece3e0;
    border-radius:20px;
    padding:25px;
    border:1px solid #003B8E ;
    box-shadow:0 10px 25px rgba(0,0,0,0.08);
    transition:0.3s ease;
    text-align:center;
    height:100%;
}

.cab-card:hover{
    transform:translateY(-8px);
}

/* Image */
.cab-img{
    width:100%;
    height:180px;
    object-fit:contain;
    margin-bottom:15px;
}

/* Name */
.cab-name{
    font-family:'Playfair Display', serif;
    color:#003B8E ;
    font-weight:600;
    margin-bottom:5px;
}

/* Description */
.cab-desc{
    font-size:14px;
    color:#003B8E ;
}

/* Price */
.cab-price{
    font-size:22px;
    font-weight:700;
    color:#c1792b;
    margin:10px 0;
}

.cab-price span{
    font-size:14px;
    font-weight:400;
    color:#7a5a3b;
}

/* Button */
.cab-btn{
    display:inline-block;
    background:#FF5722;
    color:#fff;
    padding:10px 22px;
    border-radius:30px;
    font-size:14px;
    text-decoration:none;
    transition:0.3s;
}

.cab-btn:hover{
    background:#d43b0d;
    color:#fff;
}

/* ===== Responsive ===== */

@media(max-width:992px){
    .cab-title{
        font-size:30px;
    }
}

@media(max-width:576px){
    .cab-title{
        font-size:24px;
    }
    .cab-img{
        height:150px;
    }
}


/* ===== Contact Section ===== */

.contact-section{
    background:#e4e7eb ;
    padding:30px 0;
}

.contact-section a{
    text-decoration: none;
}
/* Contact Box */
.contact-box{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:15px;
}

.contact-icon{
    font-size:22px;
    color:#003B8E ;
}

.contact-label{
    font-size:13px;
    color:#003B8E ;
    margin:0;
}

.contact-number{
    font-size:18px;
    font-weight:600;
    color:#003B8E ;
    margin:0;
}

/* WhatsApp Circle */
.whatsapp-circle{
    width:80px;
    height:80px;
    background:#FF5722;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    margin:auto;
    box-shadow:0 8px 20px rgba(0,0,0,0.15);
}

.whatsapp-circle i{
    font-size:35px;
    color:#fff;
}

/* Small Info Row */
.small-info i{
    color:#003B8E ;
    font-size:18px;
    margin-bottom:6px;
}

.small-info p{
    font-size:13px;
    color:#003B8E ;
    margin:0;
}

/* Responsive */
@media(max-width:992px){
    .contact-box{
        flex-direction:column;
    }
}

@media(max-width:576px){
    .whatsapp-circle{
        width:70px;
        height:70px;
    }
    .whatsapp-circle i{
        font-size:28px;
    }
}



/* ===== Service Grid Section ===== */

.service-grid-section{
    background:#f3e3cf;
    border-top:4px solid #c1792b;
    border-bottom:4px solid #c1792b;
    padding:30px 0;
}

/* Title */
.service-grid-title{
    font-family:'Playfair Display', serif;
    font-size:36px;
    font-weight:700;
    color:#5a3b1c;
}

.service-grid-subtitle{
    font-size:14px;
    color:#7a5a3b;
    max-width:600px;
    margin:auto;
}

/* Card */
.service-box{
    background:#f9eddc;
    border-radius:18px;
    padding:30px 20px;
    border:1px solid #e2c7a3;
    box-shadow:0 10px 25px rgba(0,0,0,0.08);
    transition:0.3s ease;
    height:100%;
}

.service-box:hover{
    transform:translateY(-8px);
}

/* Icon */
.service-icon{
    font-size:40px;
    color:#b46b2c;
    margin-bottom:15px;
}

/* Heading */
.service-box h5{
    font-family:'Playfair Display', serif;
    color:#5a3b1c;
    font-weight:600;
    margin-bottom:8px;
}

/* Paragraph */
.service-box p{
    font-size:13px;
    color:#7a5a3b;
    margin-bottom:15px;
}

/* Button */
.service-btn{
    display:inline-block;
    background:#2e7d32;
    color:#fff;
    padding:8px 18px;
    border-radius:30px;
    font-size:13px;
    text-decoration:none;
    transition:0.3s;
}

.service-btn:hover{
    background:#1b5e20;
    color:#fff;
}

/* Responsive */
@media(max-width:992px){
    .service-grid-title{
        font-size:28px;
    }
}

@media(max-width:576px){
    .service-grid-title{
        font-size:24px;
    }
}




/* ===== Tour Section ===== */

.tour-section{
    background:#f3e3cf;
    border-top:4px solid #c1792b;
    border-bottom:4px solid #c1792b;
    padding:30px 0;
}
.tour-locations{
    font-size:12px;
    color:#7a5a3b;
    margin-bottom:10px;
}

.tour-inclusion{
    font-size:12px;
    color:#5a3b1c;
    margin:10px 0;
}

.tour-inclusion ul{
    list-style:none;
    padding:0;
    margin-top:5px;
}

.tour-inclusion li{
    display:flex;
    align-items:center;
    gap:6px;
    margin-bottom:5px;
}

.tour-inclusion i{
    color:#c1792b;
    font-size:12px;
}
/* Title */
.tour-title{
    font-family:'Playfair Display', serif;
    font-size:36px;
    font-weight:700;
    color:#5a3b1c;
}

/* Card */
.tour-card{
    background:#f9eddc;
    border-radius:18px;
    overflow:hidden;
    border:1px solid #e2c7a3;
    box-shadow:0 10px 25px rgba(0,0,0,0.08);
    transition:0.3s ease;
    height:100%;
}

.tour-card:hover{
    transform:translateY(-8px);
}

/* Image */
.tour-img{
    width:100%;
    height:220px;
    object-fit:cover;
}

/* Content */
.tour-content{
    padding:20px;
}

/* Heading */
.tour-content h5{
    font-family:'Playfair Display', serif;
    color:#5a3b1c;
    font-weight:600;
    margin-bottom:8px;
}

/* Description */
.tour-desc{
    font-size:13px;
    color:#7a5a3b;
    margin-bottom:10px;
}

/* Price */
.tour-price{
    font-size:14px;
    color:#7a5a3b;
    margin-bottom:15px;
}

.tour-price span{
    font-size:22px;
    font-weight:700;
    color:#c1792b;
}

.tour-price small{
    font-size:12px;
    color:#7a5a3b;
}

/* Button */
.tour-btn{
    display:inline-block;
    background:#2e7d32;
    color:#fff;
    padding:8px 18px;
    border-radius:30px;
    font-size:13px;
    text-decoration:none;
    transition:0.3s;
}

.tour-btn:hover{
    background:#1b5e20;
    color:#fff;
}

/* ===== Responsive ===== */

@media(max-width:992px){
    .tour-title{
        font-size:28px;
    }
}

@media(max-width:576px){
    .tour-title{
        font-size:24px;
    }
    .tour-img{
        height:180px;
    }
}


/* ===== Why Section ===== */

.why-section{
    background:#003B8E ;
  
    padding:30px 0;
}

.why-title{
    font-family:'Playfair Display', serif;
    font-size:34px;
    font-weight:700;
    color:white;
}

.rating-line{
    color:white;
    font-size:14px;
}

.rating-line span{
    color:white;
    margin-left:5px;
}

/* Box */
.why-box{
    background:#f9eddc;
    border-radius:18px;
    padding:30px;
    border:1px solid #e2c7a3;
    box-shadow:0 10px 25px rgba(0,0,0,0.08);
    height:100%;
}

/* List */
.why-list{
    list-style:none;
    padding:0;
}

.why-list li{
    margin-bottom:12px;
    font-size:14px;
    color:#003B8E;
}

.why-list i{
    color:#003B8E;
    margin-right:8px;
}

/* Buttons */
.why-btn-call,
.why-btn-whatsapp{
    padding:8px 18px;
    border-radius:30px;
    font-size:14px;
    text-decoration:none;
    color:#fff;
    display:inline-block;
}

.why-btn-call{
    background:#FF5722;
}

.why-btn-whatsapp{
    background:#25d366;
}

.why-btn-call:hover{
    background:#1b5e20;
}

.why-btn-whatsapp:hover{
    background:#1ebe5d;
}

/* Review */
.review-img{
    width:120px;
    height:120px;
    object-fit:cover;
    border-radius:15px;
}

.review-stars{
    color:#003B8E;
    font-size:14px;
}

.review-text{
    font-size:13px;
    color:#003B8E;
    margin-top:10px;
}

/* Responsive */
@media(max-width:992px){
    .why-title{
        font-size:26px;
    }
}


/* ===== Trusted Section ===== */

.trusted-section{
    background:#f3e3cf;
    border-top:4px solid #c1792b;
    border-bottom:4px solid #c1792b;
    padding:30px 0;
}

/* Title */
.trusted-title{
    font-family:'Playfair Display', serif;
    font-size:32px;
    font-weight:700;
    color:#5a3b1c;
}

.trusted-title span{
    color:#c1792b;
}

/* Card */
.trusted-card{
    background:#f9eddc;
    border-radius:18px;
    padding:20px;
    border:1px solid #e2c7a3;
    box-shadow:0 8px 20px rgba(0,0,0,0.06);
    text-align:center;
    transition:0.3s ease;
    height:100%;
}

.trusted-card:hover{
    transform:translateY(-6px);
}

/* Logo */
.trusted-card img{
    max-width:80px;
    margin-bottom:10px;
}

/* Text */
.trusted-card p{
    font-size:12px;
    color:#5a3b1c;
    margin:0;
}

/* Responsive */
@media(max-width:992px){
    .trusted-title{
        font-size:26px;
    }
}

@media(max-width:576px){
    .trusted-title{
        font-size:22px;
    }
}


/* ===== Footer ===== */

.main-footer{
    background:#f3e3cf;
    color:#5a3b1c;
}

/* Top Decorative Border */


/* Title */
.footer-title{
    font-family:'Playfair Display', serif;
    font-weight:700;
    margin-bottom:15px;
}

.footer-heading{
    font-weight:600;
    margin-bottom:15px;
}

/* Text */
.footer-text{
    font-size:14px;
    color:#7a5a3b;
}

/* Links */
.footer-links{
    list-style:none;
    padding:0;
}

.footer-links li{
    margin-bottom:8px;
}

.footer-links a{
    text-decoration:none;
    color:#5a3b1c;
    font-size:14px;
    transition:0.3s;
}

.footer-links a:hover{
    color:#c1792b;
    padding-left:5px;
}

/* Contact */
.footer-contact{
    font-size:14px;
    margin-bottom:8px;
}

.footer-contact i{
    color:#c1792b;
    margin-right:6px;
}

/* Social */
.footer-social a{
    display:inline-block;
    width:35px;
    height:35px;
    background:#c1792b;
    color:#fff;
    border-radius:50%;
    text-align:center;
    line-height:35px;
    margin-right:8px;
    transition:0.3s;
}

.footer-social a:hover{
    background:#a65f1c;
}

/* Call Button */
.footer-call-btn{
    display:inline-block;
    background:#2e7d32;
    color:#fff;
    padding:8px 18px;
    border-radius:30px;
    text-decoration:none;
    font-size:14px;
    margin-top:10px;
    transition:0.3s;
}

.footer-call-btn:hover{
    background:#1b5e20;
}

/* Bottom */
.footer-bottom{
    background:#e6d2b7;
    padding:15px 0;
    font-size:13px;
    margin-top:20px;
}

/* Responsive */
@media(max-width:992px){
    .footer-title{
        font-size:20px;
    }
}

@media(max-width:576px){
    .footer-text{
        font-size:13px;
    }
}


/* Heading */
.lx-heading {
  font-weight: 700;
  font-size: 28px;
  color: #1a1a2e;
}

/* Table */
.lx-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

/* Header */
.lx-table thead {
  background: linear-gradient(45deg, #ff6a00, #ff3c83);
  color: #fff;
}

.lx-table th {
  padding: 14px;
}

/* Body */
.lx-table td {
  padding: 14px;
  background: #ffffff;
}

/* Alternate Rows */
.lx-table tbody tr:nth-child(even) td {
  background: #f4f7ff;
}

/* Hover */
.lx-table tbody tr:hover td {
  background: #e8edff;
  transition: 0.3s;
}

/* Badge */
.lx-badge {
  background: linear-gradient(45deg, #FF5722, #e0633d);
  padding: 7px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
  color: white;
}
/* Mobile Optimization */
@media (max-width: 576px) {

  .lx-heading {
    font-size: 20px;
  }

  .lx-table th {
    font-size: 13px;
    padding: 10px;
  }

  .lx-table td {
    font-size: 12px;
    padding: 10px;
  }

  .lx-badge {
    font-size: 11px;
    padding: 5px 10px;
  }

}
/* Common Style */
.lx-float-call,
.lx-float-whatsapp {
  position: fixed;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 20px;
  z-index: 9999;
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
  transition: 0.3s;
  text-decoration: none;
}

/* Call Button (Left) */
.lx-float-call {
  left: 15px;
  bottom: 20px;
  background: linear-gradient(45deg, #ff512f, #dd2476);
}

/* WhatsApp Button (Right) */
.lx-float-whatsapp {
  right: 15px;
  bottom: 20px;
  background: linear-gradient(45deg, #25D366, #128C7E);
}

/* Hover Effect */
.lx-float-call:hover,
.lx-float-whatsapp:hover {
  transform: scale(1.1);
  color: #fff;
}






.my-custom-carousel .my-carousel-item {
  padding: 20px;
  border-radius: 12px;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  margin: 5px;
  background-color: #f8f8f8;
}
.my-review-card img.my-review-img {
  width: 70px !important;
  height: 70px !important;
  border-radius: 50%;
  object-fit: cover;
}


.my-review-card img.my-review-img2 {
  width: 30px !important;
  height: 30px !important;
  border-radius: 50%;
  object-fit: cover;
  position: relative;
  margin-top: 50px;
margin-left: -25px;
}

.my-review-header {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}
.my-review-name {
  font-weight: bold;
  margin-left: 12px;
}
.my-review-verified {
  color: #3498db;
  margin-left: 6px;
}
.my-review-date {
  font-size: 13px;
  color: #7f8c8d;
  margin-left: 10px;
}
.my-review-rating {
  color: #fcbf02;
  margin: 12px 0;
}
.my-review-text {
  font-size: 16px;
}
.owl-nav button.owl-prev,
.owl-nav button.owl-next {
  background: #3498db;
  border: none;
  border-radius: 50%;
  color: #fff;
  font-size: 22px;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.owl-nav button.owl-prev {
  left: -55px;
}
.owl-nav button.owl-next {
  right: -55px;
}

/* Media Queries */
@media (max-width: 768px) {
  .my-custom-carousel .my-carousel-item {
    padding: 15px;
  }
  .my-review-card img.my-review-img {
    width: 60px;
    height: 60px;
  }
  .my-review-text {
    font-size: 14px;
  }
}
@media (max-width: 576px) {
  .my-custom-carousel .my-carousel-item {
    padding: 10px;
  }
  .my-review-card img.my-review-img {
    width: 50px;
    height: 50px;
  }
  .my-review-text {
    font-size: 13px;
  }
}








  /* Media query for mobile devices */
  @media (max-width: 768px) {
    .googlereview {
        text-align: center;
    }
    .star-rating {
font-size: 15px;
    }
}

.googlelogofull {
    width: 100px;
    height: 40px;
    margin-right: 10px;
}

.googlereview {
    display: flex;
    align-items: center;
    justify-content: center;
}

.star-rating {
    margin-left: 10px;
}

.btn-center {
    display: flex;
    justify-content: center;
    margin-top: 10px;
}


.bgreviews{
  background-color:#f8f8f8 ;
  padding-top: 30px;
  padding-bottom: 30px;
  border-radius: 20px;
}


/* Heading */
.lx-faq-heading {
  font-weight: 700;
  font-size: 28px;
  color: #1a1a2e;
}

/* Accordion Item */
.lx-faq-item {
  border: none;
  margin-bottom: 12px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 6px 15px rgba(0,0,0,0.06);
}

/* Button */
.lx-faq-item .accordion-button {
  background: #f8f9ff;
  font-weight: 600;
  font-size: 15px;
}

/* Active */
.lx-faq-item .accordion-button:not(.collapsed) {
  background: linear-gradient(45deg, #ff512f, #ee694f);
  color: #fff;
}

/* Body */
.lx-faq-item .accordion-body {
  font-size: 14px;
  color: #444;
  background: #fff;
}




.boximg{
    background-color: white;
    padding: 10px;
    border-radius: 10px;
    margin-top: 10px;
}


/* ===== Main Section ===== */
.animated-cta {
    background: white;
    padding: 20px 20px;
    border-radius: 16px;
    text-align: center;
    overflow: hidden;
    border: 2px dashed #ee0979;
}

/* ===== Animated Gradient Text ===== */
.animated-cta-title {
    font-size: 32px;
    font-weight: 800;
    background: linear-gradient(90deg, #ff6a00, #ee0979, #00c6ff, #7f00ff);
    background-size: 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientMove 5s linear infinite;
}

/* Gradient Animation */
@keyframes gradientMove {
    0% { background-position: 0% }
    100% { background-position: 300% }
}

/* ===== Shine Effect ===== */
.animated-cta-title::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    transform: skewX(-20deg);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { left: -100%; }
    100% { left: 120%; }
}

/* Fix position for shine */
.animated-cta-title {
    position: relative;
    display: inline-block;
}

/* ===== Subtitle ===== */
.animated-cta-text {
    color: black;
    margin-top: 15px;
    margin-bottom: 30px;
    font-size: 16px;
}

/* ===== Button ===== */
.animated-cta-btn {
    background: linear-gradient(135deg, #ff6a00, #ee0979);
    color: #fff;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: 0.3s;
}

.animated-cta-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(238,9,121,0.4);
}

/* ===== Responsive ===== */
@media(max-width:768px){
    .animated-cta-title {
        font-size: 25px;
    }
}
