/* Glow Pulse Button Animation */
.btn-glow-pulse {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-glow-pulse::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--orange), #ff9d00, var(--orange));
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 50px;
}

.btn-glow-pulse:hover::before {
    opacity: 1;
    animation: glow-pulse 2s infinite;
}

@keyframes glow-pulse {
    0% {
        box-shadow: 0 0 5px rgba(253, 203, 84, 0.7);
    }
    50% {
        box-shadow: 0 0 20px rgba(253, 203, 84, 0.9), 0 0 30px rgba(253, 203, 84, 0.6);
    }
    100% {
        box-shadow: 0 0 5px rgba(253, 203, 84, 0.7);
    }
}

/* Section Title */
.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--text-color);
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--orange);
    border-radius: 2px;
}

.section-title p {
    font-size: 1.1rem;
    color: var(--blue);
    max-width: 700px;
    margin: 0 auto;
}

/* Floating Animation for Cards */
@keyframes float-card {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Card hover effects */
.feature-card, .service-card, .stat-card {
    transition: var(--transition);
}

.feature-card:hover, .service-card:hover, .stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

/* Custom Cursor */
.cursor {
    position: fixed;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(253, 203, 84, 0.5);
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.2s ease;
    mix-blend-mode: difference;
}

.cursor-follower {
    position: fixed;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(253, 203, 84, 0.3);
    pointer-events: none;
    z-index: 9998;
    transition: transform 0.4s ease;
}

.cursor.hover {
    transform: scale(1.5);
    background: rgba(253, 203, 84, 0.8);
}

.cursor.text-hover {
    transform: scale(0.5);
    background: rgba(253, 203, 84, 0.3);
}

.cursor-follower.hover {
    transform: scale(1.5);
    border-color: rgba(253, 203, 84, 0.6);
}

/* Floating Buttons */
.floating-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.floating-btn {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.6rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
    position: relative;
    animation: pulse 2s infinite;
}

.whatsapp-btn {
    background-color: #25D366;
}

.chatbot-btn {
    background: linear-gradient(135deg, var(--dark-blue) 0%, var(--blue) 100%);
}

.floating-btn:hover {
    transform: scale(1.1);
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Social Links */
.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--light-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blue);
    transition: var(--transition);
}

.social-link:hover {
    background-color: var(--blue);
    color: var(--white);
    transform: translateY(-3px);
}

/* Newsletter Form */
.newsletter-form {
    display: flex;
    margin-top: 20px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 50px 0 0 50px;
    outline: none;
    background: var(--card-bg);
    color: var(--text-color);
}

.newsletter-form button {
    background: var(--blue);
    color: var(--white);
    border: none;
    padding: 0 20px;
    border-radius: 0 50px 50px 0;
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-form button:hover {
    background: var(--dark-blue);
}

/* FAQ Item */
.faq-item {
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    background: var(--card-bg);
}

.faq-question {
    padding: 20px;
    background: var(--card-bg);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    transition: var(--transition);
}

.faq-question:hover {
    background-color: var(--light-blue);
}

.faq-question i {
    transition: var(--transition);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: var(--transition);
    background-color: var(--card-bg);
}

.faq-item.active .faq-question {
    background-color: var(--light-blue);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-item.active .faq-answer {
    padding: 20px;
    max-height: 500px;
}

/* Responsive adjustments for components */
@media (max-width: 768px) {
    .section-title h2 {
        font-size: 2rem;
    }
    
    .floating-buttons {
        bottom: 20px;
        right: 20px;
    }
    
    .floating-btn {
        width: 55px;
        height: 55px;
        font-size: 1.4rem;
    }
}

@media (max-width: 576px) {
    .section-title h2 {
        font-size: 1.8rem;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form input {
        border-radius: 50px;
        margin-bottom: 10px;
    }
    
    .newsletter-form button {
        border-radius: 50px;
        padding: 12px;
    }
/* Policy Page Components */
.policy-hero {
    background: linear-gradient(135deg, var(--dark-blue) 0%, var(--blue) 100%);
    color: var(--white);
    padding: 180px 0 120px;
    position: relative;
    overflow: hidden;
}

.policy-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800" opacity="0.05"><path d="M0,0V800H1200V0ZM200,400C200,533,333,600,400,600S600,533,600,400,467,200,400,200,200,267,200,400Z" fill="white"/></svg>');
    background-size: cover;
}

.policy-hero-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.policy-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    line-height: 1.1;
    animation: fadeInUp 1s ease;
}

.policy-hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
    animation: fadeInUp 1s ease 0.2s forwards;
    opacity: 0;
}

.policy-hero-btns {
    display: flex;
    gap: 15px;
    justify-content: center;
    animation: fadeInUp 1s ease 0.4s forwards;
    opacity: 0;
}

.policy-hero-icon {
    font-size: 5rem;
    margin-bottom: 30px;
    color: var(--orange);
    animation: fadeInUp 1s ease 0.1s forwards;
    opacity: 0;
}

/* Content Sections */
.policy-content-section {
    padding: 80px 0;
}

.policy-content-card {
    background: var(--card-bg);
    border-radius: 15px;
    padding: 40px;
    box-shadow: var(--shadow);
    margin-bottom: 30px;
    transition: var(--transition);
}

.policy-content-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.policy-content-header {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.policy-content-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--light-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    font-size: 1.5rem;
    color: var(--blue);
    transition: var(--transition);
    flex-shrink: 0;
}

.policy-content-card:hover .policy-content-icon {
    background-color: var(--orange);
    color: var(--dark-blue);
}

.policy-content-header h2 {
    font-size: 1.8rem;
    margin-bottom: 0;
    color: var(--blue);
}

/* Lists */
.policy-info-list {
    margin: 20px 0;
    list-style: none;
}

.policy-info-list li {
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
}

.policy-info-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--orange);
    font-weight: bold;
    font-size: 1.2rem;
}

.policy-definition-list {
    margin: 20px 0;
    list-style: none;
}

.policy-definition-list li {
    margin-bottom: 15px;
    padding-left: 20px;
    position: relative;
}

.policy-definition-list li strong {
    color: var(--blue);
}

/* Info Box */
.policy-info-box {
    background: var(--light-blue);
    border-left: 4px solid var(--orange);
    padding: 20px;
    border-radius: 8px;
    margin: 25px 0;
}

.policy-info-box h4 {
    color: var(--blue);
    margin-bottom: 10px;
}

/* Contact Box */
.policy-contact-box {
    background: var(--light-blue);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    margin-top: 40px;
}

.policy-contact-box h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--blue);
}

.policy-contact-details {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 20px;
}

.policy-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
}

.policy-contact-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--orange);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-blue);
    font-size: 1.1rem;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .policy-hero h1 {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .policy-hero {
        padding: 150px 0 100px;
    }
    
    .policy-hero h1 {
        font-size: 2.5rem;
    }
    
    .policy-content-header {
        flex-direction: column;
        text-align: center;
    }
    
    .policy-content-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .policy-contact-details {
        flex-direction: column;
        gap: 15px;
    }
    
    .policy-content-card {
        padding: 30px;
    }
}

@media (max-width: 576px) {
    .policy-hero {
        padding: 120px 0 80px;
    }
    
    .policy-hero h1 {
        font-size: 2rem;
    }
    
    .policy-hero p {
        font-size: 1rem;
    }
    
    .policy-hero-icon {
        font-size: 4rem;
    }
    
    .policy-content-section {
        padding: 60px 0;
    }
    
    .policy-content-card {
        padding: 25px;
    }
}
