/* ===== DRIVER ASSISTANCE FUND POLICY SECTION ===== */
.assistance-fund-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f3e5f5 0%, #e0f7fa 100%);
    text-align: center;
}

.assistance-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #6a1b9a;
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
}

.assistance-title::after {
    content: "";
    position: absolute;
    width: 60%;
    height: 4px;
    background: #00b894;
    bottom: -8px;
    left: 20%;
    border-radius: 2px;
}

.assistance-date {
    color: #888;
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.assistance-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 30px;
}

.assistance-card {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
    padding: 30px 20px;
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.assistance-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.13);
}

.assistance-card h3 {
    font-size: 1.2rem;
    color: #6a1b9a;
    margin-bottom: 10px;
}

.assistance-card p, .assistance-card ul {
    color: #555;
    font-size: 1rem;
    margin-bottom: 0;
}

.assistance-card ul {
    padding-left: 18px;
    margin-top: 0;
    margin-bottom: 0;
}

.assistance-contact {
    margin-top: 40px;
    background: #f8f8ff;
    border-radius: 12px;
    padding: 30px 20px;
    box-shadow: 0 2px 10px rgba(106,27,154,0.07);
}

.assistance-contact h3 {
    color: #00796b;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.assistance-note {
    color: #888;
    font-size: 0.95rem;
    margin-top: 18px;
}

.assistance-prepared {
    color: #6a1b9a;
    font-size: 1rem;
    margin-top: 10px;
    font-weight: 600;
}

@media (max-width: 1200px) {
    .assistance-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 800px) {
    .assistance-grid {
        grid-template-columns: 1fr;
    }
    .assistance-card {
        padding: 20px 10px;
    }
    .assistance-contact {
        padding: 20px 10px;
    }
    .assistance-title {
        font-size: 2rem;
    }
}
html, body {
    overflow-x: hidden;
}
/* ===== Social Support Gallery Section ===== */
.social-support-gallery {
  padding: 80px 0;
  background: #fafafa;
  text-align: center;
}

.social-support-gallery .container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

.gallery-heading {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 50px;
  position: relative;
  display: inline-block;
}

.gallery-heading::after {
  content: "";
  position: absolute;
  width: 60%;
  height: 3px;
  background: #00b894;
  bottom: -10px;
  left: 20%;
  border-radius: 5px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.gallery-card {
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.gallery-card:hover img {
  transform: scale(1.05);
}

/* ===== Responsive Design ===== */
@media (max-width: 992px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .gallery-heading {
    font-size: 2rem;
  }
}

/* ===== DRIVERS DONATION SECTION ===== */
.donation-section {
  padding: 80px 10%;
  background: linear-gradient(135deg, #f9fafc 0%, #e6ecff 100%);
  text-align: center;
}

.donation-section h2 {
  font-size: 2.5rem;
  color: #1e2a47;
  font-weight: 700;
  margin-bottom: 10px;
  position: relative;
  display: inline-block;
}

.donation-section h2::after {
  content: "";
  position: absolute;
  width: 60%;
  height: 4px;
  background: #4b6cb7;
  bottom: -8px;
  left: 20%;
  border-radius: 2px;
}

.donation-section p {
  color: #555;
  font-size: 1rem;
  margin-bottom: 50px;
}

/* ===== CARD GRID ===== */
.donation-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* ===== Driver Ownership Bonus Policy SECTION ===== */
.referral-bonus-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #e0f7fa 0%, #f9fafc 100%);
    text-align: center;
}

.referral-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #00796b;
    margin-bottom: 40px;
    position: relative;
    display: inline-block;
}

.referral-title::after {
    content: "";
    position: absolute;
    width: 60%;
    height: 4px;
    background: #00b894;
    bottom: -8px;
    left: 20%;
    border-radius: 2px;
}

/* Grid - 3 cards per row */
.referral-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    justify-content: center;
    align-items: stretch;
    max-width: 1200px;
    margin: 0 auto;
}

/* Individual Card */
.referral-card {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
    padding: 25px 20px;
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 300px; /* reduced height */
}

.referral-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.13);
}

.referral-icon {
    font-size: 2.3rem;
    color: #00b894;
    margin-bottom: 15px;
}

.referral-card h3 {
    font-size: 1.25rem;
    color: #00796b;
    margin-bottom: 8px;
}

.referral-card p {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.5;
    padding: 0 5px;
     text-align: justify;
}

.referral-note {
    color: #888;
    font-size: 0.95rem;
    margin-top: 20px;
}

/* ===== RESPONSIVE STYLES ===== */
@media (max-width: 1024px) {
    .referral-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .referral-card {
        height: auto;
    }
}

@media (max-width: 768px) {
    .referral-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 600px) {
    .referral-title {
        font-size: 2rem;
    }
    .referral-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .referral-card {
        padding: 20px 15px;
        height: auto;
    }
}


.card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  cursor: pointer;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.card-content {
  padding: 25px;
}

.card-content h3 {
  font-size: 1.4rem;
  color: #1e2a47;
  margin-bottom: 10px;
}

.card-content p {
  font-size: 0.95rem;
  color: #666;
  margin-bottom: 20px;
  line-height: 1.6;
}

