/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #e6e7e8;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    background: linear-gradient(135deg, #0a1a2e 0%, #16213e 100%);
    padding: 1rem 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-img {
    width: 90px;
    height: 60px;
   /* border-radius: 50%;*/
    object-fit: cover;
}

.logo-text {
    font-size: 2.5rem;
    font-weight: bold;
    color: #00d4ff;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
    margin-left:-7px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #00d4ff;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #00d4ff, #0099cc);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-cta .btn {
    padding: 0.5rem 1.5rem;
    font-size: 0.9rem;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #ffffff;
    margin: 3px 0;
    transition: 0.3s;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, #00d4ff 0%, #0099cc 100%);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 212, 255, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #00d4ff;
    border: 2px solid #00d4ff;
}

.btn-secondary:hover {
    background: #00d4ff;
    color: #ffffff;
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: #333;
    border: 2px solid #333;
}

.btn-outline:hover {
    background: #333;
    color: #ffffff;
}

.btn-large {
    padding: 15px 40px;
    font-size: 1.1rem;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #0a1a2e 0%, #16213e 50%, #1e3a5f 100%);
    color: #ffffff;
    padding: 120px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    background: linear-gradient(135deg, #ffffff 0%, #00d4ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
    color: #E0F7FF !important;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.hero-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
}

.feature-icon {
    font-size: 1.5rem;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-logo {
   width: 550px;   /* scale down on small screens */
    height: 550px;
    object-fit: contain;
    filter: drop-shadow(0 0 30px rgba(0, 212, 255, 0.5));
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* Services Section */
.services {
    padding: 80px 0;
    background: #f8fafc;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0a1a2e;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card {
    background: #ffffff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-align: center;
    border: 1px solid #e2e8f0;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.service-icon {
    color: #00d4ff;
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #0a1a2e;
    margin-bottom: 1rem;
}

.service-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.service-link {
    color: #00d4ff;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.service-link:hover {
    color: #0099cc;
}

/* Why Choose Section */
.why-choose {
    padding: 80px 0;
    background: linear-gradient(135deg, #0a1a2e 0%, #16213e 100%);
    color: #ffffff;
}

.why-choose .section-header h2 {
    color: #ffffff;
}

.why-choose .section-header p {
    color: rgba(255, 255, 255, 0.8);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
}

.feature-item {
    text-align: center;
    padding: 2rem;
}

.feature-icon-large {
    color: #00d4ff;
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

.feature-item h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #ffffff;
}

.feature-item p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #00d4ff 0%, #0099cc 100%);
    color: #ffffff;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.cta-section .btn-primary {
    background: #ffffff;
    color: #00d4ff;
}

.cta-section .btn-primary:hover {
    background: #f0f9ff;
}

.cta-section .btn-secondary {
    border-color: #ffffff;
    color: #ffffff;
}

.cta-section .btn-secondary:hover {
    background: #ffffff;
    color: #00d4ff;
}

.cta-section .btn-outline {
    border-color: #ffffff;
    color: #ffffff;
}

.cta-section .btn-outline:hover {
    background: #ffffff;
    color: #00d4ff;
}

/* Footer */
.footer {
    background: #0a1a2e;
    color: #ffffff;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #00d4ff;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #00d4ff;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1rem;
}

.footer-logo-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.footer-logo-text {
    font-size: 1.5rem;
    font-weight: bold;
    color: #00d4ff;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
}

/* Mobile App Download Pop-up */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.popup-overlay.show {
    opacity: 1;
    visibility: visible;
}

.popup-content {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border-radius: 20px;
    padding: 2rem;
    max-width: 400px;
    width: 90%;
    position: relative;
    text-align: center;
    border: 2px solid #00d4ff;
    box-shadow: 0 20px 40px rgba(0, 212, 255, 0.3);
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.popup-overlay.show .popup-content {
    transform: scale(1);
}

.popup-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 2rem;
    color: #ffffff;
    cursor: pointer;
    transition: color 0.3s ease;
    z-index: 1;
}

.popup-close:hover {
    color: #00d4ff;
}

.popup-header {
    margin-bottom: 1.5rem;
}

.popup-logo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-bottom: 1rem;
    border: 2px solid #00d4ff;
}

.popup-header h2 {
    color: #ffffff;
    font-size: 1.5rem;
    margin: 0;
    font-weight: 600;
}

.popup-body p {
    color: #cccccc;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.popup-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.popup-btn {
    padding: 12px 24px;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.popup-btn.btn-primary {
    background: linear-gradient(135deg, #00d4ff 0%, #0099cc 100%);
    color: #ffffff;
}

.popup-btn.btn-primary:hover {
    background: linear-gradient(135deg, #00b8e6 0%, #0088bb 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 212, 255, 0.4);
}

.popup-btn.btn-outline {
    background: transparent;
    color: #ffffff;
    border: 2px solid #00d4ff;
}

.popup-btn.btn-outline:hover {
    background: #00d4ff;
    color: #1a1a1a;
    transform: translateY(-2px);
}

.btn-icon {
    font-size: 1.2rem;
}

/* Footer App Store Buttons */
.app-download-section {
    margin-top: 2rem;
}

.app-download-section h4 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.app-store-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.app-store-btn {
    display: inline-block;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.app-store-btn:hover {
    transform: scale(1.05);
    opacity: 0.8;
}

.app-store-btn img {
    width: 135px;
    height: 40px;
    border-radius: 5px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: #0a1a2e;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-cta {
        display: none;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .hero-features {
        grid-template-columns: 1fr;
        justify-items: center;
    }
    
    .hero-logo {
        max-width: 400px;
        height: 400px;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-large {
        width: 100%;
        max-width: 300px;
    }
}

/* Page Header Styles */
.page-header {
    background: linear-gradient(135deg, #0a1a2e 0%, #16213e 100%);
    color: #ffffff;
    padding: 120px 0 80px;
    text-align: center;
}

.page-header-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ffffff 0%, #00d4ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-header-content p {
    font-size: 1.3rem;
    opacity: 0.9;
}

/* Page Header Icon Styles */
.page-header-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

.page-icon {
    width: 80px;
    height: 80px;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
    transition: transform 0.3s ease, filter 0.3s ease;
}

.page-icon:hover {
    transform: scale(1.1);
    filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.3));
}

/* Our Story Section */
.our-story {
    padding: 80px 0;
    background: #ffffff;
}

.story-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.story-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0a1a2e;
    margin-bottom: 2rem;
}

.story-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.5rem;
}

.story-img {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Mission & Vision Section */
.mission-vision {
    padding: 80px 0;
    background: #f8fafc;
}

.mv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
}

.mv-card {
    background: #ffffff;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    border: 1px solid #e2e8f0;
}

.mv-icon {
    color: #00d4ff;
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

.mv-card h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #0a1a2e;
    margin-bottom: 1.5rem;
}

.mv-card p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
}

/* Values Section */
.values {
    padding: 80px 0;
    background: #ffffff;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.value-card {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    background: #ffffff;
}

.value-icon {
    color: #00d4ff;
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
}

.value-card h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #0a1a2e;
    margin-bottom: 1rem;
}

.value-card p {
    color: #666;
    line-height: 1.6;
}

/* Different Section */
.different {
    padding: 80px 0;
    background: linear-gradient(135deg, #0a1a2e 0%, #16213e 100%);
    color: #ffffff;
}

.different .section-header h2 {
    color: #ffffff;
}

.different .section-header p {
    color: rgba(255, 255, 255, 0.8);
}

.comparison-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.comparison-item {
    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);
}

.comparison-item h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #00d4ff;
    margin-bottom: 1rem;
}

