.c-item {
    height: 600px;
}

.c-img {
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6);
}


.service-card {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    animation: fadeUp 0.8s ease both;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: #ffc107;
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 32px;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}



.taxi-parallax {
    min-height: 70vh;
    background: linear-gradient(rgba(0, 0, 0, 0.6),
            rgba(0, 0, 0, 0.6)),
        url('images/5-Gokarna.jpg') center/cover no-repeat fixed;
}




.tour-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    height: 100%;
}

.tour-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.tour-card:hover {
    transform: translateY(-10px);
}

.tour-content {
    padding: 20px;
}

.tour-content h5 {
    font-weight: 600;
    margin-bottom: 10px;
}

.tour-content p {
    font-size: 14px;
    color: #666;
}

.tour-actions {
    display: flex;
    gap: 12px;
    margin-top: 15px;
}

.call-btn,
.whatsapp-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    transition: all 0.3s ease;
}

.call-btn {
    background: #ffc107;
    color: #000;
}

.whatsapp-btn {
    background: #25D366;
}

.call-btn:hover,
.whatsapp-btn:hover {
    transform: scale(1.15) rotate(8deg);
}




.why-box {
    transition: all 0.3s ease;
}

.why-box:hover {
    transform: translateX(8px);
}

.why-icon {
    min-width: 55px;
    height: 55px;
    background: #ffc107;
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-right: 15px;
}


.contact-form .input-group-text {
    background: #ffc107;
    color: #000;
    border: none;
}

.contact-form .form-control {
    border: none;
}

.contact-form .form-control:focus {
    box-shadow: none;
}



.footer-section {
    background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
    position: relative;
}

.footer-logo {
    max-width: 300px;
}

.footer-title {
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-links,
.footer-contact {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links li a {
    color: #ccc;
    text-decoration: none;
    transition: 0.3s;
}

.footer-links li a:hover {
    color: #ffc107;
    padding-left: 5px;
}

.footer-contact li {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
    color: #ccc;
}

.footer-contact i {
    color: #ffc107;
    font-size: 18px;
    margin-top: 3px;
}

.footer-contact a {
    color: #ccc;
    text-decoration: none;
}

.footer-map iframe {
    border-radius: 10px;
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.4);
    font-size: 14px;
}




.floating-btn {
    position: fixed;
    bottom: 110px;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 15px rgba(0,0,0,0.3);
    animation: pulse 2s infinite;
}

.floating-btn img {
    width: 55px;
    height: 55px;
    border-radius: 50%;
}

/* Call Button Position */
.call-btn {
    right: 15px;
}

/* WhatsApp Button Position */
.whatsapp-btn {
    left: 15px;
}

/* Pulse Animation */
@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        transform: scale(1.1);
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        transform: scale(1);
    }
}

/* Mobile Friendly */
@media (max-width: 576px) {
    .floating-btn {
        bottom: 90px;
        width: 50px;
        height: 50px;
    }

    .floating-btn img {
        width: 50px;
        height: 50px;
    }
}




@media (max-width: 768px) {
    .taxi-parallax {
        background-attachment: scroll;
        min-height: 50vh;
    }

    .taxi-parallax h2 {
        font-size: 1.8rem;
    }

    .c-item {
        height: 480px;
    }
}