:root {
    --primary-yellow: #ffb400;
    --dark-bg: #111111;
    --text-white: #ffffff;
    --text-muted: #aaaaaa;
    --font-main: "Instrument Sans", sans-serif;
}

body {
    font-family: var(--font-main);
}

/* Top Header */
.top-header {
    background-color: var(--dark-bg);
    padding: 10px 0;
    font-size: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-header a {
    color: var(--text-white);
    text-decoration: none;
    transition: 0.3s;
}

.top-header a:hover {
    color: var(--primary-yellow);
}

.top-header span {
    color: var(--text-white);
}

.text-yellow {
    color: var(--primary-yellow);
}

.divider {
    width: 1px;
    height: 20px;
    background-color: rgba(255, 255, 255, 0.2);
}

.divider-sm {
    width: 1px;
    height: 15px;
    background-color: rgba(255, 255, 255, 0.2);
    display: inline-block;
    margin: 0 10px;
    vertical-align: middle;
}

.location-search {
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 2px 15px;
    border-radius: 0px;
    display: inline-block;
    color: var(--text-muted);
    font-size: 13px;
}

.social-links a {
    font-size: 14px;
    margin: 0 5px;
}

/* Home Content */
#home-content h2 {
    color: var(--primary-yellow) !important;
}
#home-content h3 {
    color: var(--dark-bg) !important;
}

/* Navbar */
.navbar {
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.logo-area {
    background-color: var(--primary-yellow);
    position: relative;
    z-index: 10;
    min-width: 220px;
}

.logo-area::after {
    content: "";
    position: absolute;
    top: 0;
    right: -25px;
    width: 60px;
    height: 100%;
    background-color: var(--primary-yellow);
    transform: skewX(-20deg);
    z-index: -1;
    border-right: 10px solid var(--dark-bg);
}

/* Adding the black strip container for the slanted part */
.navbar .container-fluid {
    position: relative;
}

.logo-text {
    font-size: 40px;
    font-weight: 800;
    color: var(--dark-bg);
    display: flex;
    align-items: center;
}

.taxi-icon {
    font-size: 30px;
    margin: 0 1px;
}

.nav-link {
    font-weight: 500;
    font-size: 16px;
    padding: 20px 15px !important;
}

.nav-link.active {
    color: var(--primary-yellow) !important;
}

.dropdown-toggle::after {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    content: "\f107";
    border: none;
    font-size: 12px;
    vertical-align: middle;
    margin-left: 5px;
}

.search-btn {
    color: var(--dark-bg);
    font-size: 18px;
    margin: 0 10px;
}

.btn-ride {
    background-color: var(--primary-yellow);
    color: var(--dark-bg);
    padding: 12px 25px;
    font-weight: 700;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
    display: inline-block;
}

.btn-ride:hover {
    background-color: var(--dark-bg);
    color: var(--primary-yellow);
}

.desktop-menu-toggle {
    background-color: #1e1e1e;
    color: var(--primary-yellow);
    height: 60px;
    width: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    cursor: pointer;
}

.city-image {
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.city-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 30%;
}

/* Responsive Styles */
@media (max-width: 991.98px) {
    .logo-area {
        min-width: auto;
    }
    .logo-area::after {
        display: none;
    }
    .nav-link {
        padding: 10px 15px !important;
    }
    .btn-ride {
        margin: 15px;
    }
}

/* Booking Section */
.booking-section {
    background: #ffcc66;
    background: linear-gradient(
        123deg,
        rgba(255, 204, 102, 0.88) 0%,
        rgba(255, 255, 255, 0.93) 100%
    );
    min-height: 400px;
}

.custom-shape-divider-bottom-1767762673 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.custom-shape-divider-bottom-1767762673 svg {
    position: relative;
    display: block;
    width: calc(130% + 1.3px);
    height: 76px;
}

.custom-shape-divider-bottom-1767762673 .shape-fill {
    fill: #ffffff;
}

.booking-wrapper {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.booking-wrapper .form-container {
    max-width: 600px;
}

.booking-wrapper .hero-img-container {
    flex: 1;
}

.booking-wrapper .hero-img-container .hero-img {
    width: 100%;
    height: 400px;
    border-radius: 30px;
    overflow: hidden;
}

.booking-wrapper .hero-img-container .hero-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.booking-title {
    font-weight: 700;
    color: #333;
}

.booking-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    /* background: #fff; */
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.booking-tabs {
    background: #f0f4f8;
    padding: 8px;
}

.tab-btn {
    border: none;
    padding: 10px 25px;
    font-weight: 600;
    border-radius: 8px;
    background: transparent;
    color: #555;
    transition: 0.3s;
}

.tab-btn.active {
    background: #2d2d2d;
    color: #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.booking-info-box {
    background: #e0f2f7;
    border: 2px dashed #00a8a8;
    padding: 8px;
    border-radius: 8px;
    color: #333;
}

/* Custom Input Group */
.input-group-custom {
    display: flex;
    align-items: center;
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 5px 15px;
    transition: 0.3s;
}

.input-group-custom:focus-within {
    border-color: var(--primary-yellow);
    box-shadow: 0 0 0 3px rgba(255, 180, 0, 0.1);
}

.icon-wrap {
    font-size: 18px;
    margin-right: 15px;
}

.start-icon {
    color: #00a884; /* Green for start */
}

.dest-icon {
    color: #ff4d4d; /* Red for destination */
}

.phone-icon {
    color: #777;
}

.form-control-custom {
    flex: 1;
    border: none;
    padding: 8px 0;
    font-size: 15px;
    color: #333;
    outline: none;
    background: transparent !important;
}

.btn-location {
    background: none;
    border: none;
    color: var(--dark-bg);
    font-size: 18px;
    padding: 5px;
}

.btn-continue {
    background: var(--primary-yellow);
    color: var(--dark-bg);
    border: none;
    padding: 15px;
    font-weight: 700;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(255, 180, 0, 0.3);
    transition: 0.3s;
}

.btn-continue:hover {
    background: var(--dark-bg);
    color: var(--primary-yellow);
    transform: translateY(-2px);
}

/* Feature Section */
.feature-wrapper {
    width: 100%;
    height: 150px;
    padding: 10px;
    background-color: #000000 !important; 
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    border-radius: 20px;
}

.feature-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-yellow);
    margin: 0 auto 15px;
}

