/* Indian Custom Styles for The Clean Crew Services */

/* Hindi Font Support */
.hindi-text {
    font-family: 'Noto Sans Devanagari', 'Poppins', sans-serif;
    line-height: 1.6;
}

/* Indian Flag Colors Accent */
.indian-accent {
    background: linear-gradient(45deg, #FF9933, #FFFFFF, #138808);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
}

/* WhatsApp Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    top: 50%;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateY(-50%);
}

.whatsapp-float:hover {
    background-color: #128c7e;
    transform: translateY(-50%) scale(1.1);
    color: #FFF;
    text-decoration: none;
}

.whatsapp-float i {
    margin-top: 0;
}

/* Language Toggle */
.language-toggle {
    background: #2e92c1;
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    margin-left: 10px;
    transition: all 0.3s ease;
}

.language-toggle:hover {
    background: #1e7bb8;
    transform: translateY(-2px);
}

/* Banner Features */
.banner-features {
    margin-top: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    padding: 10px;
    background: rgba(46, 146, 193, 0.1);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(46, 146, 193, 0.2);
    transform: translateY(-2px);
}

.feature-item i {
    margin-right: 10px;
    font-size: 20px;
}

.feature-item span {
    font-weight: 500;
    font-size: 14px;
}

/* About Features */
.about-features {
    margin: 30px 0;
}

.feature-box {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #2e92c1;
    transition: all 0.3s ease;
}

.feature-box:hover {
    background: #e9ecef;
    transform: translateX(5px);
}

.feature-box i {
    margin-right: 15px;
    font-size: 18px;
}

.feature-box span {
    font-weight: 500;
    font-size: 14px;
}

/* Banner Buttons */
.banner-buttons {
    margin: 30px 0;
}

.banner-buttons .default-button {
    margin-right: 15px;
    margin-bottom: 10px;
}

/* Service Cards Enhancement */
.service-card {
    transition: all 0.3s ease;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

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

.service-card h4 a {
    color: #2e92c1;
    transition: all 0.3s ease;
}

.service-card h4 a:hover {
    color: #1e7bb8;
}

/* Testimonial Cards */
.testimonial-card {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(45deg, #FF9933, #FFFFFF, #138808);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

/* Contact Form Enhancement */
.contact-form {
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.contact-card {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    text-align: center;
    margin-bottom: 20px;
}

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

.contact-card i {
    font-size: 40px;
    color: #2e92c1;
    margin-bottom: 20px;
}

/* Footer Enhancement */
.footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
}

.footer-links h3 {
    color: #2e92c1;
    margin-bottom: 20px;
    position: relative;
}

.footer-links h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(45deg, #FF9933, #FFFFFF, #138808);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 24px;
    }
    
    .banner-text-area h1 {
        font-size: 28px;
        line-height: 1.3;
    }
    
    .banner-text-area h6 {
        font-size: 16px;
    }
    
    .feature-item {
        flex-direction: column;
        text-align: center;
        padding: 15px;
    }
    
    .feature-item i {
        margin-right: 0;
        margin-bottom: 10px;
    }
    
    .banner-buttons .default-button {
        display: block;
        width: 100%;
        margin-right: 0;
        margin-bottom: 15px;
        text-align: center;
    }
    
    .service-card {
        margin-bottom: 30px;
    }
    
    .contact-form {
        padding: 20px;
    }
    
    .contact-card {
        padding: 20px;
    }
    
    .language-toggle {
        font-size: 12px;
        padding: 6px 12px;
        margin-left: 5px;
    }
}

@media (max-width: 576px) {
    .banner-text-area h1 {
        font-size: 24px;
    }
    
    .banner-text-area h6 {
        font-size: 14px;
    }
    
    .feature-item span {
        font-size: 12px;
    }
    
    .feature-box span {
        font-size: 12px;
    }
    
    .testimonial-card {
        padding: 20px;
    }
    
    .contact-form {
        padding: 15px;
    }
    
    .contact-card {
        padding: 15px;
    }
}

/* Loading Animation */
.loading {
    opacity: 0;
    animation: fadeIn 0.5s ease-in forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Focus States for Accessibility */
.default-button:focus,
.language-toggle:focus,
.whatsapp-float:focus {
    outline: 2px solid #2e92c1;
    outline-offset: 2px;
}

/* Active Menu Styles */
.navbar-nav .nav-link.active {
    color: #2e92c1 !important;
    font-weight: 600;
    position: relative;
}

.navbar-nav .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 3px;
    background: #2e92c1;
    border-radius: 2px;
}

.dropdown-menu .nav-link.active {
    color: #2e92c1 !important;
    background-color: rgba(46, 146, 193, 0.1);
    font-weight: 600;
}

/* Hover Effects for Menu Items */
.navbar-nav .nav-link:hover {
    color: #2e92c1 !important;
    transition: all 0.3s ease;
}

.dropdown-menu .nav-link:hover {
    color: #2e92c1 !important;
    background-color: rgba(46, 146, 193, 0.1);
    transition: all 0.3s ease;
}

/* About Us Page Styles */
.founder-card {
    background: #fff;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-top: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.founder-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.founder-image {
    text-align: center;
    margin-bottom: 20px;
}

.founder-image img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid #2e92c1;
    box-shadow: 0 5px 15px rgba(46, 146, 193, 0.3);
}

.founder-content h4 {
    color: #2e92c1;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
}

.founder-title {
    color: #666;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    font-style: italic;
}

.founder-description {
    color: #555;
    line-height: 1.8;
    margin-bottom: 15px;
    font-size: 16px;
}

.founder-achievements {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 2px solid #f0f0f0;
}

.achievement-item {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    padding: 10px;
    background: #f8f9fa;
    border-radius: 8px;
    transition: background 0.3s ease;
}

.achievement-item:hover {
    background: #e3f2fd;
}

.achievement-item i {
    color: #2e92c1;
    font-size: 20px;
    margin-right: 10px;
    width: 25px;
}

.achievement-item span {
    color: #333;
    font-weight: 600;
    font-size: 14px;
}

/* Mission, Vision, Values Cards */
.features-card {
    background: #fff;
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #f0f0f0;
}

.features-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.features-card-icons {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2e92c1, #1e6b96);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    position: relative;
    overflow: hidden;
}

.features-card-icons::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.5s ease;
}

.features-card:hover .features-card-icons::before {
    animation: shine 0.8s ease;
}

@keyframes shine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.features-card-icons i {
    color: #fff;
    font-size: 35px;
    position: relative;
    z-index: 1;
}

.features-card-text h4 {
    color: #2e92c1;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
}

.features-card-text p {
    color: #666;
    line-height: 1.8;
    font-size: 16px;
}

.features-card-text p strong {
    color: #2e92c1;
    font-weight: 700;
}

/* About Us Section Improvements */
.about-text-area p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.fun-facts-card {
    background: #fff;
    border-radius: 10px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
    height: 100%;
}

.fun-facts-card:hover {
    transform: translateY(-5px);
}

.fun-facts-card i {
    color: #2e92c1;
    font-size: 40px;
    margin-bottom: 15px;
}

.fun-facts-card h2 {
    color: #2e92c1;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
}

.fun-facts-card p {
    color: #666;
    font-weight: 600;
    font-size: 16px;
    margin: 0;
}

/* Responsive Design for About Us */
@media (max-width: 768px) {
    .founder-card {
        padding: 25px;
    }
    
    .founder-image img {
        width: 150px;
        height: 150px;
    }
    
    .founder-content h4 {
        font-size: 24px;
    }
    
    .features-card {
        padding: 30px 20px;
        margin-bottom: 30px;
    }
    
    .features-card-icons {
        width: 60px;
        height: 60px;
    }
    
    .features-card-icons i {
        font-size: 25px;
    }
}

/* Values Section Styles */
.values-section {
    background: #f8f9fa;
}

.values-card {
    background: #fff;
    border-radius: 15px;
    padding: 40px 30px;
    margin-bottom: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    align-items: flex-start;
    gap: 25px;
}

.values-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.values-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #2e92c1, #1e6b96);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}

.values-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.5s ease;
}

.values-card:hover .values-icon::before {
    animation: shine 0.8s ease;
}

.values-icon i {
    color: #fff;
    font-size: 28px;
    position: relative;
    z-index: 1;
}

.values-content h4 {
    color: #2e92c1;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
}

.values-content p {
    color: #666;
    line-height: 1.8;
    font-size: 16px;
    margin: 0;
}

/* Mission & Vision Cards without Icons */
.features-card .features-card-text h4 {
    color: #2e92c1;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
}

.features-card .features-card-text p {
    color: #555;
    line-height: 1.8;
    font-size: 16px;
    text-align: center;
}

/* Responsive Design for Values */
@media (max-width: 768px) {
    .values-card {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
    }
    
    .values-icon {
        margin: 0 auto 20px;
    }
    
    .values-content h4 {
        font-size: 22px;
    }
}

/* Print Styles */
@media print {
    .whatsapp-float,
    .language-toggle,
    .theme-switcher {
        display: none !important;
    }
}

/* Spacing tweaks: Foundation → Values */
.features.features-bg.ptb-100 {
    padding-bottom: 40px; /* was large; tighten gap below foundation */
}

.values-section.ptb-100 {
    padding-top: 40px; /* was large; tighten gap above values */
}
