/* Production Icon Fixes */

/* 1. Fix FLAGSHIP PROJECT section icons */
.satvik-features .feature-item i {
    font-size: 24px !important;
    color: #9B783B !important;
    margin-right: 12px !important;
    display: inline-block !important;
    width: 30px !important;
    text-align: center !important;
}

/* Disable text selection */
* {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Allow text selection for input fields */
input, textarea, [contenteditable="true"] {
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
}

.satvik-features .feature-item {
    display: flex !important;
    align-items: center !important;
    margin-bottom: 15px !important;
}

/* Force Font Awesome to load */
.fas, .fab {
    font-family: "Font Awesome 6 Free", "Font Awesome 6 Brands" !important;
    font-weight: 900 !important;
    font-style: normal !important;
}

/* 2. Fix Footer Social Media Icons Size */
.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-link {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 40px !important;
    height: 40px !important;
    background: rgba(255, 255, 255, 0.1) !important;
    border-radius: 50% !important;
    color: #fff !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
    font-size: 18px !important;
}

.social-link i {
    font-size: 18px !important;
    color: #fff !important;
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.2) !important;
    transform: translateY(-2px) !important;
}

/* Specific hover colors */
.whatsapp-link:hover {
    background: #25D366 !important;
}

.facebook-link:hover {
    background: #1877F2 !important;
}

.instagram-link:hover {
    background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%) !important;
}