.comparison-item p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .story-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .mv-grid {
        grid-template-columns: 1fr;
    }
    
    .page-header-content h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .services,
    .why-choose,
    .cta-section,
    .our-story,
    .mission-vision,
    .values,
    .different {
        padding: 60px 0;
    }
    
    .service-card,
    .feature-item,
    .mv-card,
    .value-card,
    .comparison-item {
        padding: 1.5rem;
    }
    
    .page-header-content h1 {
        font-size: 2rem;
    }
    
    .story-text h2 {
         font-size: 2rem;
     }
     
     .popup-content {
        padding: 1.5rem;
        margin: 1rem;
    }
    
    .popup-header h2 {
        font-size: 1.3rem;
    }
    
    .popup-buttons {
        gap: 0.8rem;
    }
    
    .app-store-buttons {
        align-items: center;
    }
 }

/* Service Detail Styles */
.service-detail {
    padding: 80px 0;
    background: #ffffff;
}

.service-detail.alt-bg {
    background: #f8fafc;
}

.service-detail-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.service-detail-content.reverse {
    grid-template-columns: 1fr 2fr;
}

.service-detail-content.reverse .service-detail-text {
    order: 2;
}

.service-detail-content.reverse .service-detail-image {
    order: 1;
}

.service-detail h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0a1a2e;
    margin-bottom: 0.5rem;
}

.service-subtitle {
    font-size: 1.2rem;
    color: #00d4ff;
    font-weight: 600;
    margin-bottom: 2rem;
}

.service-description h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #0a1a2e;
    margin: 2rem 0 1rem 0;
}

.service-description p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.5rem;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.feature-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #e2e8f0;
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
}

.feature-list li:last-child {
    border-bottom: none;
}

.feature-list strong {
    color: #0a1a2e;
}

.vehicle-types,
.coverage-areas,
.popular-routes,
.corporate-solutions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin: 1.5rem 0;
}

.vehicle-type,
.coverage-item,
.route-item,
.solution-item {
    background: #f8fafc;
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    font-size: 0.95rem;
    line-height: 1.5;
}

.coverage-item,
.route-item {
    text-align: center;
    font-weight: 600;
    color: #0a1a2e;
}

