
  body {        
    font-family: 'Poppins', sans-serif;
    scroll-behavior: smooth;
    margin:0;
    padding:0;
}
.hero{
    margin-top:-160px;
    margin-bottom:-60px;
}
.navbar{
    position:fixed;
    top:0;
    width:100%;
    background:#111;
    padding:15px 20px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    z-index:1000;

    transition:0.3s;
}

/* LOGO */
.logo{
    color:#ffc107;
    font-size:20px;
    font-weight:bold;
}


/* MENU */
.nav-links{
    display:flex;
    gap:20px;
}

/* LINKS */
.nav-links a{
    color:white;
    text-decoration:none;
    position:relative;
    font-size:14px;
    transition:0.3s;
}

/* 🔥 UNDERLINE ANIMATION */
.nav-links a::after{
    content:"";
    position:absolute;
    width:0%;
    height:2px;
    background:#ffc107;
    left:0;
    bottom:-4px;
    transition:0.3s;
}

.nav-links a:hover::after{
    width:100%;
}

.nav-links a:hover{
    color:#ffc107;
}

/* TOGGLER */
.menu-toggle{
    display:none;
    width:30px;
    height:25px;
    position:relative;
    cursor:pointer;
}

/* LINES */
.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after{
    content:"";
    position:absolute;
    width:100%;
    height:3px;
    background:white;
    left:0;
    transition:0.4s;
}

.menu-toggle span{
    top:50%;
    transform:translateY(-50%);
}

.menu-toggle span::before{
    top:-8px;
}

.menu-toggle span::after{
    top:8px;
}

/* 🔥 CROSS ANIMATION SMOOTH */
.menu-toggle.active span{
    background:transparent;
}

.menu-toggle.active span::before{
    transform:rotate(45deg);
    top:0;
}

.menu-toggle.active span::after{
    transform:rotate(-45deg);
    top:0;
}

/* 🔥 MOBILE */
@media(max-width:768px){

    .menu-toggle{
        display:block;
    }

    .nav-links{
        position:absolute;
        top:60px;
        right:0;
        background:#111;
        width:200px;   /* 👈 SAME SIZE */
        flex-direction:column;
        gap:15px;
        padding:15px;

        display:none;
    }

    .nav-links.active{
        display:flex;
    }
}

/* MOBILE MENU */
@media(max-width:768px){

    .menu-toggle{
        display:block;
    }

    .nav-links{
        position:absolute;
        top:60px;
        left:0;
        width:100%;
        background:#111;
        flex-direction:column;
        align-items:center;
        display:none;
    }

    .nav-links a{
        padding:15px;
        width:100%;
        text-align:center;
    }

    .nav-links.active{
        display:flex;
    }
}

#services .col-md-6 {
    opacity: 0;
    transform: translateY(60px);
    animation: fadeUp 1s ease forwards;
}
.btn-group-custom {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: auto;
}

/* Primary Button */
.service-btn {
    background: #ffc107;
    padding: 10px;
    border-radius: 25px;
    text-decoration: none;
    color: black;
    font-weight: bold;
    transition: 0.3s;
}

.service-btn:hover {
    background: #ffb300;
}

/* Know More Button */
.know-btn {
    padding: 8px;
    border-radius: 20px;
    text-decoration: none;
    color: #333;
    border: 1px solid #ccc;
    font-size: 14px;
    transition: 0.3s;
}

.know-btn:hover {
    background: #333;
    color: #fff;
}
#services .col-md-6:nth-child(1) {
    animation-delay: 0.2s;
}

#services .col-md-6:nth-child(2) {
    animation-delay: 0.4s;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 🔥 CARD HOVER (FLOAT EFFECT) */
.service-img{
    height:220px;
    object-fit:cover;
}

.service-card{
    transition:0.4s;
}

.service-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 40px rgba(0,0,0,0.2);
}

.service-btn{
    background:#ffc107;
    color:black;
    padding:10px 20px;
    border-radius:25px;
    text-decoration:none;
    font-weight:bold;
    transition:0.3s;
}

.service-btn:hover{
    background:#ffb300;
    transform:scale(1.05);
}

/* 🔥 COLLAB SECTION */

/* 🔥 ICON SLIDE (title animation) */
#services h3 {
    transition: 0.3s;
}

#services .card:hover h3 {
    transform: translateX(5px);
}
/* Smooth scroll on click */
html {
    scroll-behavior: smooth;
}

