/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Fonts */
body {
  font-family: 'Poppins', sans-serif;
  background: #f9f9f9;
  color: #333;
  line-height: 1.6;
}

/* Navbar */
.navbar {
  background: linear-gradient(90deg, #080808, #000000);
  padding: 15px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

.navbar ul li a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}

.navbar ul li a:hover {
  color: rgb(243, 61, 11);
}

.quote-btn {
  background: rgb(241, 217, 5);
  color: #000;
  padding: 8px 15px;
  border-radius: 5px;
  transition: 0.3s;
}

.quote-btn:hover {
  background: #fff;
  color: #004aad;
}

/* Hero Section */
.hero {
  height: 80vh;
  background: url("{%images/hero-bg.png' %}") no-repeat center center/cover;

  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  animation: fadeIn 2s ease-in-out;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 10px;
  animation: slideUp 1.5s ease-in-out;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.hero .btn {
  background: gold;
  color: #000;
  padding: 12px 25px;
  border-radius: 5px;
  transition: 0.3s;
}

.hero .btn:hover {
  background: #fff;
  color: #004aad;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

/* Cards & Grids */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  padding: 40px;
}

.card {
  background: #fff;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s, box-shadow 0.3s;
  animation: fadeInUp 1s ease-in-out;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.card img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 15px;
}

/* Page Header */
.page-header {
  text-align: center;
  padding: 40px 20px;
  background: linear-gradient(90deg, #00c6ff, #004aad);
  color: #fff;
  animation: fadeInDown 1.5s ease-in-out;
}

.page-header h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

/* Footer */
footer {
  background: #222;
  color: #fff;
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

footer .social-icons img {
  width: 25px;
  margin-left: 10px;
  transition: 0.3s;
}

footer .social-icons img:hover {
  transform: scale(1.2);
}

/* Animations */
@keyframes fadeIn {
  from {opacity: 0;}
  to {opacity: 1;}
}

@keyframes slideUp {
  from {transform: translateY(50px); opacity: 0;}
  to {transform: translateY(0); opacity: 1;}
}

@keyframes fadeInUp {
  from {transform: translateY(20px); opacity: 0;}
  to {transform: translateY(0); opacity: 1;}
}

@keyframes fadeInDown {
  from {transform: translateY(-20px); opacity: 0;}
  to {transform: translateY(0); opacity: 1;}
}

.hero h1 {
  font-size: 3rem;
  font-weight: 700;
  color: #fff; /* white is best for readability */
  overflow: hidden;
  /*border-right: .15em solid gold;  cursor effect */
  white-space: nowrap;
  animation: typing 3s steps(30, end), blink-caret .75s step-end infinite;
}

@keyframes typing {
  from { width: 0 }
  to { width: 100% }
}

@keyframes blink-caret {
  from, to { border-color: transparent }
  50% { border-color: gold; }
}

/* General Page Layout */
body {
    font-family: 'Segoe UI', Arial, sans-serif;
    background: #f4f6f9;
    margin: 0;
    padding: 0;
    color: #333;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
    padding: 70px 20px;
    text-align: center;
    animation: fadeInDown 1s ease-in-out;
}
.page-header h1 {
    font-size: 48px;
    margin-bottom: 15px;
}
.page-header .tagline {
    font-size: 22px;
    font-style: italic;
}

/* Single Card Wrapper */
.event-card {
    max-width: 1100px;
    margin: 40px auto;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    padding: 40px;
    animation: fadeInUp 1s ease-in-out;
}

/* Section Headings */
.event-card h2 {
    margin-top: 30px;
    font-size: 28px;
    color: #070707;
    border-bottom: 2px solid #007bff;
    display: inline-block;
    padding-bottom: 5px;
    animation: zoomIn 0.8s ease-in-out;
}

/* Services */
.service-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}
.service-card {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 12px;
    width: 320px;
    text-align: center;
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
    transition: transform 0.4s, box-shadow 0.4s;
    animation: fadeInUp 1s ease-in-out;
}
.service-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 12px 22px rgba(0,0,0,0.2);
}
.service-card h3 {
    margin-bottom: 10px;
    color: #007bff;
}

/* Gallery */
.gallery-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    justify-content: center;
}
.gallery-item img {
    width: 100%;
    max-width: 500px;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.2);
    transition: transform 0.4s;
    animation: zoomIn 1s ease-in-out;
}
.gallery-item img:hover {
    transform: scale(1.08);
}
.event-gallery video {
    width: 100%;
    max-width: 600px;
    border-radius: 12px;
    margin-top: 20px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.2);
    animation: zoomIn 1s ease-in-out;
}