.service-img {
    width: 100%;
    max-width: 350px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Service Benefits */
.service-benefits {
    padding: 80px 0;
    background: linear-gradient(135deg, #0a1a2e 0%, #16213e 100%);
    color: #ffffff;
}

.service-benefits .section-header h2 {
    color: #ffffff;
}

.service-benefits .section-header p {
    color: rgba(255, 255, 255, 0.8);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.benefit-icon {
    color: #00d4ff;
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
}

.benefit-card h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1rem;
}

.benefit-card p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .service-detail-content,
    .service-detail-content.reverse {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .service-detail-content.reverse .service-detail-text,
    .service-detail-content.reverse .service-detail-image {
        order: unset;
    }
    
    .service-detail h2 {
        font-size: 2rem;
    }
    
    .vehicle-types,
     .coverage-areas,
     .popular-routes,
     .corporate-solutions {
         grid-template-columns: 1fr;
     }
 }

/* Driver Partner Page Styles */
.driver-hero {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.driver-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text h2 {
    font-size: 3rem;
    font-weight: 700;
    color: #0a1a2e;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #555;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.earnings-highlight {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin: 2rem 0;
}

.earnings-card {
    background: #ffffff;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.earnings-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #00d4ff;
    margin-bottom: 0.5rem;
}

.earnings-card p {
    font-size: 0.9rem;
    color: #555;
    margin: 0;
}

.driver-img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

/* Why Join Section */
.why-join {
    padding: 80px 0;
    background: #ffffff;
}

.why-join .benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.why-join .benefit-card {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 15px;
    text-align: left;
    border: 1px solid #e2e8f0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-join .benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.why-join .benefit-icon {
    color: #00d4ff;
    margin-bottom: 1rem;
    justify-content: flex-start;
}

.why-join .benefit-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #0a1a2e;
    margin-bottom: 1rem;
}

.why-join .benefit-card p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.benefit-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.benefit-features li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #e2e8f0;
    font-size: 0.9rem;
    color: #555;
}

.benefit-features li:last-child {
    border-bottom: none;
}

.benefit-features li:before {
    content: '✓';
    color: #00d4ff;
    font-weight: bold;
    margin-right: 0.5rem;
}

/* Join Process */
.join-process {
    padding: 80px 0;
    background: #f8fafc;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.step {
    background: #ffffff;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #00d4ff 0%, #0099cc 100%);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem auto;
}

.step h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #0a1a2e;
    margin-bottom: 1rem;
}

.step p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.step ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.step ul li {
    padding: 0.3rem 0;
    font-size: 0.9rem;
    color: #555;
}

.step ul li:before {
    content: '•';
    color: #00d4ff;
    margin-right: 0.5rem;
}