.donate-btn {
  display: inline-block;
  padding: 10px 25px;
  background: linear-gradient(135deg, #4b6cb7, #182848);
  color: #fff;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s ease;
}

.donate-btn:hover {
  background: linear-gradient(135deg, #182848, #4b6cb7);
  transform: scale(1.05);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .donation-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .donation-cards {
    grid-template-columns: 1fr;
  }
  .donation-section h2 {
    font-size: 2rem;
  }
}

/* Fix Our Mission Section Cards */
#mission.mission-section {
    background: #fff;
    padding: 60px 0 60px 0;
}
.mission-grid {
    display: flex;
    gap: 32px;
    justify-content: center;
    align-items: stretch;
    margin-top: 32px;
    flex-wrap: wrap;
}
.mission-card {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(46,125,50,0.08);
    padding: 32px 24px 24px 24px;
    flex: 1 1 300px;
    max-width: 340px;
    min-width: 240px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: box-shadow 0.2s;
}
.mission-card:hover {
    box-shadow: 0 8px 32px rgba(33,150,243,0.13);
}
.mission-icon {
    margin-bottom: 18px;
}
.mission-icon-img {
    width: 54px;
    height: 54px;
    object-fit: contain;
    border-radius: 50%;
    background: #fffbe7;
    box-shadow: 0 2px 8px rgba(255,179,0,0.10);
    padding: 8px;
}
.mission-card h3 {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #1a3c1a;
}
.mission-card p {
    font-size: 1rem;
    color: #444;
    margin: 0;
}
@media (max-width: 900px) {
    .mission-grid {
        flex-direction: row;
        gap: 18px;
        overflow-x: auto;
        align-items: stretch;
        justify-content: flex-start;
        padding-bottom: 8px;
        scrollbar-width: thin;
    }
    .mission-card {
        min-width: 260px;
        max-width: 320px;
        width: 80vw;
        padding: 18px 10px 18px 10px;
        flex: 0 0 auto;
    }
}
/* Testimonial Carousel Section */
.testimonial-section {
    background: #fff;
    padding: 60px 20px;
    width: 100%;
    overflow-x: hidden;
}
.testimonial-header {
    text-align: center;
    margin-bottom: 32px;
    position: relative;
}
.testimonial-badge {
    display: inline-block;
    background: #fffbe7;
    color: #ffb300;
    font-weight: 600;
    border-radius: 18px;
    padding: 6px 18px;
    font-size: 1rem;
    margin-bottom: 8px;
}
.testimonial-title {
    font-size: 2.3rem;
    font-weight: 700;
    color: #1a3c1a;
    margin: 0 0 8px 0;
    line-height: 1.15;
}
.testimonial-arrows {
    display: flex;
    gap: 18px;
    justify-content: center;
    margin-top: 18px;
}
.testimonial-arrow {
    background: #ffc72c;
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(255,199,44,0.13);
    transition: background 0.2s, color 0.2s;
}
.testimonial-arrow:hover {
    background: #ffb300;
    color: #fffbe7;
}
.testimonial-carousel {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
}

/* Touch scroll optimization for mobile */
@media (max-width: 768px) {
    .testimonial-carousel {
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scroll-behavior: smooth;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    
    .testimonial-carousel::-webkit-scrollbar {
        display: none;
    }
    
    .testimonial-track {
        width: max-content;
    }
}
.testimonial-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(.77,0,.18,1);
    gap: 24px;
}
.testimonial-card {
    background: #fff;
    border: 2px solid #2e7d32;
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(46,125,50,0.08);
    min-width: 340px;
    max-width: 370px;
    flex: 0 0 370px;
    padding: 28px 22px 22px 22px;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
}
.testimonial-quote {
    position: absolute;
    top: 0;
    right: 0;
    background: #ffc72c;
    color: #223a13;
    border-radius: 0 18px 0 32px;
    padding: 10px 18px 8px 18px;
    font-size: 2rem;
    font-weight: 700;
}
.testimonial-user-row {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 2px;
}
.testimonial-user-img {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #ffc72c;
    background: #f5f5f5;
}
.testimonial-user-name {
    font-weight: 700;
    color: #223a13;
    font-size: 1.1rem;
}
.testimonial-user-role {
    font-size: 0.98rem;
    color: #888;
}
.testimonial-text {
    font-size: 1rem;
    color: #333;
    margin-bottom: 4px;
}
.testimonial-stars {
    color: #ffc72c;
    font-size: 1.1rem;
    letter-spacing: 2px;
}
@media (max-width: 1024px) {
    .testimonial-track {
        gap: 20px;
        padding: 0 20px;
    }
    
    .testimonial-card {
        min-width: 320px;
        max-width: 350px;
        flex: 0 0 350px;
        padding: 24px 20px;
    }
    
    .testimonial-title {
        font-size: 2rem;
    }
    
    .testimonial-arrows {
        margin-top: 24px;
    }
}
@media (max-width: 768px) {
    .testimonial-section {
        padding: 50px 10px;
        overflow-x: hidden;
    }
    
    .testimonial-header {
        margin-bottom: 30px;
        padding: 0 10px;
    }
    
    .testimonial-title {
        font-size: 1.8rem;
        line-height: 1.3;
        margin-bottom: 15px;
    }
    
    .testimonial-badge {
        font-size: 0.9rem;
        padding: 5px 15px;
    }
    
    .testimonial-carousel {
        max-width: 100%;
        margin: 0;
        padding: 0;
        overflow: hidden;
    }
    
    .testimonial-track {
        gap: 20px;
        padding: 0 20px;
        justify-content: flex-start;
    }
    
    .testimonial-card {
        min-width: calc(100vw - 80px);
        max-width: calc(100vw - 80px);
        flex: 0 0 calc(100vw - 80px);
        padding: 25px 20px;
        margin: 0;
        box-shadow: 0 8px 30px rgba(46,125,50,0.12);
    }
    
    .testimonial-user-row {
        gap: 12px;
        margin-bottom: 15px;
    }
    
    .testimonial-user-img {
        width: 50px;
        height: 50px;
        flex-shrink: 0;
    }
    
    .testimonial-user-name {
        font-size: 1.05rem;
        line-height: 1.3;
    }
    
    .testimonial-user-role {
        font-size: 0.9rem;
        margin-top: 2px;
    }
    
    .testimonial-text {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 15px;
    }
    
    .testimonial-quote {
        font-size: 1.8rem;
        padding: 10px 18px 8px 18px;
        border-radius: 0 18px 0 25px;
    }
    
    .testimonial-stars {
        font-size: 1.1rem;
        letter-spacing: 2px;
    }
    
    .testimonial-arrows {
        margin-top: 25px;
        gap: 15px;
    }
    
    .testimonial-arrow {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
        box-shadow: 0 4px 15px rgba(255,199,44,0.25);
    }
}

@media (max-width: 480px) {
    .testimonial-section {
        padding: 40px 5px;
        overflow-x: hidden;
    }
    
    .testimonial-header {
        margin-bottom: 25px;
        padding: 0 15px;
    }
    
    .testimonial-title {
        font-size: 1.6rem;
        line-height: 1.4;
        margin-bottom: 12px;
    }
    
    .testimonial-badge {
        font-size: 0.85rem;
        padding: 4px 12px;
    }
    
    .testimonial-carousel {
        overflow: hidden;
        padding: 0;
        margin: 0;
    }
    
    .testimonial-track {
        gap: 15px;
        padding: 0 15px;
    }
    
    .testimonial-card {
        min-width: calc(100vw - 60px);
        max-width: calc(100vw - 60px);
        flex: 0 0 calc(100vw - 60px);
        padding: 20px 18px;
        margin: 0;
        border-radius: 15px;
        box-shadow: 0 6px 25px rgba(46,125,50,0.15);
    }
    
    .testimonial-user-row {
        gap: 10px;
        margin-bottom: 12px;
        align-items: flex-start;
    }
    
    .testimonial-user-img {
        width: 45px;
        height: 45px;
        flex-shrink: 0;
    }
    
    .testimonial-user-name {
        font-size: 1rem;
        line-height: 1.2;
    }
    
    .testimonial-user-role {
        font-size: 0.85rem;
        margin-top: 1px;
    }
    
    .testimonial-text {
        font-size: 0.9rem;
        line-height: 1.7;
        margin-bottom: 12px;
        text-align: left;
    }
    
    .testimonial-quote {
        font-size: 1.5rem;
        padding: 8px 15px 6px 15px;
        border-radius: 0 15px 0 20px;
    }
    
    .testimonial-stars {
        font-size: 1rem;
        letter-spacing: 1px;
    }
    
    .testimonial-arrows {
        margin-top: 20px;
        gap: 12px;
    }
    
    .testimonial-arrow {
        width: 42px;
        height: 42px;
        font-size: 1.1rem;
        box-shadow: 0 3px 12px rgba(255,199,44,0.3);
    }
}
/* FAQ Section */
.faq-section {
    background: #fcfcf7;
    padding: 60px 0 60px 0;
    display: flex;
    justify-content: center;
}
.faq-container {
    display: flex;
    align-items: center;
    max-width: 1200px;
    width: 100%;
    gap: 48px;
    margin: 0 auto;
    padding: 0 20px;
}
.faq-left {
    flex: 1 1 340px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}
.faq-img-box {
    position: relative;
    width: 100%;
    max-width: 430px;
    height: 430px;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0,0,0,0.10);
    margin-bottom: 18px;
}
.faq-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 18px;
}
.faq-years-box {
    position: absolute;
    bottom: 18px;
    right: -36px;
    background: #ffc72c;
    color: #223a13;
    border-radius: 10px;
    width: 120px;
    height: 110px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 12px rgba(255,199,44,0.18);
}
.faq-years {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
}
.faq-years-label {
    font-size: 1rem;
    text-align: center;
    margin-top: 2px;
}
.faq-right {
    flex: 2 1 480px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.faq-title-row {
    margin-bottom: 18px;
}
.faq-badge {
    display: inline-block;
    background: #fffbe7;
    color: #ffb300;
    font-weight: 600;
    border-radius: 18px;
    padding: 6px 18px;
    font-size: 1rem;
    margin-bottom: 8px;
}
.faq-badge i {
    margin-right: 6px;
}
.faq-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #1a3c1a;
    margin: 0 0 8px 0;
    line-height: 1.15;
}
.faq-list {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.faq-item {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
    overflow: hidden;
    transition: box-shadow 0.2s;
}
.faq-item.open {
    box-shadow: 0 4px 18px rgba(255,179,0,0.13);
}
.faq-question {
    width: 100%;
    background: none;
    border: none;
    outline: none;
    font-size: 1.1rem;
    font-weight: 600;
    color: #223a13;
    text-align: left;
    padding: 18px 24px 18px 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: background 0.2s;
}
.faq-arrow {
    margin-left: 18px;
    color: #ffb300;
    font-size: 1.2rem;
    transition: transform 0.2s;
}
.faq-item.open .faq-arrow {
    transform: rotate(90deg);
}
.faq-answer {
    display: none;
    font-size: 1rem;
    color: #444;
    background: #fffbe7;
    padding: 0 24px 18px 18px;
    border-top: 1px solid #ffe082;
}
.faq-item.open .faq-answer {
    display: block;
}
@media (max-width: 1024px) {
    .faq-container {
        gap: 40px;
        padding: 0 30px;
    }
    
    .faq-img-box {
        max-width: 350px;
        height: 350px;
    }
    
    .faq-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .faq-container {
        flex-direction: column;
        gap: 40px;
        align-items: center;
        padding: 0 20px;
    }
    
    .faq-left, .faq-right {
        width: 100%;
        align-items: center;
    }
    
    .faq-right {
        align-items: center;
        text-align: center;
    }
    
    .faq-img-box {
        max-width: 280px;
        height: 280px;
        margin: 0 auto 20px auto;
    }
    
    .faq-title {
        font-size: 1.8rem;
        text-align: center;
    }
    
    .faq-years-box {
        width: 100px;
        height: 90px;
        right: -25px;
    }
    
    .faq-years {
        font-size: 2rem;
    }
}
@media (max-width: 480px) {
    .faq-section {
        padding: 40px 0;
    }
    
    .faq-container {
        gap: 30px;
        padding: 0 15px;
    }
    
    .faq-title {
        font-size: 1.5rem;
        line-height: 1.3;
    }
    
    .faq-img-box {
        max-width: 220px;
        height: 220px;
    }
    
    .faq-years-box {
        width: 80px;
        height: 70px;
        right: -20px;
        bottom: 15px;
    }
    
    .faq-years {
        font-size: 1.5rem;
    }
    
    .faq-years-label {
        font-size: 0.8rem;
    }
    
    .faq-question {
        font-size: 0.95rem;
        padding: 16px 18px 16px 16px;
        line-height: 1.4;
    }
    
    .faq-answer {
        font-size: 0.9rem;
        padding: 0 18px 16px 16px;
        line-height: 1.5;
    }
    
    .faq-arrow {
        margin-left: 12px;
        font-size: 1.1rem;
    }
    
    .faq-badge {
        font-size: 0.9rem;
        padding: 5px 15px;
    }
}
@media (max-width: 800px) {
    .transparent-card {
        min-height: 370px;
    }
}
@media (max-width: 800px) {
    .transparent-card {
        word-break: break-word;
        white-space: normal;
        padding: 18px 6vw 18px 6vw;
        box-sizing: border-box;
    }
    .transparent-card h3,
    .transparent-card .card-desc,
    .transparent-card .card-features li {
        word-break: break-word;
        white-space: normal;
    }
}
@media (max-width: 800px) {
    .transparent-cards {
        flex-direction: column;
        align-items: center;
        gap: 18px;
    }
    .transparent-card {
        max-width: 95vw;
        min-width: 0;
        width: 100%;
        margin: 0 auto;
        padding: 18px 10px 18px 10px;
    }
    .transparent-system-section .section-title {
        font-size: 1.3rem;
        margin-bottom: 18px;
    }
    .card-main-info {
        flex-direction: row;
        justify-content: center;
        margin-bottom: 10px;
    }
    .card-value {
        font-size: 1.5rem;
    }
    .card-features li {
        font-size: 0.98rem;
    }
}
/* Safety & Rules Section */
.safety-section {
    background: #181c24;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 0 60px 0;
    overflow: hidden;
}
.safety-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    color: #fff;
}
.safety-badge {
    display: inline-block;
    background: #2196f3;
    color: #fff;
    border-radius: 18px;
    padding: 6px 18px;
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 18px;
    box-shadow: 0 2px 8px rgba(33,150,243,0.13);
}
.safety-badge i {
    margin-right: 6px;
}
.safety-title {
    font-size: 2.3rem;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: 1px;
    color: #fff;
    text-shadow: 0 2px 8px rgba(0,0,0,0.18);
}
.safety-desc {
    font-size: 1.1rem;
    margin-bottom: 38px;
    color: #e0e0e0;
}
.safety-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 18px;
}
.safety-card {
    background: rgba(30,30,30,0.45);
    border: 2px solid rgba(255,255,255,0.18);
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.13);
    padding: 36px 18px 28px 18px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: box-shadow 0.2s, border-color 0.2s;
    min-height: 220px;
}
.safety-card:hover {
    box-shadow: 0 8px 32px rgba(33,150,243,0.18);
    border-color: #2196f3;
}
.safety-icon {
    background: #ffb300;
    color: #fff;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 18px;
    box-shadow: 0 2px 8px rgba(255,179,0,0.13);
}
.safety-card h3 {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #fff;
    text-shadow: 0 1px 4px rgba(0,0,0,0.13);
}
.safety-card p {
    font-size: 1rem;
    color: #e0e0e0;
    margin: 0;
}
@media (max-width: 900px) {
    .safety-grid {
        grid-template-columns: 1fr 1fr;
        gap: 22px;
    }
}
@media (max-width: 600px) {
    .safety-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .safety-section {
        padding: 32px 0 32px 0;
    }
    .safety-card {
        padding: 24px 10px 18px 10px;
    }
    .safety-title {
        font-size: 1.4rem;
    }
}
.transparent-cards .transparent-card:nth-child(2) .card-main-info {
    margin-top: 28px;
}
/* Transparent System Section */
.transparent-system-section {
    background: #f9f9f9;
    min-height: 100vh;
    padding: 60px 0 40px 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.transparent-system-section .section-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #1a3c1a;
    margin-bottom: 40px;
    letter-spacing: 1px;
}
.transparent-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}
.transparent-card {
    background: #fff;
    border-radius: 18px;
    border: 2.5px solid #2e7d32;
    box-shadow: 0 6px 32px rgba(46,125,50,0.13), 0 1.5px 8px rgba(0,0,0,0.07);
    padding: 22px 18px 18px 18px;
    flex: 1 1 260px;
    max-width: 320px;
    min-width: 220px;
    /* min-height: 320px; */
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: box-shadow 0.2s, border-color 0.2s;
    position: relative;
    overflow: hidden;
}
.transparent-card:hover {
    box-shadow: 0 12px 40px rgba(46,125,50,0.18), 0 2px 12px rgba(0,0,0,0.10);
    border-color: #1976d2;
}
.transparent-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1a3c1a;
    margin-bottom: 10px;
}
.card-desc {
    color: #555;
    font-size: 1rem;
    margin-bottom: 18px;
}
.card-main-info {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    gap: 8px;
}
.card-value {
    font-size: 2.1rem;
    font-weight: 700;
    color: #2e7d32;
}
.card-unit {
    font-size: 1.1rem;
    color: #444;
    margin-left: 2px;
}
.card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: linear-gradient(135deg, #e8f5e9 60%, #fffde7 100%);
    box-shadow: 0 2px 8px rgba(46,125,50,0.10);
    margin-left: 14px;
    margin-right: 0;
    padding: 6px;
}
.card-features {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}
.card-features li {
    font-size: 1rem;
    color: #333;
    margin-bottom: 8px;
    padding-left: 1.2em;
    position: relative;
}
.card-features li:before {
    content: "•";
    color: #2e7d32;
    position: absolute;
    left: 0;
    font-size: 1.1em;
    top: 0;
}
@media (max-width: 900px) {
    .transparent-cards {
        flex-direction: column;
        align-items: center;
        gap: 24px;
    }
    .transparent-card {
        max-width: 95vw;
    }
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    background-attachment: fixed;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Modern Navigation Styles */
.navbar {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    padding: 0.25rem 0;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    position: relative;
    z-index: 1001;
}

/* Logo Section */
.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.nav-logo:hover {
    transform: scale(1.02);
}

.nav-logo .logo {
    height: 55px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
    transition: all 0.3s ease;
}

.brand-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Navigation Menu */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 0.5rem;
    margin: 0;
    padding: 0;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #2c3e50;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.75rem 1.25rem;
    border-radius: 50px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translate(-50%, -50%);
    z-index: -1;
    opacity: 0;
}