/* Ensure all cards same height in Bootstrap row */
.card.h-100 {
    display: flex;
    flex-direction: column;
}
.card img {
    height: 220px;
    object-fit: cover;
}

.card {
    transition: transform 0.3s ease;
}
.row{
  transition: transform 0.3s ease;
}

.card:hover {
    transform: scale(1.05);
}
#services{
  padding: 80px 20px;
  text-align: center;
}
#booking{
  padding: 80px 20px;
  text-align: center;
}

.book-btn {
  padding: 12px 25px;
  background: #ff6600;
  color: white;
  text-decoration: none;
  border-radius: 5px;
}

#booking {
  padding: 50px;
  text-align: center;
}

form {
  max-width: 400px;
  margin: auto;
}
#booking {
    width: 400px;
    margin: 60px auto;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    background: #fff;
}

#booking h2 {
    text-align: center;
    margin-bottom: 25px;
}

#booking input,
#booking textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border-radius: 8px;
    border: 1px solid #ddd;
    outline: none;
    transition: 0.3s;
}

#booking input:focus,
#booking textarea:focus {
    border-color: #ffc107;
    box-shadow: 0 0 8px rgba(255,193,7,0.4);
}

.book-btn {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 30px;
    background: #ffc107;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}
#typing-text{
    font-size:2rem;
    font-weight:700;
    color:#fff;
    letter-spacing:1px;

    /* 🔥 Glow effect */
    text-shadow:0 0 10px rgba(255,193,7,0.8),
                 0 0 20px rgba(255,152,0,0.6);

    border-right:3px solid #ffc107; /* cursor */
    white-space:nowrap;
    overflow:hidden;

    animation:
        blinkCursor 0.8s infinite,
        glowText 2s ease-in-out infinite alternate;
}

/* Cursor blink */
@keyframes blinkCursor{
    0%,100%{ border-color:transparent; }
    50%{ border-color:#ffc107; }
}

/* Glow animation */
@keyframes glowText{
    0%{
        text-shadow:0 0 5px rgba(255,193,7,0.4);
    }
    100%{
        text-shadow:0 0 20px rgba(255,193,7,1),
                     0 0 30px rgba(255,152,0,0.8);
    }
}

.book-btn:hover {
    background: #ff9800;
    color: white;
}

input, select, button {
  width: 100%;
  padding: 10px;
  margin: 10px 0;
}

button {
  background: #111;
  color: white;
  border: none;
}
.about{
  padding: 80px 20px;
  text-align: center;
}
.card{
  padding: 80px 20px;
  text-align: center;
}

#booking form{
  padding: 80px 20px;
  text-align: center;
}
.card{
  padding: 80px 20px;
  text-align: center;
}

.about-container {
  display: flex;
  gap: 60px;
}

.about-left, .about-right {
  flex: 1;
}

/* Text Styling */
.about-left h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.about-left p {
  color: #555;
  line-height: 1.7;
  margin-bottom: 15px;
}

.about-right h3 {
  color: #28a745;
  margin-bottom: 20px;
}
.book-btn{
display:inline-block;
padding:14px 30px;
background:#ffc107;
color:black;
font-weight:bold;
text-decoration:none;
border-radius:8px;
font-size:18px;
transition:0.3s;
}

.book-btn:hover{
background:#ffb300;
transform:scale(1.05);
}
.point {
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 1px solid #eee;
}

/* Road */
.road {
  width: 100%;
  height: 70px;
  background: #f2f2f2;
  border-radius: 40px;
  position: relative;
  overflow: hidden;
  margin-top: 30px;
}

/* Car (Left Side Visible Start) */
.car {
  position: absolute;
  font-size: 30px;
  left: 0;              /* Start from visible left */
  top: 25px;
  animation: moveCar 6s linear infinite;
}

/* Scooty (Fast) */
.scooty {
  position: absolute;
  font-size: 28px;
  left: 0;
  top: 5px;
  animation: moveScooty 3s linear infinite;
}

/* Animations */
@keyframes moveCar {
  0% { left: 0; }
  100% { left: 100%; }
}

.success {
  color: #28a745;
  font-weight: bold;
}

/* Road */

/* Car Animation */
.car {
  position: absolute;
  font-size: 30px;
  top: 10px;
  cursor: pointer;
  animation: moveCar 6s linear linear infinite;
}
.car:hover {
    animation-play-state:paused;
}


@keyframes moveCar {
    from { transform: translateX(-60px); }
    to { transform: translateX(100vw); }
}
.point {
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid #eee;
}

