/* Custom Theme Colors */
:root {
    --primary-blue: #007bff;
    --dark-blue: #0056b3;
}

.text-primary-custom { color: var(--primary-blue); }

/* Card Styling */
.quote-card {
    border: 1px solid #e9ecef;
    transition: transform 0.3s ease;
}

.quote-card:hover {
    transform: translateY(-5px);
}

/* Input Styling */
.custom-input {
    padding: 12px 15px;
    border: 2px solid #f1f3f5;
    background-color: #f8f9fa;
    transition: all 0.3s ease;
}

.custom-input:focus {
    background-color: #fff;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 0.25rem rgba(0, 123, 255, 0.1);
    outline: none;
}

/* Button Styling */
.btn-primary-custom {
    background-color: var(--primary-blue);
    border: none;
    color: white;
    border-radius: 8px;
    letter-spacing: 1px;
    transition: background 0.3s ease;
}

.btn-primary-custom:hover {
    background-color: var(--dark-blue);
    color: white;
}
/* Styling for the Contact Info Column */
.info-icon {
    width: 45px;
    height: 45px;
    background-color: rgba(0, 123, 255, 0.1);
    color: #ea580c;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.contact-info-card {
    background-color: transparent;
}

.contact-info-card h5 {
    font-size: 1.1rem;
    color: #ea580c;
}

.contact-info-card p {
    font-size: 0.95rem;
}

/* Mobile adjustments */
@media (max-width: 991px) {
    .contact-info-card {
        text-align: center;
        margin-bottom: 2rem;
    }
    .d-flex {
        flex-direction: column;
        align-items: center !important;
    }
    .info-icon {
        margin: 0 0 10px 0 !important;
    }
}
/* General Styles */
* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Segoe UI', sans-serif; }
body { line-height: 1.6; color: #333; }
.container { max-width: 1100px; margin: auto; padding: 0 20px; }
.section { padding: 60px 0; text-align: center; }
.bg-light { background: #f4f4f4; }

/* Navbar */
.navbar { display: flex; justify-content: space-between; padding: 20px; background: #fff; box-shadow: 0 2px 5px rgba(0,0,0,0.1); position: sticky; top: 0; z-index: 1000; }
.nav-links { display: flex; list-style: none; }
.nav-links li { margin-left: 20px; }
.nav-links a { text-decoration: none; color: #333; font-weight: bold; }

/* Floating Icons */
.floating-container { position: fixed; bottom: 20px; right: 20px; display: flex; flex-direction: column; gap: 15px; z-index: 9999; }
.float-btn { width: 60px; height: 60px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; font-size: 30px; box-shadow: 2px 2px 10px rgba(0,0,0,0.3); text-decoration: none; transition: transform 0.3s; }
.float-btn:hover { transform: scale(1.1); }
.whatsapp { background-color: #25d366; }
.phone { background-color: #007bff; }

/* Certifications Grid */
.cert-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; margin-top: 30px; }
.cert-card { padding: 20px; border: 1px solid #ddd; border-radius: 8px; background: white; }
.cert-card i { font-size: 40px; color: #ffd700; margin-bottom: 10px; }

/* Contact Form */
.contact-form { max-width: 600px; margin: auto; display: flex; flex-direction: column; gap: 15px; }
.contact-form input, .contact-form select, .contact-form textarea { padding: 12px; border: 1px solid #ccc; border-radius: 5px; width: 100%; }
.btn-submit { background: #333; color: white; padding: 15px; border: none; border-radius: 5px; cursor: pointer; font-size: 16px; }
.btn-submit:hover { background: #555; }

/* Responsive Media Queries */
@media (max-width: 768px) {
    .nav-links { display: none; } /* Simplified for mobile example */
    .section { padding: 40px 0; }
    .float-btn { width: 50px; height: 50px; font-size: 24px; }
}