.nav-link:hover::before,
.nav-link.active::before {
    width: 100%;
    height: 100%;
    opacity: 1;
}

.nav-link:hover,
.nav-link.active {
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.nav-link i {
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.nav-link:hover i {
    transform: scale(1.1);
}

.driver-link {
    background: linear-gradient(135deg, #ff6b6b 0%, #feca57 100%) !important;
    color: white !important;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}

.driver-link::before {
    display: none;
}

.driver-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.5);
}

/* Action Buttons */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

/* Language Toggle Styles */
.language-toggle {
    position: relative;
}

.language-toggle-btn {
    background: rgba(102, 126, 234, 0.1);
    color: #2c3e50;
    border: 2px solid rgba(102, 126, 234, 0.2);
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    font-weight: 500;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    outline: none;
    position: relative;
}

.language-toggle-btn:hover {
    background: rgba(102, 126, 234, 0.15);
    border-color: rgba(102, 126, 234, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.2);
}

.lang-text {
    font-weight: 600;
    min-width: 50px;
    text-align: left;
}

.toggle-switch {
    position: relative;
    width: 50px;
    height: 24px;
    background: #e0e0e0;
    border-radius: 12px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.toggle-switch:hover {
    background: #d0d0d0;
    transform: scale(1.05);
}

.toggle-slider {
    position: absolute;
    top: 2px;
    left: 2px;
    width: 20px;
    height: 20px;
    background: #fff;
    border-radius: 50%;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.toggle-slider:hover {
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.3);
}

/* Language Change Notification */
.language-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #4CAF50, #45a049);
    color: white;
    padding: 12px 20px;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(76, 175, 80, 0.3);
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 0.9rem;
    z-index: 10000;
    transform: translateY(-100px);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.language-notification.show {
    transform: translateY(0);
    opacity: 1;
}

.language-notification.hide {
    transform: translateY(-100px);
    opacity: 0;
}

.language-notification i {
    font-size: 1rem;
}

@media (max-width: 768px) {
    .language-notification {
        top: 10px;
        right: 10px;
        left: 10px;
        padding: 10px 15px;
        font-size: 0.85rem;
        border-radius: 12px;
    }
}

/* When English is active */
.language-toggle.english .toggle-switch {
    background: #4CAF50;
}

.language-toggle.english .toggle-slider {
    left: 28px;
    background: #fff;
}

/* When Hindi is active */
.language-toggle.hindi .toggle-switch {
    background: #FF9800;
}

.language-toggle.hindi .toggle-slider {
    left: 2px;
    background: #fff;
}

/* Mobile Language Toggle */
.mobile-language-toggle {
    background: rgba(102, 126, 234, 0.1);
    border-radius: 15px;
    padding: 1rem;
    margin: 1.5rem 0;
}

.mobile-lang-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.mobile-lang-toggle-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.mobile-toggle-wrapper {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: white;
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.mobile-lang-label {
    font-weight: 600;
    font-size: 0.9rem;
    color: #2c3e50;
}

.mobile-toggle-switch {
    position: relative;
    width: 60px;
    height: 28px;
    background: #e0e0e0;
    border-radius: 14px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.mobile-toggle-switch:hover {
    background: #d0d0d0;
    transform: scale(1.02);
}

.mobile-toggle-switch:active {
    transform: scale(0.98);
}

.mobile-toggle-slider {
    position: absolute;
    top: 2px;
    left: 2px;
    width: 24px;
    height: 24px;
    background: #fff;
    border-radius: 50%;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.mobile-toggle-slider:hover {
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.3);
}

/* When English is active */
.mobile-language-toggle.english .mobile-toggle-switch {
    background: #4CAF50;
}

.mobile-language-toggle.english .mobile-toggle-slider {
    left: 34px;
}

.mobile-language-toggle.english .mobile-lang-label:last-child {
    color: #4CAF50;
    font-weight: 700;
}

/* When Hindi is active */
.mobile-language-toggle.hindi .mobile-toggle-switch {
    background: #FF9800;
}

.mobile-language-toggle.hindi .mobile-toggle-slider {
    left: 2px;
}

.mobile-language-toggle.hindi .mobile-lang-label:first-child {
    color: #FF9800;
    font-weight: 700;
}

.nav-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.2rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    outline: none;
}

.download-btn {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(79, 172, 254, 0.3);
}

.download-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(79, 172, 254, 0.4);
}

.emergency-btn {
    background: linear-gradient(135deg, #ff416c 0%, #ff4b2b 100%);
    color: white;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    box-shadow: 0 4px 15px rgba(255, 65, 108, 0.3);
    animation: emergencyPulse 2s infinite;
}

.emergency-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(255, 65, 108, 0.5);
}

@keyframes emergencyPulse {
    0%, 100% { box-shadow: 0 4px 15px rgba(255, 65, 108, 0.3); }
    50% { box-shadow: 0 4px 15px rgba(255, 65, 108, 0.6), 0 0 0 10px rgba(255, 65, 108, 0.1); }
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 45px;
    height: 45px;
    cursor: pointer;
    z-index: 2002;
    position: relative;
    pointer-events: auto;
    touch-action: manipulation;
    background: rgba(102, 126, 234, 0.15);
    border-radius: 8px;
    padding: 8px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
    background: rgba(102, 126, 234, 0.25);
    transform: scale(1.05);
}

.hamburger-line {
    width: 28px;
    height: 4px;
    background: #667eea;
    margin: 3px 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 3px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.mobile-menu-toggle.active {
    background: rgba(102, 126, 234, 0.3);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
    background: #667eea;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
    background: #667eea;
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 400px;
    height: 100vh;
    background: #ffffff;
    box-shadow: -5px 0 25px rgba(0, 0, 0, 0.3);
    z-index: 2001;
    transition: right 0.3s ease;
    overflow-y: auto;
}

.mobile-menu-overlay.active {
    right: 0;
}

/* Backdrop for mobile menu */
.mobile-menu-overlay::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(255, 255, 255, 0.9);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: -1;
}

.mobile-menu-overlay.active::before {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-content {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 2rem;
    padding-top: 80px;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
}

.mobile-logo {
    height: 50px;
    width: auto;
    /* filter: brightness(0) invert(1); */
}

.mobile-close {
    background: rgba(102, 126, 234, 0.15);
    border: none;
    color: #2c3e50;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(102, 126, 234, 0.3);
}

.mobile-close:hover {
    background: rgba(102, 126, 234, 0.25);
    transform: rotate(90deg);
    color: #2c3e50;
}

.mobile-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    flex: 1;
}

.mobile-nav-list li {
    margin-bottom: 1rem;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #2c3e50;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    padding: 1rem;
    border-radius: 10px;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
    background: rgba(102, 126, 234, 0.08);
    border: 1px solid rgba(102, 126, 234, 0.2);
}

.mobile-nav-link:hover {
    background: rgba(102, 126, 234, 0.15);
    transform: translateX(10px);
    color: #2c3e50;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.2);
}

.mobile-nav-link.special {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    font-weight: 600;
    border: none;
}

.mobile-nav-link.special:hover {
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
    transform: translateX(10px) scale(1.02);
    color: #ffffff;
}
    border-radius: 15px;
    transition: all 0.3s ease;
    background: rgba(102, 126, 234, 0.1);
}

.mobile-nav-link:hover {
    background: rgba(102, 126, 234, 0.2);
    transform: translateX(10px);
}

.mobile-nav-link.special {
    background: linear-gradient(135deg, #ff6b6b 0%, #feca57 100%);
    font-weight: 600;
}

.mobile-nav-link i {
    font-size: 1.2rem;
    width: 24px;
}

.mobile-actions {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mobile-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem;
    border: none;
    border-radius: 15px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mobile-btn.primary {
    background: rgba(102, 126, 234, 0.1);
    color: #2c3e50;
    border: 2px solid rgba(102, 126, 234, 0.3);
}

.mobile-btn.primary:hover {
    background: rgba(102, 126, 234, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
    color: #2c3e50;
}

.mobile-btn.emergency {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: #ffffff;
    border: none;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
}

.mobile-btn.emergency:hover {
    background: linear-gradient(135deg, #c0392b 0%, #e74c3c 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(231, 76, 60, 0.4);
}
    background: linear-gradient(135deg, #ff416c 0%, #ff4b2b 100%);
    color: white;
}

.mobile-btn.emergency:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 65, 108, 0.4);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .nav-container {
        padding: 1rem 1.5rem;
    }
    
    .nav-menu {
        gap: 0.25rem;
    }
    
    .nav-link {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }
    
    .download-btn span {
        display: none;
    }
    
    .language-btn .current-lang {
        display: none;
    }
    
    .language-btn {
        padding: 0.6rem 0.8rem;
    }
}

@media (max-width: 768px) {
    .nav-container {
        padding: 0.75rem 1rem;
    }
    
    .nav-menu,
    .nav-actions {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .brand-text {
        font-size: 1.3rem;
    }
    
    .nav-logo .logo {
        height: 50px;
    }
    
    /* Mobile Language Toggle Responsive */
    .mobile-language-toggle {
        margin: 1rem 0;
    }
    
    .mobile-toggle-wrapper {
        padding: 1rem 1.5rem;
        gap: 1.5rem;
    }
    
    .mobile-toggle-switch {
        width: 70px;
        height: 32px;
    }
    
    .mobile-toggle-slider {
        width: 28px;
        height: 28px;
        top: 2px;
    }
    
    .mobile-language-toggle.english .mobile-toggle-slider {
        left: 40px;
    }
    
    .mobile-lang-label {
        font-size: 1rem;
        font-weight: 600;
    }
    
    .mobile-lang-options {
        gap: 0.75rem;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0.75rem 1rem;
    }
    
    .brand-text {
        display: none;
    }
    
    .nav-logo .logo {
        height: 45px;
    }
    
    .mobile-menu-content {
        padding: 1.5rem;
    }
    
    .mobile-nav-link {
        font-size: 1rem;
        padding: 0.75rem;
    }
}
/* Hero Section - Fully Responsive */
.hero {
    position: relative;
    overflow: hidden;
    width: 100%;
    min-height: 100vh;
    height: 100vh;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    margin: 0;
    padding: 0;
}

.slide.active {
    opacity: 1;
    z-index: 2;
}

/* Video Background */
.hero-bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    margin: 0;
    padding: 0;
    border: none;
}

/* Mobile Fallback Background */
.mobile-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
    display: none;
}

/* Video-Only Hero - No Content Overlay */

@keyframes heroFadeIn {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Responsive Video-Only Hero */
@media (max-width: 768px) {
    .hero {
        min-height: 60vh; /* Reduced from 100vh to 60vh */
        height: 60vh;
        max-height: 500px; /* Maximum height limit */
    }
    
    /* Optimize video display for mobile */
    .hero-bg-video {
        object-fit: cover;
        object-position: center;
        width: 100%;
        height: 100%;
    }
    
    /* Show mobile background on slow connections */
    .mobile-hero-bg {
        display: block;
        z-index: 0;
        height: 100%;
    }
    
    /* Ensure video plays on mobile */
    .slide.active .hero-bg-video {
        z-index: 2;
    }
    
    /* Update slider container */
    .hero-slider {
        height: 100%;
    }
    
    .slide {
        height: 100%;
    }
}

@media (max-width: 480px) {
    .hero {
        min-height: 50vh; /* Even smaller for small phones */
        height: 50vh;
        max-height: 400px;
    }
    
    /* Better video scaling for small screens */
    .hero-bg-video {
        min-width: 100%;
        min-height: 100%;
        object-fit: cover;
    }
}

@media (max-width: 360px) {
    .hero {
        min-height: 45vh; /* Smallest for very small screens */
        height: 45vh;
        max-height: 350px;
    }
}

/* Landscape mobile optimization */
@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        height: 100vh;
    }
    
    .hero-bg-video {
        object-position: center center;
    }
}

/* High DPI displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .hero-bg-video {
        /* Higher quality settings for retina displays */
        image-rendering: crisp-edges;
    }
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 15px;
}

