/* About Us Page - Mobile View Styles */

/* Reset and Base Styles */
.about-us-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

/* Header/Navigation Styles */
.about-us-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: #ffffff;
    border-bottom: 1px solid #e0e0e0;
}

.about-us-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 600;
    color: #000;
    text-decoration: none;
}

.about-us-logo-icon {
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #ff6b6b 0%, #4ecdc4 25%, #ffa726 50%, #42a5f5 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.about-us-logo-icon::before {
    content: '★';
    color: white;
    font-size: 18px;
    font-weight: bold;
}

.about-us-menu-toggle {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    padding: 5px;
    color: #000;
}

.about-us-menu-toggle:hover {
    opacity: 0.7;
}

/* Main Content Styles */
.about-us-main {
    padding: 30px 20px;
    background: #ffffff;
}

.about-us-title {
    font-size: 32px;
    font-weight: 700;
    color: #000;
    margin: 0 0 30px 0;
    line-height: 1.2;
}

/* World Map Section */
.about-us-map-section {
    position: relative;
    margin: 30px 0;
    background: #f5f5f5;
    border-radius: 12px;
    padding: 20px;
    min-height: 300px;
}

.about-us-map-image {
    width: 100%;
    height: auto;
    opacity: 0.3;
    border-radius: 8px;
}

.about-us-map-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 2;
}

.about-us-map-text {
    font-size: 24px;
    font-weight: 700;
    color: #1976d2;
    margin: 0;
}

.about-us-map-locations {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}

.about-us-location {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.about-us-location-pin {
    width: 12px;
    height: 12px;
    background: #1976d2;
    border-radius: 50%;
    border: 2px solid #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.about-us-location-label {
    font-size: 11px;
    color: #1976d2;
    font-weight: 600;
    white-space: nowrap;
    background: rgba(255,255,255,0.9);
    padding: 2px 6px;
    border-radius: 4px;
}

/* Location Positions (approximate) */
.about-us-location-usa {
    top: 25%;
    left: 15%;
}

.about-us-location-uk {
    top: 20%;
    left: 45%;
}

.about-us-location-india {
    top: 45%;
    left: 65%;
}

.about-us-location-singapore {
    top: 50%;
    left: 75%;
}

.about-us-location-japan {
    top: 30%;
    left: 85%;
}

/* Description Text */
.about-us-description {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    margin: 30px 0;
}

.about-us-description strong {
    font-weight: 700;
    color: #000;
}

/* Achievements Section */
.about-us-achievements {
    margin: 50px 0;
}

.about-us-achievements-title {
    font-size: 28px;
    font-weight: 700;
    color: #000;
    margin: 0 0 30px 0;
}

.about-us-companies {
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 30px 0;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 12px;
    flex-wrap: wrap;
    gap: 20px;
}

.about-us-company-logo {
    font-size: 24px;
    font-weight: 700;
    color: #666;
    text-align: center;
}

/* Achievement Cards Grid */
.about-us-cards-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 30px;
}

.about-us-card {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: transform 0.2s, box-shadow 0.2s;
}

.about-us-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.about-us-card-icon {
    width: 50px;
    height: 50px;
    background: #f0f0f0;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.about-us-card-content {
    font-size: 14px;
    line-height: 1.5;
    color: #333;
}

.about-us-card-content strong {
    font-size: 20px;
    font-weight: 700;
    color: #000;
    display: block;
    margin-bottom: 5px;
}

/* Footer Styles */
.about-us-footer {
    background: #1a1a2e;
    color: #ffffff;
    padding: 40px 20px 20px;
    margin-top: 50px;
}

.about-us-footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
}

.about-us-footer-logo-icon {
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #ff6b6b 0%, #4ecdc4 25%, #ffa726 50%, #42a5f5 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-us-footer-logo-icon::before {
    content: '★';
    color: white;
    font-size: 18px;
    font-weight: bold;
}

.about-us-footer-columns {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

.about-us-footer-column h3 {
    font-size: 14px;
    font-weight: 600;
    margin: 0 0 10px 0;
    color: #ffffff;
}

.about-us-footer-button {
    background: #2d2d44;
    color: #ffffff;
    border: none;
    padding: 10px 15px;
    border-radius: 6px;
    font-size: 14px;
    cursor: pointer;
    width: 100%;
    text-align: left;
    transition: background 0.2s;
}

.about-us-footer-button:hover {
    background: #3d3d54;
}

.about-us-social-section {
    margin: 30px 0;
}

.about-us-social-title {
    font-size: 14px;
    font-weight: 600;
    margin: 0 0 15px 0;
    color: #ffffff;
}

.about-us-social-icons {
    display: flex;
    gap: 15px;
}

.about-us-social-icon {
    width: 35px;
    height: 35px;
    background: transparent;
    border: 1px solid #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 18px;
    text-decoration: none;
    transition: background 0.2s;
}

.about-us-social-icon:hover {
    background: rgba(255,255,255,0.1);
}

.about-us-useful-links {
    margin-top: 30px;
}

.about-us-useful-links-title {
    font-size: 14px;
    font-weight: 600;
    margin: 0 0 15px 0;
    color: #ffffff;
}

.about-us-useful-links-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Responsive Adjustments */
@media (max-width: 480px) {
    .about-us-title {
        font-size: 28px;
    }
    
    .about-us-map-text {
        font-size: 20px;
    }
    
    .about-us-cards-grid {
        grid-template-columns: 1fr;
    }
    
    .about-us-footer-columns {
        grid-template-columns: 1fr;
    }
}

/* Elementor Compatibility */
.elementor-widget-container .about-us-container {
    width: 100%;
}

.elementor-section .about-us-container {
    max-width: 100%;
}

/* Ensure containers are editable in Elementor */
.elementor-editable[data-elementor-type="section"],
.elementor-editable[data-elementor-type="column"],
.elementor-editable[data-elementor-type="widget"] {
    position: relative;
}