/* Responsive Adjustments for booking form */
@media (max-width: 767.98px) {
    .booking-wrapper {
        padding: 0 15px;
    }
    .tab-btn {
        padding: 10px 15px;
        font-size: 14px;
    }

    /* Feature Section */
    .feature-wrapper {
        height: auto;
    }
}

/* About Section */
.about-section {
    background-color: #fcfcfc;
    z-index: 1;
}

.about-image-wrapper {
    padding: 20px;
}

.main-about-img {
    width: 85%;
    height: auto;
    object-fit: cover;
    z-index: 2;
    position: relative;
}

.secondary-image-container {
    position: absolute;
    bottom: -10%;
    right: 5%;
    width: 45%;
    z-index: 4;
}

.secondary-about-img {
    width: 100%;
    height: auto;
}

.experience-badge {
    position: absolute;
    top: 5%;
    right: 15%;
    width: 140px;
    height: 140px;
    background: var(--primary-yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    animation: rotate 20s linear infinite;
}

.badge-content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.exp-number {
    font-size: 32px;
    font-weight: 800;
    color: var(--dark-bg);
}

.circular-text {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.circular-text svg {
    width: 100%;
    height: 100%;
}

.circular-text text {
    fill: var(--dark-bg);
    letter-spacing: 1px;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.section-tag .text-muted {
    letter-spacing: 2px;
    font-size: 14px;
}

.lead-sm {
    font-size: 1.1rem;
    line-height: 1.8;
}

.check-icon {
    width: 32px;
    height: 32px;
    background: rgba(255, 180, 0, 0.1);
    color: var(--primary-yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-bg-wave {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

.btn-dark {
    background-color: #1a1a1a;
    border: none;
    transition: 0.3s;
}

.btn-dark:hover {
    background-color: var(--primary-yellow);
    color: var(--dark-bg);
    transform: translateY(-3px);
}

/* Custom Spacing for content */
.small-ls {
    letter-spacing: 1px;
}

@media (max-width: 991.98px) {
    .main-about-img {
        width: 100%;
    }
    .secondary-image-container {
        width: 50%;
        bottom: -5%;
        right: 0;
    }
    .experience-badge {
        width: 100px;
        height: 100px;
        right: 5%;
        top: 0;
    }
    .exp-number {
        font-size: 24px;
    }
}

/* Taxi Rate Section */
.taxi-rate-section {
    background-color: #ffffff;
}

.taxi-tab-btn {
    border: 1px solid #eee;
    color: #1a1a1a;
    font-weight: 700;
    padding: 10px 25px;
    border-radius: 8px;
    font-size: 13px;
    transition: 0.3s;
}

.taxi-tab-btn:hover,
.taxi-tab-btn.active {
    background-color: var(--primary-yellow);
    border-color: var(--primary-yellow);
    color: var(--dark-bg);
}

.nav-dots-container {
    width: 60px;
    z-index: 5;
}

.dots-line {
    position: absolute;
    width: 2px;
    height: 100px;
    background: #eee;
}

.dot-item {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #1a1a1a;
    margin: 15px 0;
    cursor: pointer;
    transition: 0.3s;
    position: relative;
    z-index: 6;
}

.dot-item.active {
    background: var(--primary-yellow);
    transform: scale(1.5);
    box-shadow: 0 0 10px rgba(255, 180, 0, 0.5);
}

.taxi-rate-content-wrapper {
    position: relative;
    min-height: 450px;
}

.taxi-rate-card {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, transform 0.5s ease;
    transform: translateY(20px);
}

.taxi-rate-card.active {
    position: relative;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.taxi-info-sidebar {
    background-color: #ffc107; /* Brighter yellow from design */
}

.taxi-image-panel {
    background-color: #fff9e6; /* Cream background from design */
}

.taxi-details-list li {
    font-size: 15px;
    color: #1a1a1a;
}

.taxi-details-list i {
    color: #1a1a1a;
    font-size: 16px;
    width: 20px;
}

.car-showcase-img {
    max-height: 350px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.1));
}

.pr-value {
    letter-spacing: 1px;
}

@media (max-width: 991.98px) {
    .taxi-rate-content-wrapper {
        min-height: auto;
    }
    .taxi-rate-card {
        position: relative;
        margin-bottom: 30px;
        opacity: 0;
        display: none;
    }
    .taxi-rate-card.active {
        display: block;
        opacity: 1;
    }
    .nav-dots-container {
        display: none !important;
    }
    .car-showcase-img {
        max-height: 250px;
    }
}

/* Why Choose Us Section */
.why-choose-us {
    background-color: var(--dark-bg);
    z-index: 1;
}

.yellow-slants {
    color: var(--primary-yellow);
    font-weight: 900;
}

.rotating-badge-why {
    width: 180px;
    height: 180px;
    background: var(--primary-yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 0 30px rgba(255, 180, 0, 0.2);
}

.badge-inner-why {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.taxi-center-icon-why {
    font-size: 50px;
    color: var(--dark-bg);
    z-index: 2;
}

.circular-text-why {
    position: absolute;
    width: 130%;
    height: 130%;
    top: -15%;
    left: -15%;
    animation: rotate 20s linear infinite;
}

.circular-text-why svg {
    width: 100%;
    height: 100%;
}

.circular-text-why text {
    fill: var(--text-white);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.why-card {
    background: #1a1a1a;
    padding: 50px 35px;
    border-radius: 24px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.why-card .card-number {
    display: block;
    font-size: 20px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.1);
    margin-bottom: 15px;
}

.why-card-featured {
    background: var(--primary-yellow);
    border: none;
    box-shadow: 0 20px 40px rgba(255, 180, 0, 0.15);
}

.why-card-featured .card-number {
    color: rgba(0, 0, 0, 0.15);
}

.why-card:hover {
    transform: translateY(-12px);
    border-color: rgba(255, 180, 0, 0.3);
}

.why-card-featured:hover {
    box-shadow: 0 30px 60px rgba(255, 180, 0, 0.25);
}

.card-img-wrapper {
    margin-top: 30px;
    position: relative;
}

.card-taxi-img {
    max-height: 140px;
    width: auto;
    object-fit: contain;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.2));
}

.why-card:hover .card-taxi-img {
    transform: scale(1.1) translateX(10px);
}

/* Checkerboard Patterns */
.checker-pattern {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    gap: 6px;
    z-index: 1;
    opacity: 0.6;
}

.checker-left {
    left: 40px;
}

.checker-right {
    right: 40px;
}

.pattern-col {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.checker {
    width: 14px;
    height: 14px;
    background: transparent;
}

.checker.yellow {
    background: var(--primary-yellow);
}

.checker.gray {
    background: #333;
}

/* CTA 1 */
.cta-one {
    width: 100%;
    height: 150px;
    background-color: #262626;
}

.cta-content {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-around;
}

/* Responsive Why Section */
@media (max-width: 991.98px) {
    .rotating-badge-why {
        width: 150px;
        height: 150px;
    }
    .taxi-center-icon-why {
        font-size: 40px;
    }
    .why-header h2 {
        font-size: 2.2rem;
    }
    .checker-pattern {
        display: none;
    }
}

@media (max-width: 767.98px) {
    .why-card {
        padding: 40px 25px;
    }
    .why-header h2 {
        font-size: 1.8rem;
    }
}

/* Testimonial Section */
.testimonial-section {
    background-color: #ffffff;
}

.testimonial-card {
    background-color: #1a1a1a;
    border-radius: 24px;
    min-height: 480px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.testimonial-content {
    background-color: #1a1a1a;
    position: relative;
    display: flex;
    flex-direction: column;
}

.testimonial-image {
    width: 50%;
    background-color: #222;
}

.testimonial-image img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.quote-icon-wrap i {
    color: #333;
}

.lead-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #f0f0f0;
    font-weight: 400;
}

/* Owl Carousel Customization */
.testimonial-carousel .owl-dots {
    text-align: center;
    margin-top: 50px !important;
}

.testimonial-carousel .owl-dot span {
    width: 10px !important;
    height: 10px !important;
    background: #e0e0e0 !important;
    border-radius: 50%;
    display: block;
    margin: 5px 6px !important;
    transition: all 0.3s ease;
}

.testimonial-carousel .owl-dot.active span {
    background: var(--primary-yellow) !important;
    width: 30px !important;
    border-radius: 10px !important;
}

@media (max-width: 991.98px) {
    .testimonial-image {
        width: 100%;
        height: auto;
    }
    .testimonial-card {
        min-height: auto;
    }
    .testimonial-content {
        order: 2;
    }
    .testimonial-image {
        order: 1;
    }
    .lead-text {
        font-size: 1.1rem;
    }
}

/* CTA Two Section */
.cta-two-left {
    flex: 0 0 55%;
    background-color: var(--primary-yellow);
    z-index: 2;
    clip-path: polygon(0 0, 100% 0, 85% 100%, 0% 100%);
    margin-right: -10%;
}

.cta-two-right {
    flex: 0 0 55%;
    background-image: url("../images/about-main.jpg"); /* fallback or placeholder */
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.topographic-pattern {
    z-index: 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.1;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200' viewBox='0 0 200 200'%3E%3Cpath d='M10 20 Q 50 10 90 40 T 150 20 T 190 60' fill='none' stroke='black' stroke-width='1' /%3E%3Cpath d='M10 50 Q 60 40 100 70 T 160 50 T 190 80' fill='none' stroke='black' stroke-width='1' /%3E%3Cpath d='M10 80 Q 70 70 110 100 T 170 80 T 190 110' fill='none' stroke='black' stroke-width='1' /%3E%3Cpath d='M10 110 Q 80 100 120 130 T 180 110 T 190 140' fill='none' stroke='black' stroke-width='1' /%3E%3Cpath d='M10 140 Q 90 130 130 160 T 190 140' fill='none' stroke='black' stroke-width='1' /%3E%3C/svg%3E");
}

.content-wrapper {
    z-index: 1;
}

.btn-contact-why {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 15px 35px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-contact-why:hover {
    background-color: #000;
    color: var(--primary-yellow);
    transform: translateY(-3px);
}

.cta-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

.play-button-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
    z-index: 10;
}

.play-btn-ripple {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border: 2px solid #ffffff;
}

.play-btn-ripple i {
    color: #ffffff;
    font-size: 30px;
    margin-left: 5px;
}

.play-btn-ripple::before {
    content: "";
    position: absolute;
    top: -15px;
    left: -15px;
    right: -15px;
    bottom: -15px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    opacity: 0;
    animation: ripple 2s infinite;
}

@keyframes ripple {
    0% {
        transform: scale(0.8);
        opacity: 1;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

@media (max-width: 991.98px) {
    .cta-two-left,
    .cta-two-right {
        flex: 0 0 100%;
        margin-right: 0;
        clip-path: none;
    }
    .cta-two-right {
        height: 350px;
    }
    .cta-two-section {
        min-height: auto;
    }
}

/* Blog Section */
.blog-section {
    background-color: #ffffff;
}

.btn-all-posts {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 12px 25px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 13px;
    transition: 0.3s;
    display: inline-block;
}

.btn-all-posts:hover {
    background-color: var(--primary-yellow);
    color: var(--dark-bg);
}

.blog-card {
    transition: 0.3s;
}

.blog-img-wrapper {
    border-radius: 20px;
}

.blog-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.blog-card:hover .blog-img {
    transform: scale(1.05);
}

.blog-title {
    font-size: 20px;
    line-height: 1.4;
    transition: 0.3s;
    cursor: pointer;
}

.blog-title:hover {
    color: var(--primary-yellow);
}

.btn-read-more {
    padding: 10px 22px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 13px;
    transition: 0.3s;
    display: inline-block;
}

.btn-dark-custom {
    background-color: #1a1a1a;
    color: #ffffff;
}

.btn-dark-custom:hover {
    background-color: var(--primary-yellow);
    color: var(--dark-bg);
}

.btn-yellow-custom {
    background-color: var(--primary-yellow);
    color: var(--dark-bg);
}

.btn-yellow-custom:hover {
    background-color: #1a1a1a;
    color: #ffffff;
}

@media (max-width: 991.98px) {
    .blog-img {
        height: 250px;
    }
    .blog-title {
        font-size: 18px;
    }
}

/* Footer Section */
.footer-section {
    background-color: var(--dark-bg);
    color: #ffffff;
    z-index: 1;
}

.footer-call-badge .yellow-slants {
    opacity: 1;
    line-height: 1;
}

.footer-call-badge .badge-content {
    box-shadow: 0 10px 30px rgba(255, 180, 0, 0.2);
    min-width: 280px;
}

.footer-logo h3 {
    font-size: 28px;
    letter-spacing: 1px;
}

.line-height-lg {
    line-height: 1.8;
}

.social-circle {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 16px;
}

.social-circle:hover,
.social-circle.active {
    background-color: var(--primary-yellow);
    border-color: var(--primary-yellow);
    color: var(--dark-bg);
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: 0.3s;
    font-size: 15px;
}

.footer-links a:hover,
.footer-links a.active {
    color: var(--primary-yellow);
}

.news-img {
    flex-shrink: 0;
}

.line-height-base {
    line-height: 1.5;
}

.footer-bottom {
    background-color: rgba(255, 255, 255, 0.02);
}

.footer-legal a:hover {
    color: #ffffff !important;
}

@media (max-width: 991.98px) {
    .footer-call-badge .yellow-slants {
        display: none;
    }
    .footer-call-badge .badge-content {
        min-width: auto;
        width: 100%;
    }
    .footer-section h2 {
        font-size: 1.8rem;
    }
}

/* Breadcrumb Section */
.breadcrumb-section {
    padding: 10px 0;
    text-align: center;
    color: #333333;
    background-color: #fdf7f0;
}

.breadcrumb-section .container {
    position: relative;
    z-index: 2;
}

.breadcrumb-nav {
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 15px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
}

.breadcrumb-nav a {
    color: #000000;
    text-decoration: none;
    transition: 0.3s;
}

.breadcrumb-nav a:hover {
    color: var(--primary-yellow);
}

.breadcrumb-separator {
    color: var(--primary-yellow);
    font-size: 14px;
    display: flex;
    align-items: center;
}

.breadcrumb-nav span.active {
    color: #dddddd;
}

/* Stats Section */
.stats-section {
    background-color: #ffffff;
    padding: 30px 0;
}

.stat-item {
    text-align: center;
    position: relative;
    padding: 40px 20px;
}

.stat-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 180px;
    height: 180px;
    border: 1px solid #eeeeee;
    border-radius: 50%;
    z-index: 1;
}

.stat-content {
    position: relative;
    z-index: 2;
}

.stat-number {
    font-size: 54px;
    font-weight: 800;
    color: var(--dark-bg);
    line-height: 1;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-symbol {
    color: var(--primary-yellow);
    margin-left: 2px;
}

.stat-label {
    font-size: 14px;
    color: #666666;
    font-weight: 500;
    text-transform: capitalize;
}

@media (max-width: 991.98px) {
    .stat-item {
        margin-bottom: 30px;
    }
    .stat-number {
        font-size: 40px;
    }
    .stat-circle {
        width: 150px;
        height: 150px;
    }
}

/* Work Process Section */
.work-process-section {
    background-color: #ffffff;
    overflow: hidden;
}

.process-wrapper {
    position: relative;
    padding-top: 50px;
}

.timeline-container {
    position: relative;
    padding: 40px 0;
}

/* Vertical Line - Desktop */
.timeline-container::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #ddd;
    transform: translateX(-50%);
}

.timeline-step {
    position: relative;
    padding: 40px 0;
}

.timeline-step:first-child {
    padding-top: 0;
}

.timeline-step:last-child {
    padding-bottom: 0;
}

.step-image {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
}

.step-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 16px;
    transition: transform 0.4s ease;
}

.step-image:hover img {
    transform: scale(1.05);
}

.step-number-wrapper {
    position: relative;
    z-index: 2;
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: var(--primary-yellow);
    color: #fff;
    border-radius: 50%;
    font-size: 14px;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(26, 77, 68, 0.3);
}

.step-number-mobile {
    display: none;
}

.step-content {
    padding: 20px 30px;
}

.step-title {
    font-size: 1.6rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
    font-family: var(--logo-font);
}

.step-desc {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
}

.step-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-yellow);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
}

.step-link:hover {
    color: #143d35;
}

.step-link i {
    transition: transform 0.3s ease;
}

.step-link:hover i {
    transform: translateX(5px);
}

/* Steps Section - Mobile */
@media (max-width: 991px) {
    .timeline-container::before {
        left: 25px;
        transform: none;
    }

    .timeline-step {
        padding: 30px 0;
        padding-left: 60px;
        position: relative;
    }

    .step-number-mobile {
        display: flex !important;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        background: var(--primary-yellow);
        color: #fff;
        border-radius: 50%;
        font-size: 13px;
        font-weight: 700;
        position: absolute;
        left: 5px;
        top: 30px;
        z-index: 2;
        box-shadow: 0 4px 15px rgba(26, 77, 68, 0.3);
    }

    .step-image {
        margin-bottom: 20px;
    }

    .step-image img {
        height: 220px;
    }

    .step-content {
        padding: 0;
        text-align: left !important;
    }

    .step-content .step-link {
        justify-content: flex-start;
    }
}

/* Blog Card Styling */
.blog-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    height: 100%;
    border: 1px solid #f0f0f0;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.blog-card-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.1);
}

.category-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--primary-yellow);
    color: var(--dark-bg);
    padding: 6px 15px;
    border-radius: 5px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.blog-card-body {
    padding: 25px;
}

.blog-meta {
    font-size: 13px;
    color: #777;
    margin-bottom: 15px;
}

.blog-meta i {
    color: var(--primary-yellow);
}

.blog-title-link {
    text-decoration: none;
    color: var(--dark-bg);
}

.blog-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.4;
    transition: 0.3s;
}

.blog-card:hover .blog-title {
    color: var(--primary-yellow);
}

.blog-excerpt {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    line-clamp: 3;
    overflow: hidden;
}

.read-more-btn {
    text-decoration: none;
    color: var(--dark-bg);
    font-weight: 700;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    transition: 0.3s;
}

.read-more-btn:hover {
    color: var(--primary-yellow);
}

.read-more-btn i {
    transition: transform 0.3s ease;
}

.read-more-btn:hover i {
    transform: translateX(5px);
}

/* Blog Detail Page Styling */
.blog-detail-title {
    color: var(--dark-bg);
    line-height: 1.2;
}

.blog-detail-meta {
    font-size: 15px;
    font-weight: 500;
}

.blog-detail-banner img {
    max-height: 500px;
    object-fit: cover;
    border: 8px solid #fff;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.08);
}

.blog-detail-content {
    color: #444;
    line-height: 1.8;
}

.blog-detail-content h2 {
    color: var(--primary-yellow) !important;
}

.blog-detail-content h3 {
    color: var(--text-muted) !important;
}

.blog-sidebar {
    background: #fdfdfd;
    padding: 30px;
    border-radius: 20px;
    border: 1px solid #f0f0f0;
    position: sticky;
    top: 100px;
}
@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap");

/* FAQ Page Styles */
.faq-section {
    background-color: #f8f9fa;
    position: relative;
    overflow: hidden;
}

.faq-section::before {
    content: " \ ";
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: var(--primary-yellow);
    opacity: 0.05;
    border-radius: 50%;
    z-index: 0;
}

.section-title {
    position: relative;
    z-index: 1;
}

.custom-accordion .accordion-item {
    border: none;
    background: #ffffff;
    border-radius: 12px !important;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: 0.3s;
}

.custom-accordion .accordion-item:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.custom-accordion .accordion-button {
    font-size: 18px;
    font-weight: 600;
    padding: 20px 25px;
    color: var(--dark-bg);
    background-color: transparent !important;
    box-shadow: none !important;
    transition: 0.3s;
}

.custom-accordion .accordion-button:not(.collapsed) {
    color: var(--primary-yellow);
}

/* .custom-accordion .accordion-button::after {
 background-image: url(\data:image/svg+xml,%3csvg xmlns=http://www.w3.org/2000/svg viewBox=0 0 16 16 fill=%23111111%3e%3cpath fill-rule=evenodd d=M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z/%3e%3c/svg%3e\) !important;
 background-size: 1.2rem;
 transition: 0.3s;
}

.custom-accordion .accordion-button:not(.collapsed)::after {
 background-image: url(\data:image/svg+xml,%3csvg xmlns=http://www.w3.org/2000/svg viewBox=0 0 16 16 fill=%23ffb400%3e%3cpath fill-rule=evenodd d=M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z/%3e%3c/svg%3e\) !important;
 transform: rotate(180deg);
} */

.custom-accordion .accordion-body {
    padding: 0 25px 25px;
    color: #666;
    line-height: 1.7;
    font-size: 16px;
}

/* Contact Booking Section Styles */
.contact-booking-section {
    position: relative;
    padding: 80px 0;
    overflow: hidden;
}

.section-tag-wrapper {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.tag-icon {
    color: var(--primary-yellow);
    font-size: 14px;
    font-weight: 700;
}

.tag-text {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    color: #555;
    letter-spacing: 1px;
}

.section-title {
    font-weight: 800;
    line-height: 1.2;
    color: var(--dark-bg);
}

.section-desc {
    color: #666;
    line-height: 1.8;
    font-size: 16px;
}

.features-list {
    margin-bottom: 30px;
}

.feature-icon-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid rgba(255, 180, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-yellow);
    font-size: 20px;
    flex-shrink: 0;
}

.feature-title {
    font-weight: 700;
    color: var(--dark-bg);
    margin-bottom: 5px;
}

.feature-text {
    font-size: 14px;
    color: #666;
}

.contact-number-box {
    background-color: #fff9e6;
    padding: 25px 30px;
    border-left: 5px solid var(--primary-yellow);
    margin-top: 30px;
}

/* Right Column - Booking Form */
.booking-form-container {
    background-color: var(--dark-bg);
    border-radius: 0;
    position: relative;
    overflow: hidden;
}

.form-content {
    position: relative;
    z-index: 2;
}

.form-title {
    font-weight: 700;
    line-height: 1.3;
}

.input-group-dark {
    background-color: #1e1e1e;
    border-radius: 8px;
    padding: 5px 15px;
    display: flex;
    align-items: center;
    border: 1px solid #333;
    transition: 0.3s;
}

.input-group-dark:focus-within {
    border-color: var(--primary-yellow);
}

.form-control-dark {
    background: transparent;
    border: none;
    color: #fff;
    width: 100%;
    padding: 10px 0;
    font-size: 14px;
    outline: none;
}

.form-control-dark::placeholder {
    color: #666;
}

.form-select-dark {
    background: transparent;
    border: none;
    color: #666;
    width: 100%;
    padding: 10px 0;
    font-size: 14px;
    outline: none;
    cursor: pointer;
    appearance: none; /* Remove default arrow */
}

.form-select-dark option {
    background-color: #1e1e1e;
    color: #fff;
}

.input-icon {
    color: #555;
    font-size: 16px;
}

.btn-primary-yellow {
    background-color: var(--primary-yellow);
    color: var(--dark-bg);
    border: none;
    transition: 0.3s;
    font-weight: 800;
    letter-spacing: 0.5px;
    border-radius: 8px; /* Matching input radius */
}

.btn-primary-yellow:hover {
    background-color: #fff;
    color: var(--dark-bg);
}

/* Email Template Styles */
.email-container {
    max-width: 600px;
    margin: 20px auto;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    font-family: var(--font-main, "Arial", sans-serif);
}

.email-header {
    background-color: var(--dark-bg, #111111);
    padding: 20px;
    text-align: center;
    color: var(--primary-yellow, #ffb400);
}

.email-header h2 {
    margin: 0;
    font-size: 24px;
    color: var(--primary-yellow, #ffb400);
}

.email-body {
    padding: 30px;
    color: #333333;
}

.booking-details-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.booking-details-table th,
.booking-details-table td {
    padding: 12px;
    border-bottom: 1px solid #eeeeee;
    text-align: left;
}

.booking-details-table th {
    width: 150px;
    color: #555555;
    font-weight: bold;
}

.booking-details-table td {
    color: var(--dark-bg, #111111);
    font-weight: 500;
}

.email-footer {
    background-color: #f8f9fa;
    padding: 15px;
    text-align: center;
    font-size: 12px;
    color: #888888;
}


/* Floating Icons */
.float-icon-container {
    position: fixed;
    right: 30px;
    bottom: 50%; /* Center vertically or adjust as needed */
    transform: translateY(50%);
    z-index: 1050;
}

.float-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.5rem;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    color: white;
}

.float-btn:hover {
    transform: scale(1.1);
    color: white;
}

.emergency-btn {
    background: linear-gradient(135deg, #ff416c, #ff4b2b);
    animation: pulse-red 2s infinite;
}

.whatsapp-float-btn {
    background: linear-gradient(135deg, #25d366, #128c7e);
}

/* Tooltip on Hover */
.float-tooltip {
    position: absolute;
    right: 60px;
    background-color: #333;
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.8rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    transform: translateX(10px);
}

.float-btn:hover .float-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}