.hero-content h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 25px;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

.btn-primary {
    background: #ff9800;
    color: white;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
}

.app-download a img {
    height: 40px;
    margin: 0 10px;
}

.slider-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    padding: 0 30px;
}

.slider-btn {
    background: rgba(0, 0, 0, 0.4);
    color: white;
    border: none;
    font-size: 1.5rem;
    padding: 10px;
    border-radius: 50%;
    cursor: pointer;
}

.slider-dots {
    position: absolute;
    bottom: 20px;
    width: 100%;
    text-align: center;
}

.slider-dots .dot {
    height: 12px;
    width: 12px;
    margin: 0 5px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
}

.slider-dots .dot.active {
    background-color: white;
}


/* Services Section */
.services {
    padding: 80px 0;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(52, 152, 219, 0.03), rgba(155, 89, 182, 0.03));
    pointer-events: none;
}

.services h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #3498db, #2980b9);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.service-card:hover .service-icon i {
    transform: scale(1.1);
    color: #2980b9;
}
/* 
.service-icon {
    margin-bottom: 1rem;
}

.service-icon i {
    font-size: 3rem;
    color: #3498db;
} */

.service-image img {
    width: 80px;
    height: auto;
    object-fit: contain;
    margin-bottom: 15px;
}


.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.service-card p {
    color: #666;
}