/* Testimonials */
.testimonial-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}
.testimonial-card {
    background: #fff3cd;
    padding: 30px;
    border-radius: 12px;
    width: 320px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.15);
    text-align: center;
    transition: transform 0.4s;
    animation: fadeInUp 1s ease-in-out;
}
.testimonial-card:hover {
    transform: translateY(-8px);
}
.testimonial-card .review {
    font-style: italic;
    margin-bottom: 15px;
}
.testimonial-card .client-name {
    font-weight: bold;
    color: #007bff;
}
.testimonial-card .rating {
    color: #ff9800;
    font-weight: bold;
}

/* Booking Button */
.event-booking {
    text-align: center;
    margin: 50px 0;
}
.btn-book {
    display: inline-block;
    background: #28a745;
    color: white;
    padding: 18px 40px;
    border-radius: 12px;
    text-decoration: none;
    font-size: 22px;
    font-weight: bold;
    transition: background 0.3s, transform 0.3s;
    animation: pulse 2s infinite;
}
.btn-book:hover {
    background: #218838;
    transform: scale(1.05);
}

/* Animations */
@keyframes fadeInUp {
    from {opacity: 0; transform: translateY(30px);}
    to {opacity: 1; transform: translateY(0);}
}
@keyframes fadeInDown {
    from {opacity: 0; transform: translateY(-30px);}
    to {opacity: 1; transform: translateY(0);}
}
@keyframes zoomIn {
    from {opacity: 0; transform: scale(0.8);}
    to {opacity: 1; transform: scale(1);}
}
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.08); }
    100% { transform: scale(1); }
}
/* Contact Page Header */
.contact-header {
    background: linear-gradient(135deg, #007bff, #00c6ff);
    color: #fff;
    text-align: center;
    padding: 60px 20px;
}
.contact-header h1 {
    font-size: 36px;
    margin-bottom: 10px;
    font-weight: 700;
}
.contact-header p {
    font-size: 18px;
    opacity: 0.9;
}

/* Contact Form Container */
.contact-form {
    max-width: 600px;
    margin: 40px auto;
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

/* Form Fields */
.contact-form .form-group {
    margin-bottom: 20px;
}
.contact-form label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
}
.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 15px;
    transition: 0.3s;
}
.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #007bff;
    outline: none;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.3);
}

/* Submit Button */
.contact-form .btn {
    width: 100%;
    background: #007bff;
    color: #fff;
    padding: 14px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}
.contact-form .btn:hover {
    background: #0056b3;
}

/* Footer */
footer {
    background: #222;
    color: #fff;
    text-align: center;
    padding: 20px 0;
    margin-top: 50px;
}
footer p {
    margin: 5px 0;
    font-size: 14px;
}
footer span {
    font-size: 18px;
    color: #00c6ff;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #007bff, #00c6ff);
    color: #fff;
    text-align: center;
    padding: 60px 20px;
}
.page-header h1 {
    font-size: 36px;
    margin-bottom: 10px;
    font-weight: 700;
}
.page-header p {
    font-size: 18px;
    opacity: 0.9;
}

/* About Content */
.about-content {
    max-width: 900px;
    margin: 40px auto;
    padding: 20px;
}
.about-content .card {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
    transition: 0.3s;
}
.about-content .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 25px rgba(0,0,0,0.15);
}
.about-content h3 {
    margin-top: 20px;
    color: #007bff;
    font-weight: 600;
}
.about-content p {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
}

/* Responsive */
@media (max-width: 768px) {
    .page-header h1 {
        font-size: 28px;
    }
    .about-content .card {
        padding: 20px;
    }
}

/* ===== Page Header ===== */
.page-header {
    background: linear-gradient(135deg, #007bff, #00c6ff);
    color: #fff;
    text-align: center;
    padding: 60px 20px;
}
.page-header h1 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
}
.page-header p {
    font-size: 18px;
    opacity: 0.9;
}

/* ===== Event Card Wrapper ===== */
.event-card {
    max-width: 1000px;
    margin: 40px auto;
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
}

/* ===== Section Headings ===== */
.event-card h2 {
    color: #007bff;
    margin-bottom: 15px;
    font-weight: 600;
}

/* ===== Overview ===== */
.event-overview p {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
}

/* ===== Services Grid ===== */
.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}
.service-card {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.05);
    transition: 0.3s;
}
.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 15px rgba(0,0,0,0.1);
}
.service-card h3 {
    color: #333;
    margin-bottom: 10px;
}
.service-card p {
    color: #555;
}

