:root {
    --primary: #77c3ec;
    --primary-light: #9dd9f3;
    --primary-dark: #5aafdf;
    --accent: #ff7e5f;
    --text-dark: #2c3e50;
    --text-light: #f8f9fa;
    --card-bg: rgba(255, 255, 255, 0.95);
    --shadow: 0 5px 20px rgba(119, 195, 236, 0.2);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    -webkit-tap-highlight-color: transparent;
}

body {
    background: linear-gradient(135deg, #e6f4fa, #cce9f5);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
    overflow-x: hidden;
}


.bg {
animation:slide 3s ease-in-out infinite alternate;
background-image: linear-gradient(-60deg, #6c3 50%, #09f 50%);
bottom:0;
left:-50%;
opacity:.5;
position:fixed;
right:-50%;
top:0;
z-index:-1;
}

.bg2 {
animation-direction:alternate-reverse;
animation-duration:4s;
}

.bg3 {
animation-duration:5s;
}
@keyframes slide {
0% {
transform:translateX(-25%);
}
100% {
transform:translateX(25%);
}
}

/* Main Card */
.business-card {
    width: 100%;
    max-width: 380px;
    background: var(--card-bg);
    border-radius: 20px;
    box-shadow: var(--shadow);
    overflow: hidden;
    position: relative;
    z-index: 10;
}

/* Profile Section */
.profile-section {
    padding: 30px 20px 20px;
    text-align: center;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    position: relative;
    overflow: hidden;
    background: url('https://i.ibb.co/RpFnkw7F/Chat-GPT-Image-Apr-17-2025-12-56-15-AM.png') center/cover no-repeat;
    height: 300px;
    width: 440px;
}

.profile-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
    
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.profile-image {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    border: 3px solid white;
    margin: 0 auto 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    position: relative;
    z-index: 2;
    
}

.profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-text h1 {
    font-size: 1.7rem;
    margin-bottom: 5px;
    color: white;
    text-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: relative;
    z-index: 2;
}

.profile-text h2 {
    font-size: 1rem;
    font-weight: 400;
    color: rgba(255,255,255,0.9);
    margin-bottom: 10px;
    position: relative;
    z-index: 2;
}

.location-badge {
    display: inline-flex;
    align-items:baseline;
    background: rgba(255,255,255,0.2);
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    color: white;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255,255,255,0.2);
    position: relative;
    z-index: 2;
    margin-top: 220px;
    margin-right: 210px;
}

.location-badge i {
    margin-right: 5px;
}

/* Action Buttons */
.action-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    padding: 20px;
    background: white;
}

.action-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    border: none;
}

.call-btn {
    background: var(--accent);
}

.email-btn {
    background: var(--primary-dark);
}

.exchange-btn {
    background: #2ecc71;
}

.action-btn:active {
    transform: scale(0.95);
}

/* Dropdown Sections */
.dropdown-section {
    border-bottom: 1px solid rgba(0,0,0,0.05);
    overflow: hidden;
    background: white;
}

.dropdown-header {
    padding: 18px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background 0.2s ease;
}

.dropdown-header:active {
    background: rgba(119, 195, 236, 0.1);
}

.dropdown-header h3 {
    color: var(--text-dark);
    font-size: 0.95rem;
    margin: 0;
    font-weight: 600;
}

.dropdown-icon {
    color: var(--primary);
    transition: transform 0.3s ease;
}

.dropdown-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.dropdown-section.active .dropdown-content {
    max-height: 2000px;
}

.dropdown-section.active .dropdown-icon {
    transform: rotate(180deg);
    color: var(--accent);
}

/* Testimonial Slideshow */
.testimonial-slider {
    padding: 15px;
}

.swiper {
    width: 100%;
    padding-bottom: 25px;
}

.testimonial-slide {
    background: white;
    border-radius: 12px;
    padding: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    margin: 0 5px;
    border: 1px solid rgba(119, 195, 236, 0.2);
}

.client-info {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.client-image {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 10px;
    border: 2px solid white;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.client-name {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.9rem;
}

.client-title {
    font-size: 0.7rem;
    color: var(--primary);
}

.testimonial-text {
    color: #555;
    font-size: 0.85rem;
    line-height: 1.5;
}

/* Services List */
.services-list {
    padding: 15px;
    list-style: none;
    columns: 2;
    column-gap: 15px;
}

.services-list li {
    margin-bottom: 12px;
    position: relative;
    padding-left: 18px;
    font-size: 0.85rem;
    color: var(--text-dark);
    break-inside: avoid;
}

.services-list li:before {
    content: "•";
    color: var(--accent);
    position: absolute;
    left: 0;
    font-size: 1.5rem;
    line-height: 1;
}

/* Social Links */
.social-links {
    display: flex;
    justify-content: center;
    padding: 15px;
    gap: 15px;
    background: white;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary-light);
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-decoration: none;
    background-color: #77c3ec;

}

.social-link:active {
    transform: scale(0.95);
}

/* Footer */
.card-footer {
    text-align: center;
    padding: 15px;
    background: var(--primary-light);
    color: white;
    font-size: 0.75rem;
    background-color: #77c3ec;
}
/* Exchange Contact Modal */
.exchange-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }
  
  .exchange-modal.active {
    opacity: 1;
    visibility: visible;
  }
  
  .exchange-content {
    background: #fff;
    border-radius: 16px;
    padding: 30px 20px;
    width: 90%;
    max-width: 360px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
    text-align: center;
  }
  
  .exchange-content h3 {
    color: var(--text-dark);
    margin-bottom: 24px;
    font-size: 1.2rem;
  }
  
  .exchange-option {
    display: flex;
    align-items: center;
    padding: 14px;
    background: rgba(119, 195, 236, 0.12);
    border-radius: 12px;
    margin-bottom: 12px;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
  }
  
  .exchange-option:hover {
    background: rgba(119, 195, 236, 0.22);
    transform: translateY(-1px);
  }
  
  .exchange-option:active {
    background: rgba(119, 195, 236, 0.3);
  }
  
  .exchange-option i {
    width: 44px;
    height: 44px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 16px;
    color: #fff;
    font-size: 1.3rem;
  }
  
  .exchange-option span {
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
  }
  
  .close-modal {
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    transition: color 0.2s ease;
  }
  
  .close-modal:hover {
    color: var(--accent);
  }
  

/* Mobile Optimizations */
@media (max-width: 480px) {
    .business-card {
        border-radius: 15px;
    }
    
    .profile-image {
        width: 100px;
        height: 100px;
    }
    
    .profile-text h1 {
        font-size: 1.5rem;
    }
    
    .action-buttons {
        padding: 15px;
    }
    
    .services-list {
        columns: 1;
    }
}
.video-wrapper {
    position: relative;
    width: 640px;
    max-width: 100%;
    margin: 20px auto;
    display: flex;
    justify-content: center;
    align-items: center;
    
}
.video-wrapper video {
    max-width: 100%;
    display: block;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}


.controls {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.control-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(0,0,0,0.7);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.control-btn:hover {
    background: rgba(0,0,0,0.9);
}

.control-btn i {
    font-size: 16px;
}