/* Smart Features Section */
.smart-features {
    padding: 80px 0;
    background: #f8f9fa;
    position: relative;
}

.smart-features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(244, 67, 54, 0.02), rgba(233, 30, 99, 0.02));
    pointer-events: none;
}

.features-header {
    text-align: center;
    margin-bottom: 4rem;
}

.features-header h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

.features-header p {
    font-size: 1.2rem;
    color: #7f8c8d;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: white;
    padding: 0;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(244, 67, 54, 0.1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #f44336, #e91e63);
    z-index: 2;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(244, 67, 54, 0.12);
}

.feature-image {
    width: 100%;
    height: 180px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    margin: 0;
    padding: 0;
    position: relative;
    order: -1;
}

.feature-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: all 0.3s ease;
    filter: none;
    border-radius: 0;
}

.feature-card:hover .feature-image img {
    transform: scale(1.1);
    filter: none;
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 1rem;
    line-height: 1.2;
    padding: 0 1.5rem;
    margin-top: 1.5rem;
}

.feature-card p {
    color: #7f8c8d;
    font-size: 1rem;
    line-height: 1.5;
    margin: 0;
    padding: 0 1.5rem 1.5rem 1.5rem;
}

/* Responsive Design for Smart Features */
@media (max-width: 768px) {
    .smart-features {
        padding: 60px 0;
    }
    
    .features-header h2 {
        font-size: 2.2rem;
    }
    
    .features-header p {
        font-size: 1.1rem;
        padding: 0 1rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .feature-card {
        padding: 0;
    }
    
    .feature-image {
        height: 150px;
    }
    
    .feature-image img {
        width: 100%;
        height: 100%;
    }
    
    .feature-card h3 {
        font-size: 1.3rem;
    }
    
    .feature-card p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .features-header h2 {
        font-size: 1.8rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .feature-card {
        padding: 0;
    }
    
    .feature-image {
        height: 120px;
    }
    
    .feature-image img {
        width: 100%;
        height: 100%;
    }
    
    .feature-card h3 {
        font-size: 1.1rem;
    }
    
    .feature-card p {
        font-size: 0.85rem;
    }
}

/* Moving Vehicles Section */
.moving-vehicles {
    padding: 60px 0;
    background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%);
    overflow: hidden;
    position: relative;
    min-height: 320px;
}

.moving-vehicles::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 87, 34, 0.05), rgba(255, 152, 0, 0.05));
    pointer-events: none;
}

