* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #000000;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    color: #ffffff;
    position: relative;
    overflow-x: hidden;
}

/* Floating Background Icons */
.floating-icons {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.floating-icon {
    position: absolute;
    font-size: 80px;
    opacity: 0.2;
    animation: float 20s infinite ease-in-out;
    z-index: 0;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.4);
}

.floating-icon:nth-child(1) {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
    animation-duration: 25s;
}

.floating-icon:nth-child(2) {
    top: 20%;
    right: 15%;
    animation-delay: 2s;
    animation-duration: 22s;
}

.floating-icon:nth-child(3) {
    top: 50%;
    left: 5%;
    animation-delay: 4s;
    animation-duration: 28s;
}

.floating-icon:nth-child(4) {
    top: 70%;
    right: 10%;
    animation-delay: 1s;
    animation-duration: 24s;
}

.floating-icon:nth-child(5) {
    top: 30%;
    left: 20%;
    animation-delay: 3s;
    animation-duration: 26s;
}

.floating-icon:nth-child(6) {
    top: 60%;
    right: 25%;
    animation-delay: 5s;
    animation-duration: 23s;
}

.floating-icon:nth-child(7) {
    top: 15%;
    left: 50%;
    animation-delay: 1.5s;
    animation-duration: 27s;
}

.floating-icon:nth-child(8) {
    top: 80%;
    left: 30%;
    animation-delay: 3.5s;
    animation-duration: 25s;
}

.floating-icon:nth-child(9) {
    top: 40%;
    right: 5%;
    animation-delay: 2.5s;
    animation-duration: 24s;
}

.floating-icon:nth-child(10) {
    top: 5%;
    right: 40%;
    animation-delay: 4.5s;
    animation-duration: 26s;
}

.floating-icon:nth-child(11) {
    top: 75%;
    left: 15%;
    animation-delay: 0.5s;
    animation-duration: 23s;
}

.floating-icon:nth-child(12) {
    top: 45%;
    left: 70%;
    animation-delay: 3.2s;
    animation-duration: 27s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(30px, -30px) rotate(5deg);
    }
    50% {
        transform: translate(-20px, 20px) rotate(-5deg);
    }
    75% {
        transform: translate(20px, 30px) rotate(3deg);
    }
}

.container {
    width: 100%;
    max-width: 1200px;
    display: flex;
    flex-direction: column;
    gap: 40px;
    animation: fadeIn 0.8s ease-in;
    position: relative;
    z-index: 1;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Company Card Styles */
.company-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 50px 40px;
    box-shadow: 0 10px 40px rgba(255, 255, 255, 0.1),
                0 0 0 2px rgba(255, 255, 255, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.company-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: #ffffff;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

.company-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(255, 255, 255, 0.15),
                0 0 0 2px rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.08);
}

.logo-container {
    position: relative;
}

.logo-circle {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2),
                inset 0 0 0 4px #000000;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    padding: 8px;
}

.logo-circle::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 0, 0, 0.1) 0%, transparent 70%);
    animation: rotate 10s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.logo-circle:hover {
    transform: scale(1.05) rotate(5deg);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.3),
                inset 0 0 0 4px #000000;
}

.logo-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 50%;
    z-index: 1;
    position: relative;
    transition: transform 0.3s ease;
}

.logo-circle:hover .logo-image {
    transform: scale(1.05);
}

/* Remove or keep these styles if you want to hide them completely */
.logo-text,
.logo-tagline {
    display: none;
}

.company-info {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.company-name {
    font-size: 42px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 2px;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.company-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 300;
    letter-spacing: 1px;
}

.company-since {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    font-style: italic;
    margin-top: 8px;
}

/* Locations Grid Styles */
.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.location-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    border: 2px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.location-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.location-card:hover::before {
    left: 100%;
}

.location-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.15);
}

.location-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 700;
    color: #000000;
    margin: 0 auto 20px;
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    position: relative;
}

.location-card:hover .location-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 30px rgba(255, 255, 255, 0.3);
}

.location-name {
    font-size: 24px;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.location-card:hover .location-name {
    color: #ffffff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.click-arrow {
    margin-top: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.3s ease;
    position: relative;
}

.click-arrow svg {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(255, 255, 255, 0.2));
}

.location-card:hover .click-arrow {
    color: #ffffff;
    transform: translateX(5px);
}

.location-card:hover .click-arrow svg {
    transform: translateX(3px);
    filter: drop-shadow(0 4px 8px rgba(255, 255, 255, 0.4));
}

/* Pulsing animation for mobile */
@keyframes pulse-arrow {
    0%, 100% {
        opacity: 0.7;
        transform: translateX(0) scale(1);
    }
    50% {
        opacity: 1;
        transform: translateX(4px) scale(1.05);
    }
}

