﻿.social-container {
    text-align: center;
}

.social-icons {
    margin:0;
    padding: 0;
    list-style: none;
    display: flex;
    align-items: center;
    gap: 30px;
}

    .social-icons li {
        display: inline-block;
        position: relative;
        font-size: 1.2em;
    }

    .social-icons i {
        color: #fff;
        position: absolute;
        top: 15px;
        left: 15px;
        transition: all 265ms ease-out;
    }

    .social-icons a {
        display: block;
    }

        .social-icons a:before {
            transform: scale(1);
            -ms-transform: scale(1);
            -webkit-transform: scale(1);
            content: " ";
            width: 47px;
            height: 47px;
            border-radius: 8px;
            display: block;
            background: var(--theme-color);
            transition: all 265ms ease-out;
        }

        .social-icons a:hover:before {
            transform: scale(0);
            transition: all 265ms ease-in;
        }

        .social-icons a:hover i {
            transform: scale(2.2);
            -ms-transform: scale(2.2);
            -webkit-transform: scale(2.2);
            color: var(--theme-color);
            background: var(--theme-color);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            transition: all 265ms ease-in;
        }








.profile-header {
    background: white;
    align-items: end;
    border-radius: 12px;
    box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 3px, rgba(0, 0, 0, 0.24) 0px 1px 2px;
    padding: 60px;
    margin: 30px 0;
    display: flex;
    gap: 30px;
    position: relative;
}



.company-logo {
    width: 150px;
    height: 150px;
    border-radius: 12px;
    object-fit: cover;
    padding: 5px;
    background: white;
    box-shadow: rgb(204, 219, 232) 3px 3px 6px 0px inset, rgba(255, 255, 255, 0.5) -3px -3px 6px 1px inset;
}

.profile-info {
    flex-grow: 1;
}

.company-name {
    font-size: 32px;
    font-weight: 700;
    color: #353535;
    margin-bottom: 5px;
}

.company-tagline {
    font-size: 18px;
    color: #64748b;
    margin-bottom: 15px;
    font-weight: 500;
}

.company-stats {
    display: flex;
    gap: 30px;
    margin: 20px 0;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-value {
    font-size: 24px;
    font-weight: 700;
    color: var(--theme-color);
}

.stat-label {
    font-size: 14px;
    color: #64748b;
}

.action-buttons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.btn {
    padding: 12px 25px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-size: 16px;
}

.btn-primary {
    background: var(--theme-color);
    color: white;
}

    .btn-primary:hover {
        background: #1d4ed8;
    }

.btn-outline {
    background: transparent;
    border: 2px solid var(--theme-color);
    color: var(--theme-color);
    box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px, rgba(0, 0, 0, 0.05) 0px 4px 6px -2px;
}

    .btn-outline:hover {
        background: var(--theme-color);
        color: white;
    }

/* Profile Sections */
            .section-title {
    font-size: 24px;
    font-weight: 700;
    color: #0f172a;
    margin: 40px 0 20px;
    padding-bottom: 10px;
    border-bottom: 3px solid var(--theme-color);
    display: inline-block;
}

.section-card {
    background: white;
    border-radius: 12px;
    box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 3px, rgba(0, 0, 0, 0.24) 0px 1px 2px;
    padding: 50px;
    margin-bottom: 30px;
}

.bio-content {
    font-size: 18px;
    line-height: 1.8;
    color: #334155;
}

.company-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.detail-item {
    display: flex;
    gap: 15px;
}

.detail-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #eaeaea;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

    .detail-icon i {
        font-size: 20px;
        color: var(--theme-color);
    }

.detail-content h3 {
    font-size: 18px;
    margin-bottom: 5px;
    color: #0f172a;
}

.detail-content p {
    color: #64748b;
}

/* Media Sections */
.media-section {
    position: relative;
    padding: 30px;
}

.swiper {
    width: 100%;
    height: 350px;
    border-radius: 12px;
    overflow: hidden;
}

.swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #e2e8f0;
    border-radius: 8px;
    overflow: hidden;
}

 
.video-container {
    position: relative;
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.video-player {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 60px;
    color: white;
    opacity: 0.8;
    transition: all 0.3s ease;
    cursor: pointer;
}

    .play-icon:hover {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.1);
    }

.swiper-button-next, .swiper-button-prev {
    color: white !important;
    background: rgba(0, 0, 0, 0.5);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

    .swiper-button-next::after, .swiper-button-prev::after {
        font-size: 20px !important;
        font-weight: bold;
    }

    .swiper-button-next:hover, .swiper-button-prev:hover {
        background: rgba(0, 0, 0, 0.8);
    }

.swiper-pagination-bullet {
    background: white !important;
    opacity: 0.7 !important;
}

.swiper-pagination-bullet-active {
    background: var(--theme-color) !important;
    opacity: 1 !important;
}

/* Responsive Design */
@media (max-width: 900px) {
    .profile-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .company-stats {
        justify-content: center;
    }

    .action-buttons {
        justify-content: center;
    }

    .detail-item {
        justify-content: center;
    }
}

@media (max-width: 600px) {
    .swiper {
        height: 250px;
    }

    .company-stats {
        flex-wrap: wrap;
    }
}
.contact-options {
    position: absolute;
    bottom: 110%;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    padding: 5px 8px;
    background: white;
    border-radius: 25px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    z-index: 10;
}

    .contact-options a {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background-color: #f8f9fa;
        color: #333;
        display: flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        transition: background-color 0.3s, transform 0.2s;
        font-size: 18px;
    }
.contact-options i{
    color:var(--theme-color);
}
.contact-options a:hover {
    background-color: #e2e6ea;
    transform: scale(1.1);
}