.vehicles-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.vehicles-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.vehicles-header p {
    font-size: 1.2rem;
    color: #7f8c8d;
    max-width: 600px;
    margin: 0 auto;
}

.vehicles-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    height: 200px;
    display: flex;
    align-items: center;
}

.vehicles-track {
    display: flex;
    align-items: center;
    animation: moveVehicles 30s linear infinite;
    width: max-content;
    gap: 60px;
    height: 100%;
}

.vehicle-item {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.vehicle-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 25px;
    padding: 35px 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: 4px solid #f44336;
    transition: all 0.4s ease;
    min-width: 160px;
    min-height: 160px;
    position: relative;
    overflow: hidden;
}

.vehicle-card:hover {
    transform: translateY(-10px) scale(1.1);
    box-shadow: 0 15px 40px rgba(244, 67, 54, 0.3);
    border-color: #d32f2f;
    background: linear-gradient(145deg, #ffffff 0%, #f0f4f8 100%);
}

.vehicle-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255,255,255,0.1), transparent);
    pointer-events: none;
}

.vehicle-emoji {
    font-size: 4.5rem;
    margin-bottom: 12px;
    display: block;
    line-height: 1;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.vehicle-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: #2c3e50;
    text-align: center;
    white-space: nowrap;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    letter-spacing: 0.5px;
}

.vehicle-img {
    width: 80px;
    height: 65px;
    object-fit: contain;
    margin-bottom: 12px;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.15));
    transition: all 0.4s ease;
}

.vehicle-card:hover .vehicle-img {
    transform: scale(1.1);
}

/* Different colors for different vehicle types */
.vehicle-card.bike,
.vehicle-card.motorbike,
.vehicle-card.ebike {
    border-color: #4caf50;
}

.vehicle-card.scooter {
    border-color: #2196f3;
}

.vehicle-card.auto,
.vehicle-card.rickshaw,
.vehicle-card.tuk-tuk,
.vehicle-card.tempo {
    border-color: #ff9800;
}

.vehicle-card.car,
.vehicle-card.taxi,
.vehicle-card.sedan,
.vehicle-card.suv {
    border-color: #f44336;
}

/* Animation keyframes */
@keyframes moveVehicles {
    0% {
        transform: translateX(100vw);
    }
    100% {
        transform: translateX(-100%);
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .moving-vehicles {
        padding: 40px 0;
        min-height: 180px;
    }
    
    .vehicles-header h2 {
        font-size: 2rem;
    }
    
    .vehicles-header p {
        font-size: 1.1rem;
        padding: 0 1rem;
    }
    
    .vehicles-container {
        height: 170px;
    }
    
    .vehicles-track {
        gap: 50px;
        animation-duration: 25s;
    }
    
    .vehicle-card {
        padding: 25px 30px;
        min-width: 130px;
        min-height: 130px;
    }
    
    .vehicle-emoji {
        font-size: 3.5rem;
    }
    
    .vehicle-img {
        width: 65px;
        height: 55px;
    }
    
    .vehicle-name {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .moving-vehicles {
        padding: 30px 0;
        min-height: 160px;
    }
    
    .vehicles-header h2 {
        font-size: 1.8rem;
    }
    
    .vehicles-container {
        height: 150px;
    }
    
    .vehicles-track {
        gap: 40px;
        animation-duration: 22s;
    }
    
    .vehicle-card {
        padding: 20px 25px;
        min-width: 110px;
        min-height: 110px;
    }
    
    .vehicle-emoji {
        font-size: 3rem;
    }
    
    .vehicle-img {
        width: 55px;
        height: 45px;
    }
    
    .vehicle-name {
        font-size: 0.9rem;
    }
}

/* Perfect real-time status animations */
@keyframes perfectPulse {
    0% {
        transform: scale(1);
        opacity: 1;
        box-shadow: 0 2px 8px rgba(76, 175, 80, 0.4);
    }
    50% {
        transform: scale(1.15);
        opacity: 0.9;
        box-shadow: 0 4px 16px rgba(76, 175, 80, 0.6);
    }
    100% {
        transform: scale(1);
        opacity: 1;
        box-shadow: 0 2px 8px rgba(76, 175, 80, 0.4);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.7;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* About Section */
.about {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 249, 250, 0.9) 100%), 
                url('../images/shyam-baba-3.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.8);
    z-index: 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #333;
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #666;
    line-height: 1.8;
}

.features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.feature-item i {
    color: #27ae60;
    font-size: 1.2rem;
}

.feature-item span {
    font-weight: 500;
    color: #333;
}

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.devotional-image {
    width: 360px;
    height: 450px;
    /* object-fit: cover; */
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.devotional-image:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

/* Founder System Section */
.founder-system {
    padding: 80px 0;
    background: linear-gradient(135deg, #2c3e50, #34495e);
    color: white;
    position: relative;
}

.founder-system::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(52, 152, 219, 0.1), rgba(155, 89, 182, 0.1));
}

.founder-system h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.founder-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.founder-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.founder-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.founder-card ul {
    list-style: none;
}

.founder-card li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.founder-card li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #ffe0d1;
    font-weight: bold;
}
/* Mission Section */
.mission-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.mission-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.mission-grid {
    display: flex;
    gap: 32px;
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;
    margin-top: 40px;
}

.mission-card {
    background: #fff;
    border-radius: 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    flex: 1 1 300px;
    max-width: 340px;
    min-width: 260px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.mission-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.mission-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
}

.mission-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.mission-card:hover .mission-img {
    transform: scale(1.05);
}

.mission-content {
    padding: 24px;
    text-align: center;
    flex-grow: 1;
}

.mission-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #233d13;
    margin-bottom: 12px;
}

.mission-content p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
}


/* Mission Section Responsive */
@media (max-width: 1024px) {
    .mission-grid {
        gap: 24px;
    }
    
    .mission-card {
        max-width: 300px;
    }
}

@media (max-width: 768px) {
    .mission-grid {
        gap: 20px;
    }
    
    .mission-card {
        max-width: 280px;
    }
    
    .mission-image {
        height: 220px;
    }
    
    .mission-content {
        padding: 20px;
    }
    
    .mission-content h3 {
        font-size: 1.1rem;
    }
    
    .mission-content p {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .mission-grid {
        flex-direction: column;
        align-items: center;
    }
    
    .mission-card {
        max-width: 100%;
        width: 100%;
    }
    
    .mission-image {
        height: 200px;
    }
    
    .mission-content {
        padding: 18px;
    }
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.05), rgba(46, 204, 113, 0.05));
    pointer-events: none;
}

.contact h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #f0f0f0;
}

.contact-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.contact-item i {
    font-size: 1.8rem;
    color: #ff9800;
    min-width: 50px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 152, 0, 0.1);
    border-radius: 10px;
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-item div {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.contact-item h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
    color: #2c3e50;
    line-height: 1.3;
}

.contact-item p {
    color: #666;
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.4;
    word-break: break-word;
}

.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 1rem;
    margin-bottom: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #ff6b35;
}

.contact-form button {
    width: 100%;
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    padding: 1rem;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
}

.contact-form button:hover {
    transform: translateY(-2px);
}