@media (max-width: 768px) {
    .click-arrow {
        margin-top: 20px;
        color: rgba(255, 255, 255, 0.8);
    }
    
    .click-arrow svg {
        width: 28px;
        height: 28px;
        animation: pulse-arrow 2s ease-in-out infinite;
        filter: drop-shadow(0 2px 6px rgba(255, 255, 255, 0.3));
    }
    
    .location-card:hover .click-arrow {
        transform: translateX(8px);
        color: #ffffff;
    }
    
    .location-card:hover .click-arrow svg {
        transform: translateX(5px);
        filter: drop-shadow(0 4px 10px rgba(255, 255, 255, 0.5));
    }
    
    .location-card:active .click-arrow {
        transform: translateX(12px);
    }
    
    .location-card:active .click-arrow svg {
        animation: none;
        transform: translateX(10px) scale(1.15);
        filter: drop-shadow(0 6px 12px rgba(255, 255, 255, 0.6));
    }
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: fadeIn 0.3s ease;
}

.modal-content {
    background: #000000;
    border: 2px solid #ffffff;
    border-radius: 24px;
    padding: 40px;
    max-width: 500px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 60px rgba(255, 255, 255, 0.2);
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 32px;
    font-weight: bold;
    color: #ffffff;
    cursor: pointer;
    line-height: 1;
    transition: transform 0.3s ease, color 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 2px solid #ffffff;
}

.close-modal:hover {
    transform: rotate(90deg);
    background: #ffffff;
    color: #000000;
}

.modal-title {
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 30px;
    text-align: center;
    letter-spacing: 2px;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.modal-body {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-section,
.social-section,
.location-section {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-section h3,
.social-section h3,
.location-section h3 {
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 2px solid #ffffff;
    padding-bottom: 10px;
}

.contact-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-item:last-child {
    border-bottom: none;
}

.contact-label {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
}

.contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 100%;
    height: 100%;
    color: rgba(255, 255, 255, 0.7);
    fill: currentColor;
}

.contact-link {
    font-size: 16px;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 8px 16px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
}

.contact-link:hover {
    background: #ffffff;
    color: #000000;
    transform: translateX(-5px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    text-decoration: none;
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #ffffff;
    transform: translateX(10px);
    box-shadow: 0 5px 20px rgba(255, 255, 255, 0.2);
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.social-icon svg {
    width: 100%;
    height: 100%;
    color: #ffffff;
    fill: currentColor;
    transition: transform 0.3s ease;
}

.social-link:hover .social-icon svg {
    transform: scale(1.2);
}

.location-link {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    text-decoration: none;
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
    justify-content: center;
}

.location-link:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #ffffff;
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(255, 255, 255, 0.2);
}

.location-icon {
    font-size: 24px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .floating-icon {
        font-size: 50px;
        opacity: 0.15;
    }

    .container {
        gap: 30px;
    }

    .company-card {
        padding: 40px 30px;
    }

    .logo-circle {
        width: 120px;
        height: 120px;
    }

    .logo-text {
        font-size: 24px;
    }

    .company-name {
        font-size: 32px;
    }

    .locations-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .location-card {
        padding: 30px 25px;
    }

    .modal-content {
        padding: 30px 25px;
        max-width: 100%;
    }

    .modal-title {
        font-size: 28px;
    }

    .contact-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .contact-link {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .floating-icon {
        font-size: 40px;
        opacity: 0.12;
    }

    .company-card {
        padding: 30px 20px;
    }

    .logo-circle {
        width: 100px;
        height: 100px;
    }

    .logo-text {
        font-size: 20px;
    }

    .company-name {
        font-size: 28px;
    }

    .click-arrow {
        margin-top: 18px;
    }

    .click-arrow svg {
        width: 30px;
        height: 30px;
    }

    .location-card:active .click-arrow {
        transform: translateX(10px);
    }

    .location-card:active .click-arrow svg {
        transform: translateX(8px) scale(1.15);
    }

    .modal {
        padding: 10px;
    }

    .modal-content {
        padding: 25px 20px;
        border-radius: 20px;
    }

    .close-modal {
        top: 15px;
        right: 15px;
        width: 35px;
        height: 35px;
        font-size: 28px;
    }

    .modal-title {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .modal-body {
        gap: 20px;
    }

    .contact-section h3,
    .social-section h3,
    .location-section h3 {
        font-size: 18px;
    }

    .contact-link,
    .social-link,
    .location-link {
        font-size: 14px;
        padding: 12px 16px;
    }
}

