* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body */
body {
    font-family: 'Roboto', sans-serif;
    background-color: #ffffff;
    color: #2f3640;
    transition: background-color 0.5s ease, color 0.5s ease;
}

/* Header */
.header {
    background-color: #2c3e50;
    padding: 1rem 2rem;
    position: fixed;
    width: 100%;
    z-index: 100;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    color: white;
}

.nav-links {
    display: flex;
    gap: 20px;
    list-style: none;
}

.nav-links li a {
    text-decoration: none;
    color: white;
    font-weight: 600;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.nav-links li a:hover {
    color: #e74c3c;
}

.hero-section {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh; /* Full viewport height */
    background: url('backg.png') no-repeat center center/cover;
    text-align: center;
    padding: 2rem;
}
.hero-heading {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.book-btn-home {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    padding: 18px 36px;
    font-size: 1.5rem;
    font-weight: bold;
    border-radius: 50px;
    cursor: pointer;
    text-decoration: none;
    text-transform: uppercase;
    display: inline-block;
    transition: all 0.3s ease-in-out;
    margin-top: 20px;
    border: none;
}

/* Hover Effect */
.book-btn-home:hover {
    background: linear-gradient(135deg, #c0392b, #e74c3c);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* About Section */
.about-section {
    text-align: center;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
    padding: 4rem 2rem;
    background-color: #ecf0f1;
}

.section-heading {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.about-description {
    font-size: 1.2rem;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

/* Promo Section */
.promo-section {
    background-color: #f39c12;
    padding: 3rem 2rem;
    text-align: center;
    color: #ffffff;
}

.promo-section h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.promo-section p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.whatsapp-btn {
    background-color: #25D366;
    padding: 0.8rem 2rem;
    color: #ffffff;
    font-weight: 600;
    border-radius: 5px;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.3s;
}

.whatsapp-btn:hover {
    background-color: #128C7E;
}

/* Footer */
.footer {
    padding: 40px 20px;
    background-color: #2c3e50;
    color: white;
    text-align: center;
    margin-top: 40px;
}

.social-links a {
    color: white;
    margin: 0 15px;
    text-decoration: none;
    font-weight: 600;
}

.social-links a:hover {
    color: #e74c3c;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: #ffffff;
    color: #2f3640;
    transition: background-color 0.5s ease, color 0.5s ease;
}

/* Header */
.header {
    background-color: #2c3e50;
    padding: 1rem 2rem;
    position: fixed;
    width: 100%;
    z-index: 100;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    color: white;
}
.nav-links {
    display: flex;
    gap: 20px;
    list-style: none;
}

.nav-links li {
    position: relative;
}

.nav-links li::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #e74c3c;
    transform: scaleX(0);
    transform-origin: bottom right;
    transition: transform 0.3s ease;
    z-index: 2;
}

.nav-links li:hover::before {
    transform: scaleX(1);
    transform-origin: bottom left;
}

.nav-links li a {
    text-decoration: none;
    color: white;
    font-weight: 600;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.nav-links li a:hover {
    color: #e74c3c;
}

/* Hero Section */

.hero-section {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: url('backg.png') no-repeat center center/cover;
    color: white;
    text-align: center;
    padding: 2rem;
}

/* Book Now Button inside Home Section */
.book-btn-home {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    padding: 18px 36px;
    font-size: 1.5rem;
    font-weight: bold;
    border-radius: 50px;
    cursor: pointer;
    text-decoration: none;
    text-transform: uppercase;
    display: inline-block;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease-in-out;
    margin-top: 20px;
    border: none;
    position: relative;
    overflow: hidden;
}

/* Hover Effect */
.book-btn-home:hover {
    background: linear-gradient(135deg, #c0392b, #e74c3c);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Focus Effect */
.book-btn-home:focus {
    outline: none;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
}

/* After (Arrow Effect) */
.book-btn-home::after {
    content: ' →';
    font-size: 1.3rem;
    position: absolute;
    right: 20px;
    transition: transform 0.3s ease;
}

/* Hover Arrow Movement */
.book-btn-home:hover::after {
    transform: translateX(10px);
}

/* New Animation for Button */
@keyframes hover-animation {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

/* Hover animation */
.book-btn-home:hover {
    animation: hover-animation 0.5s ease-in-out;
}

/* Other Sections */
.about-section, .pricing-section, .features-section, .contact-section, .pick-section, .drop-section {
    background-color: #ffffff;
    padding: 80px 20px;
}

/* Pick and Drop */
.pick-section, .drop-section {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    padding: 60px 20px;
    margin-top: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    text-align: center;
    overflow: hidden;
    font-family: 'Montserrat', sans-serif;
    transition: all 0.3s ease;
}

.pick-section:hover, .drop-section:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.pick-section h2, .drop-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.pick-section p, .drop-section p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 30px;
    color: #f7f9fc;
    font-weight: 400;
    text-align: justify;
}

/* Button: Book Now (WhatsApp) */
.book-btn {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    padding: 1rem 2rem;
    font-size: 1.2rem;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    font-weight: bold;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-block;
    transition: background 0.3s ease, color 0.3s ease;
}

.book-btn:hover {
    background-color: #c0392b;
    color: white;
}

.book-btn:focus {
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

/* About Section */
.about-section {
    text-align: center;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

.about-description {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-top: 20px;
    color: #7f8c8d;
}

/* Pricing Section */
.pricing-section {
    text-align: center;
}

.pricing-card {
    background-color: #fff;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    border-radius: 15px;
    padding: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* Features Section */
.features-section {
    text-align: center;
    background-color: #f7f9fc;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
}

.feature-item {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-item:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.pick-section,
.drop-section {
  background: linear-gradient(to right, #e8f0fe, #fce4ec);
  padding: 80px 20px;
  text-align: center;
}

.service-wrapper {
  max-width: 800px;
  margin: 0 auto;
  padding: 30px;
  background: #ffffffdd;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.service-heading {
  font-size: 2.5em;
  font-weight: 700;
  color: #222;
  margin-bottom: 20px;
  text-shadow: 1px 1px #ccc;
}

.service-description {
  font-size: 1.2em;
  color: #444;
  margin-bottom: 30px;
}

.book-btn {
  background-color: #25d366;
  color: #fff;
  padding: 14px 30px;
  border: none;
  border-radius: 8px;
  font-size: 1em;
  font-weight: bold;
  cursor: pointer;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.book-btn:hover {
  background-color: #1ebe5d;
}

.highlight {
  margin-top: 25px;
  font-size: 1.1em;
  color: #880e4f;
  font-weight: 600;
}

/* Contact Section */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 500px;
    margin: 0 auto;
}

.contact-form input,
.contact-form textarea {
    padding: 1rem;
    border: 2px solid #ccc;
    border-radius: 8px;
    font-size: 1rem;
    width: 100%;
    margin-bottom: 10px;
}

.contact-form button {
    padding: 1rem 2rem;
    background-color: #e74c3c;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.contact-form button:hover {
    background-color: #c0392b;
}

/* Footer */
.footer {
    padding: 40px 20px;
    background-color: #2c3e50;
    color: white;
    text-align: center;
    margin-top: 40px;
}

.social-links a {
    color: white;
    margin: 0 15px;
    text-decoration: none;
    font-weight: 600;
}

.social-links a:hover {
    color: #e74c3c;
}

/* Promo Section */
.promo-section {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    padding: 60px 20px;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
}

.promo-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    animation: bounceIn 1s ease;
}

.promo-content p {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.whatsapp-btn {
    margin-top: 20px;
    display: inline-block;
    background: #25d366;
    color: white;
    padding: 1rem 2rem;
    border-radius: 30px;
    font-weight: bold;
    text-decoration: none;
    transition: background 0.3s ease;
}

.whatsapp-btn:hover {
    background: #128c7e;
}

@keyframes bounceIn {
    0% {
        transform: scale(0.8);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Responsive */
@media screen and (max-width: 768px) {
    .pick-section, .drop-section {
        padding: 40px 15px;
    }

    .pick-section h2, .drop-section h2 {
        font-size: 2rem;
    }

    .pick-section p, .drop-section p {
        font-size: 1.1rem;
    }

    .book-btn {
        font-size: 1rem;
    }
}
/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: #ffffff;
    color: #2f3640;
    transition: background-color 0.5s ease, color 0.5s ease;
}

/* Header */
.header {
    background-color: #2c3e50;
    padding: 1rem 2rem;
    position: fixed;
    width: 100%;
    z-index: 100;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
}

.nav-links li a {
    text-decoration: none;
    color: #ffffff;
    font-weight: 600;
    font-size: 1.1rem;
}

.theme-toggle {
    font-size: 1.5rem;
    background: none;
    border: none;
    color: #ffffff;
    cursor: pointer;
}

/* Hero Section */
.hero-section {
    background-image: url('background.jpg');
    background-size: cover;
    background-position: center;
    padding: 120px 2rem;
    text-align: center;
    color: #ffffff;
}

.hero-heading {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.cta-button {
    background-color: #f39c12;
    padding: 0.8rem 2rem;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: #e67e22;
}

/* About Section */
.about-section {
    padding: 4rem 2rem;
    background-color: #ecf0f1;
    text-align: center;
}

.section-heading {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.about-description {
    font-size: 1.2rem;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

/* Promo Section */
.promo-section {
    background-color: #f39c12;
    padding: 3rem 2rem;
    text-align: center;
    color: #ffffff;
}

.promo-section h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.promo-section p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.whatsapp-btn {
    background-color: #25D366;
    padding: 0.8rem 2rem;
    color: #ffffff;
    font-weight: 600;
    border-radius: 5px;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.3s;
}

.whatsapp-btn:hover {
    background-color: #128C7E;
}

/* Pricing Section */
.pricing-section {
    padding: 4rem 2rem;
    background-color: #ffffff;
    text-align: center;
}

.pricing-card {
    background-color: #f39c12;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
    transition: transform 0.3s;
}

.pricing-card:hover {
    transform: scale(1.05);
}

.price {
    font-size: 2rem;
    font-weight: 700;
    margin: 1rem 0;
}

.book-btn {
    display: inline-block;
    background-color: #2c3e50;
    padding: 0.8rem 2rem;
    color: #ffffff;
    font-weight: 600;
    border-radius: 5px;
    text-decoration: none;
}

.book-btn:hover {
    background-color: #34495e;
}

/* Features Section */
.features-section {
    padding: 4rem 2rem;
    background-color: #ecf0f1;
    text-align: center;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.feature-item {
    background-color: #f39c12;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    font-weight: 600;
}

/* Pick-up Section */
.pick-section {
    background-color: #ffffff;
    padding: 4rem 2rem;
    text-align: center;
}

.service-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.service-heading {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.service-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.highlight {
    font-size: 1.2rem;
    font-weight: 700;
    color: #f39c12;
}

.book-btn {
    display: inline-block;
    background-color: #2c3e50;
    padding: 0.8rem 2rem;
    color: #ffffff;
    font-weight: 600;
    border-radius: 5px;
    text-decoration: none;
}

.book-btn:hover {
    background-color: #34495e;
}

/* Drop-off Section */
.drop-section {
    background-color: #ffffff;
    padding: 4rem 2rem;
    text-align: center;
}

.book-btn {
    display: inline-block;
    background-color: #2c3e50;
    padding: 0.8rem 2rem;
    color: #ffffff;
    font-weight: 600;
    border-radius: 5px;
    text-decoration: none;
}

.book-btn:hover {
    background-color: #34495e;
}

/* Contact Section */
.contact-section {
    padding: 4rem 2rem;
    background-color: #ffffff;
    text-align: center;
}

.contact-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
}

.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 0.8rem;
    border-radius: 5px;
    border: 1px solid #ccc;
}

.contact-form button {
    background-color: #f39c12;
    padding: 0.8rem 2rem;
    color: #ffffff;
    font-weight: 600;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.contact-form button:hover {
    background-color: #e67e22;
}

/* Footer */
.footer {
    background-color: #2c3e50;
    padding: 2rem 0;
    text-align: center;
    color: #ffffff;
}

.social-links a {
    text-decoration: none;
    color: #ffffff;
    margin: 0 1rem;
    font-weight: 600;
}

.social-links a:hover {
    color: #f39c12;
}

/* Theme Toggle */
body.light-mode {
    background-color: #ffffff;
    color: #2f3640;
}

body.dark-mode {
    background-color: #2f3640;
    color: #ffffff;
}