/* Contact Section Responsive Styles */
@media (max-width: 768px) {
    .contact-grid {
        gap: 2rem;
    }
    
    .contact-item {
        padding: 1.2rem;
        gap: 1rem;
    }
    
    .contact-item i {
        font-size: 1.6rem;
        width: 45px;
        height: 45px;
    }
    
    .contact-item h3 {
        font-size: 1rem;
    }
    
    .contact-item p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .contact-grid {
        gap: 1.5rem;
    }
    
    .contact-info {
        gap: 1.5rem;
    }
    
    .contact-item {
        padding: 1rem;
        gap: 0.8rem;
    }
    
    .contact-item i {
        font-size: 1.4rem;
        width: 40px;
        height: 40px;
    }
    
    .contact-item h3 {
        font-size: 0.95rem;
    }
    
    .contact-item p {
        font-size: 0.85rem;
        line-height: 1.5;
    }
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #2c3e50, #34495e);
    color: white;
    padding: 4rem 0 1rem;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(44,62,80,0.97) 60%, rgba(44,62,80,0.90) 100%), url('../images/book-a-ride.jpeg') right center/contain no-repeat;
    opacity: 1;
    pointer-events: none;
    z-index: 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.footer-section h3 {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    color: #3498db;
    position: relative;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 30px;
    height: 2px;
    background: #3498db;
    border-radius: 2px;
}

.footer-logo {
    height: 60px;
    width: auto;
    margin-bottom: 1rem;
    filter: brightness(1.1);
}

.footer-section p {
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 0.3rem 0;
    display: inline-block;
}

.footer-section ul li a:hover {
    color: #3498db;
    transform: translateX(5px);
}

.footer-section ul li a i {
    margin-right: 0.5rem;
    width: 20px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    position: relative;
    z-index: 1;
}

/* App Download in Footer */
.footer .app-download {
    margin-top: 1rem;
}

.footer .app-btn img {
    height: 45px;
    transition: transform 0.3s ease;
}

.footer .app-btn:hover img {
    transform: scale(1.05);
}

/* Footer Responsive */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-section h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer {
        padding: 3rem 0 1rem;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 2rem 0 1rem;
    }
    
    .footer-content {
        gap: 1.5rem;
    }
    
    .footer-logo {
        height: 50px;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        display: none;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .app-download {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content h2 {
        font-size: 1.4rem;
    }
    
    .services h2,
    .about-text h2,
    .contact h2 {
        font-size: 2rem;
    }
    
    .hero-buttons {
        align-items: center;
    }
}

/* Additional Styles for About Page */
.company-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.company-card {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    border-left: 4px solid #3498db;
    transition: all 0.3s ease;
}

.company-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.company-card h3 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.company-card p {
    color: #666;
    margin: 0;
}

.vm-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    margin-top: 2rem;
}

.vm-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.vm-card h2 {
    color: #2c3e50;
    margin-bottom: 1.5rem;
    text-align: center;
    position: relative;
}

.vm-card h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: linear-gradient(135deg, #3498db, #2980b9);
    border-radius: 2px;
}

.vm-card ul {
    list-style: none;
}

.vm-card li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    color: #666;
    font-size: 1.1rem;
}

.vm-card li::before {
    content: "🎯";
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-large {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.2);
}

.feature-large:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(102, 126, 234, 0.3);
}

.feature-large h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.feature-large p {
    opacity: 0.9;
}

.why-choose {
    padding: 80px 0;
    background: #f8f9fa;
}

.why-choose h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #333;
}

/* Driver Page Styles */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.step {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1rem;
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
}

.step h3 {
    color: #333;
    margin-bottom: 1rem;
}

.step p {
    color: #666;
}

/* Vehicle Icons */
.vehicle-icons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
}

.vehicle-icon {
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.vehicle-icon:hover {
    transform: translateY(-5px);
}

.vehicle-icon i {
    font-size: 2rem;
    color: #3498db;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out forwards;
}

/* Enhanced Mobile Responsive */
@media (max-width: 1024px) {
    .hero-content h1 {
        font-size: 3rem;
    }
    
    .services h2,
    .about-text h2,
    .contact h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        display: none;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .app-download {
        justify-content: center;
    }
    
    .slider-nav {
        display: none;
    }
    
    .slider-dots {
        bottom: 1rem;
    }
    
    .hero {
        min-height: 70vh;
        padding: 100px 0 60px;
    }
    
    .devotional-image {
        max-width: 300px;
    }
    
    .vm-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .vehicle-icons {
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content h2 {
        font-size: 1.4rem;
    }
    
    .services h2,
    .about-text h2,
    .contact h2 {
        font-size: 2rem;
    }
    
    .hero-buttons {
        align-items: center;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-item h3 {
        font-size: 2rem;
    }
}

/* Print Styles */
@media print {
    .navbar, .footer, .hero-buttons, .app-download {
        display: none;
    }
    
    .hero {
        background: white;
        color: black;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* How to Book Your Ride Section */
.how-to-book-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.how-to-book-section .section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 60px;
    letter-spacing: 1px;
}

.booking-steps {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    max-width: 1400px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.booking-step-wrapper {
    display: flex;
    align-items: center;
    flex: 1;
    max-width: 300px;
}

.booking-step-wrapper:last-child {
    flex: 1;
    justify-content: center;
}

.process-arrow {
    margin: 0 15px;
    color: #4CAF50;
    font-size: 1.5rem;
    animation: pulse 2s infinite;
}

.process-arrow i {
    filter: drop-shadow(0 2px 4px rgba(76, 175, 80, 0.3));
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.1); opacity: 1; }
}

.booking-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 280px;
    height: 400px;
}

.booking-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.booking-image {
    width: 100%;
    height: 50%;
    overflow: hidden;
    position: relative;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: flex-start;
    flex-shrink: 0;
}

.booking-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: all 0.3s ease;
    border-radius: 0;
}

.booking-card:hover .booking-img {
    transform: scale(1.05);
}

.booking-content {
    padding: 20px;
    text-align: center;
    position: relative;
    height: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex-shrink: 0;
}

/* Step numbers removed - using process arrows instead */

.booking-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin: 10px 0 8px 0;
    color: #2c3e50;
}

.booking-card p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #666;
    margin: 0;
}

/* Responsive Design for Booking Steps */
@media (max-width: 1024px) {
    .booking-steps {
        gap: 8px;
        padding: 0 10px;
    }
    
    .booking-card {
        width: 100%;
        max-width: 280px;
        height: 350px;
    }
    
    .process-arrow {
        margin: 0 8px;
        font-size: 1.3rem;
    }
    
    .booking-image {
        height: 50%;
    }
    
    .booking-content {
        height: 50%;
        padding: 15px;
    }
    
    .booking-card h3 {
        font-size: 1.1rem;
        margin: 10px 0 8px 0;
    }
    
    .booking-card p {
        font-size: 0.85rem;
    }
}

@media (max-width: 768px) {
    .how-to-book-section {
        padding: 60px 0;
    }
    
    .how-to-book-section .section-title {
        font-size: 2rem;
        margin-bottom: 40px;
    }
    
    .booking-steps {
        flex-direction: column;
        gap: 30px;
    }
    
    .booking-step-wrapper {
        flex-direction: column;
        max-width: 450px;
        width: 90%;
    }
    
    .process-arrow {
        transform: rotate(90deg);
        margin: 15px 0;
    }
    
    .booking-card {
        width: 100%;
        max-width: 400px;
    }
    
    .booking-image {
        height: 160px;
    }
    
    .booking-content {
        padding: 20px 15px;
    }
    
    .booking-card h3 {
        font-size: 1.2rem;
        margin: 12px 0 8px 0;
    }
    
    .booking-card p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .how-to-book-section .section-title {
        font-size: 1.8rem;
    }
    
    .booking-steps {
        flex-direction: column;
        gap: 25px;
        align-items: center;
    }
    
    .booking-step-wrapper {
        flex-direction: column;
        max-width: 380px;
        width: 95%;
    }
    
    .process-arrow {
        transform: rotate(90deg);
        margin: 12px 0;
        font-size: 1.3rem;
    }
    
    .booking-image {
        height: 50%;
    }
    
    .booking-content {
        height: 50%;
        padding: 15px;
    }
    
    .booking-card {
        width: 100%;
        max-width: 350px;
        margin: 0 auto;
        height: 320px;
    }
    
    .step-icon i {
        font-size: 1.5rem;
    }
}