/* Earnings Calculator */
.earnings-calculator {
    padding: 80px 0;
    background: linear-gradient(135deg, #0a1a2e 0%, #16213e 100%);
    color: #ffffff;
}

.earnings-calculator .section-header h2,
.earnings-calculator .section-header p {
    color: #ffffff;
}

.calculator-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.calculator-form {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.calculator-form h3 {
    color: #ffffff;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    color: #ffffff;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-size: 1rem;
}

.form-group input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.calculator-results {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.earnings-comparison {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 1rem;
    align-items: center;
    margin-bottom: 2rem;
}

.traditional-app,
.noyaxi-earnings {
    text-align: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

.traditional-app h4,
.noyaxi-earnings h4 {
    color: #ffffff;
    margin-bottom: 1rem;
}

.earnings-amount {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.earnings-amount .amount {
    font-size: 2rem;
    font-weight: 700;
    color: #00d4ff;
}

.earnings-amount .period {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.commission {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 0.5rem;
}

.vs {
    font-size: 1.2rem;
    font-weight: 700;
    color: #00d4ff;
    text-align: center;
}

.savings-highlight {
    text-align: center;
    padding: 1.5rem;
    background: rgba(0, 212, 255, 0.2);
    border-radius: 10px;
    border: 1px solid rgba(0, 212, 255, 0.3);
}

.savings-highlight h4 {
    color: #ffffff;
    margin-bottom: 1rem;
}

.savings-amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: #00d4ff;
    margin-bottom: 0.5rem;
}

/* Requirements */
.requirements {
    padding: 80px 0;
    background: #ffffff;
}

.requirements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.requirement-category {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid #e2e8f0;
}

.requirement-category h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #0a1a2e;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.requirement-category h3 i {
    color: #00d4ff;
}

.requirement-category ul {
    list-style: none;
    padding: 0;
}

.requirement-category ul li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #e2e8f0;
    color: #555;
}

.requirement-category ul li:last-child {
    border-bottom: none;
}

.requirement-category ul li:before {
    content: '✓';
    color: #00d4ff;
    font-weight: bold;
    margin-right: 0.5rem;
}

.help-note {
    background: #e6f7ff;
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid #00d4ff;
    margin-top: 2rem;
    text-align: center;
}

.help-note p {
    color: #0a1a2e;
    margin: 0;
}

/* Application Form */
.application-form {
    padding: 80px 0;
    background: #f8fafc;
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
}

.driver-application-form {
    background: #ffffff;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.driver-application-form .form-group {
    margin-bottom: 1.5rem;
}

.driver-application-form label {
    display: block;
    color: #0a1a2e;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.driver-application-form input,
.driver-application-form select,
.driver-application-form textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    color: #0a1a2e;
    transition: border-color 0.3s ease;
}

.driver-application-form input:focus,
.driver-application-form select:focus,
.driver-application-form textarea:focus {
    outline: none;
    border-color: #00d4ff;
    box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.1);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    cursor: pointer;
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    width: 100%;
}

@media (max-width: 768px) {
    .driver-hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-text h2 {
        font-size: 2.5rem;
    }
    
    .earnings-highlight {
        grid-template-columns: 1fr;
    }
    
    .calculator-content {
        grid-template-columns: 1fr;
    }
    
    .earnings-comparison {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .vs {
        order: 2;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .driver-application-form {
         padding: 2rem;
     }
 }

/* Safety Page Styles */
.safety-hero {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.safety-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.safety-hero .hero-text h2 {
    font-size: 3rem;
    font-weight: 700;
    color: #0a1a2e;
    margin-bottom: 1rem;
}

.safety-hero .hero-subtitle {
    font-size: 1.3rem;
    color: #555;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.safety-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

.stat-item {
    text-align: center;
    padding: 1rem;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #00d4ff;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: #555;
    font-weight: 500;
}

.safety-img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

/* Driver Verification */
.driver-verification {
    padding: 80px 0;
    background: #ffffff;
}

.verification-process {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.verification-step {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid #e2e8f0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.verification-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.step-icon {
    color: #00d4ff;
    margin-bottom: 1.5rem;
}

.verification-step h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #0a1a2e;
    margin-bottom: 1rem;
}

.verification-step p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.verification-details {
    list-style: none;
    padding: 0;
    text-align: left;
}

.verification-details li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #e2e8f0;
    font-size: 0.9rem;
    color: #555;
}

.verification-details li:last-child {
    border-bottom: none;
}

.verification-details li:before {
    content: '✓';
    color: #00d4ff;
    font-weight: bold;
    margin-right: 0.5rem;
}

/* Vehicle Safety */
.vehicle-safety {
    padding: 80px 0;
    background: #f8fafc;
}

.safety-features {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.safety-feature {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.safety-feature.reverse {
    grid-template-columns: 1fr 1fr;
}

.safety-feature.reverse .feature-content {
    order: 2;
}

.safety-feature.reverse .feature-image {
    order: 1;
}

.feature-content h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #0a1a2e;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.feature-content h3 i {
    color: #00d4ff;
}

.feature-content p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.feature-details h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #0a1a2e;
    margin-bottom: 1rem;
}

.feature-details ul {
    list-style: none;
    padding: 0;
}

.feature-details ul li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #e2e8f0;
    color: #555;
}

.feature-details ul li:last-child {
    border-bottom: none;
}

.feature-details ul li:before {
    content: '•';
    color: #00d4ff;
    margin-right: 0.5rem;
}

.feature-img {
    width: 100%;
    max-width: 350px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Ride Safety */
.ride-safety {
    padding: 80px 0;
    background: #ffffff;
}

.ride-safety-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.safety-card {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid #e2e8f0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.safety-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.card-icon {
    color: #00d4ff;
    margin-bottom: 1rem;
}

.safety-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #0a1a2e;
    margin-bottom: 1rem;
}

.safety-card p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.safety-card ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.safety-card ul li {
    padding: 0.3rem 0;
    font-size: 0.9rem;
    color: #555;
}

.safety-card ul li:before {
    content: '•';
    color: #00d4ff;
    margin-right: 0.5rem;
}

/* COVID Safety */
.covid-safety {
    padding: 80px 0;
    background: linear-gradient(135deg, #0a1a2e 0%, #16213e 100%);
    color: #ffffff;
}

.covid-safety .section-header h2,
.covid-safety .section-header p {
    color: #ffffff;
}

.covid-measures {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.measure-category h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.measure-category h3 i {
    color: #00d4ff;
}

.measures-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.measure-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.measure-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #00d4ff;
    margin-bottom: 0.5rem;
}

.measure-item p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
    margin: 0;
}

/* Safety Tips */
.safety-tips {
    padding: 80px 0;
    background: #f8fafc;
}

.tips-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.tips-column h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #0a1a2e;
    margin-bottom: 1.5rem;
    text-align: center;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #00d4ff;
}

.tip-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.tip-item i {
    color: #00d4ff;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.tip-content h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #0a1a2e;
    margin-bottom: 0.5rem;
}

.tip-content p {
    color: #555;
    line-height: 1.5;
    margin: 0;
    font-size: 0.9rem;
}

/* Emergency Procedures */
.emergency-procedures {
    padding: 80px 0;
    background: #ffffff;
}

.emergency-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.emergency-card {
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 2px solid;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.emergency-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.emergency-card.urgent {
    border-color: #dc3545;
    background: #fff5f5;
}

.emergency-card.moderate {
    border-color: #ffc107;
    background: #fffbf0;
}

.emergency-card.info {
    border-color: #17a2b8;
    background: #f0f9ff;
}

.emergency-icon {
    margin-bottom: 1rem;
}

.emergency-card.urgent .emergency-icon {
    color: #dc3545;
}

.emergency-card.moderate .emergency-icon {
    color: #ffc107;
}

.emergency-card.info .emergency-icon {
    color: #17a2b8;
}

.emergency-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #0a1a2e;
    margin-bottom: 1rem;
}

.emergency-card p {
    color: #555;
    margin-bottom: 1rem;
}

.emergency-card ol {
    text-align: left;
    padding-left: 1rem;
    margin-bottom: 1.5rem;
}

.emergency-card ol li {
    padding: 0.3rem 0;
    color: #555;
    font-size: 0.9rem;
}

.emergency-contact {
    background: rgba(0, 0, 0, 0.05);
    padding: 1rem;
    border-radius: 8px;
    font-weight: 600;
    color: #0a1a2e;
}

@media (max-width: 768px) {
    .safety-hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .safety-hero .hero-text h2 {
        font-size: 2.5rem;
    }
    
    .safety-stats {
        grid-template-columns: 1fr;
    }
    
    .safety-feature,
    .safety-feature.reverse {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .safety-feature.reverse .feature-content,
    .safety-feature.reverse .feature-image {
        order: unset;
    }
    
    .tips-container {
         grid-template-columns: 1fr;
     }
 }

/* Contact Page Styles */
.contact-hero {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.contact-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.contact-hero .hero-text h2 {
    font-size: 3rem;
    font-weight: 700;
    color: #0a1a2e;
    margin-bottom: 1rem;
}

.contact-hero .hero-subtitle {
    font-size: 1.3rem;
    color: #555;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.contact-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

.contact-img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

/* Contact Information */
.contact-info {
    padding: 80px 0;
    background: #ffffff;
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.contact-method {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid #e2e8f0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-method:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.method-icon {
    color: #00d4ff;
    margin-bottom: 1.5rem;
}

.contact-method h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #0a1a2e;
    margin-bottom: 1rem;
}

.contact-method p {
    color: #555;
    margin-bottom: 1.5rem;
}

.contact-details p {
    margin: 0.5rem 0;
    color: #555;
    font-size: 0.95rem;
}

.contact-details p strong {
    color: #0a1a2e;
}

.availability {
    color: #00d4ff !important;
    font-weight: 600;
    margin-top: 1rem;
}

/* Contact Form */
.contact-form-section {
    padding: 80px 0;
    background: #f8fafc;
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
    background: #ffffff;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.form-header {
    text-align: center;
    margin-bottom: 2rem;
}

.form-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0a1a2e;
    margin-bottom: 1rem;
}

.form-header p {
    font-size: 1.1rem;
    color: #555;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    color: #0a1a2e;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 1rem;
    color: #0a1a2e;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    background: #ffffff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #00d4ff;
    box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.checkbox-group {
    flex-direction: row;
    align-items: flex-start;
    gap: 0.5rem;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin: 0;
    margin-top: 0.2rem;
}

.checkbox-group label {
    margin: 0;
    font-weight: 400;
    font-size: 0.9rem;
    line-height: 1.4;
}

.checkbox-group a {
    color: #00d4ff;
    text-decoration: none;
}

.checkbox-group a:hover {
    text-decoration: underline;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: #ffffff;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: #f8fafc;
    border-radius: 10px;
    margin-bottom: 1rem;
    border: 1px solid #e2e8f0;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #ffffff;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background: #f8fafc;
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #0a1a2e;
    margin: 0;
    flex: 1;
}

.faq-question i {
    color: #00d4ff;
    transition: transform 0.3s ease;
    margin-left: 1rem;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    color: #555;
    line-height: 1.6;
    margin: 0;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

/* Emergency Contact */
.emergency-contact {
    padding: 60px 0;
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    color: #ffffff;
}

.emergency-content {
    display: flex;
    align-items: center;
    gap: 2rem;
    text-align: center;
    justify-content: center;
}

.emergency-icon {
    color: #ffffff;
    flex-shrink: 0;
}

.emergency-text h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

.emergency-text p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.btn-emergency {
    background: #ffffff;
    color: #dc3545;
    border: 2px solid #ffffff;
    font-weight: 700;
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-emergency:hover {
    background: transparent;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .contact-hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .contact-hero .hero-text h2 {
        font-size: 2.5rem;
    }
    
    .contact-stats {
        grid-template-columns: 1fr;
    }
    
    .contact-methods {
        grid-template-columns: 1fr;
    }
    
    .form-container {
        padding: 2rem;
        margin: 0 1rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .form-header h2 {
        font-size: 2rem;
    }
    
    .emergency-content {
        flex-direction: column;
        text-align: center;
    }
    
    .emergency-text {
        text-align: center;
    }
}

/* Book a Ride Page Styles */
.booking-hero {
    padding: 100px 0 80px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    min-height: 100vh;
}

.booking-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.booking-hero .hero-text h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: #0a1a2e;
    margin-bottom: 1rem;
}

.booking-hero .hero-subtitle {
    font-size: 1.3rem;
    color: #555;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.booking-benefits {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.benefit-item i {
    font-size: 1.5rem;
    color: #00d4ff;
    width: 30px;
    text-align: center;
}

.benefit-item span {
    font-weight: 600;
    color: #0a1a2e;
}

.booking-form-container {
    position: sticky;
    top: 100px;
}

.booking-form-card {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
}

.booking-form-card h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #0a1a2e;
    margin-bottom: 2rem;
    text-align: center;
}

.booking-form h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #0a1a2e;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #e2e8f0;
}

/* Service Selection */
.service-selection {
    margin-bottom: 2rem;
}

.service-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.service-option {
    cursor: pointer;
}

.service-option input[type="radio"] {
    display: none;
}

.service-card {
    padding: 1.5rem;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    background: #ffffff;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.service-card:hover {
    border-color: #00d4ff;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 212, 255, 0.1);
}

.service-option input[type="radio"]:checked + .service-card {
    border-color: #00d4ff;
    background: linear-gradient(135deg, #00d4ff 0%, #0099cc 100%);
    color: #ffffff;
}

.service-card i {
    font-size: 2.5rem;
    color: #00d4ff;
    margin-bottom: 1rem;
}

.service-option input[type="radio"]:checked + .service-card i {
    color: #ffffff;
}

.service-card h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #0a1a2e;
}

.service-option input[type="radio"]:checked + .service-card h4 {
    color: #ffffff;
}

.service-card p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 1rem;
}

.service-option input[type="radio"]:checked + .service-card p {
    color: rgba(255, 255, 255, 0.9);
}

.service-card .price {
    font-weight: 700;
    color: #00d4ff;
    font-size: 1.1rem;
}

.service-option input[type="radio"]:checked + .service-card .price {
    color: #ffffff;
}

/* Journey Details */
.journey-details,
.contact-info {
    margin-bottom: 2rem;
}

.booking-form .form-group {
    margin-bottom: 1.5rem;
}

.booking-form label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: #0a1a2e;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.booking-form label i {
    color: #00d4ff;
    width: 16px;
}

.pickup-icon {
    color: #28a745 !important;
}

.dropoff-icon {
    color: #dc3545 !important;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 1rem;
    color: #0a1a2e;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    background: #ffffff;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
    outline: none;
    border-color: #00d4ff;
    box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.1);
}

.booking-form textarea {
    resize: vertical;
    min-height: 100px;
}

/* Booking Summary */
.booking-summary {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    border: 1px solid #e2e8f0;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.summary-item:last-child {
    margin-bottom: 0;
}

.summary-item .label {
    font-weight: 500;
    color: #555;
}

.summary-item .value {
    font-weight: 700;
    color: #00d4ff;
    font-size: 1.1rem;
}

/* Form Actions */
.form-actions {
    text-align: center;
}

.booking-submit {
    width: 100%;
    padding: 1.2rem 2rem;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.booking-note {
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
}

/* Quick Booking Section */
.quick-booking {
    padding: 80px 0;
    background: #ffffff;
}

.quick-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.quick-option {
    background: #f8fafc;
    padding: 2.5rem 2rem;
    border-radius: 15px;
    text-align: center;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    border: 2px solid #e2e8f0;
}

.quick-option:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border-color: #00d4ff;
}

.quick-option i {
    font-size: 3rem;
    color: #00d4ff;
    margin-bottom: 1rem;
}

.quick-option h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #0a1a2e;
    margin-bottom: 0.5rem;
}

.quick-option p {
    color: #555;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 500;
}

.quick-option .availability {
    display: inline-block;
    background: #00d4ff;
    color: #ffffff;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .booking-hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .booking-form-container {
        position: static;
    }
    
    .service-options {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .booking-hero {
        padding: 80px 0 60px;
    }
    
    .booking-hero .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .booking-form-card {
        padding: 2rem 1.5rem;
    }
    
    .service-options {
        grid-template-columns: 1fr;
    }
    
    .quick-options {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .benefit-item {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
}

@media (max-width: 480px) {
    .booking-form-card {
        padding: 1.5rem 1rem;
    }
    
    .booking-hero .hero-text h1 {
        font-size: 2rem;
    }
    
    .service-card {
        padding: 1rem;
    }
}
/* welcome Section Wrapper */
/* Uber-like minimal design */
/* Section */
.noyaxi-section-block {
  max-width: 1200px;
  margin: 100px auto 40px;
  padding: 20px;
  font-family: Arial, sans-serif;
}

.noyaxi-section-block h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 25px;
  color: #000;
}

/* Grid layout */
.noyaxi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

/* Card layout (icon left, text right) */
.noyaxi-card {
  background: #f9f9f9;
  border-radius: 12px;
  padding: 20px;
  border: 2px solid #e0f0ff; /* light blue border */
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
  display: flex;
  align-items: center;
  gap: 15px;
  transition: all 0.2s ease-in-out;
  margin-bottom:10px;
}

.noyaxi-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 14px rgba(0,0,0,0.15);
}

/* Icon styling */
.noyaxi-icon {
  font-size: 2.2rem;
  flex-shrink: 0;
}

/* Content styling */
.noyaxi-content {
  display: flex;
  flex-direction: column;
}

.noyaxi-content h3 {
  margin: 0 0 8px;
  font-size: 1.2rem;
  font-weight: 600;
  color: #111;
}

.noyaxi-content p {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 12px;
  line-height: 1.4;
}

.noyaxi-content button {
  align-self: flex-start;
  background: #000;
  color: #fff;
  border: none;
  padding: 8px 16px;
  border-radius: 25px;
  font-size: 0.9rem;
  cursor: pointer;
  transition: background 0.2s ease;
}

.noyaxi-content button:hover {
  background: #333;
}

/* Mobile responsive */
@media (max-width: 600px) {
    .hero {
    padding: 60px 0 40px;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-cta {
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
  }

  .hero-features {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }

  .feature {
    font-size: 0.95rem;
  }

  .feature-icon {
    font-size: 1.3rem;
  }

  .hero-logo {
    width: 250px;
    height: auto; /* keep aspect ratio */
  }
  .noyaxi-grid {
    grid-template-columns: 1fr;
  }

  .noyaxi-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .noyaxi-icon {
    font-size: 2rem;
    margin-bottom: 10px;
  }

  .noyaxi-content h3 {
    font-size: 1.1rem;
  }

  .noyaxi-content p {
    font-size: 0.9rem;
  }
}

.noyaxi-uber {
  font-family: Arial, Helvetica, sans-serif;
  color: #111;
  background: #fff;
  padding: 50px 20px;
}

.noyaxi-intro {
  max-width: 900px;
  margin: 0 auto 60px;
  text-align: center;
}
.noyaxi-intro h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
}
.noyaxi-intro p {
  font-size: 20px;
  color: #444;
}

.noyaxi-mission {
  max-width: 900px;
  margin: 0 auto 80px;
  font-size: 18px;
  line-height: 1.7;
  color: #333;
}

/* Section titles */
.noyaxi-section {
  max-width: 1100px;
  margin: 0 auto 80px;
}
.noyaxi-section h2 {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 40px;
  text-align: center;
}

/* Columns (Why Invest) */
.noyaxi-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 40px;
}
.noyaxi-columns div h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}
.noyaxi-columns div p {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
}