.point h4 {
  font-size: 18px;
  margin-bottom: 5px;
}

.point p {
  font-size: 15px;
  color: #666;
}
.about-points {
    margin-top: 25px;
}

.point {
    background: #f4f6f9;
    padding: 10px 15px;
    margin-bottom: 10px;
    border-radius: 6px;
    font-size: 15px;
    color: #333;
    transition: 0.3s;
}

.point:hover {
    background: #e0f2ff;
    transform: translateX(5px);
}

.about {
    padding: 80px 20px;
    text-align: center;
    background: #ffffff;   /* White background */
    position: relative;
    overflow: hidden;
}

.about h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: #222;
}

.about-text {
    max-width: 800px;
    margin: 10px auto;
    font-size: 17px;
    color: #555;
    line-height: 1.7;
}

.about h3 {
    margin-top: 50px;
    font-size: 26px;
    color: #333;
}
#services h2 {
    font-size: 36px;
    font-weight: 700;
}

#services .card {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    transition: 0.4s ease;
}

#services .card img {
    height: 250px;
    object-fit: cover;
}

#services .card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

#services .card-body h5 {
    font-size: 22px;
    font-weight: 600;
}

#services .card-body p {
    color: #555;
    font-size: 15px;
}

.service-btn {
    display: inline-block;
    margin-top: 10px;
    padding: 8px 18px;
    color: white;
    border-radius: 25px;
    text-decoration: none;
    transition: 0.3s;
}

.service-btn:hover {
    background-color: #ffc107;
}

/* Points Section */
.points {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.point {
    background: rgba(255,255,255,0.8);
    padding: 20px;
    border-radius: 12px;
    font-size: 16px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    transition: 0.3s ease;
}

.point:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.15);
}
.booking-box{
width:80%;
max-width:600px;
margin:60px auto;
background:white;
padding:40px;
text-align:center;
border-radius:12px;
box-shadow:0 10px 25px rgba(0,0,0,0.15);
}

.booking-box h2{
margin-bottom:10px;
font-size:28px;
}

.booking-box p{
color:#555;
margin-bottom:20px;
}

.book-btn{
display:inline-block;
padding:14px 30px;
background:#ffc107;
color:black;
font-weight:bold;
text-decoration:none;
border-radius:8px;
transition:0.3s;
}

.book-btn:hover{
background:#ffb300;
transform:scale(1.05);
}
#booking {
    padding: 80px 20px;
    text-align: center;
    background: #f9fafc;
}

#booking h2 {
    font-size: 34px;
    margin-bottom: 30px;
    font-weight: 700;
}

#booking form {
    max-width: 500px;
    margin: auto;
    background: #ffffff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

#booking input,
#booking textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border-radius: 8px;
    border: 1px solid #ddd;
    font-size: 15px;
    transition: 0.3s;
}

#booking input:focus,
#booking textarea:focus {
    background-color: #ffc107;
    outline: none;
    box-shadow: 0 0 5px rgba(40,167,69,0.3);
}

.book-btn {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 25px;
    background:#ffc107;
    color: white;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
}

.book-btn:hover {
    background:#ffc107;
    transform: scale(1.05);
}

/* Success Message Animation */
#msg {
    animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
    from {opacity: 0; transform: translateY(-10px);}
    to {opacity: 1; transform: translateY(0);}
}

/* Road Animation */
.road {
    margin-top: 60px;
    height: 80px;
    background: #444;
    position: relative;
    border-radius: 50px;
    overflow: hidden;
}

/* Road line */
.road::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 4px;
    background: repeating-linear-gradient(
        to right,
        white 0px,
        white 40px,
        transparent 40px,
        transparent 80px
    );
    top: 50%;
    transform: translateY(-50%);
}

/* Car Animation */
.car {
    position: absolute;
    font-size: 35px;
    top: 20px;
    animation: drive 6s linear infinite;
}

@keyframes drive {
    from {
        left: -50px;
    }
    to {
        left: 100%;
    }
}
.rating {
    margin-top: 15px;
    font-weight: bold;
    color: #ff9800;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero{
        height:90vh;
    }
.about-wrapper{
flex-direction: column;
text-align: center;
}

/* Features mobile me 1 column */
.features{
grid-template-columns: 1fr;
font-size: 15px;
}

/* Hero text */
.hero h1{
font-size: 28px;
}

/* Section padding fix */
section{
padding:20px 15px;
margin:10px;
}

