/* General Styling */
body {
    font-family: 'Inter', sans-serif;
    color: #2c3e50;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    color: #1a252f;
}

.section-padding {
    padding: 80px 0;
}

/* Navbar */
.navbar {
    transition: all 0.3s ease;
}

.nav-link {
    font-weight: 500;
    color: #2c3e50 !important;
    font-size: 0.95rem;
}

.nav-link:hover {
    color: #0d6efd !important;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #0d6efd 0%, #0a58ca 100%);
    min-height: 85vh;
    padding-top: 60px;
    position: relative;
    overflow: hidden;
}

/* Add a subtle pattern overlay to hero if desired */
.hero-section::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.05' fill-rule='evenodd'%3E%3Ccircle cx='3' cy='3' r='3'/%3E%3Ccircle cx='13' cy='13' r='3'/%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.3;
}

/* Cards & Icons */
.hover-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 1rem 3rem rgba(0,0,0,.1) !important;
}

.icon-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bg-purple-light { background-color: #f3e5f5; }
.text-purple { color: #8e24aa; }
.bg-blue-light { background-color: #e3f2fd; }
.bg-info-light { background-color: #e0f7fa; }
.bg-danger-light { background-color: #ffebee; }

/* Utilities */
.ls-1 { letter-spacing: 1px; }

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-section {
        min-height: auto;
        padding: 100px 0 60px;
    }
    .display-4 {
        font-size: 2.5rem;
    }
}

/* FIX: Brings the content above the background overlay so buttons work */
.hero-section .container {
    position: relative;
    z-index: 2;
}
/* NEW ADDITIONS FOR MODERN SECTIONS */

/* 1. Logo Strip - Gray to Color Hover */
.grayscale-logos {
    opacity: 0.7;
    transition: opacity 0.3s;
}
.grayscale-logos:hover {
    opacity: 1;
}
.grayscale-logos i, .grayscale-logos img {
    color: #adb5bd; /* Gray */
    filter: grayscale(100%);
    transition: all 0.3s ease;
    cursor: pointer;
}
.grayscale-logos i:hover, .grayscale-logos img:hover {
    color: #0d6efd; /* Your Primary Blue */
    filter: grayscale(0%);
    transform: scale(1.1);
}

/* 2. Process Numbers */
.text-primary-shadow {
    text-shadow: 2px 2px 0px rgba(13, 110, 253, 0.1);
    color: #e3f2fd; /* Very light blue number */
    -webkit-text-stroke: 1px #0d6efd;
}

/* 3. Founder Quote */
.quote-box {
    border-left: 4px solid #0d6efd;
    background: #f8f9fa;
}

/* ============================
   WhatsApp Floating Button
   ============================ */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: #25d366; /* WhatsApp Green */
    color: #FFF !important;
    border-radius: 50%;
    text-align: center;
    font-size: 32px;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.2);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    background-color: #128C7E; /* Darker Green on Hover */
    color: #FFF !important;
    transform: scale(1.1); /* Slight zoom effect */
}

/* ============================
   Footer Social Icons
   ============================ */
.social-icon {
    transition: all 0.3s ease;
    display: inline-block;
}

.social-icon:hover {
    color: #0d6efd !important; /* ExxeraTek Blue */
    transform: translateY(-3px); /* Slight lift effect */
}