.elementor-7 .elementor-element.elementor-element-cc796ab{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-7 .elementor-element.elementor-element-416fcd2{--display:flex;--flex-direction:row;--container-widget-width:initial;--container-widget-height:100%;--container-widget-flex-grow:1;--container-widget-align-self:stretch;--flex-wrap-mobile:wrap;}/* Start custom CSS for html, class: .elementor-element-6acbd71 *//* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background: radial-gradient(ellipse at center, #3a3a3a 0%, #1a1a1a 50%, #0a0a0a 100%);
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        radial-gradient(circle at 25% 25%, rgba(255, 193, 7, 0.25) 0%, rgba(255, 193, 7, 0.1) 30%, transparent 60%),
        radial-gradient(circle at 75% 75%, rgba(255, 193, 7, 0.2) 0%, rgba(255, 193, 7, 0.05) 40%, transparent 70%),
        radial-gradient(circle at 50% 10%, rgba(255, 193, 7, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 10% 90%, rgba(0, 123, 255, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 90% 10%, rgba(255, 255, 255, 0.03) 0%, transparent 50%);
    animation: lightEffect 25s ease-in-out infinite;
    z-index: -1;
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 60% 40%, rgba(255, 193, 7, 0.12) 0%, transparent 40%),
        radial-gradient(circle at 30% 80%, rgba(255, 193, 7, 0.08) 0%, transparent 35%);
    animation: lightEffect2 30s ease-in-out infinite reverse;
    z-index: -1;
}

@keyframes lightEffect {
    0%, 100% { 
        transform: rotate(0deg) scale(1);
        opacity: 1;
    }
    33% { 
        transform: rotate(120deg) scale(1.1);
        opacity: 0.8;
    }
    66% { 
        transform: rotate(240deg) scale(0.9);
        opacity: 1.2;
    }
}

@keyframes lightEffect2 {
    0%, 100% { 
        transform: rotate(0deg) scale(1.1);
        opacity: 0.7;
    }
    50% { 
        transform: rotate(180deg) scale(1.3);
        opacity: 1;
    }
}

.container {
    max-width: 480px;
    margin: 0 auto;
    padding: 20px;
    position: relative;
    z-index: 1;
}

/* Header Styles */
.header {
    text-align: center;
    margin-bottom: 40px;
    padding: 40px 20px;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 193, 7, 0.2);
}

.logo-container {
    margin-bottom: 20px;
}

.logo {
    max-width: 220px;
    height: auto;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
    transition: transform 0.3s ease;
    border-radius: 15px;
}

.logo:hover {
    transform: scale(1.05);
}

.tagline {
    font-size: 24px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 15px;
    line-height: 1.3;
}

.description {
    font-size: 16px;
    color: #cccccc;
    line-height: 1.6;
    max-width: 400px;
    margin: 0 auto;
}

/* Authority Section */
.authority-section {
    margin-bottom: 40px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.stat-item {
    text-align: center;
    padding: 20px 15px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 193, 7, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 193, 7, 0.2);
    border-color: rgba(255, 193, 7, 0.5);
}

.stat-number {
    font-size: 28px;
    font-weight: 700;
    color: #FFC107;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 12px;
    color: #cccccc;
    font-weight: 500;
}

/* Links Section */
.links-section {
    margin-bottom: 40px;
}

.links-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.link-button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 24px;
    background: rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(255, 193, 7, 0.3);
    border-radius: 15px;
    text-decoration: none;
    color: #ffffff;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(15px);
    position: relative;
    overflow: hidden;
}

.link-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 193, 7, 0.2), transparent);
    transition: left 0.5s ease;
}

.link-button:hover::before {
    left: 100%;
}

.link-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 193, 7, 0.3);
    border-color: #FFC107;
    background: rgba(0, 0, 0, 0.6);
}

.link-button.primary {
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: white;
    border-color: #25d366;
}

.link-button.primary:hover {
    background: linear-gradient(135deg, #128c7e, #075e54);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
}

.link-button.whatsapp {
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: white;
    border-color: #25d366;
}

.link-button.whatsapp:hover {
    background: linear-gradient(135deg, #128c7e, #075e54);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
}

.link-button.consultation {
    background: linear-gradient(135deg, #ffc107, #e0a800);
    color: #000;
    border-color: #ffc107;
}

.link-button.consultation:hover {
    background: linear-gradient(135deg, #e0a800, #c69500);
    box-shadow: 0 10px 25px rgba(255, 193, 7, 0.4);
}

.link-button i:first-child {
    font-size: 20px;
    width: 24px;
}

.link-button i:last-child {
    font-size: 16px;
    transition: transform 0.3s ease;
}

.link-button:hover i:last-child {
    transform: translateX(5px);
}

/* Credibility Section */
.credibility-section {
    margin-bottom: 40px;
    padding: 30px 20px;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 193, 7, 0.2);
}

.credibility-section h3 {
    text-align: center;
    font-size: 22px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 25px;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.feature-item {
    text-align: center;
    padding: 20px;
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 193, 7, 0.2);
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 193, 7, 0.4);
}

.feature-item i {
    font-size: 32px;
    color: #FFC107;
    margin-bottom: 15px;
}

.feature-item h4 {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 8px;
}

.feature-item p {
    font-size: 14px;
    color: #cccccc;
    line-height: 1.5;
}

/* Footer */
.footer {
    text-align: center;
    padding: 30px 20px;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 15px;
    margin-top: 20px;
    border: 1px solid rgba(255, 193, 7, 0.2);
}

.footer p {
    font-size: 14px;
    color: #cccccc;
    margin-bottom: 10px;
}

.contact-info p {
    font-weight: 500;
    color: #FFC107;
}

/* Responsive Design */
@media (max-width: 480px) {
    .container {
        padding: 15px;
    }
    
    .header {
        padding: 30px 15px;
    }
    
    .tagline {
        font-size: 20px;
    }
    
    .description {
        font-size: 14px;
    }
    
    .stats-grid {
        gap: 15px;
    }
    
    .stat-item {
        padding: 15px 10px;
    }
    
    .stat-number {
        font-size: 24px;
    }
    
    .stat-label {
        font-size: 11px;
    }
    
    .link-button {
        padding: 16px 20px;
        font-size: 15px;
    }
    
    .credibility-section {
        padding: 25px 15px;
    }
    
    .credibility-section h3 {
        font-size: 20px;
    }
}

/* Animation Classes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

/* Loading Animation */
.loading {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.loaded {
    opacity: 1;
    transform: translateY(0);
}/* End custom CSS */