/* Cards full width */
.card{
width:100%;
padding:20px;
}

/* Booking form full width */
#booking{
width:100%;
max-width:100%;
padding:20px;
}

/* Image responsive */
.hero img{
width:100%;
height:auto;
}

}
/* Desktop features grid */
.features {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 15px;
margin-bottom: 30px;
font-size: 16px;
}

/* Hero animation */
.hero h1{
animation: zoomBounce 1.5s ease forwards;
}

@keyframes zoomBounce {

0% {
transform: scale(0.5);
opacity: 0;
}

60% {
transform: scale(1.1);
opacity: 1;
}

100% {
transform: scale(1);
}

}


.hero p{
    animation: zoomBounce 1.5s ease forwards;
}

@keyframes zoomBounce {
    0% { transform: scale(0.5); opacity: 0; }
    60% { transform: scale(1.1); opacity: 1; }
    100% { transform: scale(1); }
}
/* Help Section Styling */
#note {
    width: 100%;
    padding: 10px;
    border-radius: 8px;
    border: 1px solid #ccc;
    font-size: 14px;
    resize: vertical;
}
.help-section {
    padding: 25px 20px;
    border-radius: 15px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.1);
    max-width: 500px;
    margin: 20px auto;
    font-family: 'Arial', sans-serif;
    text-align: center;
    transition: 0.3s;
}

.help-section:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.help-section h3 {
    color: #00796b;
    margin-bottom: 10px;
    font-size: 22px;
}

.help-section p {
    color: #555;
    font-size: 14px;
    margin-bottom: 15px;
}

.help-section textarea {
    width: 100%;
    padding: 12px;
    border-radius: 12px;
    border: 1px solid #ccc;
    font-size: 14px;
    resize: vertical;
    transition: 0.3s;
}

.help-section textarea:focus {
    border-color: #00a86b;
    box-shadow: 0 0 5px rgba(0,168,107,0.3);
    outline: none;
}

#whatsappButton {
    background-color: #25D366; /* WhatsApp green */
    color: white;
    padding: 12px 25px;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    font-weight: bold;
    font-size: 16px;
    transition: 0.3s;
    margin-top: 10px;
}

#whatsappButton:hover {
    background-color: #128C7E;
    transform: scale(1.05);
}
.footer{
background:#0f172a;
color:#ddd;
margin-top:70px;
}

.footer::before{
content:"";
display:block;
height:4px;
background:linear-gradient(90deg,#ffc107,#ff9800);
}

.footer-container{
max-width:1200px;
margin:auto;
padding:50px 20px;
display:grid;
grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
gap:40px;
}

.logo{
color:#ffc107;
margin-bottom:10px;
}

.footer-col h3{
color:white;
margin-bottom:15px;
}

.footer-col p{
font-size:14px;
line-height:1.6;
color:#bbb;
}

.footer-col ul{
list-style:none;
padding:0;
}

.footer-col ul li{
margin-bottom:8px;
}

.footer-col ul li a{
text-decoration:none;
color:#bbb;
transition:0.3s;
}

.footer-col ul li a:hover{
color:#ffc107;
padding-left:5px;
}

/* Social icons */

.social a{
display:inline-block;
margin-right:10px;
font-size:20px;
color:#bbb;
transition:0.3s;
}

.social a:hover{
color:#ffc107;
transform:scale(1.2);
}

/* Bottom */

.footer-bottom{
text-align:center;
padding:15px;
background:#020617;
font-size:14px;
color:#888;
}

.faq-section{
width:80%;
margin:60px auto;
font-family: Arial;
}

.faq-section h2{
text-align:center;
margin-bottom:30px;
}

.faq-question{
width:100%;
background:#ffc107;
border:none;
padding:15px;
font-size:16px;
text-align:left;
cursor:pointer;
margin-top:10px;
border-radius:6px;
font-weight:bold;
}

.faq-answer{
display:none;
padding:15px;
background:#f5f5f5;
border-radius:6px;
}
.help-section {
  padding: 60px 20px;
  text-align: center;
  background: #f9f9f9;
}

.help-subtext {
  margin-bottom: 30px;
  color: #555;
}

.help-box {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.help-item {
  background: #fff;
  padding: 20px;
  border-radius: 15px;
  width: 250px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  transition: 0.3s;
}

.help-item:hover {
  transform: translateY(-8px);
}

.help-btn {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 20px;
  background: #ffc107;
  color: black;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
}