/* Why Choose Us Section */
.why-choose-us-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-subtitle {
    font-size: 1rem;
    font-weight: 600;
    color: #ff9800;
    letter-spacing: 2px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.why-choose-us-section .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    line-height: 1.2;
    max-width: 800px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 20px;
    padding: 50px 30px;
    text-align: center;
    color: #2c3e50;
    position: relative;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #e74c3c, #c0392b);
}

.feature-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    box-shadow: 0 10px 25px rgba(231, 76, 60, 0.4);
    position: relative;
    top: -20px;
    transition: all 0.3s ease;
}

.feature-icon:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 35px rgba(231, 76, 60, 0.5);
}

.feature-icon i {
    font-size: 2.2rem;
    color: white;
}

.feature-icon-img {
    width: 45px;
    height: 45px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    transition: all 0.3s ease;
}

.feature-icon:hover .feature-icon-img {
    transform: scale(1.1);
}

/* New Feature Image Styling for Why Choose Us Cards */
.feature-image {
    width: 100%;
    height: 200px;
    margin-bottom: 25px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.feature-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.card-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: all 0.3s ease;
}

.feature-card:hover .card-image {
    transform: scale(1.05);
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #2c3e50;
}

.feature-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: #6c757d;
    margin: 0;
}

/* Responsive Design for Why Choose Us */
@media (max-width: 1024px) {
    .features-grid {
        gap: 25px;
    }
    
    .feature-card {
        padding: 40px 25px;
    }
    
    .feature-icon {
        width: 80px;
        height: 80px;
        top: -15px;
    }
    
    .feature-icon i {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .why-choose-us-section {
        padding: 60px 0;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    .why-choose-us-section .section-title {
        font-size: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .feature-card {
        padding: 35px 25px;
    }
    
    .feature-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 25px;
        top: -10px;
    }
    
    .feature-icon i {
        font-size: 1.8rem;
    }
    
    .feature-card h3 {
        font-size: 1.3rem;
    }
    
    .feature-card p {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .why-choose-us-section .section-title {
        font-size: 1.8rem;
    }
    
    .feature-card {
        padding: 30px 20px;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
    }
    
    .feature-icon i {
        font-size: 1.5rem;
    }
    
    .feature-card h3 {
        font-size: 1.2rem;
    }
}
/* Book a Car Section */
.book-a-car-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #0f172a, #1e293b);
  color: white;
}

.booking-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
}

.booking-left {
  flex: 1;
  display: flex;
  justify-content: center;
}

.person-image {
  position: relative;
}

.person-img {
  width: 380px;
  max-width: 100%;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
  transition: transform 0.4s ease;
}

.person-img:hover {
  transform: scale(1.05);
}

.booking-right {
  flex: 1;
  display: flex;
  justify-content: center;
}

.booking-content-card {
  background: rgba(255, 255, 255, 0.05);
  padding: 40px;
  border-radius: 20px;
  backdrop-filter: blur(8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  max-width: 500px;
}

.main-heading {
  font-size: 2rem;
  font-weight: 700;
  background: linear-gradient(to right, #14b8a6, #22d3ee);
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 15px;
}

.sub-text {
  font-size: 1rem;
  line-height: 1.6;
  color: #d1d5db;
  margin-bottom: 25px;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin-bottom: 25px;
}

.feature-list li {
  margin: 10px 0;
  font-size: 1rem;
  color: #e2e8f0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.feature-list i {
  color: #14b8a6;
  font-size: 1.2rem;
}

.book-now-btn {
  background: linear-gradient(to right, #14b8a6, #22d3ee);
  color: white;
  border: none;
  padding: 12px 28px;
  border-radius: 50px;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.book-now-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(20, 184, 166, 0.5);
}

/* Responsive */
@media (max-width: 992px) {
  .booking-container {
    flex-direction: column;
    text-align: center;
  }

  .booking-content-card {
    padding: 30px;
  }

  .main-heading {
    font-size: 1.6rem;
  }
}



/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    left: 30px;
    background-color: #25d366;
    color: white;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
}

.whatsapp-btn {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: white;
    border-radius: 50px;
}

.whatsapp-btn i {
    font-size: 32px;
    line-height: 60px;
}

/* Pulse Animation */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 20px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Additional Features Section with Hover Background Images */
.additional-features-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.additional-features-section .section-subtitle {
    color: #2196F3;
}

.additional-features-section .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    line-height: 1.2;
    max-width: 900px;
    margin: 0 auto;
}

.feature-card.no-logo {
    background: linear-gradient(135deg, #ffffff 0%, #f1f3f4 100%);
    border-radius: 15px;
    padding: 40px 25px;
    text-align: center;
    color: #2c3e50;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    border: 1px solid rgba(33, 150, 243, 0.1);
    min-height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 1;
}

.feature-card.no-logo::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: all 0.4s ease;
    z-index: -1;
}

.feature-card.no-logo:hover::after {
    opacity: 0.3;
}

.feature-card.no-logo:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(33, 150, 243, 0.2);
    border-color: rgba(33, 150, 243, 0.4);
}

/* Individual Card Background Images on Hover */
.feature-card.no-logo:nth-child(1)::after {
    background-image: url('https://images.unsplash.com/photo-1553484771-371a605b060b?ixlib=rb-4.0.3&auto=format&fit=crop&w=800&q=80');
}

.feature-card.no-logo:nth-child(2)::after {
    background-image: url('https://images.unsplash.com/photo-1512941937669-90a1b58e7e9c?ixlib=rb-4.0.3&auto=format&fit=crop&w=800&q=80');
}

.feature-card.no-logo:nth-child(3)::after {
    background-image: url('https://images.unsplash.com/photo-1563013544-824ae1b704d3?ixlib=rb-4.0.3&auto=format&fit=crop&w=800&q=80');
}

.feature-card.no-logo:nth-child(4)::after {
    background-image: url('https://images.unsplash.com/photo-1558618666-fcd25c85cd64?ixlib=rb-4.0.3&auto=format&fit=crop&w=800&q=80');
}

.feature-card.no-logo:nth-child(5)::after {
    background-image: url('https://images.unsplash.com/photo-1560958089-b8a1929cea89?ixlib=rb-4.0.3&auto=format&fit=crop&w=800&q=80');
}

/* Specific hover effect for eco-friendly card */
.feature-card.no-logo:nth-child(5):hover::after {
    opacity: 0.3 !important;
    background-size: cover !important;
    background-position: center !important;
}

.feature-card.no-logo:nth-child(6)::after {
    background-image: url('https://images.unsplash.com/photo-1554224155-6726b3ff858f?ixlib=rb-4.0.3&auto=format&fit=crop&w=800&q=80');
}

.feature-card.no-logo h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0 0 15px 0;
    color: inherit;
    line-height: 1.3;
    z-index: 2;
    position: relative;
    transition: all 0.3s ease;
}

.feature-card.no-logo:hover h3 {
    color: #2c3e50;
    text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.8);
    font-weight: 800;
}

.feature-card.no-logo p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: inherit;
    margin: 0;
    z-index: 2;
    position: relative;
    transition: all 0.3s ease;
}

.feature-card.no-logo:hover p {
    color: #2c3e50;
    text-shadow: 1px 1px 3px rgba(255, 255, 255, 0.8);
    font-weight: 600;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .additional-features-section .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .feature-card.no-logo {
        padding: 30px 20px;
        min-height: 160px;
    }
}

@media (max-width: 480px) {
    .additional-features-section .section-title {
        font-size: 2rem;
    }
    
    .feature-card.no-logo {
        padding: 25px 15px;
        min-height: 140px;
    }
    
    .feature-card.no-logo h3 {
        font-size: 1.2rem;
    }
    
    .feature-card.no-logo p {
        font-size: 0.9rem;
    }
}

/* Responsive adjustments for WhatsApp button */
@media (max-width: 768px) {
    .whatsapp-float {
        width: 55px;
        height: 55px;
        bottom: 20px;
        left: 20px;
    }
    
    .whatsapp-btn i {
        font-size: 28px;
        line-height: 55px;
    }
}