/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #ffffff;
    color: #000000;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 15px 0;
}

.header-container {
    max-width: 100%;
    margin: 0 20px;
    padding: 0;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 15px;
}
.header-left-group {
    display: flex;
    align-items: center;
    gap: 15px;
}
.main-nav {
    display: flex;
    align-items: right;
    margin-left: auto;
}

.page-header-inline {
    flex: 1;
    margin: 0 30px;
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 10px;
}

.page-header-inline .page-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
    color: #000000;
    white-space: normal;
}

.page-header-inline .page-subtitle {
    font-size: 1rem;
    color: #666666;
    margin: 0;
    white-space: normal;
}

.page-header-inline .back-link {
    display: inline-block;
    color: #000000;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    font-size: 0.9rem;
    align-self: center;
}

.page-header-inline .back-link:hover {
    color: #333333;
}

.back-to-home {
    display: flex;
    align-items: center;
    margin-right: 0;
}

.back-to-home .back-link {
    display: inline-block;
    color: #000000;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    font-size: 0.9rem;
}



.logo-img {
    height: 90px;
    width: 300px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.logo-img:hover {
    transform: scale(1.05);
}

.logo {
    flex-shrink: 0;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-link {
    text-decoration: none;
    color: #000000;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #333333;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #000000;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Header CTA Button */
.header-cta {
    display: flex;
    gap: 15px;
    align-items: center;
}

.cta-button {
    display: inline-block;
    padding: 12px 24px;
    background-color: #000000;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    border: 2px solid #000000;
}

.cta-button:hover {
    background-color: #ffffff;
    color: #000000;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.cta-button-secondary {
    background-color: #000000;
    color: #ffffff;
    border: 2px solid #000000;
}

.cta-button-secondary:hover {
    background-color: #ffffff;
    color: #000000;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Hero Video Section */
.hero-video {
    margin-top: 80px;
    position: relative;
    height: 100vh;
    overflow: hidden;
    background-color: #000000;
}

.video-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-vid {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: opacity 0.3s ease;
}

/* Video loading state */
.hero-vid.loading {
    opacity: 0;
}

.hero-vid.loaded {
    opacity: 1;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #ffffff;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.2rem;
    font-weight: 400;
    max-width: 600px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Services Section */
.services {
    padding: 20px 0;
    background-color: #ffffff;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 60px;
    color: #000000;
}

.section-description {
    text-align: center;
    font-size: 1.15rem;
    color: #333;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.service-card {
    background-color: #ffffff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.service-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card:hover .service-img {
    transform: scale(1.1);
}

.service-content {
    padding: 30px;
    position: relative;
}

.service-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #000000;
}

.service-description {
    color: #333333;
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover .service-overlay {
    opacity: 1;
}

.learn-more {
    color: #ffffff;
    font-weight: 600;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* About Section */
.about-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.about-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.about-content h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 30px;
    color: #000000;
}

.about-content p {
    font-size: 1.1rem;
    color: #333333;
    line-height: 1.8;
    margin-bottom: 50px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
    padding: 25px 17px;
    background-color: #ffffff;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-item h3 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #000000;
    margin-bottom: 10px;
}

.stat-item p {
    font-size: 1.0rem;
    color: #333333;
    font-weight: 500;
}

.stats-divider {
    border: none;
    border-top: 1px solid #e9ecef;
    margin: 20px auto;
    width: 100%;
}

/* Footer */
.footer {
    background-color: #02294F;
    padding: 40px 0 20px;
    border-top: 1px solid #e9ecef;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.footer-logo-img {
    height: 40px;
    width: auto;
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #e0e6ed;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #e9ecef;
    color: #e0e6ed;
}

/* Responsive adjustments for page header inline */
@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        gap: 15px;
        text-align: left;
        align-items: flex-start;
    }
    
    .page-header-inline {
        flex-direction: column;
        margin: 0;
        text-align: left;
        align-items: flex-start;
    }
    
    .page-header-inline .page-title,
    .page-header-inline .page-subtitle {
        white-space: normal;
    }
    
    .page-header-inline .back-link {
        margin-top: 10px;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
    
    .header-cta {
        margin-left: 0;
        margin-top: 15px;
        flex-direction: column;
        gap: 10px;
    }
    
    .cta-button {
        padding: 10px 20px;
        font-size: 13px;
        width: 100%;
        text-align: center;
    }
    
    .nav-list {
        gap: 20px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .nav-list {
        gap: 15px;
    }
    
    .nav-link {
        font-size: 14px;
    }
    
    .service-content {
        padding: 20px;
    }
    
    .service-title {
        font-size: 1.3rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading animation for images */
.service-img {
    opacity: 0;
    animation: fadeIn 0.5s ease forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

/* Page Header Styles */
.page-header {
    margin-top: 80px;
    padding: 60px 0;
    background-color: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
}

.page-header-content {
    text-align: center;
}

.page-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #000000;
    text-align: center;
}

.page-subtitle {
    font-size: 1.1rem;
    color: #666666;
    margin-bottom: 30px;
}

.back-link {
    display: inline-block;
    color: #000000;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.back-link:hover {
    color: #333333;
}

/* Hero Image Section */
.hero-image {
    position: relative;
    height: 90vh;
    overflow: hidden;
}

.hero-image-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    color: #ffffff;
}

.hero-overlay h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-overlay p {
    font-size: 1.2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Service Details */
.service-details {
    padding: 80px 0;
    background-color: #ffffff;
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.detail-card {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.detail-card:hover {
    transform: translateY(-5px);
}

.detail-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #000000;
}

.detail-card p {
    color: #333333;
    line-height: 1.6;
    margin-bottom: 20px;
}

.detail-card ul {
    list-style: none;
    padding: 0;
}

.detail-card li {
    padding: 8px 0;
    color: #333333;
    position: relative;
    padding-left: 20px;
}

.detail-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #000000;
    font-weight: bold;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature {
    text-align: center;
    padding: 30px 20px;
    background-color: #ffffff;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.feature h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #000000;
}

.feature p {
    color: #333333;
    line-height: 1.6;
}

/* Why Choose Section */
.why-choose {
    padding: 80px 0;
    background-color: #f8f9fa;
}

/* Contact CTA */
.contact-cta {
    padding: 80px 0;
    background-color: #ffffff;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #000000;
}

.cta-content p {
    font-size: 1.1rem;
    color: #333333;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background-color: #000000;
    color: #ffffff;
}

.btn-primary:hover {
    background-color: #333333;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: #000000;
    border: 2px solid #000000;
}

.btn-secondary:hover {
    background-color: #000000;
    color: #ffffff;
    transform: translateY(-2px);
}

/* MD Message Page */
.md-message {
    padding: 150px 0;
    background-color: #ffffff;
}

.message-content {
    max-width: 800px;
    margin: 0 auto;
}

.md-profile {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
    padding: 30px;
    background-color: #f8f9fa;
    border-radius: 15px;
}

.md-image {
    margin-right: 30px;
}

.md-placeholder {
    width: 100px;
    height: 150px;
    background-color: #000000;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
}

.md-photo {
    width: 100px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #000000;
}

.md-info h2 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #000000;
}

.md-name {
    font-size: 1.1rem;
    color: #333333;
}

.message-text {
    line-height: 1.8;
    color: #333333;
}

.message-text p {
    margin-bottom: 20px;
}

.commitment-list {
    margin: 30px 0;
    padding-left: 20px;
}

.commitment-list li {
    margin-bottom: 15px;
    line-height: 1.6;
}

.signature {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 2px solid #e9ecef;
    font-style: italic;
}

.quote {
    font-style: italic;
    font-size: 1.2rem;
    color: #000000;
    text-align: center;
    margin: 30px 0;
    padding: 20px;
    background-color: #f8f9fa;
    border-left: 4px solid #000000;
    border-radius: 8px;
    font-weight: 500;
}

/* Company Values */
.company-values {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.value-card {
    text-align: center;
    padding: 40px 20px;
    background-color: #ffffff;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.value-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #000000;
}

.value-card p {
    color: #333333;
    line-height: 1.6;
}

/* Contact Page Styles */
.contact-section {
    padding: 80px 0;
    background-color: #ffffff;
}

/* Contact Image Section */
.contact-image-section {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.contact-image-container {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-page-image {
    width: 100%;
    height: auto;
    max-width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.contact-page-image:hover {
    transform: scale(1.02);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    align-items: start;
    justify-items: center;
    width: 100%;
}

.contact-form-container {
    text-align: center;
    max-width: 100%;
    width: 100%;
}


.contact-form-container h2,
.contact-info h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 30px;
    color: #000000;
}

.contact-form {
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 15px;
    width: 100%;
    max-width: 800px; /* Increased width */
    margin: 0 auto;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #000000;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background-color: #ffffff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #000000;
}

.contact-info p {
    color: #333333;
    line-height: 1.6;
    margin-bottom: 30px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.contact-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.contact-text h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #000000;
}

.contact-text p {
    color: #333333;
    line-height: 1.6;
    margin-bottom: 5px;
}

/* Emergency Contact */
.emergency-contact {
    padding: 60px 0;
    background-color: #f8f9fa;
    text-align: center;
}

.emergency-content h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #000000;
}

.emergency-content p {
    color: #333333;
    margin-bottom: 40px;
}

.emergency-info {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.emergency-phone h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #000000;
}

.emergency-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: #000000;
}

.emergency-note p {
    color: #333333;
    max-width: 400px;
}

/* Service Areas */
.service-areas {
    padding: 80px 0;
    background-color: #ffffff;
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.area-card {
    text-align: center;
    padding: 30px 20px;
    background-color: #f8f9fa;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.area-card:hover {
    transform: translateY(-5px);
}

.area-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #000000;
}

.area-card p {
    color: #333333;
    line-height: 1.6;
}

/* Transport Solutions */
.transport-solutions {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.solution-card {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.solution-card:hover {
    transform: translateY(-5px);
}

.solution-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    text-align: center;
}

.solution-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #000000;
    text-align: center;
}

.solution-card p {
    color: #333333;
    line-height: 1.6;
    margin-bottom: 20px;
    text-align: center;
}

.solution-card ul {
    list-style: none;
    padding: 0;
}

.solution-card li {
    padding: 8px 0;
    color: #333333;
    position: relative;
    padding-left: 20px;
}

.solution-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #000000;
    font-weight: bold;
}

/* Technology & Tracking */
.technology-tracking {
    padding: 80px 0;
    background-color: #ffffff;
}

.tech-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.tech-content h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #000000;
}

.tech-content p {
    color: #333333;
    line-height: 1.6;
    margin-bottom: 40px;
}

.tech-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.tech-feature {
    text-align: center;
    padding: 30px 20px;
    background-color: #f8f9fa;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.tech-feature:hover {
    transform: translateY(-5px);
}

.tech-feature h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #000000;
}

.tech-feature p {
    color: #333333;
    line-height: 1.6;
}

/* Investment Opportunities */
.investment-opportunities {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.investment-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.investment-content h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #000000;
}

.investment-content p {
    color: #333333;
    line-height: 1.6;
    margin-bottom: 40px;
}

.investment-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.investment-type {
    background-color: #ffffff;
    padding: 30px 20px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.investment-type:hover {
    transform: translateY(-5px);
}

.investment-type h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #000000;
}

.investment-type p {
    color: #333333;
    line-height: 1.6;
}

/* Property Features */
.property-features {
    padding: 80px 0;
    background-color: #f8f9fa;
}

/* Responsive Design for New Components */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .md-profile {
        flex-direction: column;
        text-align: center;
    }
    
    .md-image {
        margin-right: 0;
        margin-bottom: 20px;
    }
    
    .emergency-info {
        flex-direction: column;
        gap: 20px;
    }
    
    .solutions-grid {
        grid-template-columns: 1fr;
    }
    
    .investment-types {
        grid-template-columns: 1fr;
    }
    
    .tech-features {
        grid-template-columns: 1fr;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .hero-overlay h2 {
        font-size: 2rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .tech-content h2 {
        font-size: 2rem;
    }
    
    .investment-content h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .contact-form {
        padding: 20px;
    }
    
    .detail-card {
        padding: 20px;
    }
    
    .solution-card {
        padding: 20px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
} 

/* Footer Extra Section */
.footer-extra {
    background: #02294F;
    padding: 40px 0 0 0;
    border-top: 1px solid #e9ecef;
    margin-top: 20px;
}
.branch-title {
  margin-top: 20px;   /* moves it down */
  margin-bottom: 10px; /* keeps Jaipur close */
}
.footer-contact-columns {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    align-items: flex-start;
}
.footer-contact-block {
    flex: 1 1 250px;
    min-width: 250px;
    max-width: 350px;
    margin-bottom: 30px;
    color: #fff;
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-left: 0;
    margin-left: 0;
}
.footer-contact-block h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #fff;
    letter-spacing: 0;
    text-align: left;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
}
.footer-contact-block p {
    color: #e0e6ed;
    margin-bottom: 10px;
    font-size: 1rem;
    letter-spacing: 0;
    text-align: left;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    line-height: 1.6;
}
.footer-quote-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-align: left;
    width: 100%;
    align-items: flex-start;
    padding-left: 0;
    margin-left: 0;
}
.footer-quote-form h3 {
    text-align: left;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #fff;
    letter-spacing: 0;
}
.footer-quote-form input {
    padding: 10px 12px;
    border: 1.5px solid #e9ecef;
    border-radius: 6px;
    font-size: 1rem;
    margin-bottom: 5px;
    margin-left: 0;
    background: #fff;
    color: #02294F;
    transition: border-color 0.2s;
    text-align: left;
    width: 100%;
    box-sizing: border-box;
}
.footer-quote-form input::placeholder {
    text-align: left;
    color: #666;
}
.footer-quote-form input:focus {
    border-color: #000;
    outline: none;
}
.footer-quote-btn {
    background: #fff;
    color: #02294F;
    border: none;
    border-radius: 6px;
    padding: 12px 0;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    margin-top: 5px;
    width: 100%;
    text-align: center;
    box-sizing: border-box;
}
.footer-quote-btn:hover {
    background: #02294F;
    color: #fff;
    border: 2px solid #fff;
}
@media (max-width: 900px) {
    .footer-contact-columns {
        flex-direction: column;
        gap: 30px;
        align-items: stretch;
    }
    .footer-contact-block {
        max-width: 100%;
    }
} 

/* Meet Our Founders Section */
.founders-section {
    padding: 80px 0;
    background: #fff;
}
.founders-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
    align-items: stretch;
    margin-top: 40px;
}
.founder-card {
    background: #f8f9fa;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(2,41,79,0.08);
    padding: 30px 20px 20px 20px;
    text-align: center;
    width: 220px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.2s, box-shadow 0.2s;
}
.founder-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 10px 30px rgba(2,41,79,0.15);
}
.founder-img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 18px;
    border: 4px solid #02294F;
    background: #e0e6ed url('data:image/svg+xml;utf8,<svg xmlns=\'http://www.w3.org/2000/svg\' width=\'120\' height=\'120\'><rect width=\'120\' height=\'120\' fill=\'%23e0e6ed\'/></svg>') center center no-repeat;
    box-shadow: 0 2px 10px rgba(2,41,79,0.10);
    display: block;
}
.founder-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #02294F;
    margin-top: 8px;
    letter-spacing: 0.5px;
}
@media (max-width: 900px) {
    .founders-grid {
        gap: 25px;
    }
    .founder-card {
        width: 160px;
        padding: 20px 10px 15px 10px;
    }
    .founder-img {
        width: 80px;
        height: 80px;
    }
}
@media (max-width: 600px) {
    .founders-grid {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    .founder-card {
        width: 90vw;
        max-width: 320px;
    }
} 

.founders-grid-single {
    justify-content: center;
    margin-top: 0;
    gap: 0;
} 

.founders-grid-double {
    justify-content: center;
    margin-top: 0;
    gap: 40px;
} 

/* Crane Gallery Section */
.crane-gallery-section {
    background: #fff;
    padding: 40px 0 10px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}
.crane-gallery-container {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 40px;
    flex-wrap: wrap;
}
.crane-gallery-left, .crane-gallery-right {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.crane-gallery-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.crane-img {
    width: 180px;
    height: 180px;
    object-fit: cover;
    border-radius: 18px;
    box-shadow: 0 6px 24px rgba(2,41,79,0.12);
    border: 3px solid #02294F;
    background: #f8f8f8;
    opacity: 0;
    transform: translateY(40px) scale(0.95);
    animation: none;
}

/* Slide pop-up animations */
.slide-left {
    animation: slidePopLeft 0.8s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}
.slide-center {
    animation: slidePopCenter 0.8s 0.2s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}
.slide-right {
    animation: slidePopRight 0.8s 0.4s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

@keyframes slidePopLeft {
    0% { opacity: 0; transform: translateX(-60px) scale(0.8); }
    60% { opacity: 1; transform: translateX(10px) scale(1.05); }
    100% { opacity: 1; transform: translateX(0) scale(1); }
}
@keyframes slidePopCenter {
    0% { opacity: 0; transform: translateY(60px) scale(0.8); }
    60% { opacity: 1; transform: translateY(-10px) scale(1.05); }
    100% { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes slidePopRight {
    0% { opacity: 0; transform: translateX(60px) scale(0.8); }
    60% { opacity: 1; transform: translateX(-10px) scale(1.05); }
    100% { opacity: 1; transform: translateX(0) scale(1); }
}

@media (max-width: 900px) {
    .crane-gallery-container {
        flex-direction: column;
        align-items: center;
        gap: 24px;
    }
    .crane-gallery-left, .crane-gallery-right {
        flex-direction: row;
        gap: 16px;
        justify-content: center;
    }
    .crane-img {
        width: 120px;
        height: 120px;
    }
} 

/* Five Crane Gallery Section */
.crane-five-gallery-section {
    margin: 40px 0 0 0;
    padding: 0 0 40px 0;
}
.crane-five-gallery-container {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
}
.crane-five-gallery-left,
.crane-five-gallery-right {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.crane-five-gallery-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.crane-five-img {
    height: 120px;
    width: auto;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.10);
    background: #f8f8f8;
    margin-bottom: 8px;
    transition: transform 0.2s;
    display: block;
    max-width: 100%;
}
.crane-five-img-center {
    width: 220px;
    height: 160px;
    object-fit: cover;
    z-index: 1;
    box-shadow: 0 8px 32px rgba(0,0,0,0.13);
}
@media (max-width: 900px) {
    .crane-five-gallery-container {
        gap: 16px;
    }
    .crane-five-img {
        height: 80px;
    }
    .crane-five-img-center {
        width: 150px;
        height: 110px;
    }
}
@media (max-width: 600px) {
    .crane-five-gallery-container {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    .crane-five-gallery-left,
    .crane-five-gallery-right {
        flex-direction: row;
        gap: 10px;
    }
    .crane-five-img,
    .crane-five-img-center {
        height: 60px;
    }
} 

.crane-five-gallery-vertical {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
}
.crane-five-gallery-row {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 32px;
}
.crane-five-gallery-center {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 10px 0;
}
@media (max-width: 900px) {
    .crane-five-gallery-row {
        gap: 12px;
    }
    .crane-five-gallery-vertical {
        gap: 10px;
    }
}
@media (max-width: 600px) {
    .crane-five-gallery-row {
        gap: 6px;
    }
    .crane-five-gallery-vertical {
        gap: 6px;
    }
} 

.sdg-crane-image-section {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 32px 0 40px 0;
}
.sdg-crane-img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.10);
    background: #f8f8f8;
} 

.sdg-crane-fullscreen-section {
    width: 100vw;
    min-height: 0;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    background: #f8f8f8;
    margin: 0;
    padding: 0;
    position: relative;
    overflow-x: hidden;
    overflow-y: auto;
}
.sdg-crane-fullscreen-img {
    width: 100vw;
    height: auto;
    max-width: 100vw;
    object-fit: cover;
    object-position: center top;
    display: block;
    background: #f8f8f8;
    border-radius: 0;
    box-shadow: none;
    margin: 0;
    padding: 0;
} 

.about-us-section {
    background: #fff;
    padding: 56px 0 40px 0;
}
.about-us-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 24px;
}
.about-us-title {
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 24px;
    color: #000;
    text-align: left;
}
.about-us-subtitle {
    font-size: 1.3rem;
    font-weight: 600;
    margin: 32px 0 12px 0;
    color: #000;
}
.about-us-text {
    font-size: 1.08rem;
    margin-bottom: 18px;
    color: #222;
    line-height: 1.7;
}
.about-us-list {
    margin-left: 24px;
    margin-bottom: 18px;
    color: #222;
    font-size: 1.08rem;
    line-height: 1.7;
}
.about-us-list li {
    margin-bottom: 8px;
    list-style: disc inside;
} 

.equipment-about-section {
    background: #fff;
    padding: 48px 0 32px 0;
}
.equipment-about-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 18px;
    color: #000;
}
.equipment-about-desc {
    font-size: 1.08rem;
    color: #222;
    line-height: 1.7;
    margin-bottom: 0;
} 

.equipment-nav-section {
    background: #f8f8f8;
    padding: 18px 0 18px 0;
    margin-bottom: 32px;
}
.equipment-nav-list {
    display: flex;
    justify-content: center;
    gap: 36px;
    list-style: none;
    padding: 0;
    margin: 0;
}
.equipment-nav-link {
    text-decoration: none;
    color: #02294F;
    font-weight: 600;
    font-size: 1.08rem;
    padding: 8px 18px;
    border-radius: 5px;
    transition: background 0.2s, color 0.2s;
}
.equipment-nav-link:hover {
    background: #02294F;
    color: #fff;
}

/* Centered Content Styles */
.centered-content {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.intro-text-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 100px;
    font-size : 1.4rem;
}

/* Career Section */
.career-section {
    padding: 100px 0;
    background-color: #ffffff;
    text-align: center;
}

.career-content {
    max-width: 700px;
    margin: 0 auto;
}

.career-section .section-title {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #000000;
}

.career-section .section-description {
    font-size: 1.15rem;
    color: #333;
    margin-bottom: 40px;
    line-height: 1.7;
}

.submit-resume-btn {
    display: inline-block;
    padding: 15px 40px;
    background-color: #000000;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid #000000;
    cursor: pointer;
}

.submit-resume-btn:hover {
    background-color: #ffffff;
    color: #000000;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Popup Styles */
.popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.popup-content {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.close-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 2rem;
    cursor: pointer;
    color: #333;
    background: none;
    border: none;
    width: auto;
}

.close-btn:hover {
    color: #000000;
}

.popup-content h2 {
    text-align: center;
    margin-bottom: 25px;
    font-size: 1.8rem;
    color: #000000;
}

.resume-form {
    display: grid;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    text-align: left;
    margin-bottom: 8px;
    font-weight: 500;
    color: #000000;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 15px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #000000;
}

.form-actions {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
    margin-top: 10px;
}

.cancel-btn, .submit-btn {
    padding: 12px 25px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cancel-btn {
    background-color: #f8f9fa;
    color: #000000;
}

.cancel-btn:hover {
    background-color: #e9ecef;
}

.submit-btn {
    background-color: #000000;
    color: #ffffff;
}

.submit-btn:hover {
    background-color: #333333;
}

/* Clientele Section */
.clientele-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.clientele-logos-grid {
    display: flex;
    flex-wrap: nowrap;
    gap: 10px;
    margin-top: 40px;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    overflow-x: auto;
    /* For better scrolling experience on small screens */
    -ms-overflow-style: -ms-autohiding-scrollbar;
    scrollbar-width: thin;
}

/* Responsive adjustment for smaller screens */
@media (max-width: 768px) {
    .clientele-logos-grid {
        flex-wrap: wrap;
        justify-content: center;
        overflow-x: visible;
    }
    
    .client-logo-item {
        height: 160px;
        width: 180px;
    }
    
    .client-logo-item img {
        max-height: 110px;
    }
}

.client-logo-item {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 180px;
    width: 200px;
    padding: 30px;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.client-logo-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.client-logo-item img {
    max-height: 130px;
    max-width: 100%;
    object-fit: contain;
    transition: opacity 0.3s ease;
}

.client-logo-item img:hover {
    opacity: 0.9;
}

.clientele-section .section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #000000;
}

.clientele-section .section-description {
    text-align: center;
    font-size: 1.15rem;
    color: #333;
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;

} 