/* ===== Gallery ===== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}
.gallery-item img {
    width: 100%;
    border-radius: 8px;
    transition: 0.3s;
}
.gallery-item img:hover {
    transform: scale(1.05);
}

/* ===== Video Section ===== */
.event-video video {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

/* ===== Testimonials ===== */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}
.testimonial-card {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.05);
    transition: 0.3s;
}
.testimonial-card:hover {
    transform: translateY(-5px);
}
.testimonial-card p {
    font-style: italic;
    color: #333;
}
.testimonial-card h4 {
    margin-top: 10px;
    color: #007bff;
}
.testimonial-card .rating {
    color: #ffb400;
    font-weight: 600;
}

/* ===== Booking Button ===== */
.event-booking {
    text-align: center;
    margin-top: 30px;
}
.btn-book {
    background: #ffb400;
    color: #fff;
    padding: 12px 30px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}
.btn-book:hover {
    background: #e0a200;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
    .page-header h1 {
        font-size: 28px;
    }
    .event-card {
        padding: 20px;
    }
}

/* ===== Global ===== */
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background: #f5f7fa;
    color: #333;
}
section {
    padding: 60px 20px;
    text-align: center;
}
h2 {
    margin-bottom: 30px;
    color: #007bff;
    font-size: 28px;
    font-weight: 600;
}

/* ===== Hero Section ===== */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
}
.hero-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.5);
}
.hero-content {
    position: relative;
    z-index: 2;
}
.hero-content h1 {
    font-size: 48px;
    animation: fadeInDown 1.5s ease;
}
.hero-content p {
    font-size: 20px;
    margin: 15px 0;
    animation: fadeInUp 2s ease;
}
.hero-content .btn {
    background: #ffb400;
    padding: 12px 30px;
    border-radius: 6px;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}
.hero-content .btn:hover {
    background: #e0a200;
}

/* ===== Stats Section ===== */
.stat-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
}
.stat-card {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0,0,0,0.1);
    width: 200px;
    transition: transform 0.3s;
}
.stat-card h2 {
    font-size: 36px;
    color: #ffb400;
}
.stat-card:hover {
    transform: scale(1.05);
}

/* ===== Grids ===== */
.category-grid, .event-grid, .service-grid, .why-grid,
.blog-grid, .testimonial-grid, .gallery-grid, .team-grid, .package-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
    gap: 20px;
}
.category-card, .event-card, .service-card, .why-card,
.blog-card, .testimonial-card, .gallery-item, .team-card, .package-card {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0,0,0,0.1);
    transition: 0.3s;
}
.category-card:hover, .event-card:hover, .service-card:hover,
.why-card:hover, .blog-card:hover, .testimonial-card:hover,
.gallery-item:hover, .team-card:hover, .package-card:hover {
    transform: translateY(-5px);
}

/* ===== Gallery ===== */
.gallery-item img {
    width: 100%;
    border-radius: 8px;
    transition: 0.3s;
}
.gallery-item img:hover {
    transform: scale(1.05);
}

/* ===== Team ===== */
.team-card img {
    width: 100%;
    border-radius: 50%;
    margin-bottom: 10px;
}