/* Grid (Future Projects) */
.noyaxi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  font-size: 16px;
}
.noyaxi-grid span {
  background: #f6f6f6;
  padding: 18px;
  border-radius: 6px;
  text-align: center;
  transition: background 0.3s ease;
}
.noyaxi-grid span:hover {
  background: #eaeaea;
}

/* Highlight (Investor Section) */
.noyaxi-highlight {
  background: linear-gradient(135deg, #0a1a2e 0%, #16213e 100%);
  color: #fff;
  padding: 60px 30px;
  text-align: center;
  margin: 80px 0;
}
.noyaxi-highlight h2 {
  font-size: 32px;
  margin-bottom: 20px;
}
.noyaxi-highlight p {
  font-size: 18px;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

/* CTA */
.noyaxi-cta {
  text-align: center;
  margin-top: 60px;
}
.noyaxi-cta h2 {
  font-size: 28px;
  margin-bottom: 15px;
}
.noyaxi-cta p {
  font-size: 16px;
  margin-bottom: 25px;
}
.cta-btn {
  display: inline-block;
  padding: 14px 36px;
  font-size: 18px;
  font-weight: 600;
  background: #000;
  color: #fff;
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.3s ease;
}
.cta-btn:hover {
  background: #333;
}

/* =========================
   Responsive Hero Section
========================= */

/* Tablet (max-width: 991px) */
@media (max-width: 991px) {
  .hero {
    padding: 80px 0 60px;
    min-height: auto;
  }

  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .hero-cta {
    justify-content: center;
  }

  .hero-features {
    grid-template-columns: repeat(2, 1fr);
    justify-items: center;
  }

  .hero-logo {
    width: 400px;
    height: auto; /* keep aspect ratio */
  }
}

/* Mobile (max-width: 600px) */


/* Extra small (max-width: 400px) */
@media (max-width: 450px) {
    .hero{
        margin-top:20px;
    }
  .hero-title {
    font-size: 1.6rem;
  }

  .hero-subtitle {
    font-size: 0.9rem;
  }

  .hero-logo {
    width: 200px;
  }
  
  .hamburger {
    display: block;
    cursor: pointer;
  }
}

/* Why Invest Section */
.invest-section {
  padding: 60px 20px;
  background: #f8f9fa;
}

.invest-item {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 40px;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.invest-item img {
  width: 100%;
  max-width: 500px;
  object-fit: cover;
  flex: 1;
}

.invest-text {
  flex: 1;
  padding: 30px;
}

.invest-text h2 {
  font-size: 1.5rem;
  color: #0a3d62;
  margin-bottom: 15px;
}

.cta-section {
  text-align: center;
  padding: 60px 20px;
  background: linear-gradient(to right, #0a3d62, #1e90ff);
  color: #fff;
}

.cta-section h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.cta-section p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.cta-section .btn {
  background: #fff;
  color: #0a3d62;
  padding: 12px 25px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

.cta-section .btn:hover {
  background: #ffdd00;
  color: #000;
}

/* Responsive */
@media (max-width: 768px) {
  .invest-item {
    flex-direction: column;
  }
}

/* Dropdown container */
.nav-menu .dropdown {
  position: relative;
}

/* Hide dropdown by default */
.nav-menu .dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  min-width: 200px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  list-style: none;
  padding: 10px 0;
  z-index: 1000;
}

/* Dropdown items */
.nav-menu .dropdown-menu li {
  width: 100%;
}

.nav-menu .dropdown-menu li a {
  display: block;
  padding: 10px 15px;
  color: #333;
  text-decoration: none;
  transition: background 0.2s;
}

.nav-menu .dropdown-menu li a:hover {
  background: #f0f0f0;
}

/* Show dropdown on hover (desktop) */
.nav-menu .dropdown:hover .dropdown-menu {
  display: block;
}

/* Mobile support */
@media (max-width: 768px) {
  .nav-menu .dropdown-menu {
    position: static;
    box-shadow: none;
  }
}

/* Hide mobile nav initially */
.nav-menu {
  display: flex;
  list-style: none;
  gap: 20px;
}

/* Dropdown base */
.dropdown-menu {
  display: none;
  position: absolute;
  background: white;
  padding: 10px 0;
  list-style: none;
  margin: 0;
  min-width: 180px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* Desktop hover */
.dropdown:hover .dropdown-menu {
  display: block;
}

/* Mobile style */
@media (max-width: 768px) {
  .nav-menu {
    display: none;
    flex-direction: column;
    background: rgba(10, 26, 46, 0.95);
    width: 100%;
    padding: 10px;
  }

  .nav-menu.active {
    display: flex;
  }

  /* Make dropdown expand inside mobile */
  .dropdown-menu {
    position: static;
    box-shadow: none;
  }

  .dropdown.active .dropdown-menu {
    display: block;
  }

  .hamburger {
    display: block;
    cursor: pointer;
  }
  .hamburger .bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: #ffffff;
    transition: 0.3s;
  }
}

.career-section {
  padding: 80px 20px;
  background: #f8f9fa;
}

.career-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}

.career-form {
  flex: 1;
  min-width: 320px;
  background:#e3e3e3;
  padding:80px 50px;
  border-radius:10%;
}

.career-form h2 {
  font-size: 2em;
  color: #222;
  margin-bottom: 10px;
}

.career-subtitle {
  color: #555;
  margin-bottom: 25px;
  font-size: 1.1em;
}

.careerapplication-form .form-group {
  margin-bottom: 20px;
}

.careerapplication-form label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #333;
}

.careerapplication-form input,
.careerapplication-form textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1em;
  transition: border-color 0.2s ease;
}

.careerapplication-form input:focus,
.careerapplication-form textarea:focus {
  border-color: #007bff;
  outline: none;
}

.careerapplication-form input[type="file"] {
  padding: 6px;
}

.btn.btn-primary {
  background-color: #007bff;
  color: #fff;
  border: none;
  padding: 12px 24px;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.btn.btn-primary:hover {
  background-color: #0056b3;
}

.career-image {
  flex: 1;
  text-align: center;
}

.career-img {
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.1);
}

/* Responsive */
@media (max-width: 900px) {
  .career-content {
    flex-direction: column;
    text-align: center;
  }

  .career-form {
    width: 100%;
  }
}

.video-showcase {
  background: linear-gradient(135deg, #001f3f, #004aad);
  color: #fff;
  padding: 80px 20px;
  text-align: center;
}

.video-header h2 {
  font-size: 2.4em;
  font-weight: 700;
  margin-bottom: 40px;
  color: #FFFFFF;
}

.video-header p {
  font-size: 1.1em;
  color: #dce4f5;
  margin-bottom: 50px;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  justify-items: center;
}

.video-item {
  position: relative;
  width: 100%;
  max-width: 560px;
  aspect-ratio: 16/9;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.5);
}

.video-item iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.projects-opportunities {
  background-color: #f9fafc;
  padding: 80px 20px;
  font-family: "Poppins", sans-serif;
  color: #333;
}

.projects-opportunities .container {
  max-width: 1100px;
  margin: 0 auto;
}

.section-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  color: #002147;
  margin-bottom: 40px;
  position: relative;
}

.section-title::after {
  content: "";
  display: block;
  width: 80px;
  height: 3px;
  background: #007bff;
  margin: 10px auto 0;
  border-radius: 5px;
}

.project-item {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  padding: 25px 30px;
  margin-bottom: 30px;
  transition: all 0.3s ease;
}

.project-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}

.project-item h3 {
  font-size: 1.25rem;
  color: #004080;
  margin-bottom: 10px;
}

.project-item ul {
  margin: 10px 0 0 20px;
  padding: 0;
}

.project-item ul li {
  margin-bottom: 8px;
  line-height: 1.6;
}

.project-summary {
  background: #eef3f8;
  border-left: 4px solid #007bff;
  padding: 25px 30px;
  border-radius: 12px;
}

.project-summary h4 {
  font-size: 1.3rem;
  margin-top: 20px;
  color: #002147;
}

.project-summary ul {
  margin: 10px 0 0 20px;
}

.project-summary ul li {
  margin-bottom: 10px;
  line-height: 1.6;
}