/* ===== CTA ===== */
.cta {
    background: linear-gradient(135deg, #007bff, #00c6ff);
    color: #fff;
    padding: 80px 20px;
}
.cta h2 {
    font-size: 32px;
    margin-bottom: 20px;
}
.cta .btn {
    background: #ffb400;
    padding: 12px 30px;
    border-radius: 6px;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}
.cta .btn:hover {
    background: #e0a200;
}

/* ===== Animations ===== */
@keyframes fadeInDown {
    from {opacity:0; transform: translateY(-30px);}
    to {opacity:1; transform: translateY(0);}
}
@keyframes fadeInUp {
    from {opacity:0; transform: translateY(30px);}
    to {opacity:1; transform: translateY(0);}
}
.animate-fade { animation: fadeInUp 1.5s ease; }
.animate-slide-up { animation: fadeInUp 1.5s ease; }

/* ===== Responsive ===== */
@media (max-width: 768px) {
    .hero-content h1 { font-size: 32px; }
    .hero-content p { font-size: 16px; }
    .stat-grid { flex-direction: column; gap: 20px; }
}

html, body {
  height: 100%;
  margin: 0;
  display: flex;
  flex-direction: column;
}

.main-content {
  flex: 1; /* content ko flexible banata hai */
}

footer {
  background: #222;
  color: #fff;
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-left, .footer-right {
  flex: 1;
}
.footer-right {
  text-align: right;
}
.social-icons img {
  width: 24px;
  margin-left: 10px;
  transition: transform 0.3s;
}
.social-icons img:hover {
  transform: scale(1.2);
}
/* CTA Section */
.cta {
    background: linear-gradient(135deg, #007bff, #00c6ff);
    color: #fff;
    padding: 60px 20px;   /* reduce padding if needed */
    margin: 0;            /* remove bottom margin */
}

/* Footer */
footer {
    background: #000;
    color: #fff;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0;            /* remove top margin */
}
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-40px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Hero Animations */
.animate-title {
  animation: fadeInDown 1.5s ease forwards;
}

.animate-sub {
  animation: fadeInUp 2s ease forwards;
}

.animate-btn {
  animation: fadeInUp 2.5s ease forwards;
}
#animated-heading {
  font-size: 48px;
  font-weight: 700;
  color: #fff;
  opacity: 0;
  animation: fadeInWord 0.5s forwards;
}

@keyframes fadeInWord {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
/* ===== Quote Form Section ===== */
.quote-form {
    max-width: 600px;
    margin: 60px auto;
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    animation: fadeInUp 1s ease-in-out;
}

.quote-form h2 {
    text-align: center;
    margin-bottom: 25px;
    font-size: 28px;
    font-weight: 600;
    color: #007bff;
}

/* ===== Form Fields ===== */
.quote-form form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.quote-form input,
.quote-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 15px;
    transition: 0.3s;
}

.quote-form input:focus,
.quote-form textarea:focus {
    border-color: #007bff;
    outline: none;
    box-shadow: 0 0 8px rgba(0, 123, 255, 0.3);
}

/* ===== Submit Button ===== */
.quote-form button {
    background: #007bff;
    color: #fff;
    padding: 14px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.quote-form button:hover {
    background: #0056b3;
    transform: scale(1.05);
}

/* ===== Success Page ===== */
.quote-success {
    text-align: center;
    margin: 80px auto;
    max-width: 600px;
    background: #f8f9fa;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
    animation: fadeInUp 1s ease-in-out;
}

.quote-success h2 {
    color: #28a745;
    font-size: 32px;
    margin-bottom: 15px;
}

.quote-success p {
    font-size: 18px;
    margin-bottom: 25px;
    color: #333;
}

.quote-success .btn {
    background: #007bff;
    color: #fff;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.quote-success .btn:hover {
    background: #0056b3;
}

/* ===== Animations ===== */
@keyframes fadeInUp {
    from {opacity: 0; transform: translateY(30px);}
    to {opacity: 1; transform: translateY(0);}
}


/* ===== Mobile Responsive Fixes ===== */
@media (max-width: 768px) {
  /* Navbar */
  .navbar {
    flex-direction: column;
    align-items: flex-start;
  }
  .navbar ul {
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
  }

  /* Hero Section */
  .hero {
    min-height: auto;
    height: auto;
    padding: 40px 20px;
    text-align: center;
  }
  .hero h1 {
    font-size: 28px;
  }
  .hero p {
    font-size: 16px;
  }
  .hero .btn {
    padding: 10px 20px;
    font-size: 14px;
  }

  /* Cards & Grids */
  .grid,
  .service-grid,
  .testimonial-grid,
  .gallery-grid,
  .stat-grid {
    grid-template-columns: 1fr;
    flex-direction: column;
    gap: 15px;
  }
  .card,
  .service-card,
  .testimonial-card,
  .stat-card {
    width: 100%;
    max-width: 90%;
    margin: 0 auto;
  }

  /* Images */
  .card img,
  .gallery-item img,
  .team-card img {
    width: 100%;
    height: auto;
    object-fit: cover;
  }

  /* Footer */
  footer {
    flex-direction: column;
    text-align: center;
  }
  .footer-left,
  .footer-right {
    text-align: center;
    margin: 10px 0;
  }
}

/* ===== Navbar Toggle Override ===== */

/* Hamburger icon hidden on desktop */
.menu-toggle {
  display: none !important;
  font-size: 28px;
  cursor: pointer;
  color: #fff;
}

/* Mobile view */
@media (max-width: 768px) {
  nav ul {
    display: none !important; /* hide menu by default */
    flex-direction: column;
    gap: 10px;
    background: #000;
    padding: 10px;
    width: 100%;
  }
  nav ul.show {
    display: flex !important; /* show when toggled */
  }
  .menu-toggle {
    display: block !important; /* show hamburger icon */
  }

  .navbar {
    flex-direction: column !important;
    align-items: flex-start !important;
  }
  .quote-btn {
    margin-top: 10px !important;
